diff --git a/Snakefile b/Snakefile index 1bec5683..6ba3d69a 100644 --- a/Snakefile +++ b/Snakefile @@ -78,16 +78,61 @@ rule build_simplified_population_layouts: benchmark: "benchmarks/build_clustered_population_layouts/s{simpl}" script: "scripts/build_clustered_population_layouts.py" -rule build_gas_network: - input: - gas_network="data/gas_network/gas_network_dataset.csv", - country_shapes=pypsaeur("resources/country_shapes.geojson"), - regions_onshore=pypsaeur("resources/regions_onshore_elec_s{simpl}_{clusters}.geojson"), - regions_offshore=pypsaeur("resources/regions_offshore_elec_s{simpl}_{clusters}.geojson") - output: - clustered_gas_network="resources/gas_network_elec_s{simpl}_{clusters}.csv" - resources: mem_mb=10000 - script: "scripts/build_gas_network.py" + +if config["sector"]["gas_network"]: + + datafiles = [ + "IGGIELGN_LNGs.geojson", + "IGGIELGN_BorderPoints.geojson", + "IGGIELGN_Productions.geojson", + "IGGIELGN_PipeSegments.geojson", + ] + + + rule retrieve_gas_infrastructure_data: + output: expand("data/gas_network/scigrid-gas/data/{files}", files=datafiles) + script: 'scripts/retrieve_gas_infrastructure_data.py' + + + rule build_gas_network: + input: + gas_network="data/gas_network/scigrid-gas/data/IGGIELGN_PipeSegments.geojson" + output: + cleaned_gas_network="resources/gas_network.csv" + resources: mem_mb=4000 + script: "scripts/build_gas_network.py" + + + rule build_gas_input_locations: + input: + lng="data/gas_network/scigrid-gas/data/IGGIELGN_LNGs.geojson", + entry="data/gas_network/scigrid-gas/data/IGGIELGN_BorderPoints.geojson", + production="data/gas_network/scigrid-gas/data/IGGIELGN_Productions.geojson", + planned_lng="data/gas_network/planned_LNGs.csv", + regions_onshore=pypsaeur("resources/regions_onshore_elec_s{simpl}_{clusters}.geojson"), + regions_offshore=pypsaeur('resources/regions_offshore_elec_s{simpl}_{clusters}.geojson') + output: + gas_input_nodes="resources/gas_input_locations_s{simpl}_{clusters}.geojson", + gas_input_nodes_simplified="resources/gas_input_locations_s{simpl}_{clusters}_simplified.csv" + resources: mem_mb=2000, + script: "scripts/build_gas_input_locations.py" + + + rule cluster_gas_network: + input: + cleaned_gas_network="resources/gas_network.csv", + regions_onshore=pypsaeur("resources/regions_onshore_elec_s{simpl}_{clusters}.geojson"), + regions_offshore=pypsaeur("resources/regions_offshore_elec_s{simpl}_{clusters}.geojson") + output: + clustered_gas_network="resources/gas_network_elec_s{simpl}_{clusters}.csv" + resources: mem_mb=4000 + script: "scripts/cluster_gas_network.py" + + + gas_infrastructure = {**rules.cluster_gas_network.output, **rules.build_gas_input_locations.output} +else: + gas_infrastructure = {} + rule build_heat_demands: input: @@ -354,7 +399,6 @@ rule prepare_sector_network: energy_totals_name='resources/energy_totals.csv', co2_totals_name='resources/co2_totals.csv', transport_name='resources/transport_data.csv', - clustered_gas_network="resources/gas_network_elec_s{simpl}_{clusters}.csv", traffic_data_KFZ="data/emobility/KFZ__count", traffic_data_Pkw="data/emobility/Pkw__count", biomass_potentials='resources/biomass_potentials_s{simpl}_{clusters}.csv', @@ -387,7 +431,8 @@ rule prepare_sector_network: solar_thermal_urban="resources/solar_thermal_urban_elec_s{simpl}_{clusters}.nc", solar_thermal_rural="resources/solar_thermal_rural_elec_s{simpl}_{clusters}.nc", **build_retro_cost_output, - **build_biomass_transport_costs_output + **build_biomass_transport_costs_output, + **gas_infrastructure output: RDIR + '/prenetworks/elec_s{simpl}_{clusters}_lv{lv}_{opts}_{sector_opts}_{planning_horizons}.nc' threads: 1 resources: mem_mb=2000 diff --git a/config.default.yaml b/config.default.yaml index 1254e926..59a27753 100644 --- a/config.default.yaml +++ b/config.default.yaml @@ -243,12 +243,14 @@ sector: electricity_distribution_grid: false electricity_distribution_grid_cost_factor: 1.0 #multiplies cost in data/costs.csv electricity_grid_connection: true # only applies to onshore wind and utility PV + H2_network: true gas_network: true H2_retrofit: true # if set to True existing gas pipes can be retrofitted to H2 pipes # according to hydrogen backbone strategy (April, 2020) p.15 # https://gasforclimate2050.eu/wp-content/uploads/2020/07/2020_European-Hydrogen-Backbone_Report.pdf # 60% of original natural gas capacity could be used in cost-optimal case as H2 capacity H2_retrofit_capacity_per_CH4: 0.6 # ratio for H2 capacity per original CH4 capacity of retrofitted pipelines + gas_network_connectivity_upgrade: 3 # https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.connectivity.edge_augmentation.k_edge_augmentation.html#networkx.algorithms.connectivity.edge_augmentation.k_edge_augmentation gas_distribution_grid: true gas_distribution_grid_cost_factor: 1.0 #multiplies cost in data/costs.csv biomass_transport: false # biomass transport between nodes @@ -449,6 +451,7 @@ plotting: gas boilers: '#db6a25' gas boiler marginal: '#db6a25' gas: '#e05b09' + fossil gas: '#e05b09' natural gas: '#e05b09' CCGT: '#a85522' CCGT marginal: '#a85522' @@ -457,7 +460,7 @@ plotting: gas for industry: '#853403' gas for industry CC: '#692e0a' gas pipeline: '#ebbca0' - Gas pipeline: '#ebbca0' + gas pipeline new: '#a87c62' # oil oil: '#c9c9c9' oil boiler: '#adadad' @@ -547,6 +550,7 @@ plotting: H2 storage: '#bf13a0' land transport fuel cell: '#6b3161' H2 pipeline: '#f081dc' + H2 pipeline retrofitted: '#ba99b5' H2 Fuel Cell: '#c251ae' H2 Electrolysis: '#ff29d9' # syngas diff --git a/data/gas_network/gas_network_dataset.csv b/data/gas_network/gas_network_dataset.csv deleted file mode 100644 index 3b2bbd97..00000000 --- a/data/gas_network/gas_network_dataset.csv +++ /dev/null @@ -1,2137 +0,0 @@ -id,name,source_id,node_id,lat,long,country_code,is_bothDirection,lat_mean,length_km,long_mean,max_pressure_bar,num_compressor,start_year,Capacity_GWh_h,diameter_mm -INET_PL_141_EE_0,Deudan0,['INET_PL_141'],"['INET_N_1197', 'INET_N_427']","[53.939785, 54.801878]","[9.784432, 9.289041]","['DE', 'DE']",1.0,54.3708315,101.11970692844721,9.5367365,63.51782227405727,1.0,1996.0,3.4850968518518513,600.0 -INET_PL_141_EE_1,Deudan1,['INET_PL_141'],"['INET_N_427', 'LKD_N_930']","[54.801878, 54.80609]","[9.289041, 9.29094]","['DE', 'DK']",1.0,54.803984,0.48406011155531065,9.2899905,63.51782227405727,1.0,1996.0,3.4850968518518513,600.0 -INET_PL_144,Deudan_Loop,['INET_PL_144'],"['INET_N_495', 'INET_N_427']","[54.3, 54.801878]","[9.6, 9.289041]","['DE', 'DE']",1.0,54.550939,59.31857267161522,9.4445205,84.0,0.0,2015.0,6.9375,900.0 -INET_PL_164_EE_1,EUGAL_11,['INET_PL_164'],"['INET_N_741', 'INET_N_1199']","[52.4483075, 52.07784]","[13.9567212, 13.539383]","['DE', 'DE']",0.0,52.263073750000004,50.05184857784196,13.7480521,100.0,0.0,2022.0,62.15277777777778,1400.0 -INET_PL_164_EE_4,EUGAL_14,['INET_PL_164'],"['INET_N_358', 'INET_N_529']","[50.621, 50.5859]","[13.473, 13.441]","['DE', 'CZ']",0.0,50.60345,4.510642594110564,13.457,100.0,0.0,2022.0,62.15277777777778,1400.0 -INET_PL_170_EE_0,EUGAL_20,['INET_PL_170'],"['INET_N_889', 'INET_N_741']","[54.151055, 52.4483075]","[13.655607, 13.9567212]","['DE', 'DE']",0.0,53.29968125,190.45059904872093,13.8061641,100.0,0.0,2022.0,62.15277777777778,1400.0 -INET_PL_170_EE_1,EUGAL_21,['INET_PL_170'],"['INET_N_741', 'INET_N_1199']","[52.4483075, 52.07784]","[13.9567212, 13.539383]","['DE', 'DE']",0.0,52.263073750000004,50.05184857784196,13.7480521,100.0,0.0,2022.0,62.15277777777778,1400.0 -INET_PL_225,Gernsheim_NKP,['INET_PL_225'],"['INET_N_536', 'INET_N_615']","[49.743662, 49.76]","[8.55088, 8.7]","['DE', 'DE']",0.0,49.751830999999996,10.869579409338078,8.62544,60.182838763436365,0.0,1983.0,2.032269590685856,500.0 -INET_PL_267_EE_2,JAGAL_12,['INET_PL_267'],"['INET_N_1199', 'INET_N_185']","[52.07784, 51.703309]","[13.539383, 12.251789]","['DE', 'DE']",0.0,51.8905745,97.71309599544736,12.895586000000002,83.52772333778276,1.0,1999.0,31.78589548571759,1200.0 -INET_PL_267_EE_3,JAGAL_13,['INET_PL_267'],"['INET_N_185', 'INET_N_1266']","[51.703309, 50.814223]","[12.251789, 12.232909]","['DE', 'DE']",0.0,51.258765999999994,98.90161842392115,12.242349,83.52772333778276,1.0,1999.0,31.78589548571759,1200.0 -INET_PL_272_EE_3,JAMAL_13,['INET_PL_272'],"['INET_N_1630', 'LKD_N_931']","[52.7074, 52.427]","[18.9589, 14.543]","['PL ', 'DE']",0.0,52.5672,300.1305935197765,16.75095,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_4,JAMAL_14,['INET_PL_272'],"['LKD_N_931', 'INET_N_898']","[52.427, 52.5006547]","[14.543, 16.07]","['DE', 'PL']",0.0,52.46382735,103.80376696220702,15.3065,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_316,Lingen_PS,['INET_PL_316'],"['INET_N_867', 'INET_N_867']","[52.4807, 52.4807]","[7.3062, 7.3062]","['DE', 'DE']",0.0,52.4807,0.0,7.3062,100.0,0.0,2009.0,3.9,1420.0 -INET_PL_348,MAGAL2France,['INET_PL_348'],"['INET_N_938', 'INET_N_819']","[49.144, 48.7289]","[7.27, 6.295]","['DE', 'FR']",0.0,48.93645,84.8924548930123,6.7825,76.80652874754169,0.0,1983.0,25.2375,998.4639333647048 -INET_PL_368_EE_0,MEGAL_Nord_10,['INET_PL_368'],"['INET_N_1595', 'INET_N_1258']","[49.644, 49.633]","[12.496, 12.319]","['DE', 'DE']",0.0,49.6385,12.80846972657979,12.4075,80.0,3.0,1980.0,24.97463216527778,1200.0 -INET_PL_368_EE_4,MEGAL_Nord_14,['INET_PL_368'],"['INET_N_1240', 'INET_N_536']","[49.841916, 49.743662]","[9.948338, 8.55088]","['DE', 'DE']",0.0,49.792789,100.93613357293995,9.249609,80.0,3.0,1980.0,24.97463216527778,1200.0 -INET_PL_368_EE_5,MEGAL_Nord_15,['INET_PL_368'],"['INET_N_536', 'INET_N_972']","[49.743662, 49.376405]","[8.55088, 7.567024]","['DE', 'DE']",0.0,49.5600335,81.89850105170551,8.058952,80.0,3.0,1980.0,24.97463216527778,1200.0 -INET_PL_368_EE_6,MEGAL_Nord_16,['INET_PL_368'],"['INET_N_972', 'INET_N_1069']","[49.376405, 49.11]","[7.567024, 7.22]","['DE', 'DE']",0.0,49.243202499999995,38.89833129123257,7.393511999999999,80.0,3.0,1980.0,24.97463216527778,1200.0 -INET_PL_376_EE_1,MEGAL_Nord_Loop_11,['INET_PL_376'],"['INET_N_1258', 'INET_N_464']","[49.633, 49.5845]","[12.319, 11.6307]","['DE', 'DE']",0.0,49.60875,49.90309094659248,11.97485,80.0,0.0,1980.0,24.97463216527778,1100.0 -INET_PL_376_EE_6,MEGAL_Nord_Loop_16,['INET_PL_376'],"['INET_N_972', 'INET_N_1069']","[49.376405, 49.11]","[7.567024, 7.22]","['DE', 'DE']",0.0,49.243202499999995,38.89833129123257,7.393511999999999,80.0,0.0,1980.0,24.97463216527778,1100.0 -INET_PL_384_EE_2,MEGAL_Sued_1_12,['INET_PL_384'],"['INET_N_1626', 'INET_N_1624']","[48.944, 48.573853]","[12.7594, 13.721864]","['DE', 'DE']",0.0,48.7589265,81.70407517247548,13.240632,67.5,0.0,1980.0,24.97463216527778,800.0 -INET_PL_384_EE_3,MEGAL_Sued_1_13,['INET_PL_384'],"['INET_N_1624', 'INET_N_1071']","[48.573853, 48.55443]","[13.721864, 13.751863]","['DE', 'AT']",0.0,48.564141500000005,3.0892782935626375,13.7368635,67.5,0.0,1980.0,24.97463216527778,800.0 -INET_PL_408_EE_0,MIDAL_10,['INET_PL_408'],"['INET_N_799', 'INET_N_1276']","[53.36059, 53.37944]","[7.065929, 7.034]","['DE', 'DE']",0.0,53.370015,2.98095018476096,7.0499645,73.15164319219387,3.0,1993.0,14.530693773148144,800.0 -INET_PL_408_EE_1,MIDAL_11,['INET_PL_408'],"['INET_N_1276', 'INET_N_240']","[53.37944, 53.205843]","[7.034, 7.229683]","['DE', 'DE']",0.0,53.2926415,23.283119069624423,7.1318415,70.1877892952991,3.0,1993.0,14.530693773148144,800.0 -INET_PL_408_EE_2,MIDAL_12,['INET_PL_408'],"['INET_N_240', 'INET_N_575']","[53.205843, 53.17]","[7.229683, 7.39]","['DE', 'DE']",0.0,53.1879215,11.404382347448239,7.309841499999999,70.1877892952991,3.0,1993.0,14.530693773148144,800.0 -INET_PL_408_EE_6,MIDAL_16,['INET_PL_408'],"['INET_N_870', 'INET_N_1215']","[52.05857, 50.785275]","[8.699208, 9.788964]","['DE', 'DE']",0.0,51.4219225,160.53174440614015,9.244086,70.1877892952991,3.0,1993.0,14.530693773148144,800.0 -INET_PL_484,Nordschwarzwaldleitung,['INET_PL_484'],"['INET_N_850', 'INET_N_82']","[48.799, 48.953]","[9.01, 8.24]","['DE', 'DE']",0.0,48.876000000000005,58.875815304293255,8.625,80.0,0.0,2016.0,4.589900761271087,600.0 -INET_PL_492_EE_0,OPAL_Nord_10,['INET_PL_492'],"['INET_N_889', 'INET_N_741']","[54.151055, 52.4483075]","[13.655607, 13.9567212]","['DE', 'DE']",0.0,53.29968125,190.45059904872093,13.8061641,100.0,0.0,2011.0,41.43518518518518,1400.0 -INET_PL_492_EE_1,OPAL_Nord_11,['INET_PL_492'],"['INET_N_741', 'INET_N_1199']","[52.4483075, 52.07784]","[13.9567212, 13.539383]","['DE', 'DE']",0.0,52.263073750000004,50.05184857784196,13.7480521,100.0,0.0,2011.0,41.43518518518518,1400.0 -INET_PL_495_EE_0,OPAL_Sued0,['INET_PL_495'],"['INET_N_1199', 'INET_N_1605']","[52.07784, 51.766]","[13.539383, 13.685]","['DE', 'DE']",0.0,51.92192,36.09564473618733,13.612191500000002,100.0,0.0,2011.0,41.43518518518518,1400.0 -INET_PL_495_EE_1,OPAL_Sued1,['INET_PL_495'],"['INET_N_1605', 'INET_N_1077']","[51.766, 50.645421]","[13.685, 13.359861]","['DE', 'DE']",0.0,51.205710499999995,126.68422453467142,13.5224305,100.0,0.0,2011.0,41.43518518518518,1400.0 -INET_PL_523_EE_0,PENTA_West0,['INET_PL_523'],"['INET_N_241', 'INET_N_1230']","[48.1835, 48.21]","[12.8531, 13.48]","['DE', 'AT']",0.0,48.19675,46.57348382673931,13.16655,70.0,0.0,1983.0,12.497733333333334,700.0 -INET_PL_627_EE_0,STEGAL0,['INET_PL_627'],"['INET_N_209', 'INET_N_1077']","[50.635, 50.645421]","[13.39, 13.359861]","['CZ', 'DE']",0.0,50.640210499999995,2.421477136952263,13.374930500000001,70.1877892952991,3.0,1993.0,3.0083333333333333,800.0 -INET_PL_627_EE_4,STEGAL4,['INET_PL_627'],"['INET_N_421', 'INET_N_1635']","[50.902646, 51.006]","[11.006814, 10.49]","['DE', 'DE']",0.0,50.954323,37.993066798087725,10.748407,70.1877892952991,3.0,1993.0,11.10023465003349,800.0 -INET_PL_634_EE_0,STEGAL_Loop0,['INET_PL_634'],"['INET_N_1635', 'INET_N_421']","[51.006, 50.902646]","[10.49, 11.006814]","['DE', 'DE']",0.0,50.954323,37.993066798087725,10.748407,76.85775631654093,0.0,2006.0,3.9777777777777774,1000.0 -INET_PL_634_EE_1,STEGAL_Loop1,['INET_PL_634'],"['INET_N_421', 'INET_N_396']","[50.902646, 50.856735]","[11.006814, 11.553175]","['DE', 'DE']",0.0,50.879690499999995,38.6823881606467,11.2799945,76.85775631654093,0.0,2006.0,3.9777777777777774,1000.0 -INET_PL_639,Stolberg_Eynatten,['INET_PL_639'],"['INET_N_477', 'INET_N_1428']","[50.7, 50.786035]","[6.09, 6.177002]","['BE', 'DE']",1.0,50.7430175,11.361272968286855,6.133501,100.0,0.0,2018.0,5.508333333333333,700.0 -INET_PL_677_EE_0,TENP0,['INET_PL_677'],"['INET_N_1597', 'INET_N_644']","[47.566, 47.835122]","[7.9, 7.596259]","['DE', 'DE']",1.0,47.700561,37.590663140442956,7.7481295,73.52277280592001,0.0,1975.0,17.595741435185182,900.0 -INET_PL_677_EE_1,TENP1,['INET_PL_677'],"['INET_N_644', 'INET_N_1336']","[47.835122, 48.727117]","[7.596259, 8.055866]","['DE', 'DE']",1.0,48.2811195,104.88652707919337,7.8260625,73.52277280592001,0.0,1975.0,17.595741435185182,900.0 -INET_PL_677_EE_2,TENP2,['INET_PL_677'],"['INET_N_1336', 'INET_N_82']","[48.727117, 48.953]","[8.055866, 8.24]","['DE', 'DE']",1.0,48.8400585,28.512634917252566,8.147933,73.52277280592001,0.0,1975.0,17.595741435185182,900.0 -INET_PL_677_EE_4,TENP4,['INET_PL_677'],"['INET_N_973', 'INET_N_1428']","[49.374422, 50.786035]","[7.563924, 6.177002]","['DE', 'DE']",1.0,50.080228500000004,185.60824901788524,6.870463,73.52277280592001,0.0,1975.0,17.595741435185182,900.0 -INET_PL_677_EE_5,TENP5,['INET_PL_677'],"['INET_N_1428', 'INET_N_186']","[50.786035, 50.817365]","[6.177002, 6.021767]","['DE', 'NL']",1.0,50.8017,11.455613347313404,6.099384499999999,73.52277280592001,0.0,1975.0,17.595741435185182,900.0 -INET_PL_684_EE_0,TENP_Loop0,['INET_PL_684'],"['INET_N_1597', 'INET_N_644']","[47.566, 47.835122]","[7.9, 7.596259]","['DE', 'DE']",1.0,47.700561,37.590663140442956,7.7481295,73.52277280592001,0.0,2006.0,13.2475,900.0 -INET_PL_684_EE_1,TENP_Loop1,['INET_PL_684'],"['INET_N_644', 'INET_N_1336']","[47.835122, 48.727117]","[7.596259, 8.055866]","['DE', 'DE']",1.0,48.2811195,104.88652707919337,7.8260625,73.52277280592001,0.0,2006.0,0.3666666666666667,900.0 -INET_PL_684_EE_2,TENP_Loop2,['INET_PL_684'],"['INET_N_1336', 'INET_N_82']","[48.727117, 48.953]","[8.055866, 8.24]","['DE', 'DE']",1.0,48.8400585,28.512634917252566,8.147933,73.52277280592001,0.0,2006.0,15.052937368210664,900.0 -INET_PL_684_EE_3,TENP_Loop3,['INET_PL_684'],"['INET_N_82', 'INET_N_973']","[48.953, 49.374422]","[8.24, 7.563924]","['DE', 'DE']",1.0,49.163711000000006,67.93501328112788,7.901962,73.52277280592001,0.0,2006.0,25.2375,900.0 -INET_PL_684_EE_4,TENP_Loop4,['INET_PL_684'],"['INET_N_973', 'INET_N_1428']","[49.374422, 50.786035]","[7.563924, 6.177002]","['DE', 'DE']",1.0,50.080228500000004,185.60824901788524,6.870463,73.52277280592001,0.0,2006.0,11.179166666666667,900.0 -INET_PL_684_EE_5,TENP_Loop5,['INET_PL_684'],"['INET_N_1428', 'INET_N_186']","[50.786035, 50.817365]","[6.177002, 6.021767]","['DE', 'NL']",1.0,50.8017,11.455613347313404,6.099384499999999,73.52277280592001,0.0,2006.0,16.491666666666667,900.0 -INET_PL_703_EE_0,Transgas_10,['INET_PL_703'],"['INET_N_1595', 'INET_N_1263']","[49.644, 49.663384]","[12.496, 12.549857]","['DE', 'CZ']",0.0,49.653692,4.437318996594529,12.522928499999999,73.52277280592001,0.0,1983.0,37.7875,900.0 -INET_PL_724_EE_2,Transitgas_12,['INET_PL_724'],"['INET_N_1597', 'INET_N_885']","[47.566, 47.386]","[7.9, 7.946]","['DE', 'CH']",0.0,47.476,20.317848133646848,7.923,67.5,0.0,2002.0,13.2475,1200.0 -INET_PL_808_EE_0,No83_10,['INET_PL_808'],"['INET_N_834', 'INET_N_1244']","[50.650638, 50.58375]","[9.371877, 9.367797]","['DE', 'DE']",0.0,50.617194,7.445511171345138,9.369837,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_990_EE_6,NordStream_16,['INET_PL_990'],"['LKD_N_937', 'INET_N_889']","[54.8, 54.151055]","[15.2, 13.655607]","['XX', 'DE']",0.0,54.4755275,123.17476968130576,14.4278035,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_998_EE_6,NordStream_26,['INET_PL_998'],"['INET_N_1043', 'INET_N_889']","[54.6, 54.151055]","[15.2, 13.655607]","['XX', 'DE']",0.0,54.375527500000004,111.82357058178283,14.4278035,89.11971609078725,0.0,2025.0,72.58333333333333,1367.6767736690656 -INET_PL_1445,Spijk_Emden,['INET_PL_1445'],"['INET_N_1397', 'INET_N_436']","[53.39, 53.3422]","[6.831, 7.2062]","['NL', 'DE']",0.0,53.3661,25.463554408982024,7.0186,76.80652874754169,0.0,1983.0,61.73158333333333,998.4639333647048 -INET_PL_1468,Belfeld_St Hubert,['INET_PL_1468'],"['INET_N_145', 'INET_N_1406']","[51.3, 51.384]","[6.132, 6.457]","['NL', 'DE']",0.0,51.342,24.43822224513431,6.294499999999999,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1534,Reckrod_UGS_Reckrod,['INET_PL_1534'],"['INET_N_1215', 'INET_N_1530']","[50.785275, 50.783408]","[9.788964, 9.799224]","['DE', 'DE']",1.0,50.7843415,0.750815188442757,9.794094000000001,73.25843294937569,0.0,1983.0,18.512889200388145,979.1871631301881 -NO_PS_29,"40 Gas EUROPIPE-SCP, EMDEN",['NO_327394'],"['NO_N_31', 'Storages_0']","[55.706289109032674, 55.58123530291533, 55.33561167171387, 55.1226474502047, 54.908636146045474, 54.72823631130785, 54.573152840700324, 54.42001437157985, 54.255375685919226, 54.221183115294224, 54.20999687341991, 54.19913862062552, 54.18059322146527, 54.17118205601514, 54.164901984251436, 54.15570199776954, 54.14976294245024, 54.0344690323319, 54.02424385193743, 54.01079063928704, 53.95463211393392, 53.947740074548896, 53.891717570969575, 53.877314420075066, 53.858078147631346, 53.85043607169235, 53.84640004373232, 53.8326560287914, 53.811063830659975, 53.80603576514494, 53.800410648684796, 53.69078875229302, 53.69158875531927, 53.6717874868884]","[4.221169247187954, 4.4330383883199165, 4.842701988264056, 5.192212675668069, 5.538107160487414, 5.825631839286454, 6.069999444923722, 6.3087937676600685, 6.56282279163477, 6.614430248633817, 6.626342921746948, 6.636279532259189, 6.656177650719771, 6.6696173052673196, 6.682070832990617, 6.711026885892352, 6.723944414520284, 6.899224682815388, 6.913772388163972, 6.935154374324968, 7.05742534855769, 7.074732018613137, 7.198818026430375, 7.2287942621358345, 7.262350741998499, 7.278643407145421, 7.288362787549689, 7.328836275783801, 7.376436194279348, 7.385744594328862, 7.392191937901882, 7.459850098741163, 7.457690017608659, 7.401169150426581]","['NO', 'DE']",0.0,54.210365709508814,317.29303236856043,6.645105152726908,77.39135367824028,0.0,1995.0,17.6125,1016.0 -2136,"40 Gas EUROPIPE-SCP, EMDEN",['NO_327394'],"['BorderPoints_0', 'NO_N_27']","[53.6717874868884, 53.67898689817584]","[7.401169150426581, 7.325116943173824]","['NO', 'DE']",0.0,54.210365709508814,317.29303236856043,6.645105152726908,77.39135367824028,0.0,1995.0,17.6125,1016.0 -INET_PL_1,AlcazarDeSanJuan_Chinchilla,['INET_PL_1'],"['INET_N_23', 'INET_N_295']","[39.3900748, 38.892435]","[-3.3500984, -1.719831]","['ES', 'ES']",0.0,39.1412549,151.1390654104781,-2.5349646999999997,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_3,Tarancon_Madrid,['INET_PL_3'],"['INET_N_1460', 'INET_N_904']","[40.01, 40.223]","[-3.207, -3.681]","['ES', 'ES']",0.0,40.1165,46.76463181147863,-3.444,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_5,Alessandria_Cortemaggiore,['INET_PL_5'],"['INET_N_317', 'INET_N_26']","[44.991076, 44.90008]","[9.920891, 8.60944]","['IT', 'IT']",0.0,44.945578,103.73911546537694,9.265165499999998,75.0,0.0,1983.0,15.660429644038864,914.4 -INET_PL_7,Almendralejo_Badajoz,['INET_PL_7'],"['INET_N_36', 'INET_N_108']","[38.711202, 38.87665]","[-6.382539, -6.9714]","['ES', 'ES']",0.0,38.793926,54.26567651505522,-6.6769695,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_9,Almendralejo_Zamora,['INET_PL_9'],"['INET_N_36', 'INET_N_1653']","[38.711202, 41.506]","[-6.382539, -5.644]","['ES', 'ES']",0.0,40.108601,317.14656408978936,-6.0132695,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_11,Altamura_Candela,['INET_PL_11'],"['INET_N_252', 'INET_N_46']","[41.136273, 40.827134]","[15.514454, 16.553126]","['IT', 'IT']",0.0,40.9817035,93.7495577314835,16.03379,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_13,Altamura_Latiano,['INET_PL_13'],"['INET_N_832', 'INET_N_46']","[40.550803, 40.827134]","[17.717742, 16.553126]","['IT', 'IT']",0.0,40.6889685,102.92069636172059,17.135434,75.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_15,Altamura_MonteAlpi,['INET_PL_15'],"['INET_N_991', 'INET_N_46']","[40.626457, 40.827134]","[15.985341, 16.553126]","['IT', 'IT']",0.0,40.7267955,52.8095084425058,16.2692335,75.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_17,Altamura_Palagiano,['INET_PL_17'],"['INET_N_1106', 'INET_N_46']","[40.578453, 40.827134]","[17.038207, 16.553126]","['IT', 'IT']",0.0,40.7027935,49.37837425697909,16.7956665,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_19,Chazelles_Roussines,['INET_PL_19'],"['INET_N_285', 'INET_N_1261']","[45.64714, 46.463]","[0.367019, 1.38]","['FR', 'FR']",0.0,46.05507,119.78577478824157,0.8735094999999999,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_21,Arad_Szeged,['INET_PL_21'],"['INET_N_71', 'INET_N_1449']","[46.1817, 46.302801]","[21.31056, 20.194969]","['RO', 'HU']",0.0,46.2422505,86.86981590950965,20.752764499999998,72.26453880578005,0.0,1983.0,4.9929398148148145,700.0 -INET_PL_23,Arnoldstein_Tarvisio_Extra,['INET_PL_23'],"['INET_N_1468', 'INET_N_76']","[46.505528, 46.5499903]","[13.592806, 13.7057619]","['IT', 'AT']",0.0,46.527759149999994,9.958866273008491,13.649283950000001,76.80652874754169,0.0,1983.0,47.86666666666667,998.4639333647048 -INET_PL_25_EE_0,ArtereDeLAdour0,['INET_PL_25'],"['GSE_N_186', 'INET_N_174']","[43.3122, 43.333204]","[-1.986, -1.743022]","['ES', 'FR']",0.0,43.322702,19.80004167551746,-1.864511,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_25_EE_1,ArtereDeLAdour1,['INET_PL_25'],"['INET_N_174', 'INET_N_141']","[43.333204, 43.493]","[-1.743022, -1.462]","['FR', 'FR']",0.0,43.413102,28.835672934684723,-1.602511,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_28,BBL,['INET_PL_28'],"['INET_N_103', 'INET_N_65']","[52.8506, 52.86]","[1.466, 4.822]","['GB', 'NL']",1.0,52.8553,225.38404933548642,3.144,135.0,1.0,2006.0,18.161041666666666,914.0 -INET_PL_30,Benevento_Biccari,['INET_PL_30'],"['INET_N_168', 'INET_N_149']","[41.396964, 41.128905]","[15.195382, 14.781876]","['IT', 'IT']",0.0,41.2629345,45.65430524382574,14.988629,64.0,0.0,1983.0,4.842896986426885,609.0 -INET_PL_32,Bernalda_Grumento,['INET_PL_32'],"['INET_N_577', 'INET_N_157']","[40.316324, 40.412126]","[15.90466, 16.688712]","['IT', 'IT']",0.0,40.364225000000005,67.29777547648362,16.296686,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_34,Berneau_Eynatten,['INET_PL_34'],"['INET_N_161', 'INET_N_477']","[50.753777, 50.7]","[5.739351, 6.09]","['BE', 'BE']",0.0,50.7268885,25.40358987522274,5.9146754999999995,76.80652874754169,0.0,1983.0,5.508333333333333,998.4639333647048 -INET_PL_36,Berneau_Gravenvoeren,['INET_PL_36'],"['INET_N_161', 'INET_N_564']","[50.753777, 50.7587829]","[5.739351, 5.7611628]","['BE', 'BE']",0.0,50.75627995,1.632693831453437,5.7502569,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_38,Beziers_Barbaira,['INET_PL_38'],"['INET_N_166', 'INET_N_127']","[43.34632, 43.1756]","[3.231472, 2.513]","['FR', 'FR']",0.0,43.26096,61.217047219594306,2.872236,75.06563383292676,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_40,BGTP,['INET_PL_40'],"['INET_N_144', 'INET_N_120']","[54.589, 54.84019]","[-5.911, -5.788932]","['GB', 'GB']",0.0,54.714595,29.0197714347825,-5.849966,75.0,0.0,1983.0,4.589900761271087,600.0 -INET_PL_42,Biccari_Candela,['INET_PL_42'],"['INET_N_252', 'INET_N_168']","[41.136273, 41.396964]","[15.514454, 15.195382]","['IT', 'IT']",0.0,41.2666185,39.40077754479442,15.354918000000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_44,Bordano_MoggioUdinesse_1,['INET_PL_44'],"['INET_N_981', 'INET_N_196']","[46.398538, 46.31489]","[13.186671, 13.105341]","['IT', 'IT']",0.0,46.356714,11.204826012488082,13.146006,75.0,0.0,1983.0,47.86666666666667,1219.2 -INET_PL_46,Bordano_MoggioUdinesse_2,['INET_PL_46'],"['INET_N_981', 'INET_N_196']","[46.398538, 46.31489]","[13.186671, 13.105341]","['IT', 'IT']",0.0,46.356714,11.204826012488082,13.146006,70.0,0.0,1983.0,47.86666666666667,1066.8 -INET_PL_48,Bosentino_Trento_1,['INET_PL_48'],"['INET_N_1506', 'INET_N_200']","[46.074613, 46.001982]","[11.129449, 11.224358]","['IT', 'IT']",0.0,46.0382975,10.907285472430196,11.1769035,70.0,0.0,1983.0,0.059660743535608685,406.4 -INET_PL_50,Bosentino_Trento_2,['INET_PL_50'],"['INET_N_1506', 'INET_N_200']","[46.074613, 46.001982]","[11.129449, 11.224358]","['IT', 'IT']",0.0,46.0382975,10.907285472430196,11.1769035,64.0,0.0,1983.0,0.059660743535608685,254.0 -INET_PL_52_EE_0,Voisines_Lyon0,['INET_PL_52'],"['INET_N_899', 'INET_N_467']","[45.754, 46.336132]","[4.842, 5.212561]","['FR', 'FR']",0.0,46.045066,70.7887501646423,5.0272805,73.30339705766276,0.0,1983.0,21.458806833847866,1041.8767378941177 -INET_PL_52_EE_1,Voisines_Lyon1,['INET_PL_52'],"['INET_N_467', 'INET_N_1110']","[46.336132, 46.958]","[5.212561, 5.028608]","['FR', 'FR']",0.0,46.647065999999995,70.58199088477593,5.1205845,73.30339705766276,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_52_EE_2,Voisines_Lyon2,['INET_PL_52'],"['INET_N_1110', 'INET_N_1584']","[46.958, 47.95245]","[5.028608, 5.14]","['FR', 'FR']",0.0,47.455225,110.92928343451165,5.0843039999999995,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_56_EE_0,Morelmaison_Paris0,['INET_PL_56'],"['INET_N_1116', 'INET_N_473']","[48.852, 48.6539418]","[2.371, 2.6357442]","['FR', 'FR']",0.0,48.752970899999994,29.36420336383068,2.5033721,63.51782227405727,0.0,1983.0,4.589900761271087,600.0 -INET_PL_56_EE_1,Morelmaison_Paris1,['INET_PL_56'],"['INET_N_473', 'INET_N_363']","[48.6539418, 48.310884]","[2.6357442, 3.829932]","['FR', 'FR']",0.0,48.4824129,95.9576137957858,3.2328381,63.51782227405727,0.0,1983.0,4.589900761271087,600.0 -INET_PL_56_EE_2,Morelmaison_Paris2,['INET_PL_56'],"['INET_N_363', 'INET_N_1584']","[48.310884, 47.95245]","[3.829932, 5.14]","['FR', 'FR']",0.0,48.131667,105.10850231408133,4.484966,63.51782227405727,0.0,1983.0,4.589900761271087,600.0 -INET_PL_56_EE_3,Morelmaison_Paris3,['INET_PL_56'],"['INET_N_1584', 'INET_N_999']","[47.95245, 48.43]","[5.14, 5.819]","['FR', 'FR']",0.0,48.191225,73.18735660190374,5.4795,63.51782227405727,0.0,1983.0,4.589900761271087,600.0 -INET_PL_61,Brest_Donges,['INET_PL_61'],"['INET_N_376', 'INET_N_219']","[47.332, 48.402]","[-2.069, -4.48]","['FR', 'FR']",0.0,47.867000000000004,215.69436056033916,-3.2745,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_63,Podisor-Giurgiu,['INET_PL_63'],"['INET_N_1152', 'INET_N_544']","[44.3876, 43.9046]","[25.716, 25.9625]","['RO', 'RO']",0.0,44.146100000000004,57.21310807679338,25.83925,76.80652874754169,0.0,1983.0,0.32916666666666666,998.4639333647048 -INET_PL_65_EE_0,BRUA0,['INET_PL_65'],"['INET_N_1152', 'INET_N_167']","[44.3876, 44.7815366]","[25.716, 23.4907078]","['RO', 'RO']",0.0,44.5845683,181.6440674347512,24.603353900000002,70.62133715167982,0.0,1983.0,4.994887268518518,813.0 -INET_PL_65_EE_1,BRUA1,['INET_PL_65'],"['INET_N_167', 'INET_N_706']","[44.7815366, 45.4591308]","[23.4907078, 22.186488]","['RO', 'RO']",0.0,45.1203337,127.11375357504396,22.8385979,70.62133715167982,0.0,1983.0,4.994887268518518,813.0 -INET_PL_65_EE_2,BRUA2,['INET_PL_65'],"['INET_N_706', 'INET_N_1214']","[45.4591308, 45.801978]","[22.186488, 21.50833]","['RO', 'RO']",0.0,45.630554399999994,65.08878033423902,21.847409,70.62133715167982,0.0,1983.0,4.994887268518518,813.0 -INET_PL_69,BRUA_Extra_1,['INET_PL_69'],"['INET_N_71', 'INET_N_1214']","[46.1817, 45.801978]","[21.31056, 21.50833]","['RO', 'RO']",0.0,45.991839,44.916479589164126,21.409444999999998,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_71_EE_0,BRUA_Extra_20,['INET_PL_71'],"['INET_N_1449', 'INET_N_1556']","[46.302801, 46.823766]","[20.194969, 19.769095]","['HU', 'HU']",0.0,46.5632835,66.47227356622939,19.982032,72.26453880578005,0.0,1983.0,5.916666666666668,1040.110307722841 -INET_PL_71_EE_1,BRUA_Extra_21,['INET_PL_71'],"['INET_N_1556', 'INET_N_238']","[46.823766, 47.49059]","[19.769095, 19.245]","['HU', 'HU']",0.0,47.157178,84.09838960731588,19.5070475,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_71_EE_2,BRUA_Extra_22,['INET_PL_71'],"['INET_N_238', 'INET_N_583']","[47.49059, 47.687]","[19.245, 17.65]","['HU', 'HU']",0.0,47.588795,121.63037689165361,18.447499999999998,76.80652874754169,0.0,1983.0,6.379166666666666,998.4639333647048 -INET_PL_71_EE_3,BRUA_Extra_23,['INET_PL_71'],"['INET_N_583', 'INET_N_1001']","[47.687, 47.8681469]","[17.65, 17.2689169]","['HU', 'HU']",0.0,47.77757345,34.890876182405,17.45945845,76.80652874754169,0.0,1983.0,6.379166666666666,998.4639333647048 -INET_PL_71_EE_4,BRUA_Extra_24,['INET_PL_71'],"['INET_N_1001', 'INET_N_357']","[47.8681469, 48.01]","[17.2689169, 17.107]","['HU', 'AT']",0.0,47.939073449999995,19.86264735960982,17.18795845,76.80652874754169,0.0,1983.0,6.379166666666666,998.4639333647048 -INET_PL_77_EE_0,Burgos_SanSebastian0,['INET_PL_77'],"['GSE_N_186', 'INET_N_601']","[43.3122, 42.565847]","[-1.986, -2.882395]","['ES', 'ES']",0.0,42.9390235,110.54126428607732,-2.4341975,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_77_EE_1,Burgos_SanSebastian1,['INET_PL_77'],"['INET_N_601', 'INET_N_243']","[42.565847, 42.346]","[-2.882395, -3.691]","['ES', 'ES']",0.0,42.4559235,70.72009816120081,-3.2866975,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_80,Burgos_Santander,['INET_PL_80'],"['INET_N_1314', 'INET_N_243']","[43.327, 42.346]","[-4.2, -3.691]","['ES', 'ES']",0.0,42.8365,116.74695953099612,-3.9455,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_82,Burgos_Valladolid,['INET_PL_82'],"['INET_N_1551', 'INET_N_243']","[41.6552, 42.346]","[-4.7237, -3.691]","['ES', 'ES']",0.0,42.0006,114.84903102950337,-4.20735,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_84,CalderariEnna_Gela,['INET_PL_84'],"['INET_N_530', 'INET_N_246']","[37.052698, 37.560406]","[14.269219, 14.366079]","['IT', 'IT']",0.0,37.306551999999996,57.11875656579064,14.317649,75.0,0.0,1983.0,20.791666666666668,914.0 -INET_PL_86,CalderariEnna_Menfi_1,['INET_PL_86'],"['INET_N_950', 'INET_N_246']","[37.602313, 37.560406]","[12.968817, 14.366079]","['IT', 'IT']",0.0,37.581359500000005,123.25332901564924,13.667448,75.0,0.0,1983.0,47.92916666666667,1219.0 -INET_PL_88,CalderariEnna_Menfi_2,['INET_PL_88'],"['INET_N_950', 'INET_N_246']","[37.602313, 37.560406]","[12.968817, 14.366079]","['IT', 'IT']",0.0,37.581359500000005,123.25332901564924,13.667448,75.0,0.0,1983.0,47.92916666666667,1219.0 -INET_PL_90,Caldonazzo_Bosentino,['INET_PL_90'],"['INET_N_200', 'INET_N_247']","[46.001982, 45.993482]","[11.224358, 11.261135]","['IT', 'IT']",0.0,45.997732,2.9949048020623454,11.242746499999999,64.0,0.0,1983.0,0.059660743535608685,254.0 -INET_PL_92,CampagnaLupia_RavennaTerra,['INET_PL_92'],"['INET_N_272', 'INET_N_249']","[45.133742, 45.353355]","[12.08022, 12.097296]","['IT', 'IT']",0.0,45.2435485,24.464097092423245,12.088758,64.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_94,Campochiaro_Melizzano,['INET_PL_94'],"['INET_N_947', 'INET_N_251']","[41.161769, 41.447384]","[14.505163, 14.508592]","['IT', 'IT']",0.0,41.304576499999996,31.770200803821055,14.5068775,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_96,CampoMaior_Leira,['INET_PL_96'],"['INET_N_847', 'INET_N_250']","[39.747, 38.982]","[-8.9086, -7.059]","['PT', 'PT']",0.0,39.3645,180.38073013098946,-7.9838000000000005,67.2196539708465,0.0,1983.0,7.973437539223207,711.0 -INET_PL_98,Cartagena_Montesa,['INET_PL_98'],"['INET_N_992', 'INET_N_260']","[38.959997, 37.624]","[-0.616608, -0.998]","['ES', 'ES']",0.0,38.291998500000005,152.28663698864258,-0.807304,81.14846041575264,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_100,Cavarzere_Minerbio,['INET_PL_100'],"['INET_N_967', 'INET_N_272']","[44.615731, 45.133742]","[11.497959, 12.08022]","['IT', 'IT']",0.0,44.8747365,73.66280797052171,11.7890895,70.38113357171146,0.0,1983.0,15.643424651921414,914.0 -INET_PL_102,Cavarzere_RavennaTerra,['INET_PL_102'],"['INET_N_1211', 'INET_N_272']","[44.416686, 45.133742]","[12.306514, 12.08022]","['IT', 'IT']",0.0,44.775214,81.7348837192739,12.193367,64.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_104,Cervignano_Ripalta,['INET_PL_104'],"['INET_N_1242', 'INET_N_279']","[45.312155, 45.372148]","[9.700705, 9.424874]","['IT', 'IT']",0.0,45.3421515,22.57339500482971,9.562789500000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_106,Cervignano_Sergnano,['INET_PL_106'],"['INET_N_1346', 'INET_N_279']","[45.427834, 45.372148]","[9.698543, 9.424874]","['IT', 'IT']",0.0,45.399991,22.253031085671743,9.561708500000002,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_108,Cervignano_Settala_1,['INET_PL_108'],"['INET_N_1350', 'INET_N_279']","[45.451046, 45.372148]","[9.403412, 9.424874]","['IT', 'IT']",0.0,45.411597,8.934389928964192,9.414143,75.0,0.0,1983.0,13.560326138201887,863.6 -INET_PL_110,Cervignano_Settala_2,['INET_PL_110'],"['INET_N_1350', 'INET_N_279']","[45.451046, 45.372148]","[9.403412, 9.424874]","['IT', 'IT']",0.0,45.411597,8.934389928964192,9.414143,70.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_112,Chieti_Cupello,['INET_PL_112'],"['INET_N_335', 'INET_N_294']","[42.024817, 42.358755]","[14.801403, 14.141819]","['IT', 'IT']",0.0,42.191786,65.83504166079295,14.471611,70.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_114,Chinchilla_Montesa,['INET_PL_114'],"['INET_N_295', 'INET_N_992']","[38.892435, 38.959997]","[-1.719831, -0.616608]","['ES', 'ES']",0.0,38.926216,95.75870089198364,-1.1682195000000002,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_116,Chivasso_Mortara,['INET_PL_116'],"['INET_N_1000', 'INET_N_298']","[45.252239, 45.1856]","[8.737499, 7.9016]","['IT', 'IT ']",0.0,45.2189195,65.9107252747037,8.3195495,75.0,0.0,1983.0,22.6906983281595,1067.0 -INET_PL_118,Chivasso_Poirino,['INET_PL_118'],"['INET_N_1156', 'INET_N_298']","[44.918811, 45.1856]","[7.844823, 7.9016]","['IT', 'IT ']",0.0,45.0522055,30.008406319825042,7.8732115,75.0,0.0,1983.0,6.347690911236935,660.0 -INET_PL_120_EE_0,Ciciliano_Melizzano0,['INET_PL_120'],"['INET_N_947', 'INET_N_1247']","[41.161769, 41.55]","[14.505163, 13.66]","['IT', 'IT']",0.0,41.3558845,82.72790472421491,14.0825815,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_120_EE_1,Ciciliano_Melizzano1,['INET_PL_120'],"['INET_N_1247', 'INET_N_300']","[41.55, 41.957909]","[13.66, 12.94136]","['IT', 'IT']",0.0,41.7539545,74.92976919771174,13.30068,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_123_EE_0,Cordoba_AlcazarDeSanJuan0,['INET_PL_123'],"['INET_N_314', 'INET_N_113']","[37.906, 38.19]","[-4.68003, -3.7803]","['ES', 'ES']",0.0,38.048,84.90469938941878,-4.230165,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_123_EE_1,Cordoba_AlcazarDeSanJuan1,['INET_PL_123'],"['INET_N_113', 'INET_N_579']","[38.19, 38.28]","[-3.7803, -3.386]","['ES', 'ES']",0.0,38.235,35.87447255967139,-3.58315,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_123_EE_2,Cordoba_AlcazarDeSanJuan2,['INET_PL_123'],"['INET_N_579', 'INET_N_23']","[38.28, 39.3900748]","[-3.386, -3.3500984]","['ES', 'ES']",0.0,38.835037400000004,123.51260744951692,-3.3680491999999997,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_127,Cordoba_Almendralejo,['INET_PL_127'],"['INET_N_314', 'INET_N_36']","[37.906, 38.711202]","[-4.68003, -6.382539]","['ES', 'ES']",0.0,38.308600999999996,173.49449235549113,-5.5312845,70.62133715167982,0.0,1983.0,11.587788904724416,813.0 -INET_PL_129,Cordoba_Jaen,['INET_PL_129'],"['INET_N_695', 'INET_N_314']","[37.779, 37.906]","[-4.05, -4.68003]","['ES', 'ES']",0.0,37.8425,57.11504603369626,-4.365015,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_131,Cordoba_Puertollano,['INET_PL_131'],"['INET_N_314', 'INET_N_1189']","[37.906, 38.6869]","[-4.68003, -4.1089]","['ES', 'ES']",0.0,38.29645,100.1504984194035,-4.394465,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_133,Cortemaggiore_Pontremoli,['INET_PL_133'],"['INET_N_1160', 'INET_N_317']","[44.372874, 44.991076]","[9.881342, 9.920891]","['IT', 'IT']",0.0,44.681975,68.8336030321768,9.9011165,36.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_135,Crotone_MaidaSEufemia,['INET_PL_135'],"['INET_N_907', 'INET_N_331']","[38.858958, 39.078971]","[16.364569, 17.113881]","['IT', 'IT']",0.0,38.9689645,69.26700569193147,16.739224999999998,70.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_137,Cupello_Biccari,['INET_PL_137'],"['INET_N_168', 'INET_N_335']","[41.396964, 42.024817]","[15.195382, 14.801403]","['IT', 'IT']",0.0,41.7108905,77.11821661453382,14.998392500000001,64.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_139,Cupello_Vastogirardi,['INET_PL_139'],"['GSE_N_143', 'INET_N_335']","[41.774614, 42.024817]","[14.260708, 14.801403]","['IT', 'IT']",0.0,41.8997155,52.70979531611698,14.5310555,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_146,Donges_Chazelles,['INET_PL_146'],"['INET_N_285', 'INET_N_376']","[45.64714, 47.332]","[0.367019, -2.069]","['FR', 'FR']",0.0,46.48957,264.4029336042197,-0.8509905,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_148_EE_0,Donges_Paris0,['INET_PL_148'],"['INET_N_1116', 'INET_N_165']","[48.852, 48.844032]","[2.371, 1.873865]","['FR', 'FR']",0.0,48.848016,36.39889939137942,2.1224325,72.78762126551973,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_148_EE_1,Donges_Paris1,['INET_PL_148'],"['INET_N_165', 'INET_N_1399']","[48.844032, 48.492532]","[1.873865, 1.261686]","['FR', 'FR']",0.0,48.668282,59.58870517566292,1.5677755,72.78762126551973,0.0,1983.0,21.416334132845055,1040.9997347811286 -INET_PL_148_EE_2,Donges_Paris2,['INET_PL_148'],"['INET_N_1399', 'INET_N_290']","[48.492532, 48.150232]","[1.261686, 0.6]","['FR', 'FR']",0.0,48.321382,62.00560323891444,0.9308430000000001,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_148_EE_3,Donges_Paris3,['INET_PL_148'],"['INET_N_290', 'INET_N_89']","[48.150232, 47.902617]","[0.6, -0.353136]","['FR', 'FR']",0.0,48.026424500000005,76.06381124651077,0.12343199999999999,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_148_EE_4,Donges_Paris4,['INET_PL_148'],"['INET_N_89', 'INET_N_1058']","[47.902617, 47.564751]","[-0.353136, -1.626916]","['FR', 'FR']",0.0,47.733684,102.43350276070197,-0.9900260000000001,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_148_EE_5,Donges_Paris5,['INET_PL_148'],"['INET_N_1058', 'INET_N_376']","[47.564751, 47.332]","[-1.626916, -2.069]","['FR', 'FR']",0.0,47.4483755,42.14275297299625,-1.847958,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_155_EE_0,Ellund_Alborg0,['INET_PL_155'],"['INET_N_22', 'INET_N_418']","[57.036, 55.617559]","[9.927, 9.3122919]","['DK', 'DK']",0.0,56.3267795,162.2618731354144,9.619645949999999,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_155_EE_1,Ellund_Alborg1,['INET_PL_155'],"['INET_N_418', 'LKD_N_930']","[55.617559, 54.80609]","[9.3122919, 9.29094]","['DK', 'DK']",0.0,55.2118245,90.26973090928323,9.30161595,76.80652874754169,0.0,1983.0,6.9375,998.4639333647048 -INET_PL_176,Flaibano_Bordano_1,['INET_PL_176'],"['INET_N_196', 'INET_N_494']","[46.31489, 46.057566]","[13.105341, 12.984152]","['IT', 'IT']",0.0,46.186228,30.105088270228304,13.044746499999999,58.0,0.0,1983.0,15.660429644038864,914.4 -INET_PL_178,Flaibano_Bordano_2,['INET_PL_178'],"['INET_N_196', 'INET_N_494']","[46.31489, 46.057566]","[13.105341, 12.984152]","['IT', 'IT']",0.0,46.186228,30.105088270228304,13.044746499999999,75.0,0.0,1983.0,30.781174886065095,1219.2 -INET_PL_180,Flaibano_Bordano_3,['INET_PL_180'],"['INET_N_196', 'INET_N_494']","[46.31489, 46.057566]","[13.105341, 12.984152]","['IT', 'IT']",0.0,46.186228,30.105088270228304,13.044746499999999,70.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_182,Flaibano_Gonars_1,['INET_PL_182'],"['INET_N_552', 'INET_N_494']","[45.897033, 46.057566]","[13.236542, 12.984152]","['IT', 'IT']",0.0,45.9772995,26.44715918732046,13.110347,70.0,0.0,1983.0,1.1791666666666667,762.0 -INET_PL_184,Flaibano_Gonars_2,['INET_PL_184'],"['INET_N_552', 'INET_N_494']","[45.897033, 46.057566]","[13.236542, 12.984152]","['IT', 'IT']",0.0,45.9772995,26.44715918732046,13.110347,70.0,0.0,1983.0,1.1791666666666667,660.4 -INET_PL_186_EE_0,Fluxys_10,['INET_PL_186'],"['INET_N_1656', 'INET_N_912']","[51.323, 51.192]","[3.213, 3.46]","['BE', 'BE']",0.0,51.2575,22.537491858940857,3.3365,83.6469553705921,0.0,1983.0,33.475,1203.575191074547 -INET_PL_186_EE_1,Fluxys_11,['INET_PL_186'],"['INET_N_912', 'INET_N_987']","[51.192, 50.44787]","[3.46, 3.97037]","['BE', 'BE']",0.0,50.819935,90.20477779858834,3.715185,76.80652874754169,0.0,1983.0,9.583333333333334,998.4639333647048 -INET_PL_189_EE_0,Fluxys_20,['INET_PL_189'],"['INET_N_1656', 'INET_N_912']","[51.323, 51.192]","[3.213, 3.46]","['BE', 'BE']",0.0,51.2575,22.537491858940857,3.3365,83.6469553705921,0.0,1983.0,33.475,1203.575191074547 -INET_PL_189_EE_1,Fluxys_21,['INET_PL_189'],"['INET_N_912', 'INET_N_1627']","[51.192, 50.8974666]","[3.46, 4.6435179]","['BE', 'BE']",0.0,51.044733300000004,89.01212266900208,4.05175895,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_189_EE_2,Fluxys_22,['INET_PL_189'],"['INET_N_1627', 'INET_N_161']","[50.8974666, 50.753777]","[4.6435179, 5.739351]","['BE', 'BE']",0.0,50.8256218,78.63590606024447,5.19143445,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_193_EE_0,Mons_Poppel0,['INET_PL_193'],"['INET_N_987', 'INET_N_1627']","[50.44787, 50.8974666]","[3.97037, 4.6435179]","['BE', 'BE']",0.0,50.6726683,68.93779321759807,4.30694395,76.80652874754169,0.0,1983.0,9.583333333333334,998.4639333647048 -INET_PL_193_EE_1,Mons_Poppel1,['INET_PL_193'],"['INET_N_1627', 'INET_N_1163']","[50.8974666, 51.447]","[4.6435179, 5.043]","['BE', 'BE']",0.0,51.1722333,67.1738172828169,4.84325895,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_196_EE_0,Maldegem_Zelzate0,['INET_PL_196'],"['INET_N_912', 'INET_N_1659']","[51.192, 51.191166]","[3.46, 3.827686]","['BE', 'BE']",0.0,51.191583,25.631448089863014,3.643843,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_196_EE_1,Maldegem_Zelzate1,['INET_PL_196'],"['INET_N_1659', 'INET_N_1604']","[51.191166, 51.3022166]","[3.827686, 4.4114244]","['BE', 'BE']",0.0,51.2466913,42.47899407981802,4.1195552,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_199,Foligno_GalleseCivitaCast,['INET_PL_199'],"['INET_N_519', 'INET_N_496']","[42.373095, 42.948536]","[12.40241, 12.69996]","['IT', 'IT']",0.0,42.6608155,68.47725054050184,12.551185,70.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_205_EE_0,FosSurMer_Tersanne0,['INET_PL_205'],"['INET_N_502', 'INET_N_1408']","[43.45, 43.638628]","[4.891, 4.812107]","['FR', 'FR']",0.0,43.544314,21.924026158074547,4.8515535,63.851320625119364,0.0,1983.0,4.871240190035461,610.0 -INET_PL_205_EE_1,FosSurMer_Tersanne1,['INET_PL_205'],"['INET_N_1408', 'INET_N_322']","[43.638628, 44.085647]","[4.812107, 4.882963]","['FR', 'FR']",0.0,43.8621375,50.04550256616734,4.847535000000001,63.851320625119364,0.0,1983.0,4.871240190035461,610.0 -INET_PL_205_EE_2,FosSurMer_Tersanne2,['INET_PL_205'],"['INET_N_322', 'INET_N_806']","[44.085647, 44.5458519]","[4.882963, 4.935637]","['FR', 'FR']",0.0,44.31574945,51.359877432750515,4.9093,63.851320625119364,0.0,1983.0,4.871240190035461,610.0 -INET_PL_205_EE_3,FosSurMer_Tersanne3,['INET_PL_205'],"['INET_N_806', 'INET_N_1480']","[44.5458519, 45.2149]","[4.935637, 5.01536]","['FR', 'FR']",0.0,44.88037595,74.68289111314988,4.9754985000000005,72.66684118829082,0.0,1983.0,4.871240190035461,610.0 -INET_PL_210,GaglianoSparacollo_CalderariEnna_1,['INET_PL_210'],"['INET_N_246', 'INET_N_515']","[37.560406, 37.684813]","[14.366079, 14.652717]","['IT', 'IT']",0.0,37.622609499999996,28.79547060109101,14.509398000000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_212,GaglianoSparacollo_CalderariEnna_2,['INET_PL_212'],"['INET_N_246', 'INET_N_515']","[37.560406, 37.684813]","[14.366079, 14.652717]","['IT', 'IT']",0.0,37.622609499999996,28.79547060109101,14.509398000000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_214,GaglianoSparacollo_CalderariEnna_3,['INET_PL_214'],"['INET_N_246', 'INET_N_515']","[37.560406, 37.684813]","[14.366079, 14.652717]","['IT', 'IT']",0.0,37.622609499999996,28.79547060109101,14.509398000000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_218,GalleseCivitaCast_Ciciliano,['INET_PL_218'],"['INET_N_300', 'INET_N_519']","[41.957909, 42.373095]","[12.94136, 12.40241]","['IT', 'IT']",0.0,42.165502000000004,64.0857975877682,12.671885,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_220,GalleseCivitaCast_Oricola,['INET_PL_220'],"['INET_N_1088', 'INET_N_519']","[42.065074, 42.373095]","[13.049619, 12.40241]","['IT', 'IT']",0.0,42.2190845,63.3729506532504,12.7260145,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_222_EE_0,Gazelle_10,['INET_PL_222'],"['INET_N_209', 'INET_N_529']","[50.635, 50.5859]","[13.39, 13.441]","['CZ', 'CZ']",0.0,50.61045,6.541073178770302,13.415500000000002,84.0,0.0,2013.0,34.6239037037037,1400.0 -INET_PL_222_EE_1,Gazelle_11,['INET_PL_222'],"['INET_N_529', 'INET_N_1263']","[50.5859, 49.663384]","[13.441, 12.549857]","['CZ', 'CZ']",0.0,50.124642,120.69393657164738,12.9954285,84.0,0.0,2013.0,34.6239037037037,1400.0 -INET_PL_227,Golasecca_Oltrona,['INET_PL_227'],"['INET_N_1081', 'INET_N_550']","[45.756957, 45.697737]","[8.973609, 8.658697]","['IT', 'IT']",0.0,45.727346999999995,25.32352522767952,8.816153,24.0,0.0,1983.0,9.649360240537868,760.0 -INET_PL_229,Gonars_Villesse,['INET_PL_229'],"['INET_N_1574', 'INET_N_552']","[45.862614, 45.897033]","[13.438999, 13.236542]","['IT', 'IT']",0.0,45.8798235,16.137817717428256,13.337770500000001,70.0,0.0,1983.0,1.1791666666666667,660.4 -INET_PL_233,Grumento_Moliterno,['INET_PL_233'],"['INET_N_985', 'INET_N_577']","[40.242959, 40.316324]","[15.865276, 15.90466]","['IT', 'IT']",0.0,40.2796415,8.818206659980595,15.884968,75.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_235,Grumento_MonteAlpi_1,['INET_PL_235'],"['INET_N_991', 'INET_N_577']","[40.626457, 40.316324]","[15.985341, 15.90466]","['IT', 'IT']",0.0,40.4713905,35.16508250963108,15.945000499999999,75.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_237,Grumento_MonteAlpi_2,['INET_PL_237'],"['INET_N_991', 'INET_N_577']","[40.626457, 40.316324]","[15.985341, 15.90466]","['IT', 'IT']",0.0,40.4713905,35.16508250963108,15.945000499999999,75.0,0.0,1983.0,3.479829310184398,304.8 -INET_PL_239,Grumento_MontesanoSullaMarcellana,['INET_PL_239'],"['INET_N_993', 'INET_N_577']","[40.281815, 40.316324]","[15.667287, 15.90466]","['IT', 'IT']",0.0,40.2990695,20.499540340193082,15.7859735,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_241_EE_0,HAG_10,['INET_PL_241'],"['INET_N_138', 'INET_N_765']","[48.316295, 48.09]","[16.875328, 17.068]","['AT', 'AT']",0.0,48.2031475,28.941040125752583,16.971664,70.0,0.0,1983.0,5.7625,700.0 -INET_PL_241_EE_1,HAG_11,['INET_PL_241'],"['INET_N_765', 'INET_N_357']","[48.09, 48.01]","[17.068, 17.107]","['AT', 'AT']",0.0,48.05,9.358974696246204,17.0875,70.0,0.0,1983.0,6.379166666666666,700.0 -INET_PL_244,Hauts_de_France,['INET_PL_244'],"['INET_N_336', 'INET_N_1146']","[49.530886, 50.926317]","[2.703964, 2.315596]","['FR', 'FR']",0.0,50.228601499999996,157.65384962042143,2.50978,76.80652874754169,0.0,1996.0,23.75,998.4639333647048 -INET_PL_246,Hauts_de_France_II,['INET_PL_246'],"['INET_N_1146', 'INET_N_407']","[50.926317, 51.033134]","[2.315596, 2.194792]","['FR', 'FR']",0.0,50.9797255,14.58537635338789,2.2551940000000004,84.19472003990694,0.0,1983.0,23.75,1220.0 -INET_PL_248_EE_0,Huelva_Cordoba0,['INET_PL_248'],"['INET_N_645', 'INET_N_1354']","[37.2583, 37.2590924]","[-6.9508, -5.9844589]","['ES', 'ES']",0.0,37.2586962,85.54883696563063,-6.4676294500000004,68.92049556126315,0.0,1983.0,9.720136870385701,762.0 -INET_PL_248_EE_1,Huelva_Cordoba1,['INET_PL_248'],"['INET_N_1354', 'INET_N_314']","[37.2590924, 37.906]","[-5.9844589, -4.68003]","['ES', 'ES']",0.0,37.582546199999996,135.63811815015902,-5.33224445,68.92049556126315,0.0,1983.0,9.720136870385701,762.0 -INET_PL_251,IndefatigableHewitt_Bacton,['INET_PL_251'],"['INET_N_103', 'INET_N_667']","[52.8506, 53.55]","[1.466, 2.301]","['GB', 'GB']",0.0,53.2003,95.63948286225721,1.8835000000000002,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_253,Interconnector,['INET_PL_253'],"['INET_N_1656', 'INET_N_103']","[51.323, 52.8506]","[3.213, 1.466]","['BE', 'GB']",1.0,52.0868,207.65887005513727,2.3395,77.39135367824028,0.0,1998.0,28.94786342592592,1016.0 -INET_PL_255_EE_0,Interconnector_10,['INET_PL_255'],"['INET_N_886', 'INET_N_555']","[53.548, 53.638742]","[-6.084, -6.22249]","['IE', 'IE']",0.0,53.593371000000005,13.618364030176776,-6.153245,60.0,0.0,1993.0,3.6326736504629626,610.0 -INET_PL_255_EE_1,Interconnector_11,['INET_PL_255'],"['INET_N_555', 'INET_N_222']","[53.638742, 54.78735]","[-6.22249, -4.12912]","['IE', 'GB']",0.0,54.213046000000006,186.70001918773326,-5.175805,60.0,0.0,1993.0,3.6326736504629626,610.0 -INET_PL_255_EE_2,Interconnector_12,['INET_PL_255'],"['INET_N_222', 'INET_N_886']","[54.78735, 53.548]","[-4.12912, -6.084]","['GB', 'IE']",0.0,54.167675,187.62098854828406,-5.10656,60.0,0.0,1993.0,3.6326736504629626,610.0 -INET_PL_259,Istrana_Mira,['INET_PL_259'],"['INET_N_970', 'INET_N_691']","[45.426979, 45.715303]","[12.131102, 12.072133]","['IT', 'IT']",0.0,45.571141,32.39724748070292,12.1016175,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_261,Istrana_SPoloDiPiave_1,['INET_PL_261'],"['INET_N_1278', 'INET_N_691']","[45.788222, 45.715303]","[12.393832, 12.072133]","['IT', 'IT']",0.0,45.7517625,26.2522426564326,12.232982499999999,58.0,0.0,1983.0,15.660429644038864,914.4 -INET_PL_263,Istrana_SPoloDiPiave_2,['INET_PL_263'],"['INET_N_1278', 'INET_N_691']","[45.788222, 45.715303]","[12.393832, 12.072133]","['IT', 'IT']",0.0,45.7517625,26.2522426564326,12.232982499999999,70.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_265,Istrana_SPoloDiPiave_3,['INET_PL_265'],"['INET_N_1278', 'INET_N_691']","[45.788222, 45.715303]","[12.393832, 12.072133]","['IT', 'IT']",0.0,45.7517625,26.2522426564326,12.232982499999999,75.0,0.0,1983.0,30.781174886065095,1219.2 -INET_PL_272_EE_0,JAMAL_10,['INET_PL_272'],"['INET_N_775', 'INET_N_1652']","[53.01781, 52.9849941]","[23.896413, 22.2413857]","['PL', 'PL']",0.0,53.001402049999996,110.84122424670358,23.06889935,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_1,JAMAL_11,['INET_PL_272'],"['INET_N_1652', 'INET_N_301']","[52.9849941, 52.8814838]","[22.2413857, 20.6197948]","['PL', 'PL']",0.0,52.93323895,109.32228283036615,21.43059025,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_2,JAMAL_12,['INET_PL_272'],"['INET_N_301', 'INET_N_1630']","[52.8814838, 52.7074]","[20.6197948, 18.9589]","['PL', 'PL ']",0.0,52.794441899999995,113.37161995105657,19.7893474,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_5,JAMAL_15,['INET_PL_272'],"['INET_N_898', 'INET_N_1447']","[52.5006547, 52.5006547]","[16.07, 16.5779047]","['PL', 'PL']",0.0,52.5006547,34.3908795568354,16.32395235,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_6,JAMAL_16,['INET_PL_272'],"['INET_N_1447', 'INET_N_982']","[52.5006547, 52.609656]","[16.5779047, 17.8103]","['PL', 'PL']",0.0,52.55515535,84.21992658093505,17.19410235,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_7,JAMAL_17,['INET_PL_272'],"['INET_N_982', 'INET_N_580']","[52.609656, 52.6591774]","[17.8103, 18.8777344]","['PL', 'PL']",0.0,52.6344167,72.26695339628685,18.344017200000003,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_272_EE_8,JAMAL_18,['INET_PL_272'],"['INET_N_580', 'INET_N_1630']","[52.6591774, 52.7074]","[18.8777344, 18.9589]","['PL', 'PL ']",0.0,52.6832887,7.6631425282154,18.9183172,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_282_EE_0,JAMAL_20,['INET_PL_282'],"['INET_N_1630', 'INET_N_1644']","[52.7074, 52.3956]","[18.9589, 23.211831]","['PL ', 'PL']",0.0,52.551500000000004,289.6786482844788,21.0853655,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_282_EE_1,JAMAL_21,['INET_PL_282'],"['INET_N_1644', 'INET_N_1643']","[52.3956, 52.3696]","[23.211831, 23.371]","['PL', 'BY']",0.0,52.3826,11.186752034964828,23.2914155,84.0,0.0,1999.0,37.46194824791666,1420.0 -INET_PL_285,KIP,['INET_PL_285'],"['INET_N_1136', 'INET_N_765']","[48.122, 48.09]","[17.1087, 17.068]","['SI', 'AT']",0.0,48.106,4.669828622427491,17.08835,70.0,0.0,1983.0,5.7625,500.0 -INET_PL_287,Kirriemuir_Wooler,['INET_PL_287'],"['INET_N_760', 'INET_N_1636']","[56.68104364, 55.58130289]","[-2.925588306, -2.086443142]","['GB', 'GB']",0.0,56.131173265,132.92184747513062,-2.506015724,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_289,Wooler_BishopAuckland,['INET_PL_289'],"['INET_N_1636', 'INET_N_177']","[55.58130289, 54.6707702]","[-2.086443142, -1.565698513]","['GB', 'GB']",0.0,55.126036545000005,106.55502903764484,-1.8260708275,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_291,Lussagnet_Bayonne,['INET_PL_291'],"['INET_N_897', 'INET_N_141']","[43.780448, 43.493]","[-0.220066, -1.462]","['FR', 'FR']",0.0,43.636724,104.96292590513802,-0.841033,72.15198802222396,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_295_EE_0,Lacq_Navarra0,['INET_PL_295'],"['INET_N_1018', 'INET_N_829']","[42.6953909, 43.018757]","[-1.4760691, -0.955718]","['ES', 'FR']",0.0,42.85707395,55.62202413511556,-1.2158935499999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_295_EE_1,Lacq_Navarra1,['INET_PL_295'],"['INET_N_829', 'INET_N_814']","[43.018757, 43.421]","[-0.955718, -0.614]","['FR', 'FR']",0.0,43.2198785,52.62119171511158,-0.784859,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_298,Latiano_Brindisi_1,['INET_PL_298'],"['INET_N_223', 'INET_N_832']","[40.593587, 40.550803]","[17.860057, 17.717742]","['IT', 'IT']",0.0,40.572195,12.93149652006242,17.7888995,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_300,Latiano_Brindisi_2,['INET_PL_300'],"['INET_N_223', 'INET_N_832']","[40.593587, 40.550803]","[17.860057, 17.717742]","['IT', 'IT']",0.0,40.572195,12.93149652006242,17.7888995,70.0,0.0,1983.0,1.0797110177992835,457.2 -INET_PL_302,Lauria_Morano_1,['INET_PL_302'],"['INET_N_997', 'INET_N_833']","[39.843546, 40.050224]","[16.135949, 15.840378]","['IT', 'IT']",0.0,39.946885,34.11358832788348,15.988163499999999,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_304,Lauria_Morano_2,['INET_PL_304'],"['INET_N_997', 'INET_N_833']","[39.843546, 40.050224]","[16.135949, 15.840378]","['IT', 'IT']",0.0,39.946885,34.11358832788348,15.988163499999999,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_308,LeHavre_Paris_1,['INET_PL_308'],"['INET_N_1116', 'INET_N_838']","[48.852, 49.499]","[2.371, 0.125]","['FR', 'FR']",0.0,49.1755,178.4630207946387,1.248,60.44963744428603,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_310,LeHavre_Paris_2,['INET_PL_310'],"['INET_N_1116', 'INET_N_838']","[48.852, 49.499]","[2.371, 0.125]","['FR', 'FR']",0.0,49.1755,178.4630207946387,1.248,63.851320625119364,0.0,1983.0,4.871240190035461,610.0 -INET_PL_312_EE_0,Leira_Braga0,['INET_PL_312'],"['INET_N_204', 'INET_N_1167']","[41.541, 41.15]","[-8.614, -8.63]","['PT', 'PT']",0.0,41.3455,43.51138233402443,-8.622,67.2196539708465,0.0,1983.0,7.973437539223207,711.0 -INET_PL_312_EE_1,Leira_Braga1,['INET_PL_312'],"['INET_N_1167', 'INET_N_259']","[41.15, 39.983508]","[-8.63, -8.85463]","['PT', 'PT']",0.0,40.566754,131.12946939581678,-8.742315000000001,73.11885686323454,0.0,1983.0,7.973437539223207,711.0 -INET_PL_312_EE_2,Leira_Braga2,['INET_PL_312'],"['INET_N_259', 'INET_N_847']","[39.983508, 39.747]","[-8.85463, -8.9086]","['PT', 'PT']",0.0,39.865254,26.70721826543449,-8.881615,73.11885686323454,0.0,1983.0,7.973437539223207,711.0 -INET_PL_323_EE_0,Lyon_Annecy_10,['INET_PL_323'],"['INET_N_66', 'INET_N_449']","[45.903, 45.433287]","[6.126, 5.7521129]","['FR', 'FR']",0.0,45.6681435,59.784806331088596,5.939056450000001,76.80652874754169,0.0,1983.0,1.5583333333333331,998.4639333647048 -INET_PL_323_EE_1,Lyon_Annecy_11,['INET_PL_323'],"['INET_N_449', 'INET_N_1480']","[45.433287, 45.2149]","[5.7521129, 5.01536]","['FR', 'FR']",0.0,45.324093500000004,62.52875858955803,5.383736450000001,72.66684118829082,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_326_EE_0,Lyon_Annecy_20,['INET_PL_326'],"['INET_N_66', 'INET_N_449']","[45.903, 45.433287]","[6.126, 5.7521129]","['FR', 'FR']",0.0,45.6681435,59.784806331088596,5.939056450000001,76.80652874754169,0.0,1983.0,1.5583333333333331,998.4639333647048 -INET_PL_326_EE_1,Lyon_Annecy_21,['INET_PL_326'],"['INET_N_449', 'INET_N_1480']","[45.433287, 45.2149]","[5.7521129, 5.01536]","['FR', 'FR']",0.0,45.324093500000004,62.52875858955803,5.383736450000001,72.66684118829082,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_329,Lyon_Tersanne_1,['INET_PL_329'],"['INET_N_899', 'INET_N_1480']","[45.754, 45.2149]","[4.842, 5.01536]","['FR', 'FR']",0.0,45.484449999999995,61.46906206239551,4.92868,72.66684118829082,0.0,1983.0,21.406393398049545,1040.794365499882 -INET_PL_331,Lyon_Tersanne_2,['INET_PL_331'],"['INET_N_899', 'INET_N_1480']","[45.754, 45.2149]","[4.842, 5.01536]","['FR', 'FR']",0.0,45.484449999999995,61.46906206239551,4.92868,72.66684118829082,0.0,1983.0,21.406393398049545,1040.794365499882 -INET_PL_333,Maastrict_Paris_1,['INET_PL_333'],"['INET_N_564', 'INET_N_161']","[50.7587829, 50.753777]","[5.7611628, 5.739351]","['BE', 'BE']",0.0,50.75627995,1.632693831453437,5.7502569,63.851320625119364,0.0,1983.0,16.491666666666667,610.0 -INET_PL_335,Maastrict_Paris_2,['INET_PL_335'],"['INET_N_564', 'INET_N_161']","[50.7587829, 50.753777]","[5.7611628, 5.739351]","['BE', 'BE']",0.0,50.75627995,1.632693831453437,5.7502569,63.851320625119364,0.0,1983.0,16.491666666666667,610.0 -INET_PL_337_EE_0,Maastrict_Paris_30,['INET_PL_337'],"['INET_N_161', 'INET_N_1600']","[50.753777, 50.592]","[5.739351, 5.227]","['BE', 'BE']",0.0,50.6728885,40.350784083458386,5.4831755,73.98967049740695,0.0,1983.0,16.491666666666667,914.0 -INET_PL_337_EE_1,Maastrict_Paris_31,['INET_PL_337'],"['INET_N_1600', 'INET_N_987']","[50.592, 50.44787]","[5.227, 3.97037]","['BE', 'BE']",0.0,50.519935000000004,90.30338540672739,4.598685,73.98967049740695,0.0,1983.0,9.583333333333334,914.0 -INET_PL_340_EE_0,Maastrict_Paris_50,['INET_PL_340'],"['INET_N_987', 'INET_N_1451']","[50.44787, 50.31]","[3.97037, 3.81]","['BE', 'FR']",0.0,50.378935,19.09368745326158,3.890185,63.851320625119364,0.0,1983.0,9.583333333333334,610.0 -INET_PL_340_EE_1,Maastrict_Paris_51,['INET_PL_340'],"['INET_N_1451', 'INET_N_336']","[50.31, 49.530886]","[3.81, 2.703964]","['FR', 'FR']",0.0,49.920443000000006,117.40340504154018,3.256982,63.851320625119364,0.0,1983.0,9.583333333333334,610.0 -INET_PL_340_EE_2,Maastrict_Paris_52,['INET_PL_340'],"['INET_N_336', 'INET_N_1116']","[49.530886, 48.852]","[2.703964, 2.371]","['FR', 'FR']",0.0,49.191443,79.29637804848764,2.537482,63.851320625119364,0.0,1983.0,4.871240190035461,610.0 -INET_PL_344_EE_0,Maastrict_Paris_60,['INET_PL_344'],"['INET_N_987', 'INET_N_1451']","[50.44787, 50.31]","[3.97037, 3.81]","['BE', 'FR']",0.0,50.378935,19.09368745326158,3.890185,63.851320625119364,0.0,1983.0,9.583333333333334,610.0 -INET_PL_344_EE_1,Maastrict_Paris_61,['INET_PL_344'],"['INET_N_1451', 'INET_N_336']","[50.31, 49.530886]","[3.81, 2.703964]","['FR', 'FR']",0.0,49.920443000000006,117.40340504154018,3.256982,63.851320625119364,0.0,1983.0,9.583333333333334,610.0 -INET_PL_344_EE_2,Maastrict_Paris_62,['INET_PL_344'],"['INET_N_336', 'INET_N_1116']","[49.530886, 48.852]","[2.703964, 2.371]","['FR', 'FR']",0.0,49.191443,79.29637804848764,2.537482,63.851320625119364,0.0,1983.0,4.871240190035461,610.0 -INET_PL_350,MaidaSEufemia_Palmi_1,['INET_PL_350'],"['INET_N_1111', 'INET_N_907']","[38.418314, 38.858958]","[15.874919, 16.364569]","['IT', 'IT']",0.0,38.638636000000005,64.89996081158559,16.119744,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_352,MaidaSEufemia_Palmi_2,['INET_PL_352'],"['INET_N_1111', 'INET_N_907']","[38.418314, 38.858958]","[15.874919, 16.364569]","['IT', 'IT']",0.0,38.638636000000005,64.89996081158559,16.119744,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_354,MaidaSEufemia_ReggioCalabria,['INET_PL_354'],"['INET_N_1218', 'INET_N_907']","[38.257644, 38.858958]","[15.752554, 16.364569]","['IT', 'IT']",0.0,38.558301,85.48144014614286,16.0585615,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_356,Malbroghetto_Tarvisio_1,['INET_PL_356'],"['INET_N_1468', 'INET_N_911']","[46.505528, 46.503733]","[13.592806, 13.416054]","['IT', 'IT']",0.0,46.5046305,13.53343412691442,13.50443,70.0,0.0,1983.0,47.86666666666667,1219.0 -INET_PL_358,Malbroghetto_Tarvisio_2,['INET_PL_358'],"['INET_N_1468', 'INET_N_911']","[46.505528, 46.503733]","[13.592806, 13.416054]","['IT', 'IT']",0.0,46.5046305,13.53343412691442,13.50443,70.0,0.0,1983.0,47.86666666666667,1066.8 -INET_PL_360,Malbroghetto_Tarvisio_3,['INET_PL_360'],"['INET_N_1468', 'INET_N_911']","[46.505528, 46.503733]","[13.592806, 13.416054]","['IT', 'IT']",0.0,46.5046305,13.53343412691442,13.50443,70.0,0.0,1983.0,47.86666666666667,1219.0 -INET_PL_362,Maldegem_Zeebrugge_Extra,['INET_PL_362'],"['INET_N_1656', 'INET_N_912']","[51.323, 51.192]","[3.213, 3.46]","['BE', 'BE']",0.0,51.2575,22.537491858940857,3.3365,83.6469553705921,0.0,1983.0,33.475,1203.575191074547 -INET_PL_364,Masera_Veruno_1,['INET_PL_364'],"['INET_N_1568', 'INET_N_933']","[45.689397, 46.136816]","[8.527687, 8.309786]","['IT', 'IT']",0.0,45.9131065,52.54560415989723,8.418736500000001,55.0,0.0,1983.0,26.475,860.0 -INET_PL_366,Masera_Veruno_2,['INET_PL_366'],"['INET_N_1568', 'INET_N_933']","[45.689397, 46.136816]","[8.527687, 8.309786]","['IT', 'IT']",0.0,45.9131065,52.54560415989723,8.418736500000001,75.0,0.0,1983.0,26.475,1219.0 -INET_PL_392,Melizzano_Benevento,['INET_PL_392'],"['INET_N_149', 'INET_N_947']","[41.128905, 41.161769]","[14.781876, 14.505163]","['IT', 'IT']",0.0,41.145337,23.464192704141954,14.6435195,64.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_394,Menfi_MazaraDelVallo_1,['INET_PL_394'],"['INET_N_935', 'INET_N_950']","[37.65533, 37.602313]","[12.597628, 12.968817]","['IT', 'IT']",0.0,37.6288215,33.2262917217387,12.7832225,75.0,0.0,1983.0,47.92916666666667,1219.0 -INET_PL_396,Menfi_MazaraDelVallo_2,['INET_PL_396'],"['INET_N_935', 'INET_N_950']","[37.65533, 37.602313]","[12.597628, 12.968817]","['IT', 'IT']",0.0,37.6288215,33.2262917217387,12.7832225,75.0,0.0,1983.0,47.92916666666667,1219.0 -INET_PL_398,Menfi_MazaraDelVallo_3,['INET_PL_398'],"['INET_N_935', 'INET_N_950']","[37.65533, 37.602313]","[12.597628, 12.968817]","['IT', 'IT']",0.0,37.6288215,33.2262917217387,12.7832225,75.0,0.0,1983.0,47.92916666666667,1219.0 -INET_PL_400,Messina_Montalbano_1,['INET_PL_400'],"['INET_N_988', 'INET_N_957']","[38.022844, 38.272079]","[15.013029, 15.58877]","['IT', 'IT']",0.0,38.1474615,57.48795378072464,15.3008995,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_402,Messina_Montalbano_2,['INET_PL_402'],"['INET_N_988', 'INET_N_957']","[38.022844, 38.272079]","[15.013029, 15.58877]","['IT', 'IT']",0.0,38.1474615,57.48795378072464,15.3008995,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_404,Messina_Montalbano_3,['INET_PL_404'],"['INET_N_988', 'INET_N_957']","[38.022844, 38.272079]","[15.013029, 15.58877]","['IT', 'IT']",0.0,38.1474615,57.48795378072464,15.3008995,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_406,MHP,['INET_PL_406'],"['INET_N_484', 'INET_N_965']","[51.69076021, 51.71]","[-3.955976771, -5.03]","['GB', 'GB']",0.0,51.700380105,74.07055538268008,-4.4929883855,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_417,Minerbio_Parma,['INET_PL_417'],"['INET_N_1300', 'INET_N_967']","[44.9289, 44.615731]","[10.3055, 11.497959]","['IT ', 'IT']",0.0,44.7723155,100.39592390311185,10.9017295,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_419,Minerbio_RavennaTerra,['INET_PL_419'],"['INET_N_1211', 'INET_N_967']","[44.416686, 44.615731]","[12.306514, 11.497959]","['IT', 'IT']",0.0,44.5162085,67.84248715641927,11.9022365,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_421,Mira_CampagnaLupia,['INET_PL_421'],"['INET_N_249', 'INET_N_970']","[45.353355, 45.426979]","[12.097296, 12.131102]","['IT', 'IT']",0.0,45.390167000000005,8.604426501958,12.114199,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_423,MoggioUdinesse_Pontebba_1,['INET_PL_423'],"['INET_N_1158', 'INET_N_981']","[46.506812, 46.398538]","[13.304698, 13.186671]","['IT', 'IT']",0.0,46.452675,15.061438193172117,13.2456845,58.0,0.0,1983.0,47.86666666666667,914.4 -INET_PL_425,MoggioUdinesse_Pontebba_2,['INET_PL_425'],"['INET_N_1158', 'INET_N_981']","[46.506812, 46.398538]","[13.304698, 13.186671]","['IT', 'IT']",0.0,46.452675,15.061438193172117,13.2456845,70.0,0.0,1983.0,47.86666666666667,1066.8 -INET_PL_427,MoggioUdinesse_Pontebba_3,['INET_PL_427'],"['INET_N_1158', 'INET_N_981']","[46.506812, 46.398538]","[13.304698, 13.186671]","['IT', 'IT']",0.0,46.452675,15.061438193172117,13.2456845,75.0,0.0,1983.0,47.86666666666667,1219.0 -INET_PL_429,Moliterno_Lauria_1,['INET_PL_429'],"['INET_N_833', 'INET_N_985']","[40.050224, 40.242959]","[15.840378, 15.865276]","['IT', 'IT']",0.0,40.1465915,21.542147702915045,15.852827,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_431,Moliterno_Lauria_2,['INET_PL_431'],"['INET_N_833', 'INET_N_985']","[40.050224, 40.242959]","[15.840378, 15.865276]","['IT', 'IT']",0.0,40.1465915,21.542147702915045,15.852827,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_433,Moliterno_MontesanoSullaMarcellana_1,['INET_PL_433'],"['INET_N_993', 'INET_N_985']","[40.281815, 40.242959]","[15.667287, 15.865276]","['IT', 'IT']",0.0,40.262387000000004,17.351905126809335,15.7662815,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_435,Moliterno_MontesanoSullaMarcellana_2,['INET_PL_435'],"['INET_N_993', 'INET_N_985']","[40.281815, 40.242959]","[15.667287, 15.865276]","['IT', 'IT']",0.0,40.262387000000004,17.351905126809335,15.7662815,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_439,Montalbano_GaglianoSparacollo_1,['INET_PL_439'],"['INET_N_515', 'INET_N_988']","[37.684813, 38.022844]","[14.652717, 15.013029]","['IT', 'IT']",0.0,37.8538285,49.143129048263944,14.832873,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_441,Montalbano_GaglianoSparacollo_2,['INET_PL_441'],"['INET_N_515', 'INET_N_988']","[37.684813, 38.022844]","[14.652717, 15.013029]","['IT', 'IT']",0.0,37.8538285,49.143129048263944,14.832873,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_443,Montalbano_GaglianoSparacollo_3,['INET_PL_443'],"['INET_N_515', 'INET_N_988']","[37.684813, 38.022844]","[14.652717, 15.013029]","['IT', 'IT']",0.0,37.8538285,49.143129048263944,14.832873,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_445_EE_0,Montesa_Ibiza0,['INET_PL_445'],"['INET_N_992', 'INET_N_353']","[38.959997, 38.868056]","[-0.616608, -0.026709]","['ES', 'ES']",0.0,38.914026500000006,52.06790920178066,-0.3216585,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_445_EE_1,Montesa_Ibiza1,['INET_PL_445'],"['INET_N_353', 'INET_N_657']","[38.868056, 39.0]","[-0.026709, 1.46]","['ES', 'ES']",0.0,38.934028,129.4665771162366,0.7166454999999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_448_EE_0,Montesa_Tivisa0,['INET_PL_448'],"['INET_N_992', 'INET_N_1121']","[38.959997, 39.533233]","[-0.616608, -0.457085]","['ES', 'ES']",0.0,39.246615000000006,65.2248089736921,-0.5368465,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_448_EE_1,Montesa_Tivisa1,['INET_PL_448'],"['INET_N_1121', 'INET_N_1494']","[39.533233, 41.041]","[-0.457085, 0.7036]","['ES', 'ES']",0.0,40.287116499999996,194.48104751241567,0.12325749999999999,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_451,MontesanoSullaMarcellana_Melizzano_1,['INET_PL_451'],"['INET_N_947', 'INET_N_993']","[41.161769, 40.281815]","[14.505163, 15.667287]","['IT', 'IT']",0.0,40.721792,138.47970866938005,15.086224999999999,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_453,MontesanoSullaMarcellana_Melizzano_2,['INET_PL_453'],"['INET_N_947', 'INET_N_993']","[41.161769, 40.281815]","[14.505163, 15.667287]","['IT', 'IT']",0.0,40.721792,138.47970866938005,15.086224999999999,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_455,Montoir_Donges_Extra,['INET_PL_455'],"['INET_N_994', 'INET_N_376']","[47.32, 47.332]","[-2.14, -2.069]","['FR', 'FR']",0.0,47.326,5.516908155026602,-2.1045,80.03559366730886,0.0,1983.0,24.11289678298936,1095.2879479208063 -INET_PL_457,Morano_Tarsia_1,['INET_PL_457'],"['INET_N_1465', 'INET_N_997']","[39.589859, 39.843546]","[16.251025, 16.135949]","['IT', 'IT']",0.0,39.7167025,29.885965571778684,16.193486999999998,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_459,Morano_Tarsia_2,['INET_PL_459'],"['INET_N_1465', 'INET_N_997']","[39.589859, 39.843546]","[16.251025, 16.135949]","['IT', 'IT']",0.0,39.7167025,29.885965571778684,16.193486999999998,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_461,Morano_Tarsia_3,['INET_PL_461'],"['INET_N_1465', 'INET_N_997']","[39.589859, 39.843546]","[16.251025, 16.135949]","['IT', 'IT']",0.0,39.7167025,29.885965571778684,16.193486999999998,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_463,Mortara_Alessandria_1,['INET_PL_463'],"['INET_N_26', 'INET_N_1000']","[44.90008, 45.252239]","[8.60944, 8.737499]","['IT', 'IT']",0.0,45.0761595,40.44143153064848,8.6734695,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_465,Mortara_Alessandria_2,['INET_PL_465'],"['INET_N_26', 'INET_N_1000']","[44.90008, 45.252239]","[8.60944, 8.737499]","['IT', 'IT']",0.0,45.0761595,40.44143153064848,8.6734695,64.0,0.0,1983.0,4.859897328305841,609.6 -INET_PL_467,Mortara_Cervignano_1,['INET_PL_467'],"['INET_N_279', 'INET_N_1000']","[45.372148, 45.252239]","[9.424874, 8.737499]","['IT', 'IT']",0.0,45.31219350000001,55.396943498191504,9.081186500000001,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_469,Mortara_Cervignano_2,['INET_PL_469'],"['INET_N_279', 'INET_N_1000']","[45.372148, 45.252239]","[9.424874, 8.737499]","['IT', 'IT']",0.0,45.31219350000001,55.396943498191504,9.081186500000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_471,Laneuvelotte_Morelmaison,['INET_PL_471'],"['INET_N_999', 'INET_N_819']","[48.43, 48.7289]","[5.819, 6.295]","['FR', 'FR']",0.0,48.57945,48.29343614680519,6.057,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_473,Laneuvelotte_Strasbourg,['INET_PL_473'],"['INET_N_1432', 'INET_N_819']","[48.58, 48.7289]","[7.766, 6.295]","['FR', 'FR']",0.0,48.65445,109.34630258786088,7.0305,76.80652874754169,0.0,1983.0,25.2375,998.4639333647048 -INET_PL_488,NWP,['INET_PL_488'],"['INET_N_311', 'INET_N_687']","[55.0437, 54.842619]","[-7.24868, -5.778247]","['GB', 'GB']",0.0,54.9431595,96.56849002454494,-6.5134635,72.3835063422896,0.0,2006.0,0.9278379488422335,450.0 -INET_PL_490,Oltrona_Bizzarone,['INET_PL_490'],"['INET_N_179', 'INET_N_1081']","[45.834135, 45.756957]","[8.946413, 8.973609]","['IT', 'IT']",0.0,45.795546,8.839788600461713,8.960011,24.0,0.0,1983.0,9.649360240537868,305.0 -INET_PL_498,Oricola_Ciciliano,['INET_PL_498'],"['INET_N_300', 'INET_N_1088']","[41.957909, 42.065074]","[12.94136, 13.049619]","['IT', 'IT']",0.0,42.011491500000005,14.904189615317344,12.9954895,75.0,0.0,1983.0,6.347690911236935,660.0 -INET_PL_500,Oricola_Sulmona,['INET_PL_500'],"['INET_N_1438', 'INET_N_1088']","[42.050263, 42.065074]","[13.929251, 13.049619]","['IT', 'IT']",0.0,42.057668500000005,72.66269679929769,13.489435,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_502_EE_0,Oviedo_Tuy0,['INET_PL_502'],"['INET_N_1104', 'INET_N_423']","[43.399, 43.489646]","[-5.847, -8.2193451]","['ES', 'ES']",0.0,43.444323,191.8435654504799,-7.03317255,71.67090895678376,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_502_EE_1,Oviedo_Tuy1,['INET_PL_502'],"['INET_N_423', 'INET_N_1520']","[43.489646, 42.155953]","[-8.2193451, -8.632403]","['ES', 'ES']",0.0,42.8227995,152.12514812336786,-8.425874050000001,71.67090895678376,0.0,1983.0,12.800646422847834,844.4715740501076 -INET_PL_505,Palagiano_Bernalda_1,['INET_PL_505'],"['INET_N_157', 'INET_N_1106']","[40.412126, 40.578453]","[16.688712, 17.038207]","['IT', 'IT']",0.0,40.4952895,34.87400252892669,16.863459499999998,70.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_507,Palagiano_Bernalda_2,['INET_PL_507'],"['INET_N_157', 'INET_N_1106']","[40.412126, 40.578453]","[16.688712, 17.038207]","['IT', 'IT']",0.0,40.4952895,34.87400252892669,16.863459499999998,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_509,Palagiano_Latiano_1,['INET_PL_509'],"['INET_N_832', 'INET_N_1106']","[40.550803, 40.578453]","[17.717742, 17.038207]","['IT', 'IT']",0.0,40.564628,57.501709419808364,17.3779745,70.0,0.0,1983.0,1.075459769769921,457.0 -INET_PL_511,Palagiano_Latiano_2,['INET_PL_511'],"['INET_N_832', 'INET_N_1106']","[40.550803, 40.578453]","[17.717742, 17.038207]","['IT', 'IT']",0.0,40.564628,57.501709419808364,17.3779745,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_513,Palmi_Messina_1,['INET_PL_513'],"['INET_N_957', 'INET_N_1111']","[38.272079, 38.418314]","[15.58877, 15.874919]","['IT', 'IT']",0.0,38.3451965,29.794285200627527,15.731844500000001,115.0,0.0,1983.0,6.359971261046537,660.4 -INET_PL_515,Palmi_Messina_2,['INET_PL_515'],"['INET_N_957', 'INET_N_1111']","[38.272079, 38.418314]","[15.58877, 15.874919]","['IT', 'IT']",0.0,38.3451965,29.794285200627527,15.731844500000001,115.0,0.0,1983.0,6.359971261046537,660.4 -INET_PL_517,Parma_Cortemaggiore,['INET_PL_517'],"['INET_N_317', 'INET_N_1300']","[44.991076, 44.9289]","[9.920891, 10.3055]","['IT', 'IT ']",0.0,44.959987999999996,31.051064556487034,10.1131955,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_519,Parma_Pontremoli,['INET_PL_519'],"['INET_N_1160', 'INET_N_1300']","[44.372874, 44.9289]","[9.881342, 10.3055]","['IT', 'IT ']",0.0,44.650887,70.36665982499217,10.093421,75.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_521,PassoGries_Masera,['INET_PL_521'],"['INET_N_933', 'INET_N_1119']","[46.136816, 46.449851]","[8.309786, 8.366838]","['IT', 'IT']",0.0,46.2933335,35.09383409853614,8.338312,75.0,0.0,1983.0,26.475,1219.0 -INET_PL_523_EE_1,PENTA_West1,['INET_PL_523'],"['INET_N_1230', 'INET_N_60']","[48.21, 48.3597]","[13.48, 13.575]","['AT', 'AT']",0.0,48.28485,18.07486342643693,13.5275,70.0,0.0,1983.0,8.308333333333334,700.0 -INET_PL_523_EE_2,PENTA_West2,['INET_PL_523'],"['INET_N_60', 'INET_N_1071']","[48.3597, 48.55443]","[13.575, 13.751863]","['AT', 'AT']",0.0,48.457065,25.28544590605739,13.6634315,70.0,0.0,1983.0,8.308333333333334,700.0 -INET_PL_527,Pinto_Roccasecca,['INET_PL_527'],"['INET_N_1247', 'INET_N_1144']","[41.55, 42.60635]","[13.66, 14.067353]","['IT', 'IT']",0.0,42.078175,122.2153100296884,13.8636765,60.44963744428603,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_529,Pitgam_Maldegem,['INET_PL_529'],"['INET_N_912', 'INET_N_1146']","[51.192, 50.926317]","[3.46, 2.315596]","['BE', 'FR']",1.0,51.059158499999995,85.28745451758341,2.887798,85.0,0.0,2016.0,9.081684333333333,900.0 -INET_PL_531,PoggioRenatico_Cortemaggiore,['INET_PL_531'],"['INET_N_317', 'INET_N_1153']","[44.991076, 44.764758]","[9.920891, 11.486382]","['IT', 'IT']",0.0,44.877917,125.92957878449911,10.7036365,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_533,PoggioRenatico_Minerbio_1,['INET_PL_533'],"['INET_N_967', 'INET_N_1153']","[44.615731, 44.764758]","[11.497959, 11.486382]","['IT', 'IT']",0.0,44.6902445,16.601507998144044,11.4921705,70.0,0.0,1983.0,13.560326138201887,863.6 -INET_PL_535,PoggioRenatico_Minerbio_2,['INET_PL_535'],"['INET_N_967', 'INET_N_1153']","[44.615731, 44.764758]","[11.497959, 11.486382]","['IT', 'IT']",0.0,44.6902445,16.601507998144044,11.4921705,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_537,Poirino_Alessandria,['INET_PL_537'],"['INET_N_26', 'INET_N_1156']","[44.90008, 44.918811]","[8.60944, 7.844823]","['IT', 'IT']",0.0,44.909445500000004,60.26894415675429,8.227131499999999,58.0,0.0,1983.0,3.479829310184398,558.8 -INET_PL_539,Pontebba_Malbroghetto_1,['INET_PL_539'],"['INET_N_911', 'INET_N_1158']","[46.503733, 46.506812]","[13.416054, 13.304698]","['IT', 'IT']",0.0,46.5052725,8.532083742803135,13.360376,75.0,0.0,1983.0,47.86666666666667,1066.8 -INET_PL_541,Pontebba_Malbroghetto_2,['INET_PL_541'],"['INET_N_911', 'INET_N_1158']","[46.503733, 46.506812]","[13.416054, 13.304698]","['IT', 'IT']",0.0,46.5052725,8.532083742803135,13.360376,70.0,0.0,1983.0,47.86666666666667,1219.0 -INET_PL_543,Pontremoli_LaSpezia,['INET_PL_543'],"['INET_N_808', 'INET_N_1160']","[44.116, 44.372874]","[9.838, 9.881342]","['IT', 'IT']",0.0,44.244437000000005,28.78001370856855,9.859670999999999,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_545,PortoViro_Cavarzere,['INET_PL_545'],"['INET_N_272', 'INET_N_1171']","[45.133742, 45.034434]","[12.08022, 12.219946]","['IT', 'IT']",0.0,45.084087999999994,15.570226637495288,12.150083,68.92049556126315,0.0,1983.0,9.720136870385701,762.0 -INET_PL_547,Puertollano_Madrid,['INET_PL_547'],"['INET_N_1189', 'INET_N_904']","[38.6869, 40.223]","[-4.1089, -3.681]","['ES', 'ES']",0.0,39.45495,174.76688566063945,-3.89495,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_551,RavennaMare_Rubicone,['INET_PL_551'],"['INET_N_1264', 'INET_N_1210']","[44.089849, 44.399759]","[12.400538, 12.302671]","['IT', 'IT']",0.0,44.244804,35.34228233285182,12.3516045,70.0,0.0,1983.0,6.347690911236935,660.0 -INET_PL_553,RavennaTerra_Casalborsetti_1,['INET_PL_553'],"['INET_N_263', 'INET_N_1211']","[44.554176, 44.416686]","[12.264301, 12.306514]","['IT', 'IT']",0.0,44.485431,15.655562339683733,12.2854075,70.0,0.0,1983.0,4.859897328305841,609.6 -INET_PL_555,RavennaTerra_Casalborsetti_2,['INET_PL_555'],"['INET_N_263', 'INET_N_1211']","[44.554176, 44.416686]","[12.264301, 12.306514]","['IT', 'IT']",0.0,44.485431,15.655562339683733,12.2854075,70.0,0.0,1983.0,4.859897328305841,609.6 -INET_PL_557,RavennaTerra_RavennaMare_1,['INET_PL_557'],"['INET_N_1210', 'INET_N_1211']","[44.399759, 44.416686]","[12.302671, 12.306514]","['IT', 'IT']",0.0,44.4082225,1.9073895343809473,12.3045925,70.0,0.0,1983.0,4.859897328305841,609.6 -INET_PL_559,RavennaTerra_RavennaMare_2,['INET_PL_559'],"['INET_N_1210', 'INET_N_1211']","[44.399759, 44.416686]","[12.302671, 12.306514]","['IT', 'IT']",0.0,44.4082225,1.9073895343809473,12.3045925,24.0,0.0,1983.0,6.347690911236935,330.0 -INET_PL_561_EE_0,Recanati_Chieti0,['INET_PL_561'],"['INET_N_294', 'INET_N_1144']","[42.358755, 42.60635]","[14.141819, 14.067353]","['IT', 'IT']",0.0,42.4825525,28.209251792631544,14.104586000000001,54.0,0.0,1983.0,6.359971261046537,660.4 -INET_PL_561_EE_1,Recanati_Chieti1,['INET_PL_561'],"['INET_N_1144', 'INET_N_1213']","[42.60635, 43.402314]","[14.067353, 13.55712]","['IT', 'IT']",0.0,43.004332,97.77978730886551,13.812236500000001,54.0,0.0,1983.0,6.359971261046537,660.4 -INET_PL_564,Recanati_Foligno,['INET_PL_564'],"['INET_N_496', 'INET_N_1213']","[42.948536, 43.402314]","[12.69996, 13.55712]","['IT', 'IT']",0.0,43.175425,85.91715090832436,13.128540000000001,70.0,0.0,1983.0,4.859897328305841,609.6 -INET_PL_566,ReggioCalabria_Messina_1,['INET_PL_566'],"['INET_N_957', 'INET_N_1218']","[38.272079, 38.257644]","[15.58877, 15.752554]","['IT', 'IT']",0.0,38.264861499999995,14.39354741119296,15.670662,115.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_568,ReggioCalabria_Messina_2,['INET_PL_568'],"['INET_N_957', 'INET_N_1218']","[38.272079, 38.257644]","[15.58877, 15.752554]","['IT', 'IT']",0.0,38.264861499999995,14.39354741119296,15.670662,115.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_570,ReggioCalabria_Messina_3,['INET_PL_570'],"['INET_N_957', 'INET_N_1218']","[38.272079, 38.257644]","[15.58877, 15.752554]","['IT', 'IT']",0.0,38.264861499999995,14.39354741119296,15.670662,115.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_572,Rende_MaidaSEufemia_1,['INET_PL_572'],"['INET_N_907', 'INET_N_1223']","[38.858958, 39.332936]","[16.364569, 16.184738]","['IT', 'IT']",0.0,39.095946999999995,54.95848598991976,16.2746535,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_574,Rende_MaidaSEufemia_2,['INET_PL_574'],"['INET_N_907', 'INET_N_1223']","[38.858958, 39.332936]","[16.364569, 16.184738]","['IT', 'IT']",0.0,39.095946999999995,54.95848598991976,16.2746535,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_576,Rende_MaidaSEufemia_3,['INET_PL_576'],"['INET_N_907', 'INET_N_1223']","[38.858958, 39.332936]","[16.364569, 16.184738]","['IT', 'IT']",0.0,39.095946999999995,54.95848598991976,16.2746535,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_582,Rimini_Sansepolcro,['INET_PL_582'],"['INET_N_1309', 'INET_N_1239']","[43.570594, 44.06653]","[12.140796, 12.574867]","['IT', 'IT']",0.0,43.818562,65.24204529463806,12.3578315,70.0,0.0,1983.0,6.347690911236935,660.0 -INET_PL_584,Rimini_Recanati,['INET_PL_584'],"['INET_N_1239', 'INET_N_1213']","[44.06653, 43.402314]","[12.574867, 13.55712]","['IT', 'IT']",0.0,43.734421999999995,108.12036778332339,13.0659935,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_586,Ripalta_Cortemaggiore_1,['INET_PL_586'],"['INET_N_317', 'INET_N_1242']","[44.991076, 45.312155]","[9.920891, 9.700705]","['IT', 'IT']",0.0,45.1516155,39.67088068442429,9.810797999999998,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_588,Ripalta_Cortemaggiore_2,['INET_PL_588'],"['INET_N_317', 'INET_N_1242']","[44.991076, 45.312155]","[9.920891, 9.700705]","['IT', 'IT']",0.0,45.1516155,39.67088068442429,9.810797999999998,70.0,0.0,1983.0,9.720136870385701,762.0 -INET_PL_590_EE_0,Roussines_Gregy0,['INET_PL_590'],"['INET_N_1261', 'INET_N_956']","[46.463, 47.248274]","[1.38, 1.992231]","['FR', 'FR']",0.0,46.855637,98.98359245308951,1.6861155,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_590_EE_1,Roussines_Gregy1,['INET_PL_590'],"['INET_N_956', 'INET_N_284']","[47.248274, 48.150232]","[1.992231, 2.704426]","['FR', 'FR']",0.0,47.699253,113.61000315553915,2.3483285,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_590_EE_2,Roussines_Gregy2,['INET_PL_590'],"['INET_N_284', 'INET_N_473']","[48.150232, 48.6539418]","[2.704426, 2.6357442]","['FR', 'FR']",0.0,48.4020869,56.25664264640519,2.6700851,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_594,Rubicone_Rimini,['INET_PL_594'],"['INET_N_1239', 'INET_N_1264']","[44.06653, 44.089849]","[12.574867, 12.400538]","['IT', 'IT']",0.0,44.0781895,14.169444382132864,12.4877025,70.0,0.0,1983.0,6.347690911236935,660.0 -INET_PL_600,Sansepolcro_TerranuovaBracc,['INET_PL_600'],"['INET_N_1479', 'INET_N_1309']","[43.557809, 43.570594]","[11.640662, 12.140796]","['IT', 'IT']",0.0,43.564201499999996,40.33452868909509,11.890729,70.0,0.0,1983.0,4.859897328305841,609.6 -INET_PL_602,Santander_Oviedo,['INET_PL_602'],"['INET_N_1104', 'INET_N_1314']","[43.399, 43.327]","[-5.847, -4.2]","['ES', 'ES']",0.0,43.363,133.4248631298971,-5.0235,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_606,Sergnano_Cremona,['INET_PL_606'],"['INET_N_326', 'INET_N_1346']","[45.136959, 45.427834]","[10.0225, 9.698543]","['IT', 'IT']",0.0,45.2823965,41.10458673802258,9.8605215,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_608,Sergnano_Vigasio,['INET_PL_608'],"['INET_N_1572', 'INET_N_1346']","[45.317353, 45.427834]","[10.944913, 9.698543]","['IT', 'IT']",0.0,45.372593499999994,98.16038523627343,10.321728,58.0,0.0,1983.0,13.560326138201887,863.6 -INET_PL_610,Settala_Monza,['INET_PL_610'],"['INET_N_996', 'INET_N_1350']","[45.582264, 45.451046]","[9.274872, 9.403412]","['IT', 'IT']",0.0,45.516655,17.702825319000738,9.339141999999999,24.0,0.0,1983.0,15.643424651921414,914.0 -INET_PL_612_EE_0,Setubal_Leira0,['INET_PL_612'],"['INET_N_847', 'INET_N_257']","[39.747, 38.9226889]","[-8.9086, -8.9069208]","['PT', 'PT']",0.0,39.33484445,91.6880999848865,-8.9077604,67.2196539708465,0.0,1983.0,7.973437539223207,711.0 -INET_PL_612_EE_1,Setubal_Leira1,['INET_PL_612'],"['INET_N_257', 'INET_N_1351']","[38.9226889, 38.532]","[-8.9069208, -8.83]","['PT', 'PT']",0.0,38.72734445,43.965873480562394,-8.8684604,67.2196539708465,0.0,1983.0,7.973437539223207,711.0 -INET_PL_615,SNIP,['INET_PL_615'],"['INET_N_687', 'INET_N_222']","[54.842619, 54.78735]","[-5.778247, -4.12912]","['GB', 'GB']",0.0,54.8149845,105.87316299372208,-4.9536835,75.0,0.0,1996.0,26.043265432067525,1132.5537688442212 -INET_PL_617,SNP,['INET_PL_617'],"['INET_N_222', 'INET_N_980']","[54.78735, 55.27762088]","[-4.12912, -3.438048755]","['GB', 'GB']",0.0,55.03248544,70.10320314743964,-3.7835843775000004,76.80652874754169,0.0,1983.0,19.841666666666665,998.4639333647048 -INET_PL_619,SOL,['INET_PL_619'],"['INET_N_1010', 'INET_N_1609']","[46.71, 46.8798]","[15.67, 15.472946]","['AT', 'AT']",0.0,46.7949,24.12212601295028,15.571473000000001,70.0,0.0,1983.0,4.6875,500.0 -INET_PL_621,SPoloDiPiave_Flaibano_1,['INET_PL_621'],"['INET_N_494', 'INET_N_1278']","[46.057566, 45.788222]","[12.984152, 12.393832]","['IT', 'IT']",0.0,45.922894,54.62402098147193,12.688991999999999,58.0,0.0,1983.0,15.660429644038864,914.4 -INET_PL_623,SPoloDiPiave_Flaibano_2,['INET_PL_623'],"['INET_N_494', 'INET_N_1278']","[46.057566, 45.788222]","[12.984152, 12.393832]","['IT', 'IT']",0.0,45.922894,54.62402098147193,12.688991999999999,75.0,0.0,1983.0,30.781174886065095,1219.2 -INET_PL_625,SPoloDiPiave_Flaibano_3,['INET_PL_625'],"['INET_N_494', 'INET_N_1278']","[46.057566, 45.788222]","[12.984152, 12.393832]","['IT', 'IT']",0.0,45.922894,54.62402098147193,12.688991999999999,70.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_643_EE_0,TAG0,['INET_PL_643'],"['INET_N_138', 'INET_N_416']","[48.316295, 47.874784]","[16.875328, 16.324289]","['AT', 'AT']",1.0,48.0955395,63.93316566499964,16.5998085,70.0,0.0,1965.0,15.779425949074072,900.0 -INET_PL_643_EE_1,TAG1,['INET_PL_643'],"['INET_N_416', 'INET_N_561']","[47.874784, 47.3404037]","[16.324289, 15.9911036]","['AT', 'AT']",1.0,47.60759385,64.47699689239107,16.1576963,70.0,0.0,1965.0,15.779425949074072,900.0 -INET_PL_643_EE_2,TAG2,['INET_PL_643'],"['INET_N_561', 'INET_N_1609']","[47.3404037, 46.8798]","[15.9911036, 15.472946]","['AT', 'AT']",1.0,47.11010185000001,64.52452041376486,15.732024800000001,70.0,0.0,1965.0,15.779425949074072,900.0 -INET_PL_643_EE_3,TAG3,['INET_PL_643'],"['INET_N_1609', 'INET_N_1265']","[46.8798, 46.674191]","[15.472946, 14.756849]","['AT', 'AT']",1.0,46.7769955,59.14832721323435,15.114897500000001,70.0,0.0,1965.0,15.779425949074072,900.0 -INET_PL_643_EE_4,TAG4,['INET_PL_643'],"['INET_N_1265', 'INET_N_76']","[46.674191, 46.5499903]","[14.756849, 13.7057619]","['AT', 'AT']",1.0,46.61209065,81.48988833267416,14.23130545,70.0,0.0,1965.0,15.779425949074072,900.0 -INET_PL_649_EE_0,TAG_Loop_20,['INET_PL_649'],"['INET_N_138', 'INET_N_416']","[48.316295, 47.874784]","[16.875328, 16.324289]","['AT', 'AT']",1.0,48.0955395,63.93316566499964,16.5998085,70.0,0.0,2007.0,15.779425949074072,1000.0 -INET_PL_649_EE_1,TAG_Loop_21,['INET_PL_649'],"['INET_N_416', 'INET_N_561']","[47.874784, 47.3404037]","[16.324289, 15.9911036]","['AT', 'AT']",1.0,47.60759385,64.47699689239107,16.1576963,70.0,0.0,2007.0,15.779425949074072,1000.0 -INET_PL_649_EE_2,TAG_Loop_22,['INET_PL_649'],"['INET_N_561', 'INET_N_1609']","[47.3404037, 46.8798]","[15.9911036, 15.472946]","['AT', 'AT']",1.0,47.11010185000001,64.52452041376486,15.732024800000001,70.0,0.0,2007.0,15.779425949074072,1000.0 -INET_PL_649_EE_3,TAG_Loop_23,['INET_PL_649'],"['INET_N_1609', 'INET_N_1265']","[46.8798, 46.674191]","[15.472946, 14.756849]","['AT', 'AT']",1.0,46.7769955,59.14832721323435,15.114897500000001,70.0,0.0,2007.0,15.779425949074072,1000.0 -INET_PL_649_EE_4,TAG_Loop_24,['INET_PL_649'],"['INET_N_1265', 'INET_N_76']","[46.674191, 46.5499903]","[14.756849, 13.7057619]","['AT', 'AT']",1.0,46.61209065,81.48988833267416,14.23130545,70.0,0.0,2007.0,15.779425949074072,1000.0 -INET_PL_655_EE_0,TAG_20,['INET_PL_655'],"['INET_N_1609', 'INET_N_1265']","[46.8798, 46.674191]","[15.472946, 14.756849]","['AT', 'AT']",1.0,46.7769955,59.14832721323435,15.114897500000001,70.0,0.0,1970.0,15.779425949074072,1050.0 -INET_PL_655_EE_1,TAG_21,['INET_PL_655'],"['INET_N_1265', 'INET_N_76']","[46.674191, 46.5499903]","[14.756849, 13.7057619]","['AT', 'AT']",1.0,46.61209065,81.48988833267416,14.23130545,70.0,0.0,1970.0,15.779425949074072,1050.0 -INET_PL_658_EE_0,TAP0,['INET_PL_658'],"['INET_N_1305', 'INET_N_952']","[40.963191, 40.980957]","[26.383183, 26.325508]","['TR', 'TR']",0.0,40.972074,5.231246722218424,26.3543455,84.16137020480073,0.0,2020.0,30.769836674573966,1219.0 -INET_PL_658_EE_1,TAP1,['INET_PL_658'],"['INET_N_952', 'INET_N_752']","[40.980957, 40.970417]","[26.325508, 26.307161]","['TR', 'GR']",0.0,40.97568699999999,1.9360476340444939,26.3163345,84.16137020480073,0.0,2020.0,30.769836674573966,1219.0 -INET_PL_658_EE_2,TAP2,['INET_PL_658'],"['INET_N_752', 'INET_N_28']","[40.970417, 40.9399278]","[26.307161, 25.9940986]","['GR', 'GR']",0.0,40.955172399999995,26.516018677996332,26.1506298,84.16137020480073,0.0,2020.0,30.769836674573966,1219.0 -INET_PL_658_EE_3,TAP3,['INET_PL_658'],"['INET_N_28', 'INET_N_728']","[40.9399278, 40.9713]","[25.9940986, 24.3804]","['GR', 'GR']",0.0,40.9556139,135.5980598122556,25.1872493,84.16137020480073,0.0,2020.0,7.924429246522989,709.5161904761904 -INET_PL_658_EE_4,TAP4,['INET_PL_658'],"['INET_N_728', 'INET_N_1485']","[40.9713, 40.6872]","[24.3804, 22.885]","['GR', 'GR']",0.0,40.82925,129.76242982600994,23.6327,84.16137020480073,0.0,2020.0,7.924429246522989,709.5161904761904 -INET_PL_658_EE_5,TAP5,['INET_PL_658'],"['INET_N_1485', 'INET_N_725']","[40.6872, 40.5257]","[22.885, 21.2563]","['GR', 'GR']",0.0,40.606449999999995,138.70240284599205,22.07065,84.16137020480073,0.0,2020.0,7.924429246522989,709.5161904761904 -INET_PL_658_EE_6,TAP6,['INET_PL_658'],"['INET_N_725', 'INET_N_173']","[40.5257, 40.581944]","[21.2563, 21.000003]","['GR', 'AL']",0.0,40.553822,22.54549912526288,21.1281515,84.16137020480073,0.0,2020.0,30.769836674573966,1219.0 -INET_PL_658_EE_7,TAP7,['INET_PL_658'],"['INET_N_173', 'INET_N_1495']","[40.581944, 40.7918]","[21.000003, 19.4504]","['AL', 'AL']",0.0,40.686872,132.76550797899262,20.225201499999997,84.16137020480073,0.0,2020.0,30.769836674573966,1219.0 -INET_PL_658_EE_8,TAP8,['INET_PL_658'],"['INET_N_1495', 'INET_N_944']","[40.7918, 40.265]","[19.4504, 18.38]","['AL', 'IT']",0.0,40.528400000000005,107.80863464373348,18.9152,84.16137020480073,0.0,2020.0,22.704211061226847,1219.0 -INET_PL_658_EE_9,TAP9,['INET_PL_658'],"['INET_N_944', 'INET_N_223']","[40.265, 40.593587]","[18.38, 17.860057]","['IT', 'IT']",0.0,40.4292935,57.217204632775925,18.1200285,84.16137020480073,0.0,2020.0,22.704211061226847,1219.0 -INET_PL_669,Tarsia_Crotone,['INET_PL_669'],"['INET_N_331', 'INET_N_1465']","[39.078971, 39.589859]","[17.113881, 16.251025]","['IT', 'IT']",0.0,39.334415,93.48574990141802,16.682453,70.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_671,Tarsia_Rende_1,['INET_PL_671'],"['INET_N_1223', 'INET_N_1465']","[39.332936, 39.589859]","[16.184738, 16.251025]","['IT', 'IT']",0.0,39.4613975,29.13892750885236,16.217881499999997,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_673,Tarsia_Rende_2,['INET_PL_673'],"['INET_N_1223', 'INET_N_1465']","[39.332936, 39.589859]","[16.184738, 16.251025]","['IT', 'IT']",0.0,39.4613975,29.13892750885236,16.217881499999997,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_675,Tarsia_Rende_3,['INET_PL_675'],"['INET_N_1223', 'INET_N_1465']","[39.332936, 39.589859]","[16.184738, 16.251025]","['IT', 'IT']",0.0,39.4613975,29.13892750885236,16.217881499999997,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_691,TerranuovaBracc_GalleseCivitaCast_1,['INET_PL_691'],"['INET_N_519', 'INET_N_1479']","[42.373095, 43.557809]","[12.40241, 11.640662]","['IT', 'IT']",0.0,42.965452,145.63136158671773,12.021536000000001,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_693,TerranuovaBracc_GalleseCivitaCast_2,['INET_PL_693'],"['INET_N_519', 'INET_N_1479']","[42.373095, 43.557809]","[12.40241, 11.640662]","['IT', 'IT']",0.0,42.965452,145.63136158671773,12.021536000000001,75.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_695,TerranuovaBracc_Livorno,['INET_PL_695'],"['INET_N_873', 'INET_N_1479']","[43.547519, 43.557809]","[10.311025, 11.640662]","['IT', 'IT']",0.0,43.552664,107.19081001002536,10.9758435,75.0,0.0,1983.0,2.2197672066822136,508.0 -INET_PL_697,Tivisa_Barcelona,['INET_PL_697'],"['INET_N_1494', 'INET_N_129']","[41.041, 41.398]","[0.7036, 2.174]","['ES', 'ES']",0.0,41.2195,129.27039356076037,1.4388,87.2255856989211,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_699_EE_0,Tivisa_VillarDeArnedo0,['INET_PL_699'],"['INET_N_1494', 'INET_N_269']","[41.041, 41.2167]","[0.7036, -0.2928]","['ES', 'ES']",0.0,41.12885,85.7367858541272,0.2054,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_699_EE_1,Tivisa_VillarDeArnedo1,['INET_PL_699'],"['INET_N_269', 'INET_N_1655']","[41.2167, 41.646]","[-0.2928, -0.883]","['ES', 'ES']",0.0,41.43135,68.57593275378775,-0.5879,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_699_EE_2,Tivisa_VillarDeArnedo2,['INET_PL_699'],"['INET_N_1655', 'INET_N_1573']","[41.646, 42.30398]","[-0.883, -2.070988]","['ES', 'ES']",0.0,41.974990000000005,122.50073882625243,-1.476994,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_703_EE_1,Transgas_11,['INET_PL_703'],"['INET_N_1263', 'INET_N_1570']","[49.663384, 49.209068]","[12.549857, 14.685073]","['CZ', 'CZ']",0.0,49.436226000000005,162.4947805983448,13.617465,73.52277280592001,0.0,1983.0,37.7875,900.0 -INET_PL_703_EE_2,Transgas_12,['INET_PL_703'],"['INET_N_1570', 'INET_N_643']","[49.209068, 49.0055]","[14.685073, 15.879424]","['CZ', 'CZ']",0.0,49.107284,89.86609750662896,15.2822485,73.52277280592001,0.0,1983.0,15.052937368210664,900.0 -INET_PL_703_EE_3,Transgas_13,['INET_PL_703'],"['INET_N_643', 'INET_N_913']","[49.0055, 49.021483]","[15.879424, 16.489006]","['CZ', 'CZ']",0.0,49.0134915,44.50658175620361,16.184215000000002,73.52277280592001,0.0,1983.0,15.052937368210664,900.0 -INET_PL_703_EE_4,Transgas_14,['INET_PL_703'],"['INET_N_913', 'INET_N_226']","[49.021483, 48.699]","[16.489006, 17.025]","['CZ', 'SI']",0.0,48.8602415,53.151176850447804,16.757002999999997,73.52277280592001,0.0,1983.0,38.07083333333333,900.0 -INET_PL_703_EE_5,Transgas_15,['INET_PL_703'],"['INET_N_226', 'INET_N_1149']","[48.699, 48.546336]","[17.025, 17.316051]","['SI', 'SI']",0.0,48.622668,27.318125744158223,17.1705255,73.52277280592001,0.0,1983.0,38.07083333333333,900.0 -INET_PL_710_EE_0,Transgas_20,['INET_PL_710'],"['INET_N_913', 'INET_N_1095']","[49.021483, 49.2054564]","[16.489006, 16.1557447]","['CZ', 'CZ']",0.0,49.1134697,31.740720761338757,16.32237535,73.52277280592001,0.0,1983.0,15.052937368210664,900.0 -INET_PL_710_EE_1,Transgas_21,['INET_PL_710'],"['INET_N_1095', 'INET_N_787']","[49.2054564, 50.016479]","[16.1557447, 14.930975]","['CZ', 'CZ']",0.0,49.6109677,126.21135272381474,15.54335985,73.52277280592001,0.0,1983.0,15.052937368210664,900.0 -INET_PL_710_EE_2,Transgas_22,['INET_PL_710'],"['INET_N_787', 'LKD_N_935']","[50.016479, 50.312]","[14.930975, 14.17]","['CZ', 'CZ']",0.0,50.164239499999994,63.40656916608294,14.5504875,73.52277280592001,0.0,1983.0,15.052937368210664,900.0 -INET_PL_710_EE_3,Transgas_23,['INET_PL_710'],"['LKD_N_935', 'INET_N_1263']","[50.312, 49.663384]","[14.17, 12.549857]","['CZ', 'CZ']",0.0,49.987691999999996,136.48607602799862,13.359928499999999,73.52277280592001,0.0,1983.0,37.7875,900.0 -INET_PL_715_EE_0,Transgas_30,['INET_PL_715'],"['INET_N_209', 'INET_N_529']","[50.635, 50.5859]","[13.39, 13.441]","['CZ', 'CZ']",0.0,50.61045,6.541073178770302,13.415500000000002,73.52277280592001,0.0,1983.0,39.66141666666667,900.0 -INET_PL_715_EE_1,Transgas_31,['INET_PL_715'],"['INET_N_529', 'LKD_N_935']","[50.5859, 50.312]","[13.441, 14.17]","['CZ', 'CZ']",0.0,50.448949999999996,59.950795191019,13.8055,73.52277280592001,0.0,1983.0,3.96,900.0 -INET_PL_718_EE_0,Transgas_40,['INET_PL_718'],"['INET_N_138', 'INET_N_1149']","[48.316295, 48.546336]","[16.875328, 17.316051]","['AT', 'SI']",0.0,48.4313155,41.384650165180325,17.0956895,73.52277280592001,0.0,1983.0,5.7625,900.0 -INET_PL_718_EE_1,Transgas_41,['INET_PL_718'],"['INET_N_1149', 'INET_N_1037']","[48.546336, 48.3]","[17.316051, 18.08]","['SI', 'SI']",0.0,48.423168,62.69463989918071,17.6980255,73.52277280592001,0.0,1983.0,5.7625,900.0 -INET_PL_718_EE_2,Transgas_42,['INET_PL_718'],"['INET_N_1037', 'INET_N_1561']","[48.3, 48.2023]","[18.08, 19.461]","['SI', 'SI']",0.0,48.251149999999996,102.85696486237426,18.7705,73.52277280592001,0.0,1983.0,5.290208333333333,900.0 -INET_PL_718_EE_3,Transgas_43,['INET_PL_718'],"['INET_N_1561', 'INET_N_694']","[48.2023, 48.6]","[19.461, 20.72]","['SI', 'SI']",0.0,48.40115,102.95852124878833,20.0905,73.52277280592001,0.0,1983.0,5.290208333333333,900.0 -INET_PL_718_EE_4,Transgas_44,['INET_PL_718'],"['INET_N_694', 'INET_N_1560']","[48.6, 48.552002]","[20.72, 22.121625]","['SI', 'SI']",0.0,48.576001000000005,103.28576960028468,21.4208125,73.33056287308621,0.0,1983.0,17.333333333333332,900.0 -INET_PL_724_EE_0,Transitgas_10,['INET_PL_724'],"['INET_N_1273', 'INET_N_885']","[47.079, 47.386]","[8.133, 7.946]","['CH', 'CH']",0.0,47.2325,36.95311334841052,8.0395,67.5,0.0,2002.0,13.2475,1200.0 -INET_PL_724_EE_3,Transitgas_13,['INET_PL_724'],"['INET_N_885', 'INET_N_1273']","[47.386, 47.079]","[7.946, 8.133]","['CH', 'CH']",0.0,47.2325,36.95311334841052,8.0395,67.5,0.0,2002.0,13.2475,1200.0 -INET_PL_724_EE_4,Transitgas_14,['INET_PL_724'],"['INET_N_1273', 'INET_N_571']","[47.079, 46.45]","[8.133, 8.3666667]","['CH', 'IT']",0.0,46.7645,72.19317406368545,8.24983335,67.5,0.0,2002.0,26.475,1200.0 -INET_PL_730_EE_0,Transitgas_Frankreich_10,['INET_PL_730'],"['INET_N_1273', 'INET_N_1249']","[47.079, 47.481]","[8.133, 7.457]","['CH', 'FR']",0.0,47.28,67.83390372386147,7.795,67.5,0.0,2001.0,9.291666666666666,900.0 -INET_PL_730_EE_1,Transitgas_Frankreich_11,['INET_PL_730'],"['INET_N_1249', 'INET_N_819']","[47.481, 48.7289]","[7.457, 6.295]","['FR', 'FR']",0.0,48.10495,163.44442399394026,6.8759999999999994,67.5,0.0,2001.0,9.291666666666666,900.0 -INET_PL_733,Valenca Do Minho_Braga,['INET_PL_733'],"['INET_N_1550', 'INET_N_204']","[42.0248024, 41.541]","[-8.6398019, -8.614]","['PT', 'PT']",0.0,41.7829012,53.85579515725346,-8.62690095,60.516337114498455,0.0,1983.0,2.2671066345305,510.0 -INET_PL_735,Valladolid_Aranda,['INET_PL_735'],"['INET_N_72', 'INET_N_1551']","[41.6704, 41.6552]","[-3.6892, -4.7237]","['ES', 'ES']",0.0,41.662800000000004,85.97939980100857,-4.20645,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_737_EE_0,Varosfoeld_Slobodnica_10,['INET_PL_737'],"['INET_N_1556', 'INET_N_135']","[46.823766, 46.126703]","[19.769095, 18.7741311]","['HU', 'HU']",1.0,46.4752345,108.71909123354503,19.27161305,75.0,0.0,1983.0,11.10023465003349,800.0 -INET_PL_737_EE_1,Varosfoeld_Slobodnica_11,['INET_PL_737'],"['INET_N_135', 'INET_N_1377']","[46.126703, 45.1566]","[18.7741311, 17.9314]","['HU', 'HR']",1.0,45.641651499999995,126.24499849123583,18.35276555,75.0,0.0,1983.0,3.2625,800.0 -INET_PL_740,Vastogirardi_Campochiaro_1,['INET_PL_740'],"['INET_N_251', 'GSE_N_143']","[41.447384, 41.774614]","[14.508592, 14.260708]","['IT', 'IT']",0.0,41.610999,41.83016922962117,14.38465,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_742,Vastogirardi_Campochiaro_2,['INET_PL_742'],"['INET_N_251', 'GSE_N_143']","[41.447384, 41.774614]","[14.508592, 14.260708]","['IT', 'IT']",0.0,41.610999,41.83016922962117,14.38465,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_744,Vastogirardi_Sulmona_1,['INET_PL_744'],"['INET_N_1438', 'GSE_N_143']","[42.050263, 41.774614]","[13.929251, 14.260708]","['IT', 'IT']",0.0,41.9124385,41.14341177297201,14.0949795,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_746,Vastogirardi_Sulmona_2,['INET_PL_746'],"['INET_N_1438', 'GSE_N_143']","[42.050263, 41.774614]","[13.929251, 14.260708]","['IT', 'IT']",0.0,41.9124385,41.14341177297201,14.0949795,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_748,Veruno_Golasecca,['INET_PL_748'],"['INET_N_550', 'INET_N_1568']","[45.697737, 45.689397]","[8.658697, 8.527687]","['IT', 'IT']",0.0,45.693567,10.22081605923499,8.593192,70.0,0.0,1983.0,4.871240190035461,610.0 -INET_PL_750,Veruno_Mortara_1,['INET_PL_750'],"['INET_N_1000', 'INET_N_1568']","[45.252239, 45.689397]","[8.737499, 8.527687]","['IT', 'IT']",0.0,45.470818,51.30523443835004,8.632593,55.0,0.0,1983.0,13.416053419036118,860.0 -INET_PL_752,Veruno_Mortara_2,['INET_PL_752'],"['INET_N_1000', 'INET_N_1568']","[45.252239, 45.689397]","[8.737499, 8.527687]","['IT', 'IT']",0.0,45.470818,51.30523443835004,8.632593,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_754,Vigasio_Trento,['INET_PL_754'],"['INET_N_1506', 'INET_N_1572']","[46.074613, 45.317353]","[11.129449, 10.944913]","['IT', 'IT']",0.0,45.695983,85.44122736011234,11.037181,64.0,0.0,1983.0,0.059660743535608685,304.8 -INET_PL_756,Vigasio_Zimella,['INET_PL_756'],"['INET_N_1663', 'INET_N_1572']","[45.332539, 45.317353]","[11.375813, 10.944913]","['IT', 'IT']",0.0,45.324946,33.7403904490746,11.160363,58.0,0.0,1983.0,13.560326138201887,863.6 -INET_PL_758,VillarDeArnedo_Haro,['INET_PL_758'],"['INET_N_1573', 'INET_N_601']","[42.30398, 42.565847]","[-2.070988, -2.882395]","['ES', 'ES']",0.0,42.4349135,72.70006972606481,-2.4766915,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_760,VillarDeArnedo_Navarra,['INET_PL_760'],"['INET_N_1573', 'INET_N_1018']","[42.30398, 42.6953909]","[-2.070988, -1.4760691]","['ES', 'ES']",0.0,42.49968545,65.38845206869392,-1.77352855,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_762,Villesse_Gorizia,['INET_PL_762'],"['INET_N_554', 'INET_N_1574']","[45.942831, 45.862614]","[13.619396, 13.438999]","['IT', 'IT']",0.0,45.902722499999996,16.570498302279272,13.5291975,75.0,0.0,1983.0,1.1791666666666667,1066.8 -INET_PL_766_EE_0,WAG_10,['INET_PL_766'],"['INET_N_138', 'INET_N_450']","[48.316295, 48.36]","[16.875328, 16.42]","['AT', 'AT']",0.0,48.3381475,34.01522669297724,16.647664,70.0,0.0,1980.0,5.7625,800.0 -INET_PL_766_EE_1,WAG_11,['INET_PL_766'],"['INET_N_450', 'INET_N_754']","[48.36, 48.4319861]","[16.42, 15.8974939]","['AT', 'AT']",0.0,48.39599305,39.41113905868644,16.15874695,70.0,0.0,1980.0,11.10023465003349,800.0 -INET_PL_766_EE_2,WAG_12,['INET_PL_766'],"['INET_N_754', 'INET_N_859']","[48.4319861, 48.502]","[15.8974939, 15.379]","['AT', 'AT']",0.0,48.46699305,39.02434683632756,15.63824695,70.0,0.0,1980.0,11.10023465003349,800.0 -INET_PL_766_EE_3,WAG_13,['INET_PL_766'],"['INET_N_859', 'INET_N_1201']","[48.502, 48.541365]","[15.379, 14.489137]","['AT', 'AT']",0.0,48.5216825,65.70330210221758,14.934068499999999,70.0,0.0,1980.0,11.10023465003349,800.0 -INET_PL_766_EE_4,WAG_14,['INET_PL_766'],"['INET_N_1201', 'INET_N_105']","[48.541365, 48.521]","[14.489137, 14.292]","['AT', 'AT']",0.0,48.5311825,14.696288057404045,14.3905685,70.0,0.0,1980.0,11.10023465003349,800.0 -INET_PL_766_EE_5,WAG_15,['INET_PL_766'],"['INET_N_105', 'INET_N_1071']","[48.521, 48.55443]","[14.292, 13.751863]","['AT', 'AT']",0.0,48.537715000000006,39.95347755247837,14.0219315,70.0,0.0,1980.0,8.308333333333334,800.0 -INET_PL_773_EE_0,WAG_E3_10,['INET_PL_773'],"['INET_N_450', 'INET_N_754']","[48.36, 48.4319861]","[16.42, 15.8974939]","['AT', 'AT']",1.0,48.39599305,39.41113905868644,16.15874695,90.0,0.0,2013.0,29.70118861792608,1200.0 -INET_PL_773_EE_1,WAG_E3_11,['INET_PL_773'],"['INET_N_754', 'INET_N_859']","[48.4319861, 48.502]","[15.8974939, 15.379]","['AT', 'AT']",1.0,48.46699305,39.02434683632756,15.63824695,90.0,0.0,2013.0,29.70118861792608,1200.0 -INET_PL_773_EE_2,WAG_E3_12,['INET_PL_773'],"['INET_N_859', 'INET_N_1201']","[48.502, 48.541365]","[15.379, 14.489137]","['AT', 'AT']",1.0,48.5216825,65.70330210221758,14.934068499999999,90.0,0.0,2013.0,29.70118861792608,1200.0 -INET_PL_773_EE_3,WAG_E3_13,['INET_PL_773'],"['INET_N_1201', 'INET_N_105']","[48.541365, 48.521]","[14.489137, 14.292]","['AT', 'AT']",1.0,48.5311825,14.696288057404045,14.3905685,90.0,0.0,2013.0,29.70118861792608,1200.0 -INET_PL_778,WAG_PLUS_600_1,['INET_PL_778'],"['INET_N_859', 'INET_N_754']","[48.502, 48.4319861]","[15.379, 15.8974939]","['AT', 'AT']",1.0,48.46699305,39.02434683632756,15.63824695,90.0,0.0,2007.0,29.70118861792608,1200.0 -INET_PL_784_EE_0,ZaharaDeLosAtunes_Cordoba0,['INET_PL_784'],"['INET_N_1650', 'INET_N_73']","[36.128832, 36.755422]","[-5.833539, -5.812416]","['ES', 'ES']",0.0,36.442127,69.72112442595729,-5.8229775,84.16137020480073,0.0,1983.0,18.445833333333333,1219.0 -INET_PL_784_EE_1,ZaharaDeLosAtunes_Cordoba1,['INET_PL_784'],"['INET_N_73', 'INET_N_1186']","[36.755422, 37.49]","[-5.812416, -4.838]","['ES', 'ES']",0.0,37.122711,118.92863979556314,-5.325208,84.16137020480073,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_784_EE_2,ZaharaDeLosAtunes_Cordoba2,['INET_PL_784'],"['INET_N_1186', 'INET_N_314']","[37.49, 37.906]","[-4.838, -4.68003]","['ES', 'ES']",0.0,37.698,48.31512623750555,-4.759015,84.16137020480073,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_788,Zamora_Oviedo,['INET_PL_788'],"['INET_N_1653', 'INET_N_1104']","[41.506, 43.399]","[-5.644, -5.847]","['ES', 'ES']",0.0,42.4525,211.2159395734701,-5.7455,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_790,Zamora_Valladolid,['INET_PL_790'],"['INET_N_1551', 'INET_N_1653']","[41.6552, 41.506]","[-4.7237, -5.644]","['ES', 'ES']",0.0,41.580600000000004,78.34855162049683,-5.18385,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_792,Zimella_Istrana_1,['INET_PL_792'],"['INET_N_691', 'INET_N_1663']","[45.715303, 45.332539]","[12.072133, 11.375813]","['IT', 'IT']",0.0,45.523921,68.97151300080009,11.723973,58.0,0.0,1983.0,13.560326138201887,863.6 -INET_PL_794,Zimella_Istrana_2,['INET_PL_794'],"['INET_N_691', 'INET_N_1663']","[45.715303, 45.332539]","[12.072133, 11.375813]","['IT', 'IT']",0.0,45.523921,68.97151300080009,11.723973,70.0,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_796,Zimella_Istrana_3,['INET_PL_796'],"['INET_N_691', 'INET_N_1663']","[45.715303, 45.332539]","[12.072133, 11.375813]","['IT', 'IT']",0.0,45.523921,68.97151300080009,11.723973,75.0,0.0,1983.0,43.2617900064677,1422.4 -INET_PL_798,Zimella_PoggioRenatico_1,['INET_PL_798'],"['INET_N_1153', 'INET_N_1663']","[44.764758, 45.332539]","[11.486382, 11.375813]","['IT', 'IT']",0.0,45.0486485,63.74909972048035,11.4310975,75.0,0.0,1983.0,30.769836674573966,1219.0 -INET_PL_800,Zimella_PoggioRenatico_2,['INET_PL_800'],"['INET_N_1153', 'INET_N_1663']","[44.764758, 45.332539]","[11.486382, 11.375813]","['IT', 'IT']",0.0,45.0486485,63.74909972048035,11.4310975,70.0,0.0,1983.0,13.536238832861162,863.0 -INET_PL_811_EE_0,St_Fergus_Kirriemuir0,['INET_PL_811'],"['INET_N_1401', 'INET_N_2']","[57.567885, 57.13600455]","[-1.844608, -2.379727732]","['GB', 'GB']",0.0,57.351944775,57.78129978287192,-2.112167866,76.80652874754169,0.0,1983.0,29.40833333333333,998.4639333647048 -INET_PL_811_EE_1,St_Fergus_Kirriemuir1,['INET_PL_811'],"['INET_N_2', 'INET_N_760']","[57.13600455, 56.68104364]","[-2.379727732, -2.925588306]","['GB', 'GB']",0.0,56.908524095000004,60.49569483358765,-2.652658019,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_814,Kirriemuir_Bathgate,['INET_PL_814'],"['INET_N_760', 'INET_N_137']","[56.68104364, 55.91941138]","[-2.925588306, -3.741778958]","['GB', 'GB']",0.0,56.30022751,98.55845694548808,-3.3336836319999996,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_816,Bathgate_Moffat,['INET_PL_816'],"['INET_N_137', 'INET_N_980']","[55.91941138, 55.27762088]","[-3.741778958, -3.438048755]","['GB', 'GB']",0.0,55.59851613,73.89384387816163,-3.5899138565,76.80652874754169,0.0,1983.0,19.841666666666665,998.4639333647048 -INET_PL_818,Longtown_Bishop_Auckland,['INET_PL_818'],"['INET_N_882', 'INET_N_177']","[55.0092, 54.6707702]","[-2.96927, -1.565698513]","['GB', 'GB']",0.0,54.8399851,97.46356158833419,-2.2674842565,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_820,Longtown_Carnforth,['INET_PL_820'],"['INET_N_882', 'INET_N_256']","[55.0092, 54.10108859]","[-2.96927, -2.737139207]","['GB', 'GB']",0.0,54.555144295000005,102.11270977218052,-2.8532046035,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_822,Blackrod_Elworth,['INET_PL_822'],"['INET_N_183', 'INET_N_434']","[53.5924, 53.1563848]","[-2.5, -2.411266389]","['GB', 'GB']",0.0,53.3743924,48.8540238156746,-2.4556331945,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_824,Elworth_Audley,['INET_PL_824'],"['INET_N_434', 'INET_N_83']","[53.1563848, 53.06]","[-2.411266389, -2.35]","['GB', 'GB']",0.0,53.1081924,11.474849896232259,-2.3806331945,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_826,Audley_Alrewas,['INET_PL_826'],"['INET_N_83', 'INET_N_42']","[53.06, 52.73869018]","[-2.35, -1.77561329]","['GB', 'GB']",0.0,52.89934509,52.55956351276077,-2.062806645,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_828,Alrewas_Peterborough,['INET_PL_828'],"['INET_N_42', 'INET_N_1133']","[52.73869018, 52.5769]","[-1.77561329, -0.204]","['GB', 'GB']",0.0,52.65779509,107.54937571829271,-0.9898066449999999,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_830,Wisbech_Peterborough,['INET_PL_830'],"['INET_N_1629', 'INET_N_1133']","[52.72414573, 52.5769]","[0.163393056, -0.204]","['GB', 'GB']",0.0,52.650522865,29.713189677859454,-0.02030347199999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_832,Wisbech_Hatton,['INET_PL_832'],"['INET_N_1629', 'INET_N_606']","[52.72414573, 53.26989703]","[0.163393056, -0.240515533]","['GB', 'GB']",0.0,52.99702138,66.45335232793755,-0.0385612385,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_834,Scunthorpe_Easington,['INET_PL_834'],"['INET_N_1340', 'INET_N_410']","[53.52982942, 53.6548]","[-0.682635915, 0.11978]","['GB', 'GB']",0.0,53.59231471,54.76686941943314,-0.2814279575,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_836,Scunthorpe_Hatton,['INET_PL_836'],"['INET_N_1340', 'INET_N_606']","[53.52982942, 53.26989703]","[-0.682635915, -0.240515533]","['GB', 'GB']",0.0,53.399863225000004,41.17771923412048,-0.461575724,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_838,Scunthorpe_Carnforth,['INET_PL_838'],"['INET_N_1340', 'INET_N_256']","[53.52982942, 54.10108859]","[-0.682635915, -2.737139207]","['GB', 'GB']",0.0,53.815459005,149.12312254168967,-1.709887561,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_840,Easington_Bishop Auckland,['INET_PL_840'],"['INET_N_410', 'INET_N_177']","[53.6548, 54.6707702]","[0.11978, -1.565698513]","['GB', 'GB']",0.0,54.1627851,157.5303994256474,-0.7229592565,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_842,Alrewas_Churchover,['INET_PL_842'],"['INET_N_42', 'INET_N_299']","[52.73869018, 52.41508373]","[-1.77561329, -1.27196689]","['GB', 'GB']",0.0,52.576886955,49.54342348659181,-1.5237900899999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_844,Churchover_Wormington,['INET_PL_844'],"['INET_N_299', 'INET_N_1638']","[52.41508373, 52.02891528]","[-1.27196689, -1.928437644]","['GB', 'GB']",0.0,52.221999505,62.015099377301176,-1.600202267,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_846,Aylesbury_Whitwell,['INET_PL_846'],"['INET_N_97', 'INET_N_1618']","[51.86022749, 51.88346126]","[-0.962549867, -0.294815399]","['GB', 'GB']",0.0,51.871844374999995,45.929799496242104,-0.6286826329999999,76.80652874754169,0.0,1983.0,33.05416666666667,998.4639333647048 -INET_PL_848,Aylesbury_Huntingdon,['INET_PL_848'],"['INET_N_97', 'INET_N_649']","[51.86022749, 52.31032265]","[-0.962549867, -0.362344801]","['GB', 'GB']",0.0,52.08527507,64.72467945601827,-0.662447334,76.80652874754169,0.0,1983.0,33.05416666666667,998.4639333647048 -INET_PL_850,Huntingdon_Cambridge,['INET_PL_850'],"['INET_N_248', 'INET_N_649']","[52.0812606, 52.31032265]","[0.166856789, -0.362344801]","['GB', 'GB']",0.0,52.195791625,44.16985045939885,-0.097744006,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_852,Huntingdon_Wisbech,['INET_PL_852'],"['INET_N_649', 'INET_N_1629']","[52.31032265, 52.72414573]","[-0.362344801, 0.163393056]","['GB', 'GB']",0.0,52.517234189999996,58.18047496740521,-0.09947587249999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_854,Cambridge_Whitwell,['INET_PL_854'],"['INET_N_1618', 'INET_N_248']","[51.88346126, 52.0812606]","[-0.294815399, 0.166856789]","['GB', 'GB']",0.0,51.98236093,38.52734709908307,-0.06397930499999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_856,Bacton_Kings,['INET_PL_856'],"['INET_N_103', 'INET_N_749']","[52.8506, 52.71582283]","[1.466, 0.547139531]","['GB', 'GB']",0.0,52.783211415,63.60802963171925,1.0065697655,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_858,Wisbech_Kings,['INET_PL_858'],"['INET_N_1629', 'INET_N_749']","[52.72414573, 52.71582283]","[0.163393056, 0.547139531]","['GB', 'GB']",0.0,52.71998428,25.87073672300588,0.3552662935,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_860,Bacton_Diss,['INET_PL_860'],"['INET_N_103', 'INET_N_369']","[52.8506, 52.33222249]","[1.466, 1.132177892]","['GB', 'GB']",0.0,52.591411245,61.914101870698275,1.299088946,76.80652874754169,0.0,1983.0,27.15416666666667,998.4639333647048 -INET_PL_862,Aylesbury_Lockerley,['INET_PL_862'],"['INET_N_97', 'INET_N_879']","[51.86022749, 51.02403276]","[-0.962549867, -1.570798531]","['GB', 'GB']",0.0,51.442130125,102.12215870310882,-1.2666741990000001,76.80652874754169,0.0,1983.0,33.05416666666667,998.4639333647048 -INET_PL_864,Diss_Isle_of_Grain,['INET_PL_864'],"['INET_N_369', 'INET_N_688']","[52.33222249, 51.45]","[1.132177892, 0.711]","['GB', 'GB']",0.0,51.891111245000005,102.29963240124263,0.921588946,90.9024101521128,0.0,1983.0,27.15416666666667,1421.1311327580445 -INET_PL_866,Isle_of_Grain_Chelmsford,['INET_PL_866'],"['INET_N_286', 'INET_N_688']","[51.75082117, 51.45]","[0.404054565, 0.711]","['GB', 'GB']",0.0,51.600410585000006,39.61450747130015,0.5575272824999999,90.9024101521128,0.0,1983.0,43.177898227486054,1421.1311327580445 -INET_PL_868,Cambridge_Chelmsford,['INET_PL_868'],"['INET_N_248', 'INET_N_286']","[52.0812606, 51.75082117]","[0.166856789, 0.404054565]","['GB', 'GB']",0.0,51.916040885,40.19626215463322,0.28545567699999996,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_870,Longtown_Moffat,['INET_PL_870'],"['INET_N_882', 'INET_N_980']","[55.0092, 55.27762088]","[-2.96927, -3.438048755]","['GB', 'GB']",0.0,55.14341044,42.18366400567998,-3.2036593775,76.80652874754169,0.0,1983.0,19.841666666666665,998.4639333647048 -INET_PL_872,Hatton_Peterborough,['INET_PL_872'],"['INET_N_606', 'INET_N_1133']","[53.26989703, 52.5769]","[-0.240515533, -0.204]","['GB', 'GB']",0.0,52.923398515,77.12082508363406,-0.2222577665,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_874,Peterborough_Churchover,['INET_PL_874'],"['INET_N_1133', 'INET_N_299']","[52.5769, 52.41508373]","[-0.204, -1.27196689]","['GB', 'GB']",0.0,52.495991865,74.52650699705426,-0.737983445,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_876,Carnforth_Lancashire,['INET_PL_876'],"['INET_N_256', 'INET_N_817']","[54.10108859, 53.9]","[-2.737139207, -2.64]","['GB', 'GB']",0.0,54.000544295,23.251180493050054,-2.6885696035,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_878,Lancashire_Blackrod,['INET_PL_878'],"['INET_N_183', 'INET_N_817']","[53.5924, 53.9]","[-2.5, -2.64]","['GB', 'GB']",0.0,53.7462,35.43189148876823,-2.5700000000000003,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_880,Lockerley_Ilchester,['INET_PL_880'],"['INET_N_879', 'INET_N_663']","[51.02403276, 51.002]","[-1.570798531, -2.6827]","['GB', 'GB']",0.0,51.013016379999996,77.84822225763936,-2.1267492655,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_882,Avonmouth_Ilchester,['INET_PL_882'],"['INET_N_93', 'INET_N_663']","[51.5306638, 51.002]","[-2.654260229, -2.6827]","['GB', 'GB']",0.0,51.2663319,58.836487317771955,-2.6684801145000003,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_884,Wormington_Avonmouth,['INET_PL_884'],"['INET_N_93', 'INET_N_1638']","[51.5306638, 52.02891528]","[-2.654260229, -1.928437644]","['GB', 'GB']",0.0,51.779789539999996,74.6066760142385,-2.2913489365,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_886,Ilchester_Exeter,['INET_PL_886'],"['INET_N_663', 'INET_N_476']","[51.002, 50.721]","[-2.6827, -3.519]","['GB', 'GB']",0.0,50.8615,66.51523953372231,-3.1008500000000003,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_888,Bacton_Cambridge,['INET_PL_888'],"['INET_N_103', 'INET_N_248']","[52.8506, 52.0812606]","[1.466, 0.166856789]","['GB', 'GB']",0.0,52.4659303,122.76927888954567,0.8164283944999999,76.80652874754169,0.0,1983.0,27.15416666666667,998.4639333647048 -INET_PL_890,Wormington_Felindre,['INET_PL_890'],"['INET_N_1638', 'INET_N_484']","[52.02891528, 51.69076021]","[-1.928437644, -3.955976771]","['GB', 'GB']",0.0,51.859837745,144.26393266300587,-2.9422072075,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_892,Moffat_Brighthouse,['INET_PL_892'],"['INET_N_980', 'INET_N_222']","[55.27762088, 54.78735]","[-3.438048755, -4.12912]","['GB', 'GB']",0.0,55.03248544,70.10320314743964,-3.7835843775000004,76.80652874754169,0.0,1983.0,19.841666666666665,998.4639333647048 -INET_PL_894,Exeter_Penzance,['INET_PL_894'],"['INET_N_476', 'INET_N_1129']","[50.721, 50.118]","[-3.519, -5.537]","['GB', 'GB']",0.0,50.4195,157.95761054243528,-4.5280000000000005,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_896,Theddlethorpe_Hatton,['INET_PL_896'],"['INET_N_1484', 'INET_N_606']","[53.361334, 53.26989703]","[0.233697, -0.240515533]","['GB', 'GB']",0.0,53.315615515000005,33.11174127807345,-0.0034092665000000077,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_898,Teesside_BishopAuckland,['INET_PL_898'],"['INET_N_1472', 'INET_N_177']","[54.575519, 54.6707702]","[-1.127558, -1.565698513]","['GB', 'GB']",0.0,54.6231446,30.138363840761127,-1.3466282565,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_900,Gateway_Carnforth,['INET_PL_900'],"['INET_N_526', 'INET_N_256']","[54.099578, 54.10108859]","[-3.18364, -2.737139207]","['GB', 'GB']",0.0,54.100333295,29.121921462852004,-2.9603896035,73.51697657202638,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_902,Warrington_Burton_Point,['INET_PL_902'],"['INET_N_1601', 'INET_N_244']","[53.408661, 53.232]","[-2.480795373, -3.0813]","['GB', 'GB']",0.0,53.3203305,44.47490493395724,-2.7810476865,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_904,Interconnector_1,['INET_PL_904'],"['INET_N_222', 'INET_N_886']","[54.78735, 53.548]","[-4.12912, -6.084]","['GB', 'IE']",0.0,54.167675,187.62098854828406,-5.10656,60.0,0.0,1993.0,3.6326736504629626,610.0 -INET_PL_906,Interconnector_2,['INET_PL_906'],"['INET_N_222', 'INET_N_555']","[54.78735, 53.638742]","[-4.12912, -6.22249]","['GB', 'IE']",0.0,54.213046000000006,186.70001918773326,-5.175805,69.0,0.0,2002.0,6.220953569444443,762.0 -INET_PL_908_EE_0,PolandLithuania0,['INET_PL_908'],"['INET_N_698', 'INET_N_426']","[54.941019, 54.7701]","[25.00762, 24.6474]","['LT', 'LT']",0.0,54.8555595,29.88956459238872,24.82751,68.56692399980633,0.0,2022.0,2.610416666666666,751.3981016598492 -INET_PL_908_EE_1,PolandLithuania1,['INET_PL_908'],"['INET_N_426', 'INET_N_50']","[54.7701, 54.396]","[24.6474, 24.046]","['LT', 'LT']",0.0,54.58305,56.8706017101976,24.3467,68.56692399980633,0.0,2022.0,2.610416666666666,751.3981016598492 -INET_PL_908_EE_2,PolandLithuania2,['INET_PL_908'],"['INET_N_50', 'INET_N_301']","[54.396, 52.8814838]","[24.046, 20.6197948]","['LT', 'PL']",0.0,53.6387419,281.77858437127105,22.3328974,68.56692399980633,0.0,2022.0,2.610416666666666,751.3981016598492 -INET_PL_912,PolandUkrainInterconnector,['INET_PL_912'],"['INET_N_391', 'INET_N_696']","[49.8087968, 50.0161463]","[23.6441847, 22.6777169]","['PL', 'PL']",1.0,49.91247155000001,72.96566385975095,23.160950800000002,71.56124140643587,0.0,2025.0,9.082592592592592,841.1831754718647 -INET_PL_914,PolandSlovakiaInterconnector,['INET_PL_914'],"['INET_N_1429', 'INET_N_1560']","[49.62671, 48.552002]","[22.072274, 22.121625]","['PL', 'SI']",1.0,49.089356,119.59362423074958,22.0969495,84.0,0.0,2020.0,5.335608796296296,1000.0 -INET_PL_916,Stork_I_II,['INET_PL_916'],"['INET_N_1503', 'INET_N_302']","[49.714948, 49.7497638]","[18.531823, 18.6354709]","['CZ', 'PL']",0.0,49.7323559,8.397890144938627,18.583646950000002,73.2674726086459,0.0,2022.0,11.34909722222222,872.6251955584028 -INET_PL_918_EE_0,BalticPolishPipe0,['INET_PL_918'],"['INET_N_898', 'LKD_N_932']","[52.5006547, 53.56382]","[16.07, 14.82843]","['PL', 'PL']",0.0,53.03223735,144.49921214587695,15.449215,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_1,BalticPolishPipe1,['INET_PL_918'],"['LKD_N_932', 'INET_N_1150']","[53.56382, 53.804]","[14.82843, 15.26609]","['PL', 'PL']",0.0,53.68391,39.30522561458511,15.047260000000001,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_2,BalticPolishPipe2,['INET_PL_918'],"['INET_N_1150', 'INET_N_1030']","[53.804, 54.09]","[15.26609, 15.07]","['PL', 'PL']",0.0,53.947,34.303943882129154,15.168045,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_3,BalticPolishPipe3,['INET_PL_918'],"['INET_N_1030', 'INET_N_483']","[54.09, 55.187]","[15.07, 12.118]","['PL', 'DK']",0.0,54.6385,225.80096590314488,13.594000000000001,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_4,BalticPolishPipe4,['INET_PL_918'],"['INET_N_483', 'INET_N_1375']","[55.187, 55.39]","[12.118, 11.21]","['DK', 'DK']",0.0,55.2885,61.78511531282397,11.664000000000001,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_5,BalticPolishPipe5,['INET_PL_918'],"['INET_N_1375', 'INET_N_1064']","[55.39, 55.287]","[11.21, 10.793]","['DK', 'DK']",0.0,55.338499999999996,28.75956541806081,11.0015,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_6,BalticPolishPipe6,['INET_PL_918'],"['INET_N_1064', 'INET_N_418']","[55.287, 55.617559]","[10.793, 9.3122919]","['DK', 'DK']",0.0,55.4522795,100.3735478910373,10.052645949999999,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_918_EE_7,BalticPolishPipe7,['INET_PL_918'],"['INET_N_418', 'INET_N_180']","[55.617559, 55.776]","[9.3122919, 8.178]","['DK', 'DK']",0.0,55.696779500000005,73.25481931864547,8.745145950000001,69.98521828691833,0.0,2022.0,5.676040277777777,793.9258767626391 -INET_PL_927,EntsoG_1,['INET_PL_927'],"['INET_N_831', 'LKD_N_933']","[51.2286263, 51.12]","[15.0307916, 17.03]","['PL', 'PL']",0.0,51.17431315,139.93477252231165,16.0303958,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_929,EntsoG_2,['INET_PL_929'],"['LKD_N_933', 'INET_N_1074']","[51.12, 51.57429]","[17.03, 17.67392]","['PL', 'PL']",0.0,51.347145,67.48749855992222,17.35196,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_931_EE_0,EntsoG_30,['INET_PL_931'],"['INET_N_1074', 'INET_N_194']","[51.57429, 52.120077]","[17.67392, 16.645469]","['PL', 'PL']",0.0,51.8471835,93.16200033771673,17.1596945,73.38770476070103,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_931_EE_1,EntsoG_31,['INET_PL_931'],"['INET_N_194', 'INET_N_898']","[52.120077, 52.5006547]","[16.645469, 16.07]","['PL', 'PL']",0.0,52.31036585,57.64904799151297,16.3577345,73.38770476070103,0.0,1983.0,21.465752739535823,1042.0200911090994 -INET_PL_934,EntsoG_4,['INET_PL_934'],"['INET_N_1074', 'INET_N_1630']","[51.57429, 52.7074]","[17.67392, 18.9589]","['PL', 'PL ']",0.0,52.140845,153.5505370892155,18.316409999999998,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_936,EntsoG_5,['INET_PL_936'],"['INET_N_1630', 'INET_N_1221']","[52.7074, 52.37]","[18.9589, 21.03]","['PL ', 'PL']",0.0,52.5387,145.04878121449045,19.99445,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_938,EntsoG_6,['INET_PL_938'],"['INET_N_1221', 'INET_N_1640']","[52.37, 51.46113]","[21.03, 22.049956]","['PL', 'PL']",0.0,51.915565,122.94774628521974,21.539978,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_940,EntsoG_7,['INET_PL_940'],"['INET_N_1640', 'INET_N_1644']","[51.46113, 52.3956]","[22.049956, 23.211831]","['PL', 'PL']",0.0,51.928365,130.97186707225697,22.6308935,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_942,EntsoG_8,['INET_PL_942'],"['INET_N_1640', 'INET_N_696']","[51.46113, 50.0161463]","[22.049956, 22.6777169]","['PL', 'PL']",0.0,50.73863815,166.68768010118507,22.36383645,76.80652874754169,0.0,1983.0,5.65,998.4639333647048 -INET_PL_944,EntsoG_9,['INET_PL_944'],"['INET_N_696', 'INET_N_653']","[50.0161463, 50.006978]","[22.6777169, 22.264141]","['PL', 'PL']",0.0,50.01156215,29.579936204316677,22.47092895,73.21440559334458,0.0,1983.0,5.65,1041.7254206116368 -INET_PL_946,EntsoG_10,['INET_PL_946'],"['INET_N_1074', 'INET_N_1523']","[51.57429, 50.3379]","[17.67392, 19.2591]","['PL', 'PL']",0.0,50.956095,176.7633662149165,18.46651,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_948,EntsoG_11,['INET_PL_948'],"['INET_N_1523', 'INET_N_1155']","[50.3379, 50.013802]","[19.2591, 21.124868]","['PL', 'PL']",0.0,50.175850999999994,137.70646312263176,20.191983999999998,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_950,EntsoG_12,['INET_PL_950'],"['INET_N_1155', 'INET_N_1277']","[50.013802, 50.0658]","[21.124868, 22.0285]","['PL', 'PL ']",0.0,50.039801,64.81179678554179,21.576684,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_952,EntsoG_13,['INET_PL_952'],"['INET_N_1277', 'INET_N_653']","[50.0658, 50.006978]","[22.0285, 22.264141]","['PL ', 'PL']",0.0,50.036389,18.06160132376534,22.1463205,73.21440559334458,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_954,EntsoG_14,['INET_PL_954'],"['INET_N_1523', 'INET_N_1099']","[50.3379, 50.0366]","[19.2591, 19.227]","['PL', 'PL']",0.0,50.18725,33.59143007460977,19.24305,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_956,EntsoG_15,['INET_PL_956'],"['INET_N_1099', 'INET_N_1374']","[50.0366, 49.801]","[19.227, 18.7897]","['PL', 'PL']",0.0,49.918800000000005,40.835996326585544,19.00835,76.80652874754169,0.0,1983.0,1.1666666666666667,998.4639333647048 -INET_PL_958,EntsoG_16,['INET_PL_958'],"['INET_N_1374', 'INET_N_302']","[49.801, 49.7497638]","[18.7897, 18.6354709]","['PL', 'PL']",0.0,49.7753819,12.458284958640345,18.71258545,76.80652874754169,0.0,1983.0,1.1666666666666667,998.4639333647048 -INET_PL_960,EntsoG_17,['INET_PL_960'],"['INET_N_1099', 'INET_N_1155']","[50.0366, 50.013802]","[19.227, 21.124868]","['PL', 'PL']",0.0,50.025200999999996,135.64108877853482,20.175933999999998,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_962,EntsoG_18,['INET_PL_962'],"['INET_N_1630', 'INET_N_528']","[52.7074, 54.359]","[18.9589, 18.615]","['PL ', 'PL']",0.0,53.5332,185.108058323093,18.786949999999997,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_964,EntsoG_19,['INET_PL_964'],"['INET_N_528', 'INET_N_1150']","[54.359, 53.804]","[18.615, 15.26609]","['PL', 'PL']",0.0,54.081500000000005,227.04763982969084,16.940545,76.80652874754169,0.0,1983.0,7.0458333333333325,998.4639333647048 -INET_PL_966,EntsoG_22,['INET_PL_966'],"['INET_N_1644', 'INET_N_1643']","[52.3956, 52.3696]","[23.211831, 23.371]","['PL', 'BY']",0.0,52.3826,11.186752034964828,23.2914155,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_968,EntsoG_23,['INET_PL_968'],"['INET_N_775', 'INET_N_1379']","[53.01781, 53.0875127]","[23.896413, 25.3087192]","['PL', 'BY']",0.0,53.052661349999994,94.74032399662453,24.602566099999997,76.80652874754169,0.0,1983.0,42.67916666666667,998.4639333647048 -INET_PL_970,EntsoG_24,['INET_PL_970'],"['INET_N_1379', 'INET_N_1024']","[53.0875127, 53.2247]","[25.3087192, 26.6765]","['BY', 'BE']",0.0,53.15610635,92.4934484873453,25.9926096,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_972,EntsoG_25,['INET_PL_972'],"['INET_N_1024', 'INET_N_968']","[53.2247, 54.126352]","[26.6765, 27.995055]","['BE', 'BY']",0.0,53.675526,132.6820641065072,27.3357775,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_974,EntsoG_26,['INET_PL_974'],"['INET_N_1024', 'INET_N_692']","[53.2247, 52.7079632]","[26.6765, 25.3353752]","['BE', 'BY']",0.0,52.966331600000004,106.65377234889067,26.005937600000003,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_976,EntsoG_27,['INET_PL_976'],"['INET_N_692', 'INET_N_772']","[52.7079632, 52.2141109]","[25.3353752, 24.3581792]","['BY', 'BY']",0.0,52.46103705,86.04186643260982,24.8467772,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_978,EntsoG_28,['INET_PL_978'],"['INET_N_772', 'INET_N_1179']","[52.2141109, 52.144]","[24.3581792, 23.848]","['BY', 'BY']",0.0,52.17905545,35.66018460171602,24.103089599999997,73.26920560031947,0.0,1983.0,21.455990155577243,1041.818600201375 -INET_PL_980,EntsoG_29,['INET_PL_980'],"['INET_N_1179', 'INET_N_1643']","[52.144, 52.3696]","[23.848, 23.371]","['BY', 'BY']",0.0,52.2568,41.04190813328996,23.609499999999997,73.26920560031947,0.0,1983.0,21.455990155577243,1041.818600201375 -INET_PL_982,hand_1,['INET_PL_982'],"['INET_N_1445', 'LKD_N_932']","[53.909167, 53.56382]","[14.294722, 14.82843]","['PL', 'PL']",0.0,53.736493499999995,52.04333250341781,14.561576,73.40203500991852,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_984,hand_2,['INET_PL_984'],"['LKD_N_932', 'INET_N_1448']","[53.56382, 53.44]","[14.82843, 14.65]","['PL', 'PL']",0.0,53.501909999999995,18.139269644006053,14.739215000000002,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_988,hand_5,['INET_PL_988'],"['INET_N_479', 'INET_N_1273']","[47.658044, 47.079]","[8.6948726, 8.133]","['CH', 'CH']",0.0,47.368522,77.07034809914433,8.4139363,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_990_EE_0,NordStream_10,['INET_PL_990'],"['INET_N_1172', 'INET_N_1052']","[60.5549, 60.0]","[28.065696, 27.5]","['RU', 'XX']",0.0,60.27745,69.15705359093315,27.782848,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_990_EE_1,NordStream_11,['INET_PL_990'],"['INET_N_1052', 'INET_N_1051']","[60.0, 59.5]","[27.5, 22.0]","['XX', 'XX']",0.0,59.75,313.0722929521336,24.75,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_990_EE_2,NordStream_12,['INET_PL_990'],"['INET_N_1051', 'INET_N_1050']","[59.5, 59.0]","[22.0, 21.0]","['XX', 'XX']",0.0,59.25,79.54294149303374,21.5,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_990_EE_3,NordStream_13,['INET_PL_990'],"['INET_N_1050', 'INET_N_1049']","[59.0, 56.5]","[21.0, 19.0]","['XX', 'XX']",0.0,57.75,302.31917722515567,20.0,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_990_EE_4,NordStream_14,['INET_PL_990'],"['INET_N_1049', 'INET_N_1042']","[56.5, 55.7]","[19.0, 16.0]","['XX', 'XX']",0.0,56.1,206.26846499074568,17.5,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_990_EE_5,NordStream_15,['INET_PL_990'],"['INET_N_1042', 'LKD_N_937']","[55.7, 54.8]","[16.0, 15.2]","['XX', 'XX']",0.0,55.25,112.22094845140532,15.6,220.0,0.0,2011.0,33.148148148148145,1153.0 -INET_PL_998_EE_0,NordStream_20,['INET_PL_998'],"['INET_N_1017', 'INET_N_1048']","[59.3796931, 59.8]","[28.1790751, 27.5]","['EE', 'XX']",0.0,59.58984655,60.39360243829632,27.83953755,76.80652874754169,0.0,2025.0,19.39928803485337,998.4639333647048 -INET_PL_998_EE_1,NordStream_21,['INET_PL_998'],"['INET_N_1048', 'INET_N_1047']","[59.8, 59.3]","[27.5, 22.0]","['XX', 'XX']",0.0,59.55,314.88587368596285,24.75,76.80652874754169,0.0,2025.0,19.39928803485337,998.4639333647048 -INET_PL_998_EE_2,NordStream_22,['INET_PL_998'],"['INET_N_1047', 'INET_N_1046']","[59.3, 58.8]","[22.0, 21.0]","['XX', 'XX']",0.0,59.05,79.78160435245525,21.5,76.80652874754169,0.0,2025.0,19.39928803485337,998.4639333647048 -INET_PL_998_EE_3,NordStream_23,['INET_PL_998'],"['INET_N_1046', 'INET_N_1045']","[58.8, 56.3]","[21.0, 19.0]","['XX', 'XX']",0.0,57.55,302.5774358980721,20.0,76.80652874754169,0.0,2025.0,19.39928803485337,998.4639333647048 -INET_PL_998_EE_4,NordStream_24,['INET_PL_998'],"['INET_N_1045', 'INET_N_1044']","[56.3, 55.5]","[19.0, 16.0]","['XX', 'XX']",0.0,55.9,207.14014048511262,17.5,76.80652874754169,0.0,2025.0,19.39928803485337,998.4639333647048 -INET_PL_998_EE_5,NordStream_25,['INET_PL_998'],"['INET_N_1044', 'INET_N_1043']","[55.5, 54.6]","[16.0, 15.2]","['XX', 'XX']",0.0,55.05,112.33639171483159,15.6,76.80652874754169,0.0,2025.0,19.39928803485337,998.4639333647048 -INET_PL_1006_EE_0,Lithuania_Latvia_Interconnection0,['INET_PL_1006'],"['INET_N_1231', 'INET_N_658']","[56.9904, 56.59]","[24.1788, 24.2]","['LV', 'LV']",1.0,56.7902,44.55514751894261,24.1894,68.57842585924281,0.0,1962.0,2.6352777777777776,751.7429867065023 -INET_PL_1006_EE_1,Lithuania_Latvia_Interconnection1,['INET_PL_1006'],"['INET_N_658', 'INET_N_1113']","[56.59, 55.7347915]","[24.2, 24.3574774]","['LV', 'LT']",1.0,56.16239575,95.62337548109934,24.278738699999998,68.57842585924281,0.0,1962.0,2.6352777777777776,751.7429867065023 -INET_PL_1006_EE_2,Lithuania_Latvia_Interconnection2,['INET_PL_1006'],"['INET_N_1113', 'INET_N_698']","[55.7347915, 54.941019]","[24.3574774, 25.00762]","['LT', 'LT']",1.0,55.33790525,97.39947068584874,24.682548699999998,68.57842585924281,0.0,1962.0,2.6352777777777776,751.7429867065023 -INET_PL_1006_EE_3,Lithuania_Latvia_Interconnection3,['INET_PL_1006'],"['INET_N_698', 'INET_N_1575']","[54.941019, 54.6676]","[25.00762, 25.156]","['LT', 'LT']",1.0,54.8043095,31.865327520111972,25.081809999999997,68.57842585924281,0.0,1962.0,2.6352777777777776,751.7429867065023 -INET_PL_1011_EE_0,Karperi_Ampelia0,['INET_PL_1011'],"['INET_N_720', 'INET_N_1128']","[41.1221, 40.74]","[23.4243, 22.854]","['GR', 'GR']",0.0,40.93105,64.0551117336362,23.13915,76.80652874754169,0.0,1983.0,4.877083333333333,998.4639333647048 -INET_PL_1011_EE_1,Karperi_Ampelia1,['INET_PL_1011'],"['INET_N_1128', 'INET_N_1019']","[40.74, 40.7525173]","[22.854, 22.7703233]","['GR', 'GR']",0.0,40.74625865,7.187457110421964,22.81216165,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1011_EE_2,Karperi_Ampelia2,['INET_PL_1011'],"['INET_N_1019', 'INET_N_1509']","[40.7525173, 40.598]","[22.7703233, 22.5579]","['GR', 'GR']",0.0,40.67525865,24.82953292286257,22.664111650000002,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1011_EE_3,Karperi_Ampelia3,['INET_PL_1011'],"['INET_N_1509', 'INET_N_56']","[40.598, 39.329]","[22.5579, 22.38]","['GR', 'GR']",0.0,39.963499999999996,141.96302156578156,22.46895,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1016,Ampelia_Trikala2,['INET_PL_1016'],"['INET_N_56', 'INET_N_1510']","[39.329, 39.554]","[22.38, 21.768]","['GR', 'GR']",0.0,39.441500000000005,58.223667150252176,22.073999999999998,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1018,Ampelia_Volvos,['INET_PL_1018'],"['INET_N_56', 'INET_N_1586']","[39.329, 39.367]","[22.38, 22.95]","['GR', 'GR']",0.0,39.348,49.210359422763986,22.665,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1020,Ampelia_Bralos,['INET_PL_1020'],"['INET_N_56', 'INET_N_206']","[39.329, 38.73]","[22.38, 22.4634]","['GR', 'GR']",0.0,39.0295,67.01523457354254,22.4217,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1022,Bralos_Aliartos,['INET_PL_1022'],"['INET_N_206', 'INET_N_32']","[38.73, 38.3813]","[22.4634, 23.114]","['GR', 'GR']",0.0,38.55565,68.60604133367748,22.7887,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1024,Aliartos_Thiva,['INET_PL_1024'],"['INET_N_32', 'INET_N_1487']","[38.3813, 38.326]","[23.114, 23.32]","['GR', 'GR']",0.0,38.35365,18.99219282849812,23.217,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1026_EE_0,Thiva_Aspropyrgos0,['INET_PL_1026'],"['INET_N_1487', 'INET_N_669']","[38.326, 38.17]","[23.32, 23.412]","['GR', 'GR']",0.0,38.248000000000005,19.12254623157301,23.366,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1026_EE_1,Thiva_Aspropyrgos1,['INET_PL_1026'],"['INET_N_669', 'INET_N_80']","[38.17, 38.060554]","[23.412, 23.6]","['GR', 'GR']",0.0,38.115277000000006,20.46647407654801,23.506,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1029,Karperi_Sidirokastron,['INET_PL_1029'],"['INET_N_720', 'INET_N_1361']","[41.1221, 41.2349471]","[23.4243, 23.3938203]","['GR', 'GR']",0.0,41.17852355,12.80870935152839,23.409060150000002,76.80652874754169,0.0,1983.0,4.877083333333333,998.4639333647048 -INET_PL_1031,Kipoi_Komotini,['INET_PL_1031'],"['INET_N_752', 'INET_N_774']","[40.970417, 41.1224394]","[26.307161, 25.4065582]","['GR', 'GR']",0.0,41.046428199999994,77.41774140050872,25.8568596,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1033,Komotini_South Kavala,['INET_PL_1033'],"['INET_N_774', 'INET_N_1393']","[41.1224394, 40.946]","[25.4065582, 24.409]","['GR', 'GR']",0.0,41.034219699999994,85.96727418181854,24.9077791,73.31042269958262,0.0,1983.0,21.459385622822076,1041.8886839953661 -INET_PL_1035,Karperi_South Kavala,['INET_PL_1035'],"['INET_N_720', 'INET_N_1393']","[41.1221, 40.946]","[23.4243, 24.409]","['GR', 'GR']",0.0,41.03405,84.90879194430543,23.916649999999997,73.31042269958262,0.0,1983.0,4.877083333333333,1041.8886839953661 -INET_PL_1037,Sidirokastron_Kulata,['INET_PL_1037'],"['INET_N_1361', 'INET_N_801']","[41.2349471, 41.3875814]","[23.3938203, 23.3632506]","['GR', 'BG']",0.0,41.31126425,17.168525542163547,23.37853545,76.80652874754169,0.0,1983.0,4.877083333333333,998.4639333647048 -INET_PL_1039,Tripoli_Inoi,['INET_PL_1039'],"['INET_N_669', 'INET_N_1511']","[38.17, 37.51]","[23.412, 22.37]","['GR', 'GR']",0.0,37.84,117.33186253847971,22.891,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1041,Tripoli_Megalopolis,['INET_PL_1041'],"['INET_N_1511', 'INET_N_941']","[37.51, 37.418]","[22.37, 22.1083]","['GR', 'GR']",0.0,37.464,25.26945136210034,22.239150000000002,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1043,Aspropyrgos_Keratea,['INET_PL_1043'],"['INET_N_80', 'INET_N_733']","[38.060554, 37.808]","[23.6, 23.976]","['GR', 'GR']",0.0,37.934277,43.32673778539914,23.788,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1045_EE_0,Gas Interconnector Greece-Bulgaria0,['INET_PL_1045'],"['INET_N_774', 'INET_N_717']","[41.1224394, 41.638]","[25.4065582, 25.375]","['GR', 'BG']",0.0,41.3802197,57.40617185821144,25.3907791,68.95607024407381,0.0,1983.0,3.451550925925926,763.0667124049447 -INET_PL_1045_EE_1,Gas Interconnector Greece-Bulgaria1,['INET_PL_1045'],"['INET_N_717', 'INET_N_603']","[41.638, 41.9367]","[25.375, 25.558]","['BG', 'BG']",0.0,41.78735,36.52674575930099,25.4665,68.95607024407381,0.0,1983.0,3.451550925925926,763.0667124049447 -INET_PL_1045_EE_2,Gas Interconnector Greece-Bulgaria2,['INET_PL_1045'],"['INET_N_603', 'INET_N_366']","[41.9367, 42.05521]","[25.558, 25.59]","['BG', 'BG']",0.0,41.995955,13.444650385287124,25.573999999999998,68.95607024407381,0.0,1983.0,3.451550925925926,763.0667124049447 -INET_PL_1045_EE_3,Gas Interconnector Greece-Bulgaria3,['INET_PL_1045'],"['INET_N_366', 'INET_N_1413']","[42.05521, 42.435]","[25.59, 25.638]","['BG', 'BG']",0.0,42.245105,42.42846471785791,25.614,68.95607024407381,0.0,1983.0,3.451550925925926,763.0667124049447 -INET_PL_1050,Giurgiu-Ruse Pipeline,['INET_PL_1050'],"['INET_N_544', 'INET_N_1270']","[43.9046, 43.837942]","[25.9625, 25.968029]","['RO', 'BG']",0.0,43.871271,7.427601419512671,25.9652645,60.182838763436365,0.0,1983.0,1.7029861111111113,500.0 -INET_PL_1052,Strandja-Lozenets,['INET_PL_1052'],"['INET_N_1431', 'INET_N_887']","[42.1825, 42.6582646]","[27.008611, 26.8066174]","['BG', 'BG']",0.0,42.4203823,55.45749457763046,26.907614199999998,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1054,Lozenets-Stara Zagora,['INET_PL_1054'],"['INET_N_887', 'INET_N_1413']","[42.6582646, 42.435]","[26.8066174, 25.638]","['BG', 'BG']",0.0,42.5466323,98.93021951097836,26.2223087,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1056,Lozenets-Provadiya,['INET_PL_1056'],"['INET_N_887', 'INET_N_1184']","[42.6582646, 43.177032]","[26.8066174, 27.4405725]","['BG', 'BG']",0.0,42.917648299999996,77.43518354291102,27.123594949999998,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1058,Provadiya-Valchi Dol,['INET_PL_1058'],"['INET_N_1184', 'INET_N_1548']","[43.177032, 43.4055329]","[27.4405725, 27.5511887]","['BG', 'BG']",0.0,43.29128245,26.94777587895436,27.4958806,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1060,Valchi Dol-Polski Senovets,['INET_PL_1060'],"['INET_N_1548', 'INET_N_1157']","[43.4055329, 43.256944]","[27.5511887, 25.3000001]","['BG', 'BG']",0.0,43.33123845,182.8827974545481,26.4255944,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1062,Valchi Dol-Kardam,['INET_PL_1062'],"['INET_N_1548', 'INET_N_715']","[43.4055329, 43.7538009]","[27.5511887, 28.1079003]","['BG', 'BG']",0.0,43.5796669,59.26910007015704,27.8295445,76.80652874754169,0.0,1983.0,22.54583333333333,998.4639333647048 -INET_PL_1064,Kulata-Petrich,['INET_PL_1064'],"['INET_N_801', 'INET_N_1135']","[41.3875814, 41.5581081]","[23.3632506, 23.2066849]","['BG', 'BG']",0.0,41.47284475,23.022409346159332,23.28496775,76.80652874754169,0.0,1983.0,4.877083333333333,998.4639333647048 -INET_PL_1066,Petrich-Dubnitza,['INET_PL_1066'],"['INET_N_1135', 'INET_N_394']","[41.5581081, 42.2658]","[23.2066849, 23.11]","['BG', 'BG']",0.0,41.91195405,79.12221687295533,23.15834245,76.80652874754169,0.0,1983.0,0.8491666666666666,998.4639333647048 -INET_PL_1068,Stara Zagora-Plovdiv,['INET_PL_1068'],"['INET_N_1413', 'INET_N_1151']","[42.435, 42.25]","[25.638, 24.75]","['BG', 'BG']",0.0,42.3425,75.84975070288453,25.194000000000003,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1070,Plovdiv-Ihtiman,['INET_PL_1070'],"['INET_N_1151', 'INET_N_660']","[42.25, 42.4382418]","[24.75, 23.8161718]","['BG', 'BG']",0.0,42.3441209,79.57486294940729,24.2830859,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1072,Ihtiman-Dubnitza,['INET_PL_1072'],"['INET_N_660', 'INET_N_394']","[42.4382418, 42.2658]","[23.8161718, 23.11]","['BG', 'BG']",0.0,42.3520209,61.13466275308599,23.4630859,76.80652874754169,0.0,1983.0,0.8491666666666666,998.4639333647048 -INET_PL_1074,Dubnitza-Kyustendil,['INET_PL_1074'],"['INET_N_394', 'INET_N_805']","[42.2658, 42.2868817]","[23.11, 22.6939308]","['BG', 'BG']",0.0,42.27634085,34.322634422777234,22.9019654,76.80652874754169,0.0,1983.0,0.8491666666666666,998.4639333647048 -INET_PL_1076,Kyustendil-Zhidilovo,['INET_PL_1076'],"['INET_N_805', 'INET_N_1660']","[42.2868817, 42.2242526]","[22.6939308, 22.398599]","['BG', 'MK']",0.0,42.255567150000005,25.292063326399468,22.5462649,76.80652874754169,0.0,1983.0,0.8491666666666666,998.4639333647048 -INET_PL_1078,Strandja-Malkoclar,['INET_PL_1078'],"['INET_N_1431', 'INET_N_914']","[42.1825, 42.041]","[27.008611, 27.018]","['BG', 'TR']",0.0,42.11175,15.758077258913806,27.0133055,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1080,Kardam-Negru Voda,['INET_PL_1080'],"['INET_N_715', 'INET_N_1021']","[43.7538009, 43.8155851]","[28.1079003, 28.2176216]","['BG', 'RO']",0.0,43.784693000000004,11.174001423504379,28.16276095,76.80652874754169,0.0,1983.0,22.54583333333333,998.4639333647048 -INET_PL_1082,Negru Voda-Isaccea,['INET_PL_1082'],"['INET_N_1021', 'INET_N_685']","[43.8155851, 45.265423]","[28.2176216, 28.4607273]","['RO', 'RO']",0.0,44.540504049999996,162.41261324761734,28.33917445,76.80652874754169,0.0,1983.0,22.54583333333333,998.4639333647048 -INET_PL_1084,Arad-Mediesu Aurit,['INET_PL_1084'],"['INET_N_71', 'INET_N_939']","[46.1817, 47.786743]","[21.31056, 23.1376644]","['RO', 'RO']",0.0,46.984221500000004,226.02599648989695,22.2241122,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1086,Mediesu Aurit-Hust,['INET_PL_1086'],"['INET_N_939', 'INET_N_654']","[47.786743, 48.1734633]","[23.1376644, 23.2972476]","['RO', 'UA']",0.0,47.980103150000005,44.625705022426345,23.217456,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1088,Isaccea-Orlovka,['INET_PL_1088'],"['INET_N_685', 'INET_N_1089']","[45.265423, 45.3199]","[28.4607273, 28.45287]","['RO', 'UA']",0.0,45.292661499999994,6.090579182237528,28.45679865,76.80652874754169,0.0,1983.0,12.070833333333333,998.4639333647048 -INET_PL_1090,Beregdaroc-Hajduszoboszlo,['INET_PL_1090'],"['INET_N_151', 'INET_N_589']","[48.1985108, 47.507335]","[22.5320069, 21.366312]","['HU', 'HU']",0.0,47.852922899999996,116.10343785895577,21.94915945,72.53291832711855,0.0,1983.0,21.525,1040.5666487905335 -INET_PL_1092,Beregdaroc-Nemesbikk,['INET_PL_1092'],"['INET_N_151', 'INET_N_1023']","[48.1985108, 47.8876867]","[22.5320069, 20.9661155]","['HU', 'HU']",0.0,48.04309875,121.46900004415178,21.7490612,76.80652874754169,0.0,1983.0,21.525,998.4639333647048 -INET_PL_1094,Hajduszoboszlo-Nemesbikk,['INET_PL_1094'],"['INET_N_589', 'INET_N_1023']","[47.507335, 47.8876867]","[21.366312, 20.9661155]","['HU', 'HU']",0.0,47.69751085,51.84020347121366,21.16621375,72.53291832711855,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1096,Hajduszoboszlo-Varosfoeld,['INET_PL_1096'],"['INET_N_589', 'INET_N_1556']","[47.507335, 46.823766]","[21.366312, 19.769095]","['HU', 'HU']",0.0,47.165550499999995,142.72066983701032,20.5677035,72.53291832711855,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1098,Nemesbikk-Budapest,['INET_PL_1098'],"['INET_N_1023', 'INET_N_238']","[47.8876867, 47.49059]","[20.9661155, 19.245]","['HU', 'HU']",0.0,47.68913835,136.22355788941624,20.105557750000003,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1100,Jablonov-Nemesbikk,['INET_PL_1100'],"['INET_N_694', 'INET_N_1023']","[48.6, 47.8876867]","[20.72, 20.9661155]","['SI', 'HU']",0.0,48.243843350000006,81.30078583494138,20.84305775,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1102_EE_0,Tranovice-Malesovice0,['INET_PL_1102'],"['INET_N_1503', 'INET_N_1430']","[49.714948, 49.593694]","[18.531823, 18.091711]","['CZ', 'CZ']",0.0,49.654320999999996,34.4427987833425,18.311767,73.2674726086459,0.0,1983.0,1.1666666666666667,1041.8156534964005 -INET_PL_1102_EE_1,Tranovice-Malesovice1,['INET_PL_1102'],"['INET_N_1430', 'INET_N_877']","[49.593694, 49.401112]","[18.091711, 17.298313]","['CZ', 'CZ']",0.0,49.497403,61.18816271868336,17.695012,73.16881453548952,0.0,1983.0,21.447720888977667,1041.6478995253965 -INET_PL_1102_EE_2,Tranovice-Malesovice2,['INET_PL_1102'],"['INET_N_877', 'INET_N_339']","[49.401112, 49.054629]","[17.298313, 16.91432]","['CZ', 'CZ']",0.0,49.227870499999995,47.57383506276883,17.1063165,73.35362657543203,0.0,1983.0,3.9825,1041.9621460193507 -INET_PL_1102_EE_3,Tranovice-Malesovice3,['INET_PL_1102'],"['INET_N_339', 'INET_N_913']","[49.054629, 49.021483]","[16.91432, 16.489006]","['CZ', 'CZ']",0.0,49.038056,31.231194807444755,16.701663,73.1694414850575,0.0,1983.0,3.9825,1041.6489655636465 -INET_PL_1107_EE_0,Vilnius-Sakiai0,['INET_PL_1107'],"['INET_N_1575', 'INET_N_426']","[54.6676, 54.7701]","[25.156, 24.6474]","['LT', 'LT']",0.0,54.71885,34.60690865200382,24.901699999999998,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1107_EE_1,Vilnius-Sakiai1,['INET_PL_1107'],"['INET_N_426', 'INET_N_727']","[54.7701, 54.9212]","[24.6474, 24.018]","['LT', 'LT']",0.0,54.84565,43.672562837541705,24.332700000000003,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1107_EE_2,Vilnius-Sakiai2,['INET_PL_1107'],"['INET_N_727', 'INET_N_1287']","[54.9212, 54.952671]","[24.018, 23.0480199]","['LT', 'LT']",0.0,54.936935500000004,62.079087702896025,23.53300995,76.80652874754169,0.0,1983.0,4.758333333333334,998.4639333647048 -INET_PL_1111_EE_0,Sakiai-Klaipeda0,['INET_PL_1111'],"['INET_N_1287', 'INET_N_708']","[54.952671, 55.07]","[23.0480199, 22.72]","['LT', 'LT']",0.0,55.0113355,24.657997484196773,22.88400995,76.80652874754169,0.0,1983.0,4.758333333333334,998.4639333647048 -INET_PL_1111_EE_1,Sakiai-Klaipeda1,['INET_PL_1111'],"['INET_N_708', 'INET_N_1469']","[55.07, 55.249]","[22.72, 22.288]","['LT', 'LT']",0.0,55.1595,33.91145160583617,22.503999999999998,76.80652874754169,0.0,1983.0,4.758333333333334,998.4639333647048 -INET_PL_1111_EE_2,Sakiai-Klaipeda2,['INET_PL_1111'],"['INET_N_1469', 'INET_N_767']","[55.249, 55.7253]","[22.288, 21.101954]","['LT', 'LT']",0.0,55.48715,91.61583091183142,21.694977,72.04550135903771,0.0,1983.0,13.24466815045351,855.7037855756216 -INET_PL_1115_EE_0,Klaipeda-Panevezys0,['INET_PL_1115'],"['INET_N_767', 'INET_N_1360']","[55.7253, 55.93]","[21.101954, 23.31]","['LT', 'LT']",0.0,55.82765,139.8100293244423,22.205976999999997,72.04550135903771,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1115_EE_1,Klaipeda-Panevezys1,['INET_PL_1115'],"['INET_N_1360', 'INET_N_1113']","[55.93, 55.7347915]","[23.31, 24.3574774]","['LT', 'LT']",0.0,55.83239575,68.94188435183638,23.833738699999998,76.80652874754169,0.0,1983.0,2.8166666666666664,998.4639333647048 -INET_PL_1118,Vilnius-Salcininkai,['INET_PL_1118'],"['INET_N_1575', 'INET_N_1288']","[54.6676, 54.309455]","[25.156, 25.38]","['LT', 'LT']",0.0,54.488527500000004,42.38383468586555,25.268,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1120_EE_0,Jauniunai-Kotlovka0,['INET_PL_1120'],"['INET_N_698', 'INET_N_1022']","[54.941019, 54.860443]","[25.00762, 25.3672514]","['LT', 'LT']",0.0,54.90073099999999,24.685224701559,25.1874357,76.80652874754169,0.0,1983.0,13.558333333333332,998.4639333647048 -INET_PL_1120_EE_1,Jauniunai-Kotlovka1,['INET_PL_1120'],"['INET_N_1022', 'INET_N_783']","[54.860443, 54.716599]","[25.3672514, 25.7475233]","['LT', 'LT']",0.0,54.788521,29.168351997016998,25.55738735,76.80652874754169,0.0,1983.0,13.558333333333332,998.4639333647048 -INET_PL_1123,Nemencine-Visaginas,['INET_PL_1123'],"['INET_N_1022', 'INET_N_1577']","[54.860443, 55.597]","[25.3672514, 26.433]","['LT', 'LT']",0.0,55.2287215,106.21669795208959,25.9001257,76.80652874754169,0.0,1983.0,13.558333333333332,998.4639333647048 -INET_PL_1125,Kaliningradskoye-Sakiai,['INET_PL_1125'],"['INET_N_710', 'INET_N_1287']","[54.836, 54.952671]","[20.375, 23.0480199]","['RU', 'LT']",0.0,54.8943355,171.46556368444593,21.71150995,72.8968465785671,0.0,1983.0,4.758333333333334,1041.185456835205 -INET_PL_1127_EE_0,BalticConnector0,['INET_PL_1127'],"['INET_N_1371', 'INET_N_668']","[60.138, 60.044]","[24.2278, 24.005]","['FI', 'FI']",0.0,60.090999999999994,16.1867901595209,24.1164,80.0,0.0,1983.0,2.9501851851851852,500.0 -INET_PL_1127_EE_1,BalticConnector1,['INET_PL_1127'],"['INET_N_668', 'INET_N_1108']","[60.044, 59.38445]","[24.005, 24.07494]","['FI', 'EE']",0.0,59.714225,73.46645512033594,24.03997,80.0,0.0,1983.0,2.9501851851851852,500.0 -INET_PL_1130,BalticConnector_2,['INET_PL_1130'],"['INET_N_1108', 'INET_N_742']","[59.38445, 59.31]","[24.07494, 24.83]","['EE', 'EE']",0.0,59.347225,43.61168208165444,24.452469999999998,55.0,0.0,1983.0,2.9501851851851852,700.0 -INET_PL_1132_EE_0,Tallinn-Narva0,['INET_PL_1132'],"['INET_N_1455', 'INET_N_1203']","[59.40601, 59.407]","[25.0045, 26.36]","['EE', 'EE']",0.0,59.406504999999996,76.73323074872103,25.68225,71.70877173472842,0.0,1983.0,12.845260394155034,845.6068953440234 -INET_PL_1132_EE_1,Tallinn-Narva1,['INET_PL_1132'],"['INET_N_1203', 'INET_N_1017']","[59.407, 59.3796931]","[26.36, 28.1790751]","['EE', 'EE']",0.0,59.39334655,103.05888542825647,27.26953755,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1135_EE_0,Karksi-Tallin0,['INET_PL_1135'],"['INET_N_718', 'INET_N_1190']","[58.1002085, 58.354]","[25.6293386, 25.422]","['EE', 'EE']",0.0,58.22710425,30.730269437099548,25.5256693,76.80652874754169,0.0,1983.0,2.625,998.4639333647048 -INET_PL_1135_EE_1,Karksi-Tallin1,['INET_PL_1135'],"['INET_N_1190', 'INET_N_1553']","[58.354, 58.656]","[25.422, 25.035]","['EE', 'EE']",0.0,58.504999999999995,40.42390246891571,25.2285,76.80652874754169,0.0,1983.0,2.625,998.4639333647048 -INET_PL_1135_EE_2,Karksi-Tallin2,['INET_PL_1135'],"['INET_N_1553', 'INET_N_1205']","[58.656, 59.001]","[25.035, 24.8]","['EE', 'EE']",0.0,58.8285,40.68944414554529,24.9175,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1135_EE_3,Karksi-Tallin3,['INET_PL_1135'],"['INET_N_1205', 'INET_N_1455']","[59.001, 59.40601]","[24.8, 25.0045]","['EE', 'EE']",0.0,59.203505,46.53013593300747,24.902250000000002,71.70877173472842,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1140,Kiili-Tallinn,['INET_PL_1140'],"['INET_N_742', 'INET_N_1455']","[59.31, 59.40601]","[24.83, 25.0045]","['EE', 'EE']",0.0,59.358005000000006,14.557018775707574,24.91725,71.70877173472842,0.0,1983.0,12.845260394155034,845.6068953440234 -INET_PL_1142_EE_0,Varska-Rakvere0,['INET_PL_1142'],"['INET_N_1557', 'INET_N_1467']","[57.9570536, 58.377]","[27.6375433, 26.729]","['EE', 'EE']",0.0,58.1670268,70.87193666102694,27.183271650000002,76.80652874754169,0.0,1983.0,1.4875,998.4639333647048 -INET_PL_1142_EE_1,Varska-Rakvere1,['INET_PL_1142'],"['INET_N_1467', 'INET_N_1202']","[58.377, 58.99]","[26.729, 26.241]","['EE', 'EE']",0.0,58.6835,73.78983412862831,26.485,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1142_EE_2,Varska-Rakvere2,['INET_PL_1142'],"['INET_N_1202', 'INET_N_1203']","[58.99, 59.407]","[26.241, 26.36]","['EE', 'EE']",0.0,59.198499999999996,46.87542607079768,26.3005,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1146,Vandra-Parnu,['INET_PL_1146'],"['INET_N_1553', 'INET_N_1117']","[58.656, 58.391]","[25.035, 24.5]","['EE', 'EE']",0.0,58.5235,42.828475114106894,24.7675,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1148_EE_0,Riga-Dougvapils0,['INET_PL_1148'],"['INET_N_1231', 'INET_N_699']","[56.9904, 56.52]","[24.1788, 25.92]","['LV', 'LV']",0.0,56.7552,118.36252066822902,25.0494,72.76564142774991,0.0,1983.0,14.114764506937057,877.2972977000073 -INET_PL_1148_EE_1,Riga-Dougvapils1,['INET_PL_1148'],"['INET_N_699', 'INET_N_382']","[56.52, 55.874]","[25.92, 26.5399]","['LV', 'LV']",0.0,56.197,81.45214280609996,26.229950000000002,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1151_EE_0,Riga-Irboska0,['INET_PL_1151'],"['INET_N_1231', 'INET_N_666']","[56.9904, 57.169567]","[24.1788, 24.696409]","['LV', 'LV']",0.0,57.0799835,37.096730783666665,24.4376045,73.51697657202638,0.0,1983.0,14.114764506937057,877.2972977000073 -INET_PL_1151_EE_1,Riga-Irboska1,['INET_PL_1151'],"['INET_N_666', 'INET_N_1208']","[57.169567, 57.33]","[24.696409, 25.6]","['LV', 'LV']",0.0,57.2497835,57.224633502579,25.1482045,73.51697657202638,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1151_EE_2,Riga-Irboska2,['INET_PL_1151'],"['INET_N_1208', 'INET_N_779']","[57.33, 57.5928519]","[25.6, 26.9434759]","['LV', 'LV']",0.0,57.46142595,85.52657034440688,26.271737950000002,76.80652874754169,0.0,1983.0,7.4375,998.4639333647048 -INET_PL_1151_EE_3,Riga-Irboska3,['INET_PL_1151'],"['INET_N_779', 'INET_N_680']","[57.5928519, 57.711]","[26.9434759, 27.85]","['LV', 'RU']",0.0,57.65192595,55.52858191964153,27.396737950000002,76.80652874754169,0.0,1983.0,7.4375,998.4639333647048 -INET_PL_1156_EE_0,Rauna-Karksi0,['INET_PL_1156'],"['INET_N_1208', 'INET_N_1552']","[57.33, 57.53]","[25.6, 25.58]","['LV', 'LV']",0.0,57.43,22.278177320911933,25.59,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1156_EE_1,Rauna-Karksi1,['INET_PL_1156'],"['INET_N_1552', 'INET_N_718']","[57.53, 58.1002085]","[25.58, 25.6293386]","['LV', 'EE']",0.0,57.815104250000005,63.49151868805589,25.604669299999998,76.80652874754169,0.0,1983.0,2.625,998.4639333647048 -INET_PL_1159,Liepaja-Iecava,['INET_PL_1159'],"['INET_N_862', 'INET_N_658']","[56.5, 56.59]","[21.0, 24.2]","['LV', 'LV']",0.0,56.545,196.45807897984878,22.6,76.80652874754169,0.0,1983.0,2.8166666666666664,998.4639333647048 -INET_PL_1161_EE_0,Imatra-Mantsala0,['INET_PL_1161'],"['INET_N_664', 'INET_N_825']","[61.1695977, 61.0587]","[28.7645463, 28.1887]","['FI', 'FI']",0.0,61.11414885,33.309041221096614,28.47662315,76.80652874754169,0.0,1983.0,9.166666666666666,998.4639333647048 -INET_PL_1161_EE_1,Imatra-Mantsala1,['INET_PL_1161'],"['INET_N_825', 'INET_N_788']","[61.0587, 60.8678835]","[28.1887, 26.7041602]","['FI', 'FI']",0.0,60.963291749999996,82.90743558262757,27.4464301,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1161_EE_2,Imatra-Mantsala2,['INET_PL_1161'],"['INET_N_788', 'INET_N_920']","[60.8678835, 60.6638584]","[26.7041602, 25.2836053]","['FI', 'FI']",0.0,60.76587095,80.43377031218807,25.99388275,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1165,Mantsala-Helsinki,['INET_PL_1165'],"['INET_N_920', 'INET_N_613']","[60.6638584, 60.175]","[25.2836053, 24.954]","['FI', 'FI']",0.0,60.419429199999996,57.30818927107625,25.11880265,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1167,Helsinki-Siuntio,['INET_PL_1167'],"['INET_N_613', 'INET_N_1371']","[60.175, 60.138]","[24.954, 24.2278]","['FI', 'FI']",0.0,60.156499999999994,40.40625418941025,24.590899999999998,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1169_EE_0,Inkoo-Mantsala0,['INET_PL_1169'],"['INET_N_668', 'INET_N_881']","[60.044, 60.285]","[24.005, 24.064]","['FI', 'FI']",0.0,60.1645,27.00448608754576,24.0345,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1169_EE_1,Inkoo-Mantsala1,['INET_PL_1169'],"['INET_N_881', 'INET_N_920']","[60.285, 60.6638584]","[24.064, 25.2836053]","['FI', 'FI']",0.0,60.4744292,79.02439971597536,24.67380265,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1172,Mantsala-Hameenlinna,['INET_PL_1172'],"['INET_N_920', 'INET_N_593']","[60.6638584, 60.994]","[25.2836053, 24.474]","['FI', 'FI']",0.0,60.828929200000005,57.227658092592954,24.87880265,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1189,Lussagnet_Captiex,['INET_PL_1189'],"['INET_N_897', 'INET_N_254']","[43.780448, 44.291534]","[-0.220066, -0.261723]","['FR', 'FR']",0.0,44.035990999999996,56.94551646583504,-0.2408945,72.15198802222396,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1191,Captiex_Auros,['INET_PL_1191'],"['INET_N_254', 'INET_N_88']","[44.291534, 44.495849]","[-0.261723, -0.146575]","['FR', 'FR']",0.0,44.3936915,24.499470854581094,-0.204149,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1193,Auros_Chazelles,['INET_PL_1193'],"['INET_N_88', 'INET_N_285']","[44.495849, 45.64714]","[-0.146575, 0.367019]","['FR', 'FR']",0.0,45.0714945,134.26196528874274,0.11022199999999999,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1195,Nozay_Breal,['INET_PL_1195'],"['INET_N_1058', 'INET_N_215']","[47.564751, 48.048439]","[-1.626916, -1.864231]","['FR', 'FR']",0.0,47.806595,56.6462708667562,-1.7455735,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1197_EE_0,Roussines_Etrez0,['INET_PL_1197'],"['INET_N_1261', 'INET_N_1409']","[46.463, 46.3950249]","[1.38, 2.607516]","['FR', 'FR']",0.0,46.42901245,94.41036504081623,1.993758,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1197_EE_1,Roussines_Etrez1,['INET_PL_1197'],"['INET_N_1409', 'INET_N_1576']","[46.3950249, 46.352556]","[2.607516, 4.010777]","['FR', 'FR']",0.0,46.37379045,107.79274186238689,3.3091464999999998,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1197_EE_2,Roussines_Etrez2,['INET_PL_1197'],"['INET_N_1576', 'INET_N_1536']","[46.352556, 46.55]","[4.010777, 4.35]","['FR', 'FR']",0.0,46.451278,34.03095837292079,4.180388499999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1197_EE_3,Roussines_Etrez3,['INET_PL_1197'],"['INET_N_1536', 'INET_N_467']","[46.55, 46.336132]","[4.35, 5.212561]","['FR', 'FR']",0.0,46.443066,70.26073002686363,4.781280499999999,73.30339705766276,0.0,1983.0,21.458806833847866,1041.8767378941177 -INET_PL_1202,Lussagnet_Toulouse,['INET_PL_1202'],"['INET_N_897', 'INET_N_1502']","[43.780448, 43.604652]","[-0.220066, 1.444209]","['FR', 'FR']",0.0,43.69255,135.26847807733773,0.6120715,72.15198802222396,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1204,Toulouse_Barbaira,['INET_PL_1204'],"['INET_N_127', 'INET_N_1502']","[43.1756, 43.604652]","[2.513, 1.444209]","['FR', 'FR']",0.0,43.390126,98.69436877856313,1.9786044999999999,75.06563383292676,0.0,1983.0,17.038903776315795,946.2629282001903 -INET_PL_1206,Auros_Montauban,['INET_PL_1206'],"['INET_N_88', 'INET_N_990']","[44.495849, 44.0221252]","[-0.146575, 1.3529599]","['FR', 'FR']",0.0,44.2589871,130.5583148786687,0.6031924500000001,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1208,Lussagnet_Lacq,['INET_PL_1208'],"['INET_N_897', 'INET_N_814']","[43.780448, 43.421]","[-0.220066, -0.614]","['FR', 'FR']",0.0,43.600724,51.04250999747896,-0.417033,72.15198802222396,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1210_EE_0,Etrez_Annecy0,['INET_PL_1210'],"['INET_N_467', 'INET_N_1537']","[46.336132, 46.236132]","[5.212561, 5.612561]","['FR', 'FR']",0.0,46.286131999999995,32.696539339029826,5.412561,73.30339705766276,0.0,1983.0,21.458806833847866,1041.8767378941177 -INET_PL_1210_EE_1,Etrez_Annecy1,['INET_PL_1210'],"['INET_N_1537', 'INET_N_66']","[46.236132, 45.903]","[5.612561, 6.126]","['FR', 'FR']",0.0,46.069565999999995,54.24833221348366,5.8692805,76.80652874754169,0.0,1983.0,1.5583333333333331,998.4639333647048 -INET_PL_1213_EE_0,Beziers_St Martin De Crau0,['INET_PL_1213'],"['INET_N_166', 'INET_N_1538']","[43.34632, 43.64632]","[3.231472, 3.931472]","['FR', 'FR']",0.0,43.49632,65.602035320576,3.5814719999999998,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1213_EE_1,Beziers_St Martin De Crau1,['INET_PL_1213'],"['INET_N_1538', 'INET_N_1408']","[43.64632, 43.638628]","[3.931472, 4.812107]","['FR', 'FR']",0.0,43.642474,70.88945798810099,4.3717895,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1216_EE_0,Mery Sur Cher_Cherre0,['INET_PL_1216'],"['INET_N_956', 'INET_N_287']","[47.248274, 47.387853]","[1.992231, 1.486212]","['FR', 'FR']",0.0,47.3180635,41.19426476003983,1.7392215000000002,72.75108792753647,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1216_EE_1,Mery Sur Cher_Cherre1,['INET_PL_1216'],"['INET_N_287', 'INET_N_290']","[47.387853, 48.150232]","[1.486212, 0.6]","['FR', 'FR']",0.0,47.7690425,107.61061497329045,1.043106,72.75108792753647,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1219_EE_0,Dierrey St Julien_Gournay Sur Aronde0,['INET_PL_1219'],"['INET_N_363', 'INET_N_535']","[48.310884, 49.055792]","[3.829932, 3.173434]","['FR', 'FR']",0.0,48.683338,95.86038275943302,3.501683,72.92080870124408,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1219_EE_1,Dierrey St Julien_Gournay Sur Aronde1,['INET_PL_1219'],"['INET_N_535', 'INET_N_559']","[49.055792, 49.526019]","[3.173434, 2.699989]","['FR', 'FR']",0.0,49.290905499999994,62.57224293285139,2.9367115,72.36102428814607,0.0,1983.0,21.38123208406504,1040.2743675133204 -INET_PL_1222_EE_0,Taisnieres sur Hon_Pitgam0,['INET_PL_1222'],"['INET_N_1451', 'INET_N_75']","[50.31, 50.36334]","[3.81, 2.869612]","['FR', 'FR']",0.0,50.33667,67.02573070442756,3.3398060000000003,74.71293257672957,0.0,1983.0,9.583333333333334,935.6871260988023 -INET_PL_1222_EE_1,Taisnieres sur Hon_Pitgam1,['INET_PL_1222'],"['INET_N_75', 'INET_N_1146']","[50.36334, 50.926317]","[2.869612, 2.315596]","['FR', 'FR']",0.0,50.6448285,73.81169294706525,2.592604,74.71293257672957,0.0,1983.0,23.75,935.6871260988023 -INET_PL_1225,Taisnieres sur Hon_unknown_FR_5,['INET_PL_1225'],"['INET_N_1451', 'INET_N_1539']","[50.31, 49.8]","[3.81, 4.3]","['FR', 'FR']",0.0,50.055,66.65190033590365,4.055,76.80652874754169,0.0,1983.0,9.583333333333334,998.4639333647048 -INET_PL_1227,Breheville_Laneuvelotte,['INET_PL_1227'],"['INET_N_217', 'INET_N_819']","[49.382658, 48.7289]","[5.329267, 6.295]","['FR', 'FR']",0.0,49.055779,101.20657932792643,5.8121335,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1229,Roussines_Chemery,['INET_PL_1229'],"['INET_N_1261', 'INET_N_287']","[46.463, 47.387853]","[1.38, 1.486212]","['FR', 'FR']",0.0,46.9254265,103.18713432307432,1.433106,72.75108792753647,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1231,unknown_FR_1_Palleau,['INET_PL_1231'],"['INET_N_1536', 'INET_N_1110']","[46.55, 46.958]","[4.35, 5.028608]","['FR', 'FR']",0.0,46.754,68.8030268136655,4.689304,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1233,Chemery_Nozay,['INET_PL_1233'],"['INET_N_287', 'INET_N_1058']","[47.387853, 47.564751]","[1.486212, -1.626916]","['FR', 'FR']",0.0,47.476302000000004,234.8536663055285,-0.07035199999999997,72.75108792753647,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1235,unknown_FR_1_Mery Sur Cher,['INET_PL_1235'],"['INET_N_1536', 'INET_N_956']","[46.55, 47.248274]","[4.35, 1.992231]","['FR', 'FR']",0.0,46.899136999999996,195.29181696713312,3.1711155,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1237,Arieux en Gohelle_Gournay Sur Aronde,['INET_PL_1237'],"['INET_N_75', 'INET_N_559']","[50.36334, 49.526019]","[2.869612, 2.699989]","['FR', 'FR']",0.0,49.9446795,93.92307871006616,2.7848005000000002,72.36102428814607,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1239,Vindecy_Lyon,['INET_PL_1239'],"['INET_N_1576', 'INET_N_899']","[46.352556, 45.754]","[4.010777, 4.842]","['FR', 'FR']",0.0,46.053278,92.46274827588401,4.4263885,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1241_EE_0,Taisnieres sur Hon_Morelmaison0,['INET_PL_1241'],"['INET_N_1451', 'INET_N_1539']","[50.31, 49.8]","[3.81, 4.3]","['FR', 'FR']",0.0,50.055,66.65190033590365,4.055,76.80652874754169,0.0,1983.0,9.583333333333334,998.4639333647048 -INET_PL_1241_EE_1,Taisnieres sur Hon_Morelmaison1,['INET_PL_1241'],"['INET_N_1539', 'INET_N_999']","[49.8, 48.43]","[4.3, 5.819]","['FR', 'FR']",0.0,49.114999999999995,188.2765182406477,5.0595,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1244,Breheville_unknown_FR_5,['INET_PL_1244'],"['INET_N_217', 'INET_N_1539']","[49.382658, 49.8]","[5.329267, 4.3]","['FR', 'FR']",0.0,49.591329,87.53459436485551,4.814633499999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1246,Chazelles_Brizambourg,['INET_PL_1246'],"['INET_N_285', 'INET_N_225']","[45.64714, 45.822208]","[0.367019, -0.479831]","['FR', 'FR']",0.0,45.734674,68.5691259935075,-0.05640600000000001,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1248,Burgos_Aranda,['INET_PL_1248'],"['INET_N_243', 'INET_N_72']","[42.346, 41.6704]","[-3.691, -3.6892]","['ES', 'ES']",0.0,42.0082,75.14702258284031,-3.6901,65.53215231447231,0.0,1983.0,6.359971261046537,660.4 -INET_PL_1250,Barcelona_Girona,['INET_PL_1250'],"['INET_N_129', 'INET_N_541']","[41.398, 41.976]","[2.174, 2.818]","['ES', 'ES']",0.0,41.687,83.63507595626116,2.496,87.2255856989211,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1254,Zaragoza_Huesca,['INET_PL_1254'],"['INET_N_1655', 'INET_N_646']","[41.646, 42.231]","[-0.883, -0.436]","['ES', 'ES']",0.0,41.938500000000005,74.84553721299164,-0.6595,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1256_EE_0,Alcazar de San Juan_Yela0,['INET_PL_1256'],"['INET_N_23', 'INET_N_1460']","[39.3900748, 40.01]","[-3.3500984, -3.207]","['ES', 'ES']",0.0,39.7000374,70.03319066247691,-3.2785491999999996,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1256_EE_1,Alcazar de San Juan_Yela1,['INET_PL_1256'],"['INET_N_1460', 'INET_N_1646']","[40.01, 40.806749]","[-3.207, -2.822598]","['ES', 'ES']",0.0,40.4083745,94.41296706763679,-3.014799,73.32634748793429,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1259,Jaen_Grenada,['INET_PL_1259'],"['INET_N_695', 'INET_N_569']","[37.779, 37.182]","[-4.05, -3.602]","['ES', 'ES']",0.0,37.480500000000006,77.28645373047762,-3.8259999999999996,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1261,Aranda_Algete,['INET_PL_1261'],"['INET_N_31', 'INET_N_72']","[40.585921, 41.6704]","[-3.545802, -3.6892]","['ES', 'ES']",0.0,41.1281605,121.22318920484499,-3.617501,65.53215231447231,0.0,1983.0,6.359971261046537,660.4 -INET_PL_1263,Madrid_Algete,['INET_PL_1263'],"['INET_N_904', 'INET_N_31']","[40.223, 40.585921]","[-3.681, -3.545802]","['ES', 'ES']",0.0,40.4044605,41.96042471179899,-3.613401,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1265,Yela_Algete,['INET_PL_1265'],"['INET_N_1646', 'INET_N_31']","[40.806749, 40.585921]","[-2.822598, -3.545802]","['ES', 'ES']",0.0,40.696335000000005,65.7492040123767,-3.1842,73.32634748793429,0.0,1983.0,6.359971261046537,660.4 -INET_PL_1267,Aranda_Soria,['INET_PL_1267'],"['INET_N_72', 'INET_N_1389']","[41.6704, 41.666]","[-3.6892, -2.379]","['ES', 'ES']",0.0,41.6682,108.86390820917642,-3.0341,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1269,Soria_Villar De Arnedo,['INET_PL_1269'],"['INET_N_1389', 'INET_N_1573']","[41.666, 42.30398]","[-2.379, -2.070988]","['ES', 'ES']",0.0,41.984989999999996,75.3934287467309,-2.2249939999999997,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1271,Yela_Soria,['INET_PL_1271'],"['INET_N_1646', 'INET_N_1389']","[40.806749, 41.666]","[-2.822598, -2.379]","['ES', 'ES']",0.0,41.2363745,102.52371486147176,-2.6007990000000003,73.32634748793429,0.0,1983.0,21.46069756906611,1041.9157618248628 -INET_PL_1273,Castelnou_Alfarras,['INET_PL_1273'],"['INET_N_269', 'INET_N_29']","[41.2167, 41.83]","[-0.2928, 0.57011]","['ES', 'ES']",0.0,41.52335,99.08190211639877,0.138655,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1275,Almeria_Lorca,['INET_PL_1275'],"['INET_N_38', 'INET_N_883']","[36.7348, 37.68]","[-2.3036, -1.89]","['ES', 'ES']",0.0,37.2074,111.33593644407586,-2.0968,79.0855253016357,0.0,1983.0,12.041666666666664,1066.8 -INET_PL_1277,Cartagena_Lorca,['INET_PL_1277'],"['INET_N_260', 'INET_N_883']","[37.624, 37.68]","[-0.998, -1.89]","['ES', 'ES']",0.0,37.652,78.79990344658853,-1.444,81.14846041575264,0.0,1983.0,25.83841211606023,1128.6574307053427 -INET_PL_1279,Lorca_Chinchilla,['INET_PL_1279'],"['INET_N_883', 'INET_N_295']","[37.68, 38.892435]","[-1.89, -1.719831]","['ES', 'ES']",0.0,38.2862175,135.67475894870856,-1.8049155,79.0855253016357,0.0,1983.0,22.680775649265325,1066.8 -INET_PL_1281,Puente Genil_Malaga,['INET_PL_1281'],"['INET_N_1186', 'INET_N_910']","[37.49, 36.7495]","[-4.838, -4.5631]","['ES', 'ES']",0.0,37.119749999999996,85.89841861847431,-4.70055,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1283,Bilbao_Santander,['INET_PL_1283'],"['INET_N_170', 'INET_N_1314']","[43.3612, 43.327]","[-3.09473, -4.2]","['ES', 'ES']",0.0,43.3441,89.48696464539586,-3.647365,76.52242608888832,0.0,1983.0,19.00543648475251,989.945070895113 -INET_PL_1285,Huesca_Alfarras,['INET_PL_1285'],"['INET_N_646', 'INET_N_29']","[42.231, 41.83]","[-0.436, 0.57011]","['ES', 'ES']",0.0,42.0305,94.3347238688599,0.067055,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1287,Baneras_Pinasses,['INET_PL_1287'],"['INET_N_125', 'INET_N_1142']","[41.27945, 41.874]","[1.58081, 1.792]","['ES', 'ES']",0.0,41.576724999999996,68.42651194163717,1.6864050000000002,72.75446023565802,0.0,1983.0,21.41360463803082,1040.9433491832358 -INET_PL_1289,Alfarras_Pinasses,['INET_PL_1289'],"['INET_N_29', 'INET_N_1142']","[41.83, 41.874]","[0.57011, 1.792]","['ES', 'ES']",0.0,41.852000000000004,101.35321760660206,1.181055,72.75446023565802,0.0,1983.0,21.41360463803082,1040.9433491832358 -INET_PL_1291,Haro_Gaviota,['INET_PL_1291'],"['INET_N_601', 'INET_N_527']","[42.565847, 43.443007]","[-2.882395, -2.756361]","['ES', 'ES']",0.0,43.004427,98.1034613185215,-2.819378,73.20644319916875,0.0,1983.0,21.45082022370518,1041.7118816968884 -INET_PL_1293,Campo Maior_Badajoz,['INET_PL_1293'],"['INET_N_250', 'INET_N_108']","[38.982, 38.87665]","[-7.059, -6.9714]","['PT', 'ES']",0.0,38.929325,13.955903439652074,-7.0152,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1295,Valenca Do Minho_Tuy,['INET_PL_1295'],"['INET_N_1550', 'INET_N_1520']","[42.0248024, 42.155953]","[-8.6398019, -8.632403]","['PT', 'ES']",0.0,42.0903777,14.600637746330412,-8.63610245,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1297,Craughwell_Loughshinny,['INET_PL_1297'],"['INET_N_325', 'INET_N_886']","[53.23, 53.548]","[-8.733, -6.084]","['IE', 'IE']",0.0,53.388999999999996,179.235046665317,-7.4085,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1299,Aughinish_Craughwell,['INET_PL_1299'],"['INET_N_84', 'INET_N_325']","[52.6324, 53.23]","[-9.0596, -8.733]","['IE', 'IE']",0.0,52.9312,69.98466360022968,-8.8963,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1301,Aughinish_Mitchestown,['INET_PL_1301'],"['INET_N_84', 'INET_N_971']","[52.6324, 52.267]","[-9.0596, -8.159]","['IE', 'IE']",0.0,52.4497,73.34202541169871,-8.609300000000001,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1303,Mitchelstown_Clonmel,['INET_PL_1303'],"['INET_N_971', 'INET_N_304']","[52.267, 52.35]","[-8.159, -7.68]","['IE', 'IE']",0.0,52.3085,33.85822898420935,-7.9195,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1305,Clonmel_Carlow,['INET_PL_1305'],"['INET_N_304', 'INET_N_255']","[52.35, 52.83]","[-7.68, -6.93]","['IE', 'IE']",0.0,52.59,73.61320506342005,-7.305,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1307,Clonmel_Waterford,['INET_PL_1307'],"['INET_N_304', 'INET_N_1602']","[52.35, 52.255]","[-7.68, -7.1145]","['IE', 'IE']",0.0,52.3025,39.888139157645305,-7.39725,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1309,Carlow_Loughshinny,['INET_PL_1309'],"['INET_N_255', 'INET_N_886']","[52.83, 53.548]","[-6.93, -6.084]","['IE', 'IE']",0.0,53.189,97.75902082933635,-6.507,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1311,Craughwell_Portacloy,['INET_PL_1311'],"['INET_N_325', 'INET_N_1166']","[53.23, 54.329]","[-8.733, -9.788]","['IE', 'IE']",0.0,53.7795,140.53460556774016,-9.2605,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1313,Mitchelstown_Whitegate,['INET_PL_1313'],"['INET_N_971', 'INET_N_1617']","[52.267, 51.8161]","[-8.159, -8.2511]","['IE', 'IE']",0.0,52.04155,50.54779878716182,-8.20505,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1315,Gormanstown_Dundalk,['INET_PL_1315'],"['INET_N_555', 'INET_N_406']","[53.638742, 53.999]","[-6.22249, -6.398]","['IE', 'IE']",0.0,53.818871,41.695721124674385,-6.310245,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1317,Belfast_Dundalk,['INET_PL_1317'],"['INET_N_144', 'INET_N_406']","[54.589, 53.999]","[-5.911, -6.398]","['GB', 'IE']",0.0,54.294,72.84316258739138,-6.1545,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1319_EE_0,Whitegate_Ballineen0,['INET_PL_1319'],"['INET_N_1617', 'INET_N_315']","[51.8161, 51.9]","[-8.2511, -8.4458]","['IE', 'IE']",0.0,51.85805,16.309121859728144,-8.34845,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1319_EE_1,Whitegate_Ballineen1,['INET_PL_1319'],"['INET_N_315', 'INET_N_119']","[51.9, 51.7354]","[-8.4458, -8.949]","['IE', 'IE']",0.0,51.8177,39.14457197629123,-8.6974,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1322,Visaginas_Dougavpils,['INET_PL_1322'],"['INET_N_1577', 'INET_N_382']","[55.597, 55.874]","[26.433, 26.5399]","['LT', 'LV']",0.0,55.7355,31.529552764219567,26.486449999999998,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1324,Bocholtz_PuthSchinnen,['INET_PL_1324'],"['INET_N_186', 'INET_N_1196']","[50.817365, 50.9554323]","[6.021767, 5.8705487]","['NL', 'NL']",0.0,50.886398650000004,18.66649033609905,5.94615785,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_1326,PuthSchinnen_Bemelen,['INET_PL_1326'],"['INET_N_1196', 'INET_N_148']","[50.9554323, 50.84]","[5.8705487, 5.758]","['NL', 'NL']",0.0,50.89771615,15.0729793393258,5.81427435,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_1328,Gravenvoeren_Bemelen,['INET_PL_1328'],"['INET_N_564', 'INET_N_148']","[50.7587829, 50.84]","[5.7611628, 5.758]","['BE', 'NL']",0.0,50.79939145,9.03650043017017,5.7595814,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_1330,Echt_PuthSchinnen_1,['INET_PL_1330'],"['INET_N_412', 'INET_N_1196']","[51.086, 50.9554323]","[5.898, 5.8705487]","['NL', 'NL']",0.0,51.02071615,14.649482354755321,5.88427435,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_1332,Echt_PuthSchinnen_2,['INET_PL_1332'],"['INET_N_412', 'INET_N_1196']","[51.086, 50.9554323]","[5.898, 5.8705487]","['NL', 'NL']",0.0,51.02071615,14.649482354755321,5.88427435,76.80652874754169,0.0,1983.0,16.491666666666667,998.4639333647048 -INET_PL_1334,Echt_Melick,['INET_PL_1334'],"['INET_N_412', 'INET_N_946']","[51.086, 51.155]","[5.898, 6.022]","['NL', 'NL']",0.0,51.1205,11.569481511718768,5.96,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1336,Echt_Nederweert,['INET_PL_1336'],"['INET_N_412', 'INET_N_1020']","[51.086, 51.296]","[5.898, 5.717]","['NL', 'NL']",0.0,51.191,26.548295602644284,5.807499999999999,76.80652874754169,0.0,1983.0,0.079,998.4639333647048 -INET_PL_1338,Nederweert_Liero,['INET_PL_1338'],"['INET_N_1020', 'INET_N_863']","[51.296, 51.429]","[5.717, 5.67]","['NL', 'NL']",0.0,51.3625,15.149408356472808,5.6935,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1340,Liero_Mill,['INET_PL_1340'],"['INET_N_863', 'INET_N_966']","[51.429, 51.69]","[5.67, 5.78]","['NL', 'NL']",0.0,51.5595,30.010987684967077,5.725,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1342_EE_0,Melick_Ravenstein_10,['INET_PL_1342'],"['INET_N_946', 'INET_N_145']","[51.155, 51.3]","[6.022, 6.132]","['NL', 'NL']",0.0,51.2275,17.855823404315906,6.077,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1342_EE_1,Melick_Ravenstein_11,['INET_PL_1342'],"['INET_N_145', 'INET_N_1563']","[51.3, 51.48]","[6.132, 5.936]","['NL', 'NL']",0.0,51.39,24.205961905842077,6.034,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1342_EE_2,Melick_Ravenstein_12,['INET_PL_1342'],"['INET_N_1563', 'INET_N_966']","[51.48, 51.69]","[5.936, 5.78]","['NL', 'NL']",0.0,51.584999999999994,25.72646870440757,5.8580000000000005,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1342_EE_3,Melick_Ravenstein_13,['INET_PL_1342'],"['INET_N_966', 'INET_N_1216']","[51.69, 51.743]","[5.78, 5.69]","['NL', 'NL']",0.0,51.716499999999996,8.556857164808612,5.735,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1342_EE_4,Melick_Ravenstein_14,['INET_PL_1342'],"['INET_N_1216', 'INET_N_1212']","[51.743, 51.78178]","[5.69, 5.661435]","['NL', 'NL']",0.0,51.762389999999996,4.740603781866384,5.6757175,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1348_EE_0,Melick_Ravenstein_20,['INET_PL_1348'],"['INET_N_946', 'INET_N_145']","[51.155, 51.3]","[6.022, 6.132]","['NL', 'NL']",0.0,51.2275,17.855823404315906,6.077,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1348_EE_1,Melick_Ravenstein_21,['INET_PL_1348'],"['INET_N_145', 'INET_N_1563']","[51.3, 51.48]","[6.132, 5.936]","['NL', 'NL']",0.0,51.39,24.205961905842077,6.034,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1348_EE_2,Melick_Ravenstein_22,['INET_PL_1348'],"['INET_N_1563', 'INET_N_966']","[51.48, 51.69]","[5.936, 5.78]","['NL', 'NL']",0.0,51.584999999999994,25.72646870440757,5.8580000000000005,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -INET_PL_1348_EE_3,Melick_Ravenstein_23,['INET_PL_1348'],"['INET_N_966', 'INET_N_1216']","[51.69, 51.743]","[5.78, 5.69]","['NL', 'NL']",0.0,51.716499999999996,8.556857164808612,5.735,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1348_EE_4,Melick_Ravenstein_24,['INET_PL_1348'],"['INET_N_1216', 'INET_N_1212']","[51.743, 51.78178]","[5.69, 5.661435]","['NL', 'NL']",0.0,51.762389999999996,4.740603781866384,5.6757175,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1354_EE_0,Mill_Ravenstein0,['INET_PL_1354'],"['INET_N_966', 'INET_N_1216']","[51.69, 51.743]","[5.78, 5.69]","['NL', 'NL']",0.0,51.716499999999996,8.556857164808612,5.735,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1354_EE_1,Mill_Ravenstein1,['INET_PL_1354'],"['INET_N_1216', 'INET_N_1212']","[51.743, 51.78178]","[5.69, 5.661435]","['NL', 'NL']",0.0,51.762389999999996,4.740603781866384,5.6757175,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1357_EE_0,Ravenstein_Westerschelde Oost0,['INET_PL_1357'],"['INET_N_1212', 'INET_N_1096']","[51.78178, 51.76]","[5.661435, 5.513]","['NL', 'NL']",0.0,51.770889999999994,10.500051498813995,5.5872174999999995,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1357_EE_1,Ravenstein_Westerschelde Oost1,['INET_PL_1357'],"['INET_N_1096', 'INET_N_960']","[51.76, 51.66]","[5.513, 5.41]","['NL', 'NL']",0.0,51.709999999999994,13.195339753771055,5.4615,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1357_EE_2,Ravenstein_Westerschelde Oost2,['INET_PL_1357'],"['INET_N_960', 'INET_N_978']","[51.66, 51.52]","[5.41, 5.195]","['NL', 'NL']",0.0,51.59,21.523053598089202,5.3025,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1357_EE_3,Ravenstein_Westerschelde Oost3,['INET_PL_1357'],"['INET_N_978', 'INET_N_143']","[51.52, 51.52]","[5.195, 5.13]","['NL', 'NL']",0.0,51.52,4.498767439388769,5.1625,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1357_EE_4,Ravenstein_Westerschelde Oost4,['INET_PL_1357'],"['INET_N_143', 'INET_N_40']","[51.52, 51.4823836]","[5.13, 4.9533065]","['NL', 'NL']",0.0,51.5011918,12.930005836159603,5.0416532499999995,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1357_EE_5,Ravenstein_Westerschelde Oost5,['INET_PL_1357'],"['INET_N_40', 'INET_N_1238']","[51.4823836, 51.51]","[4.9533065, 4.679]","['NL', 'NL']",0.0,51.4961918,19.24192991141717,4.81615325,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1357_EE_6,Ravenstein_Westerschelde Oost6,['INET_PL_1357'],"['INET_N_1238', 'INET_N_1097']","[51.51, 51.387]","[4.679, 4.34]","['NL', 'NL']",0.0,51.448499999999996,27.192041286777222,4.5095,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1357_EE_7,Ravenstein_Westerschelde Oost7,['INET_PL_1357'],"['INET_N_1097', 'INET_N_1615']","[51.387, 51.34]","[4.34, 4.22]","['NL', 'NL']",0.0,51.3635,9.83789647885875,4.279999999999999,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_1366_EE_0,Westerschelde Oost_Zelzate0,['INET_PL_1366'],"['INET_N_1615', 'INET_N_95']","[51.34, 51.27]","[4.22, 3.929]","['NL', 'NL']",0.0,51.30500000000001,21.681809644801444,4.0745,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_1366_EE_1,Westerschelde Oost_Zelzate1,['INET_PL_1366'],"['INET_N_95', 'INET_N_1659']","[51.27, 51.191166]","[3.929, 3.827686]","['NL', 'BE']",0.0,51.230583,11.255464325995362,3.878343,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_1369_EE_0,Westerschelde Oost_Wijngaarden0,['INET_PL_1369'],"['INET_N_1615', 'INET_N_633']","[51.34, 51.607]","[4.22, 4.577]","['NL', 'NL']",0.0,51.4735,38.6490360463145,4.3985,76.80652874754169,0.0,1983.0,16.958333333333332,998.4639333647048 -INET_PL_1369_EE_1,Westerschelde Oost_Wijngaarden1,['INET_PL_1369'],"['INET_N_633', 'INET_N_1434']","[51.607, 51.71]","[4.577, 4.577]","['NL', 'NL']",0.0,51.658500000000004,11.456672822649221,4.577,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1369_EE_2,Westerschelde Oost_Wijngaarden2,['INET_PL_1369'],"['INET_N_1434', 'INET_N_1623']","[51.71, 51.850787]","[4.577, 4.739927]","['NL', 'NL']",0.0,51.7803935,19.259608834875685,4.6584635,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1373,Wijngaarden_Gate Rotterdam,['INET_PL_1373'],"['INET_N_1623', 'INET_N_525']","[51.850787, 51.973837]","[4.739927, 4.064029]","['NL', 'NL']",0.0,51.912312,48.35336229119538,4.401978,84.2470305780863,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1375_EE_0,Wijngaarden_Beverwijk_10,['INET_PL_1375'],"['INET_N_164', 'INET_N_387']","[52.487665, 52.449]","[4.700005, 4.643]","['NL', 'NL']",0.0,52.4683325,5.780716943726744,4.6715025,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1375_EE_1,Wijngaarden_Beverwijk_11,['INET_PL_1375'],"['INET_N_387', 'INET_N_638']","[52.449, 52.3]","[4.643, 4.711]","['NL', 'NL']",0.0,52.3745,17.20448800691053,4.677,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1375_EE_2,Wijngaarden_Beverwijk_12,['INET_PL_1375'],"['INET_N_638', 'INET_N_1235']","[52.3, 52.127]","[4.711, 4.59]","['NL', 'NL']",0.0,52.213499999999996,20.9353334577913,4.6505,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1375_EE_3,Wijngaarden_Beverwijk_13,['INET_PL_1375'],"['INET_N_1235', 'INET_N_1103']","[52.127, 51.978]","[4.59, 4.554]","['NL', 'NL']",0.0,52.0525,16.755171555824592,4.572,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1375_EE_4,Wijngaarden_Beverwijk_14,['INET_PL_1375'],"['INET_N_1103', 'INET_N_1623']","[51.978, 51.850787]","[4.554, 4.739927]","['NL', 'NL']",0.0,51.9143935,19.051234170104795,4.6469635,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1381_EE_0,Wijngaarden_Beverwijk_20,['INET_PL_1381'],"['INET_N_164', 'INET_N_387']","[52.487665, 52.449]","[4.700005, 4.643]","['NL', 'NL']",0.0,52.4683325,5.780716943726744,4.6715025,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1381_EE_1,Wijngaarden_Beverwijk_21,['INET_PL_1381'],"['INET_N_387', 'INET_N_638']","[52.449, 52.3]","[4.643, 4.711]","['NL', 'NL']",0.0,52.3745,17.20448800691053,4.677,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1381_EE_2,Wijngaarden_Beverwijk_22,['INET_PL_1381'],"['INET_N_638', 'INET_N_1235']","[52.3, 52.127]","[4.711, 4.59]","['NL', 'NL']",0.0,52.213499999999996,20.9353334577913,4.6505,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1381_EE_3,Wijngaarden_Beverwijk_23,['INET_PL_1381'],"['INET_N_1235', 'INET_N_1103']","[52.127, 51.978]","[4.59, 4.554]","['NL', 'NL']",0.0,52.0525,16.755171555824592,4.572,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1381_EE_4,Wijngaarden_Beverwijk_24,['INET_PL_1381'],"['INET_N_1103', 'INET_N_1623']","[51.978, 51.850787]","[4.554, 4.739927]","['NL', 'NL']",0.0,51.9143935,19.051234170104795,4.6469635,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1387_EE_0,Wijngaarden_Ewijk0,['INET_PL_1387'],"['INET_N_1623', 'INET_N_958']","[51.850787, 51.86]","[4.739927, 5.29]","['NL', 'NL']",0.0,51.8553935,37.80432385679771,5.0149635,76.80652874754169,0.0,1983.0,26.75,998.4639333647048 -INET_PL_1387_EE_1,Wijngaarden_Ewijk1,['INET_PL_1387'],"['INET_N_958', 'INET_N_475']","[51.86, 51.845368]","[5.29, 5.722341]","['NL', 'NL']",0.0,51.852683999999996,29.748523000899468,5.5061705,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1390,Ravenstein_Ewijk_1,['INET_PL_1390'],"['INET_N_1212', 'INET_N_475']","[51.78178, 51.845368]","[5.661435, 5.722341]","['NL', 'NL']",0.0,51.813574,8.219888026428931,5.6918880000000005,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1392,Ravenstein_Ewijk_2,['INET_PL_1392'],"['INET_N_1212', 'INET_N_475']","[51.78178, 51.845368]","[5.661435, 5.722341]","['NL', 'NL']",0.0,51.813574,8.219888026428931,5.6918880000000005,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1394,Ravenstein_Ewijk_3,['INET_PL_1394'],"['INET_N_1212', 'INET_N_475']","[51.78178, 51.845368]","[5.661435, 5.722341]","['NL', 'NL']",0.0,51.813574,8.219888026428931,5.6918880000000005,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1396,Ravenstein_Ewijk_4,['INET_PL_1396'],"['INET_N_1212', 'INET_N_475']","[51.78178, 51.845368]","[5.661435, 5.722341]","['NL', 'NL']",0.0,51.813574,8.219888026428931,5.6918880000000005,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1398_EE_0,Ewijk_Ommen_10,['INET_PL_1398'],"['INET_N_475', 'INET_N_1547']","[51.845368, 51.9]","[5.722341, 5.78]","['NL', 'NL']",0.0,51.872684,7.252974040196485,5.751170500000001,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1398_EE_1,Ewijk_Ommen_11,['INET_PL_1398'],"['INET_N_1547', 'INET_N_100']","[51.9, 51.899]","[5.78, 5.918]","['NL', 'NL']",0.0,51.8995,9.47208314936208,5.849,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1398_EE_2,Ewijk_Ommen_12,['INET_PL_1398'],"['INET_N_100', 'INET_N_1668']","[51.899, 51.9605323]","[5.918, 6.0759819]","['NL', 'NL']",0.0,51.92976615,12.816106012506927,5.996990950000001,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1398_EE_3,Ewijk_Ommen_13,['INET_PL_1398'],"['INET_N_1668', 'INET_N_8']","[51.9605323, 52.022]","[6.0759819, 6.18]","['NL', 'NL']",0.0,51.99126615,9.874421168966283,6.12799095,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1398_EE_4,Ewijk_Ommen_14,['INET_PL_1398'],"['INET_N_8', 'INET_N_466']","[52.022, 52.192]","[6.18, 6.367]","['NL', 'NL']",0.0,52.107,22.820072768710475,6.2735,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1398_EE_5,Ewijk_Ommen_15,['INET_PL_1398'],"['INET_N_466', 'INET_N_1083']","[52.192, 52.50998]","[6.367, 6.417392]","['NL', 'NL']",0.0,52.350989999999996,35.534181991017824,6.392196,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1405_EE_0,Ewijk_Ommen_20,['INET_PL_1405'],"['INET_N_475', 'INET_N_1547']","[51.845368, 51.9]","[5.722341, 5.78]","['NL', 'NL']",0.0,51.872684,7.252974040196485,5.751170500000001,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1405_EE_1,Ewijk_Ommen_21,['INET_PL_1405'],"['INET_N_1547', 'INET_N_100']","[51.9, 51.899]","[5.78, 5.918]","['NL', 'NL']",0.0,51.8995,9.47208314936208,5.849,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1405_EE_2,Ewijk_Ommen_22,['INET_PL_1405'],"['INET_N_100', 'INET_N_1668']","[51.899, 51.9605323]","[5.918, 6.0759819]","['NL', 'NL']",0.0,51.92976615,12.816106012506927,5.996990950000001,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1405_EE_3,Ewijk_Ommen_23,['INET_PL_1405'],"['INET_N_1668', 'INET_N_8']","[51.9605323, 52.022]","[6.0759819, 6.18]","['NL', 'NL']",0.0,51.99126615,9.874421168966283,6.12799095,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1405_EE_4,Ewijk_Ommen_24,['INET_PL_1405'],"['INET_N_8', 'INET_N_466']","[52.022, 52.192]","[6.18, 6.367]","['NL', 'NL']",0.0,52.107,22.820072768710475,6.2735,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1405_EE_5,Ewijk_Ommen_25,['INET_PL_1405'],"['INET_N_466', 'INET_N_1083']","[52.192, 52.50998]","[6.367, 6.417392]","['NL', 'NL']",0.0,52.350989999999996,35.534181991017824,6.392196,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1412_EE_0,Ewijk_Ommen_30,['INET_PL_1412'],"['INET_N_475', 'INET_N_1547']","[51.845368, 51.9]","[5.722341, 5.78]","['NL', 'NL']",0.0,51.872684,7.252974040196485,5.751170500000001,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1412_EE_1,Ewijk_Ommen_31,['INET_PL_1412'],"['INET_N_1547', 'INET_N_100']","[51.9, 51.899]","[5.78, 5.918]","['NL', 'NL']",0.0,51.8995,9.47208314936208,5.849,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1412_EE_2,Ewijk_Ommen_32,['INET_PL_1412'],"['INET_N_100', 'INET_N_1668']","[51.899, 51.9605323]","[5.918, 6.0759819]","['NL', 'NL']",0.0,51.92976615,12.816106012506927,5.996990950000001,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1412_EE_3,Ewijk_Ommen_33,['INET_PL_1412'],"['INET_N_1668', 'INET_N_8']","[51.9605323, 52.022]","[6.0759819, 6.18]","['NL', 'NL']",0.0,51.99126615,9.874421168966283,6.12799095,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1412_EE_4,Ewijk_Ommen_34,['INET_PL_1412'],"['INET_N_8', 'INET_N_466']","[52.022, 52.192]","[6.18, 6.367]","['NL', 'NL']",0.0,52.107,22.820072768710475,6.2735,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1412_EE_5,Ewijk_Ommen_35,['INET_PL_1412'],"['INET_N_466', 'INET_N_1083']","[52.192, 52.50998]","[6.367, 6.417392]","['NL', 'NL']",0.0,52.350989999999996,35.534181991017824,6.392196,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -INET_PL_1419_EE_0,Ommen_Scheemda_10,['INET_PL_1419'],"['INET_N_1083', 'INET_N_1667']","[52.50998, 52.68]","[6.417392, 6.533]","['NL', 'NL']",0.0,52.594989999999996,20.460969881264372,6.475196,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1419_EE_1,Ommen_Scheemda_11,['INET_PL_1419'],"['INET_N_1667', 'INET_N_415']","[52.68, 53.025]","[6.533, 6.742]","['NL', 'NL']",0.0,52.8525,40.861381792006085,6.6375,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1419_EE_2,Ommen_Scheemda_12,['INET_PL_1419'],"['INET_N_415', 'INET_N_1325']","[53.025, 53.1763506]","[6.742, 6.9723944]","['NL', 'NL']",0.0,53.1006753,22.806852620395404,6.8571972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1423_EE_0,Ommen_Scheemda_20,['INET_PL_1423'],"['INET_N_1083', 'INET_N_1667']","[52.50998, 52.68]","[6.417392, 6.533]","['NL', 'NL']",0.0,52.594989999999996,20.460969881264372,6.475196,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1423_EE_1,Ommen_Scheemda_21,['INET_PL_1423'],"['INET_N_1667', 'INET_N_415']","[52.68, 53.025]","[6.533, 6.742]","['NL', 'NL']",0.0,52.8525,40.861381792006085,6.6375,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1423_EE_2,Ommen_Scheemda_22,['INET_PL_1423'],"['INET_N_415', 'INET_N_1325']","[53.025, 53.1763506]","[6.742, 6.9723944]","['NL', 'NL']",0.0,53.1006753,22.806852620395404,6.8571972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1427_EE_0,Ommen_Scheemda_30,['INET_PL_1427'],"['INET_N_1083', 'INET_N_1667']","[52.50998, 52.68]","[6.417392, 6.533]","['NL', 'NL']",0.0,52.594989999999996,20.460969881264372,6.475196,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1427_EE_1,Ommen_Scheemda_31,['INET_PL_1427'],"['INET_N_1667', 'INET_N_415']","[52.68, 53.025]","[6.533, 6.742]","['NL', 'NL']",0.0,52.8525,40.861381792006085,6.6375,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1427_EE_2,Ommen_Scheemda_32,['INET_PL_1427'],"['INET_N_415', 'INET_N_1325']","[53.025, 53.1763506]","[6.742, 6.9723944]","['NL', 'NL']",0.0,53.1006753,22.806852620395404,6.8571972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1431,Zuideropgaande_Vlieghuis_1,['INET_PL_1431'],"['INET_N_1667', 'INET_N_1580']","[52.68, 52.66]","[6.533, 6.83]","['NL', 'NL']",0.0,52.67,20.155866746130457,6.6815,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1433,Zuideropgaande_Vlieghuis_2,['INET_PL_1433'],"['INET_N_1667', 'INET_N_1580']","[52.68, 52.66]","[6.533, 6.83]","['NL', 'NL']",0.0,52.67,20.155866746130457,6.6815,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1435,Zuideropgaande_Vlieghuis_3,['INET_PL_1435'],"['INET_N_1667', 'INET_N_1580']","[52.68, 52.66]","[6.533, 6.83]","['NL', 'NL']",0.0,52.67,20.155866746130457,6.6815,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -INET_PL_1437,Scheemda_Oude Statenzijl_1,['INET_PL_1437'],"['INET_N_1325', 'INET_N_1101']","[53.1763506, 53.2019]","[6.9723944, 7.205]","['NL', 'NL']",0.0,53.1891253,15.7606014512168,7.0886972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1439,Scheemda_Oude Statenzijl_2,['INET_PL_1439'],"['INET_N_1325', 'INET_N_1101']","[53.1763506, 53.2019]","[6.9723944, 7.205]","['NL', 'NL']",0.0,53.1891253,15.7606014512168,7.0886972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1441,Scheemda_Oude Statenzijl_3,['INET_PL_1441'],"['INET_N_1325', 'INET_N_1101']","[53.1763506, 53.2019]","[6.9723944, 7.205]","['NL', 'NL']",0.0,53.1891253,15.7606014512168,7.0886972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1443,Scheemda_Spijk,['INET_PL_1443'],"['INET_N_1325', 'INET_N_1397']","[53.1763506, 53.39]","[6.9723944, 6.831]","['NL', 'NL']",0.0,53.283175299999996,25.556740938564715,6.9016972,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1449_EE_0,Scheemda_Schuilenburg0,['INET_PL_1449'],"['INET_N_1325', 'INET_N_1084']","[53.1763506, 53.28]","[6.9723944, 6.4979]","['NL', 'NL']",0.0,53.228175300000004,33.632112744752746,6.7351472,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -INET_PL_1449_EE_1,Scheemda_Schuilenburg1,['INET_PL_1449'],"['INET_N_1084', 'INET_N_572']","[53.28, 53.278554]","[6.4979, 6.31028]","['NL', 'NL']",0.0,53.279277,12.47888805250129,6.40409,70.14794708339141,0.0,1983.0,21.199524245034777,1036.5113456200463 -INET_PL_1449_EE_2,Scheemda_Schuilenburg2,['INET_PL_1449'],"['INET_N_572', 'INET_N_1333']","[53.278554, 53.19]","[6.31028, 6.07]","['NL', 'NL']",0.0,53.234277,18.786141835445925,6.1901399999999995,70.14794708339141,0.0,1983.0,21.199524245034777,1036.5113456200463 -INET_PL_1453_EE_0,Schuilenburg_Wieringermeer0,['INET_PL_1453'],"['INET_N_1333', 'INET_N_1079']","[53.19, 53.0481093]","[6.07, 5.8924892]","['NL', 'NL']",0.0,53.119054649999995,19.735818568380843,5.9812446,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1453_EE_1,Schuilenburg_Wieringermeer1,['INET_PL_1453'],"['INET_N_1079', 'INET_N_1035']","[53.0481093, 53.056]","[5.8924892, 5.589]","['NL', 'NL']",0.0,53.05205465,20.309957673923662,5.7407446,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1453_EE_2,Schuilenburg_Wieringermeer2,['INET_PL_1453'],"['INET_N_1035', 'INET_N_1637']","[53.056, 52.95]","[5.589, 5.429]","['NL', 'NL']",0.0,53.003,15.928225879206309,5.509,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1453_EE_3,Schuilenburg_Wieringermeer3,['INET_PL_1453'],"['INET_N_1637', 'INET_N_1620']","[52.95, 52.756746]","[5.429, 5.050348]","['NL', 'NL']",0.0,52.853373000000005,33.29995995177424,5.239674,76.31435996514213,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1458,Wieringermeer_Anna Paulowna_1,['INET_PL_1458'],"['INET_N_1620', 'INET_N_65']","[52.756746, 52.86]","[5.050348, 4.822]","['NL', 'NL']",0.0,52.808373,19.173612894636275,4.936173999999999,76.31435996514213,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1462,Anna Paulowna_Beverwijk,['INET_PL_1462'],"['INET_N_65', 'INET_N_164']","[52.86, 52.487665]","[4.822, 4.700005]","['NL', 'NL']",0.0,52.6738325,42.22415000586116,4.7610025,76.80652874754169,0.0,1983.0,26.043265432067525,1132.5537688442212 -INET_PL_1464,Wieringermeer_Beverwijk,['INET_PL_1464'],"['INET_N_1620', 'INET_N_164']","[52.756746, 52.487665]","[5.050348, 4.700005]","['NL', 'NL']",0.0,52.6222055,38.14998681520088,4.8751765,76.31435996514213,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1470,Slagesle_Kopenhagen,['INET_PL_1470'],"['INET_N_1375', 'INET_N_777']","[55.39, 55.65]","[11.21, 12.6]","['DK', 'DK']",0.0,55.519999999999996,92.17931319303908,11.905000000000001,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1472,Kopenhagen_Malmoe,['INET_PL_1472'],"['INET_N_777', 'INET_N_916']","[55.65, 55.6]","[12.6, 13.008]","['DK', 'SE']",0.0,55.625,26.219441009956352,12.803999999999998,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1474_EE_0,Malmoe_Stenungsund0,['INET_PL_1474'],"['INET_N_916', 'INET_N_896']","[55.6, 55.7]","[13.008, 13.19]","['SE', 'SE']",0.0,55.650000000000006,15.943471520427373,13.099,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_1,Malmoe_Stenungsund1,['INET_PL_1474'],"['INET_N_896', 'INET_N_818']","[55.7, 55.87]","[13.19, 12.833]","['SE', 'SE']",0.0,55.785,29.259295191137003,13.0115,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_2,Malmoe_Stenungsund2,['INET_PL_1474'],"['INET_N_818', 'INET_N_612']","[55.87, 56.045707]","[12.833, 12.69]","['SE', 'SE']",0.0,55.9578535,21.476633250464843,12.7615,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_3,Malmoe_Stenungsund3,['INET_PL_1474'],"['INET_N_612', 'INET_N_632']","[56.045707, 56.2]","[12.69, 12.556]","['SE', 'SE']",0.0,56.122853500000005,19.067213067268252,12.623,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1474_EE_4,Malmoe_Stenungsund4,['INET_PL_1474'],"['INET_N_632', 'INET_N_11']","[56.2, 56.24]","[12.556, 12.86]","['SE', 'SE']",0.0,56.22,19.319960507277248,12.707999999999998,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1474_EE_5,Malmoe_Stenungsund5,['INET_PL_1474'],"['INET_N_11', 'INET_N_816']","[56.24, 56.505]","[12.86, 13.046]","['SE', 'SE']",0.0,56.3725,31.624289110483176,12.953,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_6,Malmoe_Stenungsund6,['INET_PL_1474'],"['INET_N_816', 'INET_N_591']","[56.505, 56.67]","[13.046, 12.86]","['SE', 'SE']",0.0,56.587500000000006,21.60135687539683,12.953,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_7,Malmoe_Stenungsund7,['INET_PL_1474'],"['INET_N_591', 'INET_N_478']","[56.67, 56.9]","[12.86, 12.5]","['SE', 'SE']",0.0,56.785,33.69877933238728,12.68,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_8,Malmoe_Stenungsund8,['INET_PL_1474'],"['INET_N_478', 'INET_N_1554']","[56.9, 57.1]","[12.5, 12.25]","['SE', 'SE']",0.0,57.0,26.91194413365278,12.375,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1474_EE_9,Malmoe_Stenungsund9,['INET_PL_1474'],"['INET_N_1554', 'INET_N_548']","[57.1, 57.709]","[12.25, 11.96]","['SE', 'SE']",0.0,57.4045,69.93208929033399,12.105,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1474_EE_10,Malmoe_Stenungsund10,['INET_PL_1474'],"['INET_N_548', 'INET_N_1423']","[57.709, 58.06]","[11.96, 11.83]","['SE', 'SE']",0.0,57.8845,39.791263554810826,11.895,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1486,Malmoe_Trelleborg,['INET_PL_1486'],"['INET_N_916', 'INET_N_1505']","[55.6, 55.37]","[13.008, 13.15]","['SE', 'SE']",0.0,55.485,27.10308317200585,13.079,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1488_EE_0,Halmstad_Gilaved0,['INET_PL_1488'],"['INET_N_591', 'INET_N_655']","[56.67, 56.97]","[12.86, 13.26]","['SE', 'SE']",0.0,56.82,41.308054376821,13.059999999999999,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1488_EE_1,Halmstad_Gilaved1,['INET_PL_1488'],"['INET_N_655', 'INET_N_542']","[56.97, 57.29]","[13.26, 13.54]","['SE', 'SE']",0.0,57.129999999999995,39.4031679483815,13.399999999999999,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1491_EE_0,Mantsala_Kyroskoski0,['INET_PL_1491'],"['INET_N_920', 'INET_N_1458']","[60.6638584, 61.49]","[25.2836053, 23.74]","['FI', 'FI']",0.0,61.0769292,123.84549358983958,24.51180265,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1491_EE_1,Mantsala_Kyroskoski1,['INET_PL_1491'],"['INET_N_1458', 'INET_N_804']","[61.49, 61.66]","[23.74, 23.181]","['FI', 'FI']",0.0,61.575,35.121522463484744,23.4605,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1494,Strachocina_Husow,['INET_PL_1494'],"['INET_N_1429', 'INET_N_653']","[49.62671, 50.006978]","[22.072274, 22.264141]","['PL', 'PL']",0.0,49.816844,44.482147984047806,22.1682075,73.33946201951802,0.0,1983.0,21.461778020986188,1041.93806121386 -INET_PL_1496,Szoreg_Kiskundorozsma,['INET_PL_1496'],"['INET_N_1449', 'INET_N_762']","[46.302801, 46.2730809]","[20.194969, 20.063011]","['HU', 'HU']",0.0,46.28794095,10.667891328419122,20.12899,72.26453880578005,0.0,1983.0,5.916666666666668,1040.110307722841 -INET_PL_1498,Szoreg_Banatski Dvor,['INET_PL_1498'],"['INET_N_1449', 'INET_N_124']","[46.302801, 45.537223]","[20.194969, 20.47481]","['HU', 'RS']",0.0,45.920012,87.86491660371837,20.334889500000003,72.26453880578005,0.0,1983.0,5.916666666666668,1040.110307722841 -INET_PL_1500,Banatski Dvor_Novi Sad,['INET_PL_1500'],"['INET_N_124', 'INET_N_1056']","[45.537223, 45.269]","[20.47481, 19.82]","['RS', 'RS']",0.0,45.403111499999994,59.20440171284479,20.147405,73.25936970163167,0.0,1983.0,21.45517990737786,1041.801875659627 -INET_PL_1502,Banatski Dvor_Belgrad,['INET_PL_1502'],"['INET_N_124', 'INET_N_146']","[45.537223, 44.79]","[20.47481, 20.44]","['RS', 'RS']",0.0,45.1636115,83.15831152517747,20.457405,73.25936970163167,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1504_EE_0,Sombor_Nils0,['INET_PL_1504'],"['INET_N_1387', 'INET_N_1056']","[45.78, 45.269]","[19.12, 19.82]","['RS', 'RS']",0.0,45.5245,78.77927740572999,19.47,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1504_EE_1,Sombor_Nils1,['INET_PL_1504'],"['INET_N_1056', 'INET_N_136']","[45.269, 44.9]","[19.82, 20.27]","['RS', 'RS']",0.0,45.0845,54.16226950160559,20.045,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1504_EE_2,Sombor_Nils2,['INET_PL_1504'],"['INET_N_136', 'INET_N_146']","[44.9, 44.79]","[20.27, 20.44]","['RS', 'RS']",0.0,44.845,18.150636271863682,20.355,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1504_EE_3,Sombor_Nils3,['INET_PL_1504'],"['INET_N_146', 'INET_N_1036']","[44.79, 43.32]","[20.44, 21.89]","['RS', 'RS']",0.0,44.055,200.41647151560736,21.165,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -INET_PL_1509,Batajnica_Sarajevo,['INET_PL_1509'],"['INET_N_136', 'INET_N_1317']","[44.9, 43.855]","[20.27, 18.407]","['RS', 'BA ']",0.0,44.3775,188.2660975765657,19.3385,76.80652874754169,0.0,1983.0,0.7491666666666666,998.4639333647048 -INET_PL_1511_EE_0,Slobodnica_Lucko0,['INET_PL_1511'],"['INET_N_1377', 'INET_N_1559']","[45.1566, 45.606141]","[17.9314, 16.5895288]","['HR', 'HR']",0.0,45.3813705,116.1471820012262,17.2604644,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1511_EE_1,Slobodnica_Lucko1,['INET_PL_1511'],"['INET_N_1559', 'INET_N_890']","[45.606141, 45.76]","[16.5895288, 15.88]","['HR', 'HR']",0.0,45.6830705,57.73082088723538,16.2347644,76.80652874754169,0.0,1983.0,2.2375000000000003,998.4639333647048 -INET_PL_1514,Lucko_Bosiljevo,['INET_PL_1514'],"['INET_N_890', 'INET_N_201']","[45.76, 45.41]","[15.88, 15.28]","['HR', 'HR']",0.0,45.584999999999994,60.803308702483626,15.58,76.80652874754169,0.0,1983.0,2.2375000000000003,998.4639333647048 -INET_PL_1516_EE_0,Bosiljevo_Split0,['INET_PL_1516'],"['INET_N_201', 'INET_N_697']","[45.41, 44.22]","[15.28, 15.61]","['HR', 'HR']",0.0,44.815,134.8999957560718,15.445,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1516_EE_1,Bosiljevo_Split1,['INET_PL_1516'],"['INET_N_697', 'INET_N_1398']","[44.22, 43.62]","[15.61, 16.43]","['HR', 'HR']",0.0,43.92,93.64841990457771,16.02,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1519,Bosiljevo_Rjeka,['INET_PL_1519'],"['INET_N_201', 'INET_N_1234']","[45.41, 45.35]","[15.28, 14.44]","['HR', 'HR']",0.0,45.379999999999995,65.96568059686663,14.86,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -INET_PL_1521,Rijeka_Pula,['INET_PL_1521'],"['INET_N_1234', 'INET_N_1191']","[45.35, 44.86]","[14.44, 13.85]","['HR', 'HR']",0.0,45.105000000000004,71.52580391873003,14.145,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -INET_PL_1523,Lucko_Rogatec,['INET_PL_1523'],"['INET_N_890', 'INET_N_1250']","[45.76, 46.2258891]","[15.88, 15.7000312]","['HR', 'SI']",0.0,45.992944550000004,53.65447209322968,15.7900156,76.80652874754169,0.0,1983.0,2.2375000000000003,998.4639333647048 -INET_PL_1525_EE_0,Rogatec_Murfeld0,['INET_PL_1525'],"['INET_N_1250', 'INET_N_736']","[46.2258891, 46.4050135]","[15.7000312, 15.7947234]","['SI', 'SI']",0.0,46.31545130000001,21.210525905591492,15.7473773,76.80652874754169,0.0,1983.0,2.2375000000000003,998.4639333647048 -INET_PL_1525_EE_1,Rogatec_Murfeld1,['INET_PL_1525'],"['INET_N_736', 'INET_N_1010']","[46.4050135, 46.71]","[15.7947234, 15.67]","['SI', 'AT']",0.0,46.55750675,35.239323342597935,15.7323617,76.80652874754169,0.0,1983.0,2.2375000000000003,998.4639333647048 -INET_PL_1528_EE_0,Rogatec_Gorizia0,['INET_PL_1528'],"['INET_N_1250', 'INET_N_875']","[46.2258891, 46.058]","[15.7000312, 14.5]","['SI', 'SI']",0.0,46.141944550000005,94.34984037766861,15.100015599999999,76.80652874754169,0.0,1983.0,2.2375000000000003,998.4639333647048 -INET_PL_1528_EE_1,Rogatec_Gorizia1,['INET_PL_1528'],"['INET_N_875', 'INET_N_1344']","[46.058, 45.9266]","[14.5, 13.65005]","['SI', 'SI']",0.0,45.9923,67.28812662893137,14.075025,76.80652874754169,0.0,1983.0,1.1791666666666667,998.4639333647048 -INET_PL_1528_EE_2,Rogatec_Gorizia2,['INET_PL_1528'],"['INET_N_1344', 'INET_N_554']","[45.9266, 45.942831]","[13.65005, 13.619396]","['SI', 'IT']",0.0,45.934715499999996,2.9803624611505937,13.634723000000001,76.80652874754169,0.0,1983.0,1.1791666666666667,998.4639333647048 -INET_PL_1532,Uzhgorod_VelkeKapusany,['INET_PL_1532'],"['INET_N_1545', 'INET_N_1560']","[48.6208, 48.552002]","[22.287883, 22.121625]","['UA', 'SI']",0.0,48.586401,14.42917631159911,22.204754,73.33056287308621,0.0,1983.0,82.87037037037037,939.0002293185732 -NO_PS_0,"42 Gas ASGARD ERB, KARSTO",['NO_307674'],"['NO_N_0', 'NO_N_1']","[65.10639924578798, 65.10638726629897, 65.0714048062399, 65.0655835531228, 65.0466087012505, 64.98667691815734, 64.96936513074358, 64.92694316418239, 64.83089268256222, 64.82275128010616, 64.78902049133215, 64.76410923814875, 64.75522081935569, 64.73811507967923, 64.72905764758758, 64.70481037083306, 64.6910006878175, 64.681608198666, 64.63097764707652, 64.58994450108928, 64.5754777781278, 64.57034353941069, 64.55627391588068, 64.5330489890888, 64.52396259930144, 64.45550042010807, 64.4156735155698, 64.41022526564986, 64.40148989885984, 64.38278917904852, 64.37329776909708, 64.34302331334, 64.33677403774533, 64.31683019516235, 64.31129895024434, 64.28493773731358, 64.2717080822516, 64.26629782650288, 64.06686470794698, 64.05860130782895, 64.03005879730148, 63.960917261802386, 63.95425294327887, 63.94894270566516, 63.93560216085997, 63.931359978783924, 63.92197853434819, 63.914639141336984, 63.892851877564944, 63.885931502788395, 63.87007670020951, 63.86570149524082, 63.849770783612435, 63.84475754032751, 63.83918824802517, 63.83433197349125, 63.82883763825625, 63.81345259330126, 63.80798927102473, 63.8025989822445, 63.78224294606818, 63.776665685982714, 63.75630877919152, 63.746516303164114, 63.68970520651754, 63.656480473998876, 63.53493137925085, 63.35413529518184, 63.182461506652984, 63.131841778671294, 63.114785791135965, 62.887996400099105, 62.72469253415251, 62.57453742512168, 62.52598873362919, 62.46335649977162, 62.45681713392863, 62.43763199820316, 62.43227970225229, 62.38647435040839, 62.37237855813923, 62.3002306947004, 62.33153237032302, 62.30378288462481, 62.14907263299678, 62.04884831508891, 62.0411729478628, 61.93833129080425, 61.83901073680408, 61.81993687279976, 61.752531896155794, 61.709480959362345, 61.68334175414682, 61.65745362490071, 61.6194539232589, 61.563810555619305, 61.493876321123736, 61.40937651921906, 61.31219318071768, 61.28361191678381, 61.27749666288691, 61.27176343804237, 60.958827601738804, 60.94691016534729, 60.63886291946921, 60.588710269139206, 60.44333446124789, 60.32209537887766, 60.2359145570482, 60.0275686661006, 59.99319651118227, 59.93463160581408, 59.88389793911484, 59.860715131612565, 59.80250523989039, 59.73903415288226, 59.73032090060867, 59.7235617351468, 59.65559323592048, 59.6372628878377, 59.6025071027093, 59.59663994477845, 59.58291050652889, 59.575933307516465, 59.55926990675916, 59.544315495537454, 59.50302442788078, 59.48595003345248, 59.465578490356556, 59.458597327108535, 59.453394239306526, 59.44917519797397, 59.4399362333137, 59.43342421000597, 59.42029802760432, 59.41634194661338, 59.405778694044976, 59.39461240340518, 59.3874372530617, 59.35064740224056, 59.34447528799153, 59.33950025110032, 59.33587629949047, 59.332870460648216, 59.33285970703154]","[6.797201226775479, 6.798902289521609, 6.799977758417033, 6.799328138444637, 6.795026296569753, 6.773818666397757, 6.7689916836746296, 6.754093059336581, 6.717635309236604, 6.712691685641009, 6.682343888209994, 6.665387970016989, 6.6616244374404285, 6.659735527819653, 6.655454987077214, 6.634256866507251, 6.625742493827762, 6.617953848718584, 6.582780000004312, 6.547853508721906, 6.538238135395291, 6.536267408857836, 6.533337245379938, 6.5367659174146135, 6.535899492395402, 6.509614111962393, 6.489741046468084, 6.487874340688789, 6.487621908857597, 6.492361310039056, 6.491148892847854, 6.4752563253775515, 6.473984691353566, 6.472901962730259, 6.471688282850468, 6.4621816757611255, 6.453644241455408, 6.451132507004779, 6.382351043298078, 6.377645411621933, 6.350959319468781, 6.296131850644908, 6.292633155729915, 6.2911534439850945, 6.291647313288781, 6.2910875647323135, 6.286465003455109, 6.279178219587957, 6.249675588775005, 6.242454780163661, 6.2304343742375305, 6.228449583976948, 6.224018443364719, 6.221056659589545, 6.215982838278098, 6.20996793926784, 6.201169984910317, 6.1679428173788855, 6.160085893524652, 6.1546910496218965, 6.13869678887317, 6.136234057083573, 6.130664152261899, 6.124758567871932, 6.063335044331416, 6.033669118618902, 5.944244674342244, 5.808130268114777, 5.663992948926656, 5.610177233702493, 5.586516481876803, 5.329940673088931, 5.147996457691237, 4.982852973233536, 4.923629914962824, 4.866061731348694, 4.857787847838693, 4.82852302924114, 4.822022133207912, 4.7807454812115635, 4.762555719664421, 4.684558418951347, 4.718390682426143, 4.688382334949283, 4.522777005875677, 4.416954410848051, 4.4120056936162815, 4.366255110563339, 4.316946184024262, 4.308242986715639, 4.283388997596377, 4.2645298200076365, 4.25069584977743, 4.242068024776278, 4.225821634598034, 4.211726282754699, 4.173154953635714, 4.134569408322546, 4.092321419900135, 4.0807326197127605, 4.079560915992861, 4.079509225571385, 4.108420886498932, 4.110552582344753, 4.245695764169834, 4.268669038842772, 4.332597388660643, 4.37920891631815, 4.418330407378203, 4.505718339066808, 4.518446405236229, 4.545055059817965, 4.566650171325945, 4.5727384783317895, 4.598946072104913, 4.625336910733168, 4.631733517863311, 4.639159060924291, 4.727226902978044, 4.755570609468314, 4.799072540265306, 4.804334973415506, 4.811017821290773, 4.816352308703276, 4.835194650759652, 4.8478707300108415, 4.88839386657536, 4.90900227411247, 4.927624777038069, 4.935883346589335, 4.944822852430656, 4.9545283344188915, 4.986143692967325, 5.004468534416615, 5.030264903687826, 5.035897253472579, 5.0479430994370444, 5.058723935974043, 5.068652561070313, 5.11295556909764, 5.122739141931125, 5.135185736990418, 5.1504733524554585, 5.173162155928626, 5.193570754034167]","['NO', 'NO']",0.0,62.42291980747009,691.3316609363375,5.5092076163817,79.09219526865694,0.0,2000.0,26.043265432067525,1132.5537688442212 -NO_PS_1,"9.3 Gas VESLEFRIKK A, STT-IN",['NO_309000'],"['NO_N_2', 'NO_N_3']","[60.56023487203963, 60.560914911059776, 60.56520907383557, 60.769832790841065, 60.772699909330875, 60.77615807370612, 60.78211740014904, 60.78219442047412]","[2.8957548994381606, 2.8967668932319004, 2.896598662351545, 2.884184448430888, 2.884803313448709, 2.887228199970134, 2.894784103713421, 2.8961421395531044]","['NO', 'NO']",0.0,60.69617018142953,24.922786666356668,2.8920328325172324,51.37848229539715,0.0,1990.0,26.043265432067525,1132.5537688442212 -NO_PS_2,"40 Gas ZEEPIPE-SCP, ZEEBRUGGE",['NO_310326'],"['NO_N_4', 'NO_N_5']","[54.78877197821838, 54.62842840920252, 54.17823764319504, 53.69755105068673, 53.262622491302864, 53.246793983988404, 53.237624702688144, 53.223202276896856, 53.124532425128095, 52.82767386965142, 52.79586495594967, 52.78182853619005, 52.76820810908789, 52.75585770589877, 52.5193108849005, 52.50749151120144, 52.498624241718645, 52.41447772919131, 52.39811621433446, 52.16870274605009, 52.15471926816774, 52.14310785522598, 52.10544244609193, 52.09433604804812, 52.08393568805867, 52.07076924859591, 51.830349455411714, 51.63030964343727, 51.617156209163525, 51.60747290417549, 51.6000366791228, 51.587691322430494, 51.57026385579821, 51.55313244015431, 51.53659309148567, 51.52614889595632, 51.394701732472484, 51.380779490849, 51.374082324814246, 51.36883216672988, 51.34967550205438]","[3.2983729818980376, 3.280823224542072, 3.2094681216899525, 3.135334586382327, 3.0903428416742793, 3.090335356754748, 3.091396680583708, 3.0944772235698776, 3.1203780423202727, 3.1960733502062006, 3.2040575476154842, 3.2061300406647892, 3.206422477681382, 3.2053038406116685, 3.172854478505065, 3.1725828397164277, 3.173311132650108, 3.1837769891379444, 3.1834694875080736, 3.1551708603934525, 3.1513321962894314, 3.1467324417749105, 3.1256850929648565, 3.120969319691529, 3.117649557598215, 3.114844891368249, 3.081051345919464, 3.020480893222594, 3.017559214904596, 3.016681481078357, 3.016800703772015, 3.018465107257915, 3.024012750466212, 3.0332024687113943, 3.046650267522694, 3.057287821330004, 3.2168893654604944, 3.232671136159918, 3.235887405408968, 3.2359545595890697, 3.22846294270364]","['NO', 'BE']",0.0,52.37569409106647,389.48382721736357,3.1397403187146438,77.39135367824028,0.0,1993.0,33.475,1016.0 -NO_PS_3,"30 Gas STAT-SSTC, KARSTO",['NO_313556'],"['NO_N_6', 'NO_N_1']","[61.18532142098584, 61.1735100969537, 61.16870998569168, 61.16376589379228, 61.158798840180026, 61.13333471109721, 61.12335958211587, 61.05407255159421, 60.88234292174657, 60.79771860187375, 60.6686395487502, 60.66125539255655, 60.533063194350795, 60.401169997241766, 60.397108956067385, 60.39375595734497, 60.38915905282618, 60.37671865524025, 60.37345773764936, 60.36727667896661, 60.351879385999126, 60.33340406122959, 60.3286869531259, 60.31389557475976, 60.28747495110003, 60.26911049647158, 60.24658306508893, 60.23338778831095, 60.22042648711208, 60.21630142222688, 60.20521830765332, 60.172222673829225, 60.16034447943186, 60.138583022709945, 60.11105552001942, 60.08459595992801, 60.0677987730315, 60.06328470154945, 60.02826696389474, 60.01257270957484, 59.88659828396718, 59.86853088346314, 59.828252092697014, 59.809157687785735, 59.79284341106092, 59.75786473013443, 59.73927840137284, 59.71896397870246, 59.67612214858015, 59.648107764931375, 59.643904691652885, 59.63781255290527, 59.58958332227193, 59.58246715138834, 59.57508902474706, 59.552605817313946, 59.54489667206474, 59.52418516321754, 59.496998570237196, 59.49016538017555, 59.46330355746775, 59.45545035801816, 59.4490802355601, 59.343004001084815, 59.33848796761506, 59.335356984626024, 59.33316803658907, 59.33049921628203, 59.32689351396296, 59.32638265348798, 59.32772796222017, 59.33593988117436, 59.3370510643142, 59.33684327731443, 59.333206467328296, 59.33285970703154]","[1.844167218716536, 1.8544151797612212, 1.8601436158227025, 1.8677831156663394, 1.8784257044334849, 1.9441950483914874, 1.963955181815514, 2.0909597393781514, 2.4005142023408426, 2.551501194987637, 2.779058755965756, 2.7890594407361387, 2.9244341651343384, 3.149525616405527, 3.1585510903064153, 3.1687875628614512, 3.1902244269381446, 3.354615878428507, 3.3710385274755503, 3.385151259102972, 3.4086797400927153, 3.4390375777920257, 3.4447909881866883, 3.4597031826819347, 3.4904714346095225, 3.5101709484271386, 3.544373096910258, 3.562490298057159, 3.5779504086774683, 3.585336834139601, 3.6099461162467286, 3.6599022472856326, 3.6805834520096097, 3.7104474224089334, 3.7542220869460685, 3.7901524646681186, 3.8264673673568357, 3.834526828712713, 3.882376974972347, 3.909942562075824, 4.100443356836905, 4.123527918103729, 4.183228633702968, 4.2091033213928215, 4.236809925545285, 4.289135153660181, 4.319620944867454, 4.347808750744626, 4.412228697911103, 4.467306652432742, 4.47429405810676, 4.48177456863856, 4.530200289034704, 4.538211862358641, 4.550637576751781, 4.603077177480395, 4.615013892251265, 4.637392528322368, 4.672881851276924, 4.6784453366647005, 4.6941140619461645, 4.702050663614614, 4.711707245292703, 4.938746834425979, 4.949999372931886, 4.961113842889303, 4.972186267782399, 4.995276065732506, 5.031016276724918, 5.044111682915329, 5.065401242457906, 5.115715332466324, 5.127382622256973, 5.145628165814681, 5.172667125868339, 5.193570754034167]","['NO', 'NO']",0.0,60.030477837984456,286.00715526374717,3.848683013291633,68.92049556126315,0.0,1985.0,26.043265432067525,1132.5537688442212 -NO_PS_4,"36 Gas TROLL A, KOLLSNES",['NO_314542'],"['NO_N_7', 'NO_N_8']","[60.6451326397547, 60.645323115687674, 60.64453026642707, 60.6306188148198, 60.60456184539873, 60.536647614709985, 60.50717934136652, 60.49995047912524, 60.49756259291597, 60.49672376733573, 60.49746805276005, 60.499741345962285, 60.5032286582555, 60.52720242977733, 60.54967976590142]","[3.724809886770192, 3.7620739849172034, 3.776500455422564, 3.862912751959646, 4.105440338024752, 4.458136387941501, 4.608608407708303, 4.642310787933967, 4.65897641017587, 4.6757189561673425, 4.696512543817693, 4.713163929505687, 4.727570186220731, 4.796198037789824, 4.834184043027693]","['NO', 'NO']",0.0,60.55237004867986,65.61250854503315,4.402874473825531,73.98967049740695,0.0,1996.0,26.043265432067525,1132.5537688442212 -NO_PS_5,"36 Gas TROLL A, KOLLSNES",['NO_314576'],"['NO_N_7', 'NO_N_8']","[60.6451326397547, 60.64317172161721, 60.64028801710412, 60.63473433470959, 60.602982828920304, 60.49982846156839, 60.49560960967373, 60.49518978631997, 60.49593795364696, 60.49794124748465, 60.50052347077994, 60.52719443331404, 60.54967976590142]","[3.724809886770192, 3.7373323613382174, 3.7696834737354608, 3.8120160225276485, 4.1089995259702565, 4.641270762870732, 4.666431733455176, 4.682048224344195, 4.693264523736222, 4.710810950006179, 4.720834120673421, 4.7965100476060325, 4.834184043027693]","['NO', 'NO']",0.0,60.55601648236885,65.64967262381556,4.376784282773956,73.98967049740695,0.0,1997.0,26.043265432067525,1132.5537688442212 -NO_PS_6,"30 Gas STATFJORD B, STAT-SSTC",['NO_318010'],"['NO_N_9', 'NO_N_6']","[61.20640953392481, 61.20596998767023, 61.18532142098584]","[1.8284935777353342, 1.8262575370114544, 1.844167218716536]","['NO', 'NO']",0.0,61.19923364752696,2.618619310667897,1.832972777821108,68.92049556126315,0.0,1985.0,9.720136870385701,762.0 -NO_PS_7,"16 Gas NORNE ERB, NORNE/HEIDRUN T",['NO_319132'],"['NO_N_10', 'NO_N_11']","[66.02707314385773, 66.03461102240335, 66.03578589459175, 66.03552670709198, 66.03362643614108, 66.03027712854137, 66.02558479189231, 66.02022047068779, 66.01604725097185, 66.01222507032502, 65.9814007037531, 65.97001722906155, 65.96419596956991, 65.91358753814279, 65.90600315016692, 65.86248279812746, 65.84367585716234, 65.83346740962632, 65.82695909163515, 65.8239599276083, 65.81391233494465, 65.80448160298457, 65.79914826973628, 65.7611892122938, 65.72468829442523, 65.71716588870109, 65.7100545285609, 65.70263811242505, 65.69959391832884, 65.68989621989668, 65.67252319299737, 65.65681320738106, 65.63362663512432, 65.597109285326, 65.57969805174365, 65.56106569810572, 65.51147160759434, 65.46914060862878, 65.46238808891269, 65.45800881160112, 65.45407160171557, 65.42772630934194, 65.37347067559764, 65.33887712781768, 65.32587655760608, 65.3100218337054, 65.30685567025974, 65.26442633979434, 65.26104612336843, 65.2522484744627, 65.24332986598138, 65.21753333525893, 65.20507366721591, 65.17211282239512, 65.14979539184586, 65.13341439289971, 65.12537193223682, 65.11554431963911, 65.1040004601503, 65.09037348314024, 65.08778727029231, 65.08562798302705, 65.08422584160095]","[8.08651972700602, 8.049886765877515, 8.035209115487161, 8.020679576172268, 8.005071116088242, 7.9915588431429985, 7.98039175902577, 7.972863863981326, 7.969489040817567, 7.968091267672427, 7.964218377884776, 7.96524324978084, 7.964386642460204, 7.942419493306867, 7.937173844880445, 7.896668461501064, 7.885341393455662, 7.88438509622128, 7.8810854416311775, 7.878125546002904, 7.86465776049613, 7.837571413077457, 7.828887468714039, 7.792881842111803, 7.763165344382398, 7.756172620591842, 7.751481954107102, 7.743258175858071, 7.737970194621408, 7.714549006273036, 7.690995363588806, 7.665011509961279, 7.617017363449327, 7.551777523378707, 7.5114032528032535, 7.465462862178225, 7.385053391051766, 7.286937746313513, 7.267922519061537, 7.26045855267153, 7.256959702174993, 7.24265303908852, 7.215331862263074, 7.208537048165129, 7.206899901836283, 7.20256885549608, 7.200163988960952, 7.156473352100017, 7.150484368182628, 7.127928153735081, 7.109079084405151, 7.07319956909246, 7.06165701525011, 7.024779961196678, 6.985045060513431, 6.9600202849218595, 6.950148483214831, 6.934049578126261, 6.903786275754365, 6.8711150309014, 6.862691903595881, 6.846781474217724, 6.799611355412564]","['NO', 'NO']",0.0,65.592859565721,128.26543113830039,7.525736664058622,57.0479542634527,0.0,2001.0,26.043265432067525,1132.5537688442212 -NO_PS_8,"36 Gas NORPIPE Y, B-11",['NO_319166'],"['NO_N_12', 'NO_N_13']","[56.489705653601455, 56.48672256903818, 56.47370825632114, 56.470103180805516, 56.456232831096045, 56.441549480346616, 56.42275705591118, 56.30318220867124, 56.26466231904735, 56.20070797192673, 56.19726891639784, 56.18391263023761, 56.16872328195943, 56.157962065842916, 56.13359754549284, 56.13020048645492, 56.092863667209265, 56.081683444703074, 56.060976979264936, 56.037429430165474, 56.0327623448069, 55.944707315860875, 55.92695493592493, 55.89219513688257, 55.88482598212243, 55.82842470917273, 55.821257561850494, 55.809782295519334, 55.772445472961685, 55.75758912620834, 55.748425930026265, 55.70115823270877, 55.68802701573163, 55.68412697128144, 55.652574501065345, 55.46162957163537]","[3.328996874261654, 3.330644035618028, 3.342461860653711, 3.346651113095278, 3.3578819558284505, 3.371368889126118, 3.390640135195806, 3.5008477104031304, 3.5385251972925724, 3.611770594679669, 3.617112867448971, 3.6319947730212605, 3.647011752267, 3.660196512115737, 3.687453163185102, 3.692378422632413, 3.732291899928573, 3.746139690362443, 3.7673250365948707, 3.789745522131785, 3.7961488675299044, 3.8818434534031705, 3.901527639278897, 3.935418836875147, 3.9438273341778696, 4.000697939194058, 4.009131428014333, 4.020069143430328, 4.059329563928377, 4.073299482729773, 4.083403087830838, 4.162056896199562, 4.181946901769978, 4.189544244360382, 4.241668770737274, 4.55021180947612]","['NO', 'NO']",0.0,56.05168991884035,138.23757604975572,3.7811545390216263,73.98967049740695,0.0,1977.0,15.643424651921414,914.0 -NO_PS_9,"36 Gas OSEBERG D, HEIMDAL HRP",['NO_319676'],"['NO_N_14', 'NO_N_15']","[60.4901443092602, 60.488979268957664, 60.484848003579565, 60.479857741189896, 60.4708353241696, 60.42688421060757, 60.41826681585747, 60.406940314340716, 60.40166010082124, 60.36695678264523, 60.24163470737025, 60.20567229552815, 60.19967204661943, 60.1950178351767, 60.173150793831624, 60.133808051146225, 60.111498988650624, 59.99485473810632, 59.97532279851361, 59.92017503629881, 59.90975652712506, 59.88653535214452, 59.79714091136518, 59.773862743539425, 59.70257723063005, 59.60422599639641, 59.59885774727481, 59.58792130090927, 59.583118141585814, 59.57550795486702, 59.5747349163949]","[2.8272835824771203, 2.8276256534949726, 2.819238625765153, 2.813665724976562, 2.808083035005395, 2.7743733532336714, 2.769288655486859, 2.7639560916682613, 2.763056340901885, 2.7637721686916965, 2.7410110002419406, 2.7377857592785984, 2.7361920219092952, 2.7335121839510217, 2.717140835734764, 2.697875298776772, 2.6810709577248892, 2.616570054261434, 2.600937598949472, 2.548082884736366, 2.539068154779294, 2.515802665773963, 2.4323727999958678, 2.4096613258737816, 2.344849065194971, 2.22451758480264, 2.2207947473367002, 2.217991212273688, 2.2196314968334367, 2.2273730916201986, 2.2266321092207297]","['NO', 'NO']",0.0,60.07033609628723,109.04927558186641,2.5909424542248845,73.98967049740695,0.0,2001.0,15.643424651921414,914.0 -NO_PS_10,"40 Gas SLEIPNER R, ZEEPIPE-SCP",['NO_321002'],"['NO_N_16', 'NO_N_4']","[58.36794941655071, 58.367135185828474, 58.35484203840274, 58.35107197459629, 58.34671386773139, 58.34108569409517, 58.13787262731023, 58.11947801762247, 58.10478856646904, 57.69116595057127, 57.49956657985644, 57.485352175745405, 57.47342881577909, 57.45568724601375, 57.44826499691796, 57.43642758309996, 57.11072800246143, 57.09803557325152, 57.08847926355283, 57.07423782388548, 57.06320650355828, 57.053253227612124, 56.92261375459728, 56.70920807933049, 56.40375596831041, 56.15466207922336, 56.08772475703141, 56.07280243737742, 56.061063157264456, 56.04566275648461, 55.87604708200406, 55.85522149277644, 55.84394815301043, 55.82772063640913, 55.8148952067693, 55.80249677195599, 55.35803995059327, 54.78877197821838]","[1.90890660281704, 1.9088260380452577, 1.9325662409974538, 1.9383805703393375, 1.9424888806748513, 1.9449812056533624, 1.970671140474452, 1.9752390931634245, 1.981700928385055, 2.245548306737993, 2.3657737977554456, 2.3741666310817107, 2.379514284747069, 2.3847151835606524, 2.386023536334575, 2.3867740632735988, 2.3879608929674854, 2.389636468658238, 2.3919759300354633, 2.397214662991003, 2.4028962728107577, 2.4090718501600734, 2.5017076994070515, 2.651153346534035, 2.8622521096482734, 3.173308965224507, 3.2560157038872535, 3.272380704471577, 3.2828784295245477, 3.2938823083193984, 3.392652358089251, 3.4033984275246882, 3.4074739609299893, 3.411035668626257, 3.4120611812846544, 3.411419634365325, 3.361062945737447, 3.2983729818980376]","['NO', 'NO']",0.0,56.976142247164965,417.6604927329193,2.626212868608858,77.39135367824028,0.0,1993.0,26.043265432067525,1132.5537688442212 -NO_PS_11,"30 Gas SLEIPNER R, DRAUPNER S",['NO_321036'],"['NO_N_17', 'NO_N_16']","[58.1881642534781, 58.241147135854945, 58.251683041865476, 58.32729991768154, 58.36293314114221, 58.367272192233436, 58.36794941655071]","[2.4710663357262965, 2.2683414693356005, 2.2304039685719563, 2.002333380060846, 1.9173904614043764, 1.908937034739201, 1.90890660281704]","['NO', 'NO']",0.0,58.30092129982948,38.64862875046717,2.10105417895076,68.92049556126315,0.0,1993.0,26.043265432067525,1132.5537688442212 -NO_PS_13,"16 Gas HEIDRUN, TJELDBERGODDEN",['NO_321818'],"['NO_N_20', 'NO_N_21']","[65.32546437253622, 65.29709889441773, 65.26454262601148, 65.26025547345151, 65.23783880342282, 65.22264837969384, 65.20419279118687, 65.19619651486312, 65.19013127719147, 65.1414462356876, 65.13674606025437, 65.10796703676888, 65.10408288999723, 65.0601290072469, 65.05319271852383, 65.04893556363703, 65.03395906670022, 65.00772812776997, 64.97776615795816, 64.94843029744663, 64.91710348897386, 64.87001312724793, 64.78744586921339, 64.7667693704498, 64.75038893984762, 64.74636782098196, 64.73351239932002, 64.72948327781731, 64.64587898543476, 64.63838673428424, 64.6232721593195, 64.56735378706249, 64.51463968584866, 64.48801271354324, 64.46823613074315, 64.45705187242625, 64.44859074523686, 64.44509566881996, 64.42821212153011, 64.42382499047136, 64.41986489871455, 64.40204256711775, 64.39896748345484, 64.39564837180005, 64.39175021881057, 64.3866229809571, 64.36889907614267, 64.34714589511115, 64.32508083660566, 64.27862342718552, 64.27346517389014, 64.27002402064225, 64.24338890682546, 64.21901984852698, 64.17597301915168, 64.11878045245265, 64.07998273921518, 64.06576103836471, 64.06151184642411, 64.05803971096937, 64.04249814132821, 64.03843201265938, 64.03075680153957, 64.02556062032629, 64.00430371182092, 63.99942451208271, 63.953688800155504, 63.8820878696221, 63.877368688718335, 63.843825469046315, 63.82668479441974, 63.7314666390407, 63.721350253424866, 63.68545585563093, 63.67453439444123, 63.67008622801775, 63.66643511655906, 63.66353204939538, 63.65001987575195, 63.6454117724242, 63.64212766961455, 63.62774917206353, 63.60203018252006, 63.5977080289075, 63.593686913956226, 63.57550146342557, 63.5564808896822, 63.552440792235465, 63.53850952047262, 63.52918628548418, 63.52209426024315, 63.513076020758724, 63.50952494205962, 63.506102816707944, 63.502356634571214, 63.49932049979239, 63.490218161874246, 63.488021071872005, 63.48312991149663, 63.47699966390986, 63.47260446867465, 63.468690262448234, 63.46469303122139, 63.45951183270672, 63.45221449175047, 63.44703726683158, 63.44128108099681, 63.43858002793213, 63.43656996722964, 63.43406287413307, 63.42891364401296, 63.426342553778284, 63.42375948984452, 63.4195594348401, 63.41802539378893, 63.413352229577036, 63.408981145228836, 63.40520013061674, 63.40363322290614, 63.40248872671974, 63.39993712260453, 63.4009063549445, 63.40157492168821, 63.422733602649544, 63.428460131933456, 63.4291503524844, 63.427220435847474, 63.42413841825363, 63.421143361639096, 63.41019906686348, 63.407486953965616, 63.39431629270691]","[7.315550946662631, 7.333686603632899, 7.342553204585857, 7.344899590088529, 7.367596988418656, 7.38545270261126, 7.401111560167703, 7.406146299671416, 7.407664775496839, 7.408834180916584, 7.410714573964058, 7.426361129210052, 7.427762447523868, 7.425380373449326, 7.425682859084831, 7.4276972240644845, 7.438710651002421, 7.452356939538143, 7.476341855087434, 7.507118969971154, 7.549057620435152, 7.600038652070072, 7.7000638203274825, 7.730621308556081, 7.751899170486195, 7.756033587548068, 7.765801794398488, 7.76974420448851, 7.870466374163081, 7.875695055152125, 7.8805652214029225, 7.878122781748746, 7.886889523858995, 7.898668673918722, 7.91899168637968, 7.936415037579972, 7.95528026459896, 7.9610856994315915, 7.974287262179956, 7.978645701461348, 7.984792177788879, 8.019244565218804, 8.02298389722761, 8.02523819114618, 8.026061470362459, 8.024086727081476, 8.010356364599206, 7.987597932974281, 7.9761189263734735, 7.936783467301621, 7.9335946803800255, 7.932777869531468, 7.932464547333517, 7.928869960680293, 7.9257775670028465, 7.910141604241946, 7.901754735719051, 7.8925792980175755, 7.891292517706044, 7.892024760681577, 7.898354956096871, 7.901709329054723, 7.910691127048642, 7.91357455328893, 7.911393798278616, 7.911624109725842, 7.927117496503161, 7.93021602526412, 7.931434358748224, 7.945597920213371, 7.948515073860373, 8.014086194447406, 8.016806904173555, 8.023935328981372, 8.023077958901562, 8.024524278490656, 8.027821614987072, 8.032244945872007, 8.06451089603321, 8.071811430473554, 8.074562725002465, 8.082616873300289, 8.088626629097062, 8.090699961184363, 8.094980352661244, 8.120171326620822, 8.137885085531863, 8.143703531011806, 8.169184256408114, 8.18176225322566, 8.204279465598706, 8.215422392782553, 8.221126803933084, 8.222445053406993, 8.22009619337754, 8.219275344776175, 8.222394994172342, 8.222435125852202, 8.225899537265967, 8.226306914744768, 8.225101132767952, 8.221294231080353, 8.215664270400366, 8.21690962062836, 8.213479932109529, 8.212478203111093, 8.216786694117399, 8.221691025366336, 8.223549209120172, 8.224398386868469, 8.222854636758953, 8.224166834391948, 8.227742111888658, 8.237691707740355, 8.239554863367115, 8.241921221557662, 8.249986761230636, 8.261897400569035, 8.275150956547582, 8.321764655619972, 8.364183291292848, 8.380494805973989, 8.426223369906628, 8.580033532365878, 8.605016076111141, 8.62137661158887, 8.635247212846519, 8.64456172106135, 8.650247096342769, 8.663531203389208, 8.663425357999824, 8.65327076920113]","['NO', 'NO']",0.0,64.07288592041343,250.5505362273183,7.987266337881982,57.0479542634527,0.0,1996.0,26.043265432067525,1132.5537688442212 -NO_PS_14,"16 Gas HEIDRUN, NORNE/HEIDRUN T",['NO_321852'],"['NO_N_20', 'NO_N_11']","[65.32546437253622, 65.32429070477967, 65.33119572401952, 65.33277466806045, 65.33343855753006, 65.3330874039874, 65.33189724393854, 65.32959302378632, 65.3265707972676, 65.32143648117653, 65.26389932181915, 65.26068711732319, 65.24725116346292, 65.23525741202214, 65.21641928580658, 65.20494367198633, 65.17197482908813, 65.13448947041283, 65.12547895075558, 65.11601736387635, 65.10363449467256, 65.08687122391032, 65.08470392994026, 65.08422584160095]","[7.315550946662631, 7.305911672429908, 7.2836363641170845, 7.273620882879931, 7.262315418224801, 7.251008024866195, 7.242066777997288, 7.23207057049529, 7.224032485867908, 7.2159775490346805, 7.1568234018712715, 7.151227420654577, 7.11980320446182, 7.099891311096383, 7.073003639690064, 7.062491054913424, 7.025797008044019, 6.962633305652085, 6.95128551729274, 6.936021617237177, 6.907837448832109, 6.862059944127044, 6.845633496540392, 6.799611355412564]","['NO', 'NO']",0.0,65.23440012724,39.666572007231814,7.106679600766725,57.0479542634527,0.0,2001.0,0.05210503603385108,406.0 -NO_PS_15,"36 Gas HEIMDAL, DRAUPNER S",['NO_322464'],"['NO_N_22', 'NO_N_17']","[59.573595880052125, 59.573495899224895, 59.57174886303027, 59.56336765873878, 59.5557764296348, 59.5504062464957, 59.540891879082615, 59.501735228287316, 59.49325390106796, 59.408228821037724, 59.33415115434442, 59.163727969454506, 58.84154795405019, 58.39689384690332, 58.202565279912484, 58.194968011495014, 58.1887567844116, 58.1881642534781]","[2.227133179788655, 2.2289282350530053, 2.231227386168292, 2.23985604363817, 2.244217542088986, 2.245650848274539, 2.244821296122599, 2.230474830359906, 2.2297312282024624, 2.23772763442808, 2.245642478762275, 2.258623104496853, 2.3315714689888742, 2.4294717557257828, 2.47123769269886, 2.471891052123577, 2.4718133292921496, 2.4710663357262965]","['NO', 'NO']",0.0,59.10240422559454,155.22296833246628,2.3061714134410756,73.98967049740695,0.0,1985.0,26.043265432067525,1132.5537688442212 -NO_PS_16,"18 Gas HEIMDAL HRP, GRANE",['NO_322498'],"['NO_N_23', 'NO_N_15']","[59.164660885642185, 59.213123683218605, 59.22326809796751, 59.26195771917296, 59.26856496628287, 59.274024140400456, 59.27799924848552, 59.288177492300726, 59.449447308312834, 59.457057526711964, 59.559054571295825, 59.562872672494805, 59.57110885986932, 59.57457292921832, 59.5747349163949]","[2.4857423644394028, 2.485171017076654, 2.488068608799875, 2.5021631339348036, 2.50221181584029, 2.4998784866522508, 2.496703205668375, 2.48597241329532, 2.311907682740358, 2.3066871627643484, 2.245681420660527, 2.2423881391298455, 2.232860463684956, 2.228112158736201, 2.2266321092207297]","['NO', 'NO']",0.0,59.381375001184594,49.33201886014362,2.3826786788429293,58.74879585386937,0.0,2003.0,1.075459769769921,457.0 -NO_PS_17,"32 Gas HEIMDAL HRP, ST.FERGUS",['NO_322532'],"['NO_N_24', 'NO_N_15']","[57.57801527849238, 57.582137857913644, 57.58361812990341, 57.58393836072955, 57.575522155654994, 57.57321951381954, 57.57320373838785, 57.57545903812595, 57.58704578870481, 57.59387117091922, 57.632076104822396, 57.64760987724329, 57.65513326485266, 57.66047758193603, 57.670339039967416, 57.70108558889792, 57.71613636401101, 57.74699891444356, 57.77734746918923, 57.785333855743986, 57.807663024038796, 57.815580411342644, 57.81590554974864, 57.83105318733641, 57.87663552555964, 57.89982269209958, 57.930183252373126, 57.945623030771806, 57.96046481406317, 57.97633259067602, 58.03706872276663, 58.045019111838506, 58.06023089540018, 58.082616070624965, 58.121407027614225, 58.144155204742205, 58.15134159914091, 58.16635038622996, 58.2049613443274, 58.21980113154931, 58.23551491736448, 58.25797510064883, 58.281090281143065, 58.297335060150125, 58.31314984032865, 58.33654802128178, 58.3518688121923, 58.360174201608515, 58.36801359642941, 58.376144986808264, 58.46264931454154, 58.47812710410144, 58.502026285381476, 58.53309686691464, 58.549161654352865, 58.572681839716346, 58.580841230179146, 58.61183681351992, 58.63565999862463, 58.643366396748284, 58.651522790582106, 58.659111189573274, 58.69840817001023, 58.73621015575801, 58.75955534431651, 58.767753743486736, 58.77662610563201, 58.78564241244922, 58.7938956309852, 58.80939095918781, 58.81840224057045, 58.82724356285287, 58.8383779874705, 58.84676737152628, 58.853875770361256, 58.85857013703979, 58.86080944557166, 58.8590660668595, 58.860508342843644, 58.86426668532544, 58.86972006362608, 58.87591145672053, 58.88867924537657, 58.93474902063798, 58.95398320650345, 58.96781500875349, 58.98057379787882, 59.00046399174189, 59.01312878201053, 59.02013718343502, 59.03906936751667, 59.06560096385764, 59.07843275699827, 59.118235149734105, 59.156778533206676, 59.20248132128323, 59.212315839323814, 59.215457118589825, 59.247832109364154, 59.26152991579985, 59.31795548608042, 59.338567695028914, 59.35093248796993, 59.37089769176569, 59.389742885734016, 59.40950008994998, 59.441480085210245, 59.44833548953912, 59.46086128534267, 59.47487609582078, 59.51317549493488, 59.53955210235237, 59.60316510678574, 59.6291307139659, 59.63526911101977, 59.64044449484239, 59.64274376036461, 59.644323099599006, 59.65512680489602, 59.65441444308058, 59.65651970859582, 59.66373828011414, 59.6655735347404, 59.66536973041592, 59.662256916267815, 59.61577593579078, 59.59539430359397, 59.59293330568482, 59.589973263605685, 59.586505185399375, 59.57780395039178, 59.57445888258767, 59.5747349163949]","[-1.8270025378152583, -1.7944219310323974, -1.7779185953550323, -1.7614292063211754, -1.679348806358369, -1.6462868890612967, -1.6293424723559313, -1.6127701691498244, -1.587056070559437, -1.5764251234138245, -1.532459802055994, -1.5156601048684795, -1.506512226661573, -1.496871235639437, -1.488660488671766, -1.4539990544994985, -1.435783300880226, -1.4014198806732843, -1.365423396913155, -1.357664575445514, -1.3293959115268261, -1.3214130815199567, -1.311845858632285, -1.304385378421751, -1.2503861586977272, -1.2247006007643975, -1.1886481197930372, -1.1714764131257498, -1.1523406294146232, -1.1364909763834448, -1.0639470084849239, -1.0560501840451633, -1.0379974460210715, -1.0097867903700948, -0.9669935417402983, -0.9397189279109887, -0.9294070070667191, -0.9106492427908238, -0.867510979718194, -0.8483391974853095, -0.8316675204638724, -0.8033228676524421, -0.7770092980937539, -0.7623686991252129, -0.746485048304951, -0.7209995147618672, -0.7029977868922522, -0.6962230108321911, -0.6877701696428694, -0.6804563716610331, -0.5897111943643183, -0.5723774931694546, -0.5485140297584306, -0.5140816405217945, -0.49859901661153416, -0.4735025050945019, -0.4663777155988581, -0.43177232093435, -0.40763385062076685, -0.3987149933100413, -0.39136719868022374, -0.38206532582264824, -0.340460155686633, -0.2944217988574302, -0.2689032726077237, -0.2613334754560881, -0.25844483360225196, -0.2601573192006949, -0.2664548875310485, -0.2845091181290768, -0.28815065507349585, -0.28822609078429057, -0.28690760291822376, -0.2810608621134049, -0.2705469363653974, -0.2557767805243116, -0.23860144087503565, -0.18663899372032064, -0.16970262047054507, -0.1541523971070156, -0.1405943090906786, -0.12796628163489598, -0.10359926878895352, -0.021094363326949268, 0.015386651552779719, 0.0377665607536355, 0.0621365755788494, 0.09734752555679828, 0.12204755430275757, 0.13298049781805577, 0.1700915463624697, 0.2172694869832592, 0.24168050091491075, 0.3122054070554074, 0.38549145110258654, 0.469389425577419, 0.48117225213767034, 0.49362843002889334, 0.5541834441918806, 0.5770473763801661, 0.690133609033189, 0.7241144971124256, 0.7496755702772839, 0.7850695296476906, 0.8228836112698809, 0.858866598004026, 0.9206056727047627, 0.9320396398444408, 0.9573036991495525, 0.9794255980685697, 1.053983708147627, 1.1018476898166327, 1.2269869160522056, 1.275911950949154, 1.2887919955889624, 1.3034311376192724, 1.3172574029415256, 1.3388489193313646, 1.593841435566721, 1.645340902052349, 1.6597961977746223, 1.6831014821597983, 1.6975037904018397, 1.8686005693835466, 1.892148383191021, 2.1076767355094486, 2.196248231438083, 2.2036405609711798, 2.2090428595053697, 2.213110145821148, 2.220276778788703, 2.224796071469214, 2.2266321092207297]","['GB', 'NO']",0.0,58.67555246820049,360.32579330611173,-0.1448188095662922,70.62133715167982,0.0,2001.0,29.40833333333333,813.0 -NO_PS_18,"28 Gas KARSTO, DRAUPNER S",['NO_323042'],"['NO_N_1', 'NO_N_17']","[59.33285970703154, 59.3330624545452, 59.33673125594302, 59.336343004125425, 59.334575788926536, 59.33168654180445, 59.32844731620684, 59.324139055643656, 59.263549888434085, 59.24440383116677, 59.21156311901516, 59.203490731970795, 59.156230621119356, 59.15093336197269, 59.14588809578945, 59.13844564637561, 59.03081604594258, 58.89439846347258, 58.8616759869584, 58.856020619948275, 58.838013569270025, 58.8331132470414, 58.79098311454787, 58.768067583074156, 58.76437531659267, 58.7606860107883, 58.751868135503386, 58.74309546660859, 58.7305646937061, 58.72073000393956, 58.71581570506524, 58.71082144197623, 58.690206427808896, 58.68478714992595, 58.63553445799982, 58.6278249979919, 58.54693916387833, 58.412026993851455, 58.31157773939249, 58.254562656641916, 58.24737120101495, 58.19124795146937, 58.1881642534781]","[5.193570754034167, 5.172059114739756, 5.144211129536198, 5.124615574140275, 5.112343297108366, 5.100929097318466, 5.092381997672243, 5.08427396048889, 5.011168633007322, 4.983363708254028, 4.943975078913582, 4.9370692505998495, 4.909329621937461, 4.90435172118839, 4.89801276937232, 4.883981704832346, 4.590384173742212, 4.222598904595299, 4.1198924828060655, 4.107117378932639, 4.076039320786786, 4.064622221192284, 3.9369955361262035, 3.881601019441824, 3.8710728912129406, 3.857342672732184, 3.812813821495397, 3.7849104369265576, 3.759860304463947, 3.733454011337372, 3.7239709692063836, 3.7176270188369536, 3.69724138621323, 3.6909634569632295, 3.6203387198985566, 3.606141673311473, 3.375629924075715, 3.0363966599579015, 2.7495043400351014, 2.589499556574674, 2.5740574614243736, 2.4779053820724326, 2.4710663357262965]","['NO', 'NO']",0.0,58.8775264841386,206.6694750202705,4.1312717551914355,67.2196539708465,0.0,1985.0,26.043265432067525,1132.5537688442212 -NO_PS_19,"40 Gas KOLLSNES, SLEIPNER R",['NO_323076'],"['NO_N_25', 'NO_N_16']","[60.54783431252206, 60.52682041007367, 60.48796456570593, 60.48198318454692, 60.47545281985008, 60.46653238005053, 60.451562705490296, 60.44578443055127, 60.411538688476625, 60.28737111801989, 60.250441213895336, 60.21265018021663, 60.14574966033689, 60.11529801139384, 60.07251186244874, 60.045658412220384, 60.007419413277454, 59.98609633357808, 59.95345058818797, 59.88928833156929, 59.84941412401975, 59.749962002594266, 59.72501868327119, 59.619608323156974, 59.60764373292337, 59.59409600306698, 59.575050020318415, 59.54827654228619, 59.54313728637789, 59.529192634486535, 59.522661300196056, 59.51408879552411, 59.49585155930576, 59.49186526726899, 59.48299743240007, 59.47419338892112, 59.45835911874315, 59.44347965163293, 59.43328488683194, 59.428536580229235, 59.42313926647929, 59.385007158205305, 59.29956661410607, 59.233454064348436, 59.13235772054264, 58.793230970703654, 58.509872273413436, 58.4366093535525, 58.39368780062553, 58.36794941655071]","[4.8437566758645225, 4.795796045052103, 4.686749732203235, 4.674558668964104, 4.665413725154054, 4.6576449437589025, 4.649736464251782, 4.64550062950438, 4.611232332946672, 4.465798240191105, 4.426403919928788, 4.379121407267921, 4.301686453516901, 4.262572814435279, 4.221062716990422, 4.186763039599055, 4.143177652817659, 4.121650075688167, 4.081192502454091, 4.015473742331071, 3.9597130758262993, 3.8511367913467915, 3.8210041361559113, 3.7105140745527105, 3.6993843344704875, 3.681831486103405, 3.6606117985380537, 3.622996013686165, 3.618001118850998, 3.6078465014972076, 3.6007626138551805, 3.586174609658584, 3.5420962276229564, 3.5307120942248122, 3.4905533737398677, 3.43352416964436, 3.3795343938290343, 3.3069670452149658, 3.2764666697412266, 3.266221607660197, 3.257349615971988, 3.203269919203551, 3.096108994359974, 3.0101937397097114, 2.884989049518236, 2.474077656650863, 2.135442585118323, 2.037537313522119, 1.9597761898816146, 1.90890660281704]","['NO', 'NO']",0.0,59.706460011889895,297.87643425609144,3.7289799117178553,77.39135367824028,0.0,1996.0,26.043265432067525,1132.5537688442212 -NO_PS_20,"40 Gas KOLLSNES, DRAUPNER E",['NO_323110'],"['NO_N_25', 'NO_N_17']","[60.54783431252206, 60.526751409357075, 60.48856764065012, 60.48450137438042, 60.479435077582856, 60.47478483243847, 60.468135503474045, 60.448331612497746, 60.44378139787623, 60.43744807836868, 60.28682410682359, 60.25083825286682, 60.21675242035111, 60.18698489851259, 60.17771844327391, 60.1704851077982, 60.16283677157122, 60.12458113436964, 60.11597874234983, 60.10561423685227, 60.05355952400783, 60.019759802454665, 59.98372400097168, 59.90580506165865, 59.86089967140762, 59.81918357590704, 59.76238076865995, 59.65057714348066, 59.624456767546896, 59.58828799948678, 59.581169628505464, 59.552054056336736, 59.482031515384385, 59.47076595911007, 59.42366373029707, 59.37802642638211, 59.344039778118606, 59.31619131331672, 59.29142503003165, 59.26123751712624, 59.23703527227287, 59.228921879899374, 59.1981854568201, 59.19086810590249, 59.0441928431422, 59.02514185831441, 58.96522490460437, 58.95732451895713, 58.937639590736126, 58.84848220946803, 58.83166636164083, 58.817249653469325, 58.527867541119114, 58.4532489247847, 58.43276695773868, 58.226340009655985, 58.22128878655949, 58.21673760134398, 58.2120034241099, 58.20762027307384, 58.20340513944662, 58.19882300982814, 58.1881642534781]","[4.8437566758645225, 4.795954053319177, 4.6909368275319405, 4.682069767086439, 4.673852776916494, 4.668518852307627, 4.662636012465816, 4.6522877043299875, 4.649103838961898, 4.642986975719069, 4.466590291226123, 4.428322957078069, 4.385823400967716, 4.354990974265948, 4.346875196419158, 4.34214141714632, 4.33862569450566, 4.324577184049836, 4.319476461062018, 4.310644715260088, 4.25212857215005, 4.217262219292567, 4.182745985828416, 4.10426452481343, 4.049182120887763, 4.007965963559841, 3.9553672099143466, 3.843169399478807, 3.8118697620802036, 3.7794875792224025, 3.7712536862200463, 3.7331379958438973, 3.6605392860544788, 3.6499055231216375, 3.613140732566613, 3.565774565640968, 3.5358253363229917, 3.5020587040709485, 3.4735430737724835, 3.442843638941023, 3.415627017542261, 3.408494200763846, 3.386511036561653, 3.3802952074974892, 3.2365810797353984, 3.2144813545966504, 3.1563155348216227, 3.1489326981461896, 3.1331331773149595, 3.047051935534112, 3.029035216554176, 3.0150684984097222, 2.7397912445553745, 2.6696427329639922, 2.6523601942368003, 2.4603803281927266, 2.457264471516302, 2.4557146346365237, 2.4553308374927534, 2.4560150533702836, 2.457598285939934, 2.460565572392319, 2.4710663357262965]","['NO', 'NO']",0.0,59.4974225904837,297.2850464828901,3.699030068329653,77.39135367824028,0.0,1997.0,26.043265432067525,1132.5537688442212 -NO_PS_22,"36 Gas B-11, H-7 BP",['NO_324844'],"['NO_N_13', 'NO_N_18']","[55.46162957163537, 55.39868358671482, 55.30126009129528, 55.29342695567675, 55.220036811798295, 55.15764381500762, 55.15174374088303, 55.106288002443385, 55.09947687774091, 55.0654013451516, 55.058601262154106, 54.99340818489639, 54.958057621029155, 54.947765474734254, 54.93198219141172, 54.91577896727483, 54.899928678725715, 54.88334243399929, 54.8687481739023, 54.83980270988681, 54.83301658287461, 54.80807421906497, 54.78719879030822, 54.76647639945927, 54.72882860766668, 54.71349732154689, 54.693444921888776, 54.68483573405979, 54.67428552854665, 54.66572434109887, 54.636951750863865, 54.612218463240595, 54.59259021285363, 54.58349812972669, 54.53611758539571, 54.526211455852014, 54.50863626842434]","[4.55021180947612, 4.650352699855955, 4.807885309723947, 4.819233885885751, 4.936466558873937, 5.034063314235143, 5.045032808670507, 5.115092237235712, 5.124373718682255, 5.178714331338273, 5.191578904981937, 5.290503760409482, 5.345911433712716, 5.363601251942691, 5.38559137204541, 5.413984672919717, 5.435715786995417, 5.463451082273979, 5.48394611929536, 5.5291262923218385, 5.538123759795084, 5.5802147120992425, 5.604552060477786, 5.631750476942674, 5.673966859270629, 5.694339911157197, 5.718744227406805, 5.727789754806005, 5.7410424573272, 5.749973979638232, 5.7834758242636175, 5.831646912892031, 5.867937518601375, 5.887655337806197, 5.9806453483233355, 5.9987041499078915, 6.034511669632976]","['NO', 'NO']",0.0,54.88931385970899,142.56164874326822,5.438105738141201,73.98967049740695,0.0,1977.0,15.643424651921414,914.0 -NO_PS_23,"8.625 Gas BRAGE, BRAGE-T",['NO_325524'],"['NO_N_28', 'NO_N_2']","[60.54204007494405, 60.54266109350547, 60.54330065370974, 60.56023487203963]","[3.045098223367142, 3.0446821786372764, 3.0081770764843703, 2.8957548994381606]","['NO', 'NO']",0.0,60.54705917354973,8.500660872821552,2.9984280944817376,50.81153509859159,0.0,1993.0,26.043265432067525,1132.5537688442212 -NO_PS_24,"16 Gas DRAUGEN, DRAUGEN T",['NO_326068'],"['NO_N_29', 'NO_N_30']","[64.35286564969185, 64.3457706298116, 64.34114755714958, 64.33460136959704, 64.3299771972419, 64.32607103206759, 64.31892168530737, 64.31468746140081, 64.30604992114237, 64.30243371455137, 64.2787735145406, 64.27321918017607, 64.26951890272036, 64.26661959508789, 64.26379609584264, 64.22853492700837, 64.21648734281258, 64.16844747752877, 64.16582216322692, 64.16543240469284, 64.16618827535308, 64.2312243437713, 64.23292729660378]","[7.780839127268895, 7.803781406269018, 7.81377306129521, 7.820884735672857, 7.8225930927555165, 7.8224073357844475, 7.818369647614881, 7.8144357768347, 7.799466791133985, 7.794827855542937, 7.77706472769996, 7.768514775304304, 7.758273644246373, 7.742755273320962, 7.711072319355053, 7.404815645404938, 7.315527243193157, 7.079731969652046, 7.062898543452055, 7.002068421963944, 6.988907909350312, 6.448993721385465, 6.439452275942475]","['NO', 'NO']",0.0,64.269544249449,77.86210705277225,7.503976317410587,57.0479542634527,0.0,2000.0,26.043265432067525,1132.5537688442212 -NO_PS_25,"40 Gas DRAUPNER E, EUROPIPE-SCP",['NO_326340'],"['NO_N_17', 'NO_N_31']","[58.1881642534781, 58.188996770203126, 58.18782864840358, 58.184953438321706, 58.18037514570664, 58.175027843433966, 58.169035540034336, 58.161707203540274, 58.1557209537831, 58.15049075209515, 57.79196883584832, 57.744648147570324, 57.73163672145784, 57.54282003681877, 57.53571086104337, 57.52931973824921, 57.481402175057625, 57.475999083827276, 57.46997395053731, 57.19726431375659, 56.878520539086345, 56.65240400423039, 56.64522382685196, 56.63613958362572, 56.62094220684026, 56.527903925252694, 56.51498363846367, 56.481638823377786, 56.23177169494503, 56.22719659257563, 56.21863842915696, 56.213265306675545, 56.18930971742921, 56.12612710205458, 56.014366361022354, 55.743842713456864, 55.73776257740957, 55.733609501534445, 55.706289109032674]","[2.4710663357262965, 2.469983269012134, 2.4636601505396514, 2.4552520524712187, 2.4452049867077155, 2.436617995005262, 2.4298100803501876, 2.4242352589667133, 2.421680458772136, 2.4207636687769685, 2.425979705941433, 2.427334812015136, 2.430732470665007, 2.5189430011882545, 2.525301476022774, 2.5338489779988147, 2.6267205017988196, 2.6349629520464464, 2.6416103863442, 2.8924755722312523, 3.1808433558365867, 3.3814947777072297, 3.387700228370143, 3.3939977573499847, 3.4070077068822484, 3.4885245518992822, 3.5023034259584747, 3.531638515254027, 3.7483289695768813, 3.7530932715007888, 3.764343897430318, 3.769749246784608, 3.7902347083913863, 3.8390324171847787, 3.9346471893160864, 4.162830329554716, 4.169050718118314, 4.174739021011821, 4.221169247187954]","['NO', 'NO']",0.0,57.08571743759459,303.81703036131796,3.0947926525101557,77.39135367824028,0.0,1995.0,26.043265432067525,1132.5537688442212 -NO_PS_26,"42 Gas DRAUPNER E, DUNKERQUE",['NO_326374'],"['NO_N_32', 'NO_N_33']","[58.18808067519417, 58.18254916875378, 58.17758981075382, 58.17149743292788, 58.164382044429516, 58.15645865623247, 58.14794428002664, 58.1390859243272, 57.74391070741507, 57.46549263073241, 57.11516116986628, 57.09723955837131, 57.07950399521462, 57.07076473255377, 57.0536512502107, 56.726730556470535, 56.40789009403329, 56.39980989684355, 56.24501786736926, 56.09730595887674, 56.082424660523074, 56.06675030618656, 56.058620107086426, 56.04180866145045, 55.86237171064228, 55.84485419090849, 55.83596991303574, 55.8270316243417, 55.80906701379071, 55.19035104225322, 54.634312623110304, 54.01682105324184, 53.69461396009111, 53.26399654496985, 53.2460279687071, 53.2281554322917, 52.80178613954721, 52.78392961366858, 52.77494933686657, 52.76595804981912, 52.74802745953827, 52.524082053498894, 52.50611448319329, 52.41647380240739, 52.39849523917928, 52.183327237488356, 52.16544764903482, 52.147815036596626, 52.13062540594601, 52.105196450348615, 52.08773583095333, 52.07885452976221, 51.863908556889655, 51.85494328004974, 51.84629905869735, 51.83749076647347, 51.8302164474013, 51.817134817515765, 51.81011949829736, 51.76770958119661, 51.75319794064445, 51.62672721267642, 51.61149057316761, 51.51668774310558, 51.51038543521482, 51.490311085112296, 51.479091487261684, 51.47649325085948, 51.475932068253485, 51.473357832563224, 51.467856535555846, 51.44962861720886, 51.44304430545358, 51.43557498756213, 51.39038808011828, 51.38225476549362, 51.33987921189203, 51.33215089673074, 51.32679060404677, 51.323208344422504, 51.31754304667146, 51.30348541784069, 51.295836101065454, 51.287771785721255, 51.195853358236114, 51.17100742206679, 51.14529950391509, 51.118904613904725, 51.083850498380656, 51.075072201375065, 51.057890593589725, 51.04555318019239]","[2.4650651772012306, 2.4407347681738822, 2.426581608721842, 2.414133546368103, 2.4037985870977585, 2.3958257278646333, 2.3905159669324467, 2.3878312920834315, 2.394220960682385, 2.387447835328295, 2.3887827286714733, 2.390711530166522, 2.3959844105536914, 2.399771875155824, 2.4097578515076035, 2.6398703396613943, 2.8607309059537314, 2.8676784071424297, 3.061812547967505, 3.245224053679063, 3.2632380958936205, 3.2788881067052777, 3.2857345977538372, 3.2970705393795354, 3.401006093996066, 3.4080279408341494, 3.4103933391143535, 3.412007719844087, 3.412711418865753, 3.3431476384657306, 3.282307054066398, 3.1851660417107888, 3.1357396943591254, 3.091164816735412, 3.091126400738028, 3.094204056042991, 3.2037403528173702, 3.2070819970366693, 3.2076912951894956, 3.2074415730215, 3.2053860894624853, 3.174493368914155, 3.1738919135882933, 3.1847129495789326, 3.184594502427844, 3.1584424913000504, 3.1555129676888596, 3.1498103708148366, 3.1413086942207022, 3.126715124636689, 3.119849493859004, 3.1175497094990052, 3.087261485368329, 3.087127751037659, 3.0909580994683012, 3.0890533188183738, 3.080709341922782, 3.0608112694005025, 3.051750268079832, 2.997981283830274, 2.980887319638889, 2.818445320823693, 2.803169420452255, 2.720566325260056, 2.7104172780555693, 2.646002390519361, 2.6235972076261382, 2.6099099702180286, 2.595544657120478, 2.581860419273821, 2.5705373222342964, 2.538703131367656, 2.528928102017039, 2.520934139618312, 2.473820395400037, 2.4678064977392187, 2.4437911971078043, 2.436635261137604, 2.425248159044255, 2.412089964370265, 2.401055879437479, 2.383192885647693, 2.3756649389507603, 2.3693350316885033, 2.311198403620954, 2.2945037509388104, 2.2815432074750723, 2.272736777345672, 2.266704660858665, 2.2636458468124054, 2.255343158153268, 2.2513614262500368]","['NO', 'FR']",0.0,53.53459132878159,834.2349286875802,2.804972498191353,79.09219526865694,0.0,1998.0,23.75,1067.0 -NO_PS_27,"36 Gas DRAUPNER S, NORPIPE Y",['NO_326408'],"['NO_N_17', 'NO_N_12']","[58.1881642534781, 58.18780375281832, 58.160740774148174, 57.744595771671214, 57.73646149574863, 57.581878835434026, 57.427911195756, 57.25301094067101, 57.005728527085914, 56.998475328158584, 56.99358621335712, 56.842061017421415, 56.76792627562408, 56.757483988963244, 56.593796282891915, 56.58559307174987, 56.58352102636104, 56.58317470816573, 56.581236760949444, 56.57773473641838, 56.5722146218639, 56.489705653601455]","[2.4710663357262965, 2.47206037881338, 2.472547607351666, 2.4774881535162976, 2.478855544883342, 2.5508971691757525, 2.6214976471006914, 2.7013181707508607, 2.8125204196126234, 2.8172348434762813, 2.8219791703411596, 2.998182025160065, 3.069619916964633, 3.076284515107851, 3.1625713673613722, 3.1688858609062316, 3.1711330026290923, 3.2281785124794427, 3.238116850621517, 3.2462142028678516, 3.2527345941780132, 3.328996874261654]","['NO', 'NO']",0.0,57.100582056015334,201.99098361315916,2.892653780149367,73.98967049740695,0.0,1985.0,26.043265432067525,1132.5537688442212 -NO_PS_28,"36 Gas EKOFISK J, NORPIPE Y",['NO_326918'],"['NO_N_34', 'NO_N_12']","[56.54653732013201, 56.550095649656235, 56.5498987386163, 56.546943846136486, 56.5422908415029, 56.53548472254229, 56.512031151333844, 56.489705653601455]","[3.2197697531593876, 3.236611052881965, 3.2445002675864143, 3.2618838411420934, 3.2749433688792253, 3.284809898416888, 3.305514373206059, 3.328996874261654]","['NO', 'NO']",0.0,56.53412349044019,10.401020781391454,3.269628678691711,73.98967049740695,0.0,1998.0,15.643424651921414,914.0 -NO_PS_30,"30 Gas KVITEBJORN, KOLLSNES",['NO_357492'],"['NO_N_35', 'NO_N_25']","[61.079939842045064, 61.07199774214931, 61.06264766540334, 61.05584674553838, 61.04278461584483, 61.0326836975815, 61.01428154078605, 61.00432838684153, 60.991938330449734, 60.96534613377447, 60.919134926521686, 60.876012678928774, 60.84453742959217, 60.81665227511235, 60.75402598441751, 60.7224356613443, 60.693241503854615, 60.68867952759949, 60.671827025839576, 60.668535222433185, 60.659776536287026, 60.64494292844762, 60.624362873173084, 60.606473934454385, 60.54336927863499, 60.526916684852075, 60.5217597268845, 60.50787373713317, 60.50391486214009, 60.50309402819073, 60.50357120258629, 60.50840877059881, 60.51374218188356, 60.52278775883026, 60.52839927421657, 60.53742585800265, 60.540901222992325, 60.543735416118494, 60.54783431252206]","[2.4995243121059696, 2.5156452241029195, 2.5377973909164733, 2.5644655506861773, 2.59369212874975, 2.630445766080712, 2.673681047562776, 2.691696122261271, 2.724656770338787, 2.7895571323124084, 2.9130022808483984, 3.0241658893360004, 3.1000398211368942, 3.1725504566897533, 3.340135747421956, 3.4108995138172666, 3.487519322521582, 3.503328031030475, 3.5943096145256157, 3.6199745489061734, 3.671705543733329, 3.8279349649000496, 3.9666041676114876, 4.106663275763479, 4.490769023834723, 4.574823387880099, 4.594302235913094, 4.6384582695622445, 4.660936146544795, 4.676944669677345, 4.689578025485815, 4.720476709851628, 4.737130940659026, 4.755601037943278, 4.779829483415087, 4.798913600713292, 4.817639989352898, 4.824430050405081, 4.8437566758645225]","['NO', 'NO']",0.0,60.72733762882069,147.92273231861054,3.7323996120631446,68.92049556126315,0.0,2004.0,26.043265432067525,1132.5537688442212 -NO_PS_31,"20 Gas VISUND, VISUND T",['NO_364645'],"['NO_N_36', 'NO_N_37']","[61.06616172157949, 61.06803072277532, 61.08168406743465, 61.08672723540299, 61.09086941000871, 61.10882225152464, 61.11352244920912, 61.121563752667626, 61.132150169286895, 61.14045946163351, 61.1596361819466, 61.177180869200434, 61.18519619915084, 61.20806604148813, 61.30057957350261, 61.32989278924828, 61.33561901096563, 61.34020417107292, 61.346087350342906, 61.350916473753806, 61.35576456958267, 61.36130362466296, 61.36813562469561, 61.36966155695265]","[2.5315910149448997, 2.5260657493496876, 2.5117545768936522, 2.5096192365162584, 2.510705040642264, 2.5219673845837995, 2.523158160768353, 2.522498698012618, 2.522951127404843, 2.5206155996957804, 2.5187454847195814, 2.5192035274552285, 2.520644126163096, 2.5170577518849933, 2.5118844466331742, 2.51761297721007, 2.517505653319936, 2.5160703537395386, 2.512203908975813, 2.5071934891263554, 2.4999930029313044, 2.487561322186784, 2.4669843263386726, 2.457155948268533]","['NO', 'NO']",0.0,61.21659313658705,35.71388273447651,2.5112809544902186,60.44963744428603,0.0,2005.0,2.2197672066822136,508.0 -NO_PS_32,"42 Gas NYHAMNA, SLEIPNER R",['NO_369461'],"['NO_N_38', 'NO_N_16']","[62.85118073194838, 62.86029827461954, 62.86393743497511, 62.86726754115047, 62.86974758024148, 62.878154553986796, 62.890350781464136, 62.89538283324994, 62.89808683628787, 62.899707765403605, 62.90083343602839, 62.904308064507376, 62.905998027997136, 62.909313060973524, 62.9134021576641, 62.91831232293573, 62.92184846782706, 62.93271295857832, 62.94140328728208, 62.94464638704466, 62.947716461043186, 62.952496508001154, 62.95411446627157, 62.95474737573266, 62.95367449498844, 62.95247222554971, 62.954417898649325, 62.951315023250224, 62.93430021451482, 62.9292297356914, 62.89161631648703, 62.88602372740514, 62.8664520164682, 62.80967658128186, 62.653435221491556, 62.64927688314562, 62.64419554140924, 62.63946526289995, 62.62312936226443, 62.472303267357255, 62.45790946574134, 62.4415936479491, 62.42423566214259, 62.399881384592184, 62.394754099631655, 62.388676713431806, 62.35011898431307, 62.306708640485866, 62.30171430907544, 62.29586197194077, 62.05731627180749, 61.99795738301383, 61.97310323795425, 61.94985106893532, 61.93804450712301, 61.92899903717644, 61.91951958835065, 61.91219122549904, 61.90785299618415, 61.89570231307531, 61.87851626546457, 61.85583699118405, 61.83818905221486, 61.832325760466276, 61.82054920939795, 61.80677750304761, 61.796392997517955, 61.78214434197772, 61.75823333678677, 61.753568117925454, 61.73913640635738, 61.73354711011645, 61.7039204065476, 61.655222672057086, 61.65054943931874, 61.63960092377874, 61.62634423199446, 61.61492670056373, 61.59145765349918, 61.5857163737535, 61.57820098312377, 61.34867276342293, 61.309161528717986, 61.254852378129044, 61.230653998217385, 61.21859535661789, 61.2022634074653, 61.19311889419765, 61.1832733853475, 61.179687215055324, 61.17213687936655, 61.14090861568663, 61.13067721404392, 61.10979142089937, 61.09106465955767, 61.07052086743414, 61.05200011078258, 61.041100688289596, 61.030797274795155, 61.00959845483614, 60.96976387402451, 60.95299724543, 60.92743422114821, 60.888179716349214, 60.87564020747318, 60.85400535893678, 60.83870079671237, 60.827874374460876, 60.81266775852404, 60.7709871701121, 60.745614193610194, 60.7293485191444, 60.708301709652005, 60.699508359845, 60.6901849743009, 60.67432637020257, 60.66132185447558, 60.645879209427044, 60.62263931615371, 60.6049996223584, 60.60018142232026, 60.576002371300106, 60.56340584619931, 60.557344570946185, 60.54765009789695, 60.53155921066275, 60.5156353031243, 60.504934660135675, 60.48880877025807, 60.4701196585489, 60.428079294213696, 60.396446484670165, 60.38970114065979, 60.34205784491095, 60.33710163312485, 60.07278197727579, 59.23997495067836, 58.759415388747186, 58.43834737659888, 58.43443018076557, 58.4304129542395, 58.36794941655071]","[6.944067514848169, 6.9583374672528535, 6.9593782914957725, 6.956974017564511, 6.951875702107755, 6.921469190454736, 6.899327736457367, 6.886719019280273, 6.877897564926728, 6.866607090428343, 6.835646982688524, 6.793364357555018, 6.7846959674354785, 6.776315492178084, 6.770595061129477, 6.767776679641199, 6.767877476498676, 6.771937978257084, 6.769921402166753, 6.767281123520853, 6.763097802982635, 6.750964114537865, 6.742113721771989, 6.732543362494491, 6.66368810879113, 6.645560569886696, 6.612214334955171, 6.550721452245901, 6.4591303818067445, 6.4367849317777885, 6.200484254904917, 6.17095960126766, 6.096247269759137, 5.841602180063018, 5.192692127261682, 5.178996927286489, 5.168007869795104, 5.160950919391274, 5.141472249418511, 4.978580827949219, 4.96064309068521, 4.947558621310323, 4.924368887368808, 4.9002415301192, 4.893879624171701, 4.882468611534304, 4.787800820501761, 4.659637249471246, 4.649139204750894, 4.640912282130233, 4.386799978312942, 4.344596041900672, 4.331978061609231, 4.312378769884639, 4.304935207537937, 4.296090444332026, 4.290280800462562, 4.28452603612921, 4.279966139554576, 4.263949327765841, 4.23482539204588, 4.204949743717223, 4.185853146323989, 4.181106329694655, 4.1743327836042905, 4.161493161064614, 4.15395051189033, 4.14660908619777, 4.141779280869684, 4.13903045769121, 4.12778191922707, 4.121785047029301, 4.0794073961571815, 4.01485412701023, 4.011001269293124, 4.004321674791979, 3.990877000323053, 3.984383437049912, 3.9745944430589226, 3.970326631289021, 3.9628028180143153, 3.6296073370914743, 3.5752088596078404, 3.494087385221733, 3.4597746746642937, 3.446286927611167, 3.4216980796896155, 3.4093542076704053, 3.3995004487177103, 3.3970935720160096, 3.393819885402546, 3.3900504729719625, 3.389776021140768, 3.3913002013742153, 3.388695139055744, 3.3892032670401266, 3.3862911816309476, 3.3863617726706194, 3.385311297544353, 3.3855534480415375, 3.3827805087870093, 3.3844814599487547, 3.3818487521180574, 3.3830928890901455, 3.3812485037274342, 3.3803646312135704, 3.382721516385061, 3.3824450842058433, 3.3802418270940353, 3.382006090569569, 3.382273441224169, 3.3785971917883026, 3.3788073086986303, 3.3779707474834586, 3.3759211780124647, 3.3765050300117556, 3.3753646800884165, 3.3714183746617765, 3.371571598317806, 3.3704184882849075, 3.3692677065196324, 3.359740689930518, 3.356536253390868, 3.3532054716451327, 3.34527974402075, 3.324043957991764, 3.3006821006654397, 3.2823581194404197, 3.2609813309558002, 3.22984138936068, 3.1704948345756874, 3.123368097237078, 3.1166122493662662, 3.079377627315578, 3.077626832201621, 3.032283039052738, 2.6643027239000285, 2.2892871674736384, 2.034340147103041, 2.030182215143684, 2.0238882300821754, 1.90890660281704]","['NO', 'NO']",0.0,61.62346260980718,626.3808109665314,4.459540531839269,79.09219526865694,0.0,2007.0,26.043265432067525,1132.5537688442212 -NO_PS_33,"44 Gas SLEIPNER R, EASINGTON",['NO_369498'],"['NO_N_16', 'NO_N_39']","[58.36794941655071, 58.35608339708614, 58.341038489896164, 58.32889193053248, 58.316991299655456, 58.30554077839407, 58.29205406027958, 58.27498928248988, 58.25878041412759, 58.23750444626315, 58.226865884631, 58.10889811859602, 58.101658776869264, 58.095132510027845, 58.084509126318686, 58.047424655285454, 57.841721983053944, 57.63632137901263, 57.51537396648147, 57.443395101857014, 57.22337596511625, 57.208818419317716, 57.045653421910366, 56.807429057373746, 56.802771885160155, 56.798666716750034, 56.78881728214074, 56.7471902329124, 56.74220900449899, 56.44281843251915, 56.43711922076279, 56.431004025014566, 56.42611489335394, 56.408180471017026, 56.40229329555759, 56.39601907490422, 55.97276383030342, 55.57533176863994, 55.05845174424717, 54.446614755241455, 54.329046268323374, 54.162611088241924, 53.959653282622114, 53.90673329272524, 53.894130794334195, 53.72955754822001, 53.71569898570594, 53.698387329373105, 53.6937191369502, 53.6894459380977, 53.67070691353111, 53.66632370095535, 53.65843335049228]","[1.90890660281704, 1.8784147277470742, 1.850138658654632, 1.8409389688885731, 1.8253870972066706, 1.8171714015457996, 1.7992755394841122, 1.7869219894367168, 1.7649601427326027, 1.7496497051164386, 1.7358638222712255, 1.6188170704608351, 1.6125552323943342, 1.610151464372494, 1.610218947410171, 1.6000353546785964, 1.5013459857186002, 1.4040255478778585, 1.3179486219274326, 1.2943021548220386, 1.1896069879092341, 1.187185552324755, 1.1684810571246003, 1.1687681310094007, 1.1680453078832391, 1.1660904302559825, 1.1589736620790223, 1.1119782112320085, 1.107677310409226, 0.9372544239674905, 0.9361276299647672, 0.9374109133718824, 0.940405189202933, 0.9561883205912058, 0.9584446184693849, 0.9581758688489349, 0.8251806867052887, 0.7029093837530916, 0.6505829831532942, 0.5901032667434736, 0.5384873207274719, 0.39650699024700414, 0.296926922179429, 0.27405726981791145, 0.26659354325008683, 0.18909955569591408, 0.17951082101317378, 0.17126123812636268, 0.16778232159756262, 0.16275735554894305, 0.1283552195287357, 0.12249623816521521, 0.11455133161561178]","['NO', 'GB']",0.0,56.4173059649759,542.8742877424594,1.0633019829825636,80.79303685907361,0.0,2006.0,26.043265432067525,1132.5537688442212 -NO_PS_34,"28 Gas SNOHVIT PLEM-1, MELKOYA",['NO_370369'],"['NO_N_40', 'NO_N_41']","[71.57148152510034, 71.57160354724455, 71.56694147173742, 71.56421045510365, 71.55768755454828, 71.55268255524066, 71.54136042434169, 71.53505839750858, 71.53007633988774, 71.49106717805927, 71.4817210765212, 71.46627898971848, 71.456688878404, 71.44609189740959, 71.43813383263746, 71.42897867023689, 71.42002164056716, 71.39315038707525, 71.38419336464119, 71.38093632642452, 71.3765262275276, 71.32782591461876, 71.30621935049597, 71.2955910496031, 71.24293961507183, 71.22760430403915, 71.21332890635493, 71.19085598533843, 71.16298562460223, 71.15747751548354, 71.15158734855251, 71.13533581883362, 71.11844422532356, 71.10397073514746, 71.07451268012329, 71.03912645678363, 71.0287340404354, 71.02385883211545, 70.99858965845138, 70.99483549146737, 70.97101553737144, 70.96517133141401, 70.96190524325242, 70.95465008974726, 70.9378499171174, 70.93602695688342, 70.92805446201784, 70.92546047289801, 70.92167640478188, 70.91785329583814, 70.90841596855984, 70.89239335232148, 70.86024220017603, 70.83755933833342, 70.83427822197919, 70.83028010574728, 70.82262793796743, 70.80127239097983, 70.7925671389711, 70.78752397203081, 70.78036769276338, 70.76902219417201, 70.76439096920942, 70.75994272248798, 70.75216023391867, 70.74276755027232, 70.73145976613876, 70.71746681115958, 70.71582671043362, 70.71442963739263, 70.71263755677619, 70.70129211674637, 70.6970189719457, 70.69377689935713, 70.68916886729617, 70.68494179589939]","[21.225014779108395, 21.227306899148466, 21.24631930452952, 21.26128534274774, 21.316378909151304, 21.348222058520122, 21.40194488895073, 21.438316383039453, 21.462022070319662, 21.689143589819203, 21.734999821098363, 21.822419809131194, 21.86871207558815, 21.940179822319042, 21.982706759455134, 22.01915943651331, 22.07337209422123, 22.21302576474929, 22.268712496141514, 22.2846496106421, 22.299426737924776, 22.43103939072871, 22.49230826290194, 22.519081467939262, 22.66031484002871, 22.71730102634576, 22.754513035455208, 22.823702405894668, 22.935659054680507, 22.95330150492429, 22.966148710368156, 22.993313558940734, 23.016405220827266, 23.038410624943037, 23.076316114638857, 23.127195795184182, 23.13525006721286, 23.13745557386703, 23.137518548969044, 23.138417892572225, 23.156860793225963, 23.164788697135087, 23.17248138736635, 23.1947062116058, 23.268447696302097, 23.283573695550754, 23.390235365650774, 23.40627747560531, 23.419429512215064, 23.427817280884504, 23.441392772376393, 23.45703188107713, 23.498759688393843, 23.522200731270097, 23.526612228630984, 23.535126012073555, 23.55814889142831, 23.612797586738534, 23.63152329740534, 23.63979314207001, 23.64630204464687, 23.64972808494964, 23.648479359777145, 23.643497410100938, 23.627761102028906, 23.59719507811235, 23.565219118846525, 23.527575042176142, 23.52454199371931, 23.523526040654197, 23.52382919122116, 23.534389629684714, 23.540940315716643, 23.550495093769662, 23.5728336915968, 23.588169867063666]","['NO', 'NO']",0.0,71.0837132779886,142.75850497784938,22.851966567902792,67.2196539708465,0.0,2007.0,7.973437539223207,711.0 -NO_PS_35,"30 Gas ORMEN LANGE B, NYHAMNA",['NO_371254'],"['NO_N_42', 'NO_N_43']","[62.849950158085534, 62.86071730947369, 62.863656450335675, 62.86681756468544, 62.87023462927561, 62.87775257016423, 62.890215806651, 62.89804884380227, 62.899925761928934, 62.90099143155049, 62.90458509021912, 62.90656305204011, 62.90977708633913, 62.91405719185934, 62.91869834967625, 62.92215549190522, 62.932599964401255, 62.9416083079002, 62.944939410864755, 62.94793648415623, 62.952686535146036, 62.95442549604294, 62.955092402065596, 62.953292165416535, 62.95452904699319, 62.957872920950315, 62.96664905393747, 62.97373072800055, 62.97932360732592, 63.00702921574455, 63.04862239389444, 63.05566845632415, 63.11699833405669, 63.19950104773184, 63.26721154945882, 63.27090164500891, 63.28267398810047, 63.289046094882146, 63.30301340487141, 63.30532347409699, 63.31628185748176, 63.318861933985026, 63.33273016051904, 63.335055215786376, 63.360937109230555, 63.3742043642594, 63.394257921236814, 63.399645043754745, 63.40735113177479, 63.410012132876574, 63.41427602303191, 63.42139295379556, 63.42259572769784, 63.42447160892313, 63.43140660710718, 63.43538851752314, 63.444171524941595, 63.45213859841793, 63.45908469649552, 63.46421264949087, 63.46795569478754, 63.47384685485886, 63.482699175791666, 63.486359336278966, 63.505145229105906, 63.50906038739422, 63.516045636938394, 63.52770911109712]","[6.942090019540952, 6.959813492685032, 6.961593382373398, 6.96043316014631, 6.954295755383856, 6.924156304272637, 6.901861829642823, 6.8786455923265155, 6.865589043462783, 6.834747943229098, 6.794556381499729, 6.784785937506699, 6.776852483164164, 6.771220043914447, 6.768687687744352, 6.768833490728613, 6.772796013742941, 6.77093342424573, 6.7682621394047695, 6.764264829399017, 6.752563157248914, 6.743523751021964, 6.733556376376554, 6.637882263660311, 6.62402572532715, 6.602517806161732, 6.502165920158136, 6.451913816758305, 6.4234465319351, 6.299491737583629, 6.176269136189201, 6.158045105449933, 6.026761034089961, 5.89359858868485, 5.792095061791277, 5.787669687756913, 5.776633597225384, 5.764300793298626, 5.7433872353360815, 5.741374026021577, 5.73624818105986, 5.733932944827263, 5.706629175649222, 5.703442925589991, 5.690335890188638, 5.667297297168639, 5.6462533497261225, 5.638422752956542, 5.620220663733562, 5.611586208594559, 5.588802178624928, 5.55994076723512, 5.537885951983801, 5.5222333099057925, 5.499402111992366, 5.47921218644653, 5.451099695587178, 5.430946522153895, 5.416099590077366, 5.395602581871918, 5.387003059223522, 5.380558474230616, 5.377291810045806, 5.37815860970358, 5.388112765402977, 5.387966514691186, 5.385079978981808, 5.384843237880318]","['NO', 'NO']",0.0,63.17356058411686,119.91182299627297,6.121474250617977,68.92049556126315,0.0,2007.0,9.720136870385701,762.0 -NO_PS_36,"30 Gas ORMEN LANGE B, NYHAMNA",['NO_371292'],"['NO_N_42', 'NO_N_43']","[62.849950158085534, 62.86034128433076, 62.86365443804714, 62.866679544431506, 62.86983460361304, 62.87781156339114, 62.88950479039241, 62.89181882001222, 62.89875682505639, 62.900747630585784, 62.90092143294908, 62.90432408495444, 62.906299041194735, 62.9095050722923, 62.913769175692785, 62.918417332773174, 62.92194447732352, 62.93266696230497, 62.94144829669876, 62.944791400526775, 62.9477114731889, 62.95260452556978, 62.954392484472756, 62.955008392514905, 62.95315915942721, 62.954381041003046, 62.95770690235111, 62.966258045629864, 62.97336971031355, 62.979354577773385, 63.00660419356835, 63.048260370755784, 63.0550814318045, 63.11684331546355, 63.19625196117441, 63.26705053022705, 63.282269962501836, 63.28843406505508, 63.30281938395164, 63.305129453263106, 63.316262841560004, 63.31855090963973, 63.33249013933518, 63.33490319614088, 63.36074708742748, 63.37337933042176, 63.39474692200526, 63.39995903925332, 63.408245121848765, 63.41429599670037, 63.41809399069596, 63.42370560003012, 63.42584557153417, 63.43163958832905, 63.43517641096688, 63.444013378629855, 63.44674441233531, 63.453762580022946, 63.45706663306203, 63.464956597152614, 63.46760862656454, 63.471507725837476, 63.4760868918037, 63.48491326689066, 63.5051702254306, 63.50889337207013, 63.517583679552445, 63.52770911109712]","[6.942090019540952, 6.958996486952804, 6.960583348474126, 6.9592211273219, 6.953516752334677, 6.923398275322375, 6.902904906092515, 6.897585592456053, 6.874722419024829, 6.851990537801227, 6.835097959085884, 6.794996411519433, 6.784775952569431, 6.776605490728431, 6.77085204834926, 6.7682356889499005, 6.76833848640065, 6.7723989964632745, 6.770546420576687, 6.767906136079194, 6.764114837519704, 6.7520491447448565, 6.74268172460636, 6.73305136429904, 6.637834269855329, 6.6240277340865905, 6.601544783226064, 6.502786964036556, 6.45166682977908, 6.42092644561025, 6.299091749406036, 6.175584134859485, 6.157992138736679, 6.025765010072397, 5.8972989098487405, 5.791074037406919, 5.7758985973181565, 5.763908817658353, 5.742340212126124, 5.7403340030473835, 5.735029141327272, 5.732994932468822, 5.705713159687499, 5.702361898675386, 5.689206864003898, 5.66728534775603, 5.644711267638129, 5.637031686765837, 5.6164934830692665, 5.586625104265325, 5.573702434374402, 5.524027417777781, 5.514743973058783, 5.497137021471058, 5.471379936897982, 5.439917330359355, 5.4336909510522355, 5.424172193467159, 5.4176207672453875, 5.3889943136936935, 5.382687936225368, 5.377890531226346, 5.37619818767005, 5.377338672840977, 5.387737751239509, 5.387288502405134, 5.383459827910653, 5.384843237880318]","['NO', 'NO']",0.0,63.16823435530888,120.13175680268841,6.133750274069729,68.92049556126315,0.0,2007.0,9.720136870385701,762.0 -NO_PS_37,"32 Gas STATFJORD B, FLAGS-T",['NO_377106'],"['NO_N_9', 'NO_N_44']","[61.20640953392481, 61.20574092808648, 61.20323081229315, 61.192126586428884, 61.174975118592045, 61.17247204032768, 61.16922991470823, 61.15226517608969, 61.128883976168325, 61.11029713757933, 61.08892605605574, 61.06620102949339, 61.04561199017833, 61.04057270182549, 61.036811444651434, 61.02150117872937]","[1.8284935777353342, 1.8223764363679567, 1.8209635359461176, 1.8366336170337891, 1.8517230190587817, 1.8531592011506597, 1.853161382655258, 1.8469331494418415, 1.8243797970836548, 1.8152575679273846, 1.7957541904046368, 1.78444112556741, 1.7657947274194865, 1.7586247988728994, 1.7500597588472007, 1.6984251098043641]","['NO', 'NO']",0.0,61.12595347657078,24.013873523063538,1.8066363122072986,70.62133715167982,0.0,2007.0,26.043265432067525,1132.5537688442212 -NO_PS_38,"28 Gas GJOA, GJOA-T",['NO_406790'],"['NO_N_45', 'NO_N_46']","[61.33188646663152, 61.32302554011627, 61.319546508137734, 61.31546843119815, 61.310116291280366, 61.30429409735743, 61.29776684133993, 61.29194157677439, 61.28591025956376, 61.28068793388376, 61.27700264264185, 61.27483539345127, 61.25571663729361, 61.25133667405623, 61.24689097754676, 61.23310632186, 61.22583844809045, 61.19984507319307, 61.18785843589379, 61.173688689025, 61.168507892835194, 61.16037385859813, 61.15298703151502, 61.143952754055285, 61.133426492583, 61.118105464402156, 61.10046332221118, 61.025517844669096, 61.02445361403561, 61.01868244191326, 61.0202811289482]","[3.895123330052906, 3.9284198287555387, 3.9366752702841885, 3.9432246924439482, 3.9487321522483727, 3.951413551418595, 3.951354905379722, 3.948438133897388, 3.941982265789202, 3.932344256749103, 3.9206721021962876, 3.9076308234660035, 3.6695366410826367, 3.6070129887111864, 3.5657739853103423, 3.3990617115649964, 3.3526697135418235, 3.1674055773703698, 3.07579449356635, 2.9823734815993523, 2.935955382087828, 2.8799601612720283, 2.837880315370798, 2.7657486688665927, 2.699434280566259, 2.5881028275667495, 2.47507546127299, 1.9676717174001097, 1.953108351687981, 1.7269020924097003, 1.6982211715973463]","['NO', 'NO']",0.0,61.20817790597102,131.36681597528855,3.243667752758926,67.2196539708465,0.0,2010.0,26.043265432067525,1132.5537688442212 -NO_PS_39,"36 Gas TROLL A, KOLLSNES",['NO_414837'],"['NO_N_7', 'NO_N_25']","[60.6451326397547, 60.64736035049596, 60.64469460779258, 60.636317799854744, 60.633346100298986, 60.627086276055074, 60.62484767071367, 60.61806887273707, 60.61608209964605, 60.60477588611729, 60.548018372370905, 60.50107252467463, 60.49775369709834, 60.49736886613216, 60.49852816399735, 60.499715328767664, 60.50327065405229, 60.515386520509836, 60.52769746273067, 60.54783431252206]","[3.724809886770192, 3.7745022484333552, 3.803165240378825, 3.844199898243017, 3.8772820382030573, 3.9105583550897673, 3.948945615764636, 3.9859660716007004, 4.010222898379893, 4.108039404635619, 4.403257160553774, 4.642494736470633, 4.666814636140343, 4.681705103455254, 4.702211661493556, 4.7118518913422465, 4.727098169881057, 4.7594405292851905, 4.79732104653888, 4.8437566758645225]","['NO', 'NO']",0.0,60.57171791031611,65.921493057537,4.296182163426225,73.98967049740695,0.0,2011.0,26.043265432067525,1132.5537688442212 -NO_PS_40,"14 Gas GUDRUN, SLEIPNER A",['NO_425280'],"['NO_N_47', 'NO_N_48']","[58.84476557805264, 58.84479359449653, 58.837311492678616, 58.835031440783176, 58.83250336520109, 58.82821120197724, 58.82316996075827, 58.82041984480866, 58.80813941983119, 58.758989781643635, 58.609127868280105, 58.55663724705473, 58.4429704630641, 58.382372380953086, 58.37790025186053, 58.37370716466061, 58.37096013683245, 58.36670014667903]","[1.742188205687848, 1.7433942371461826, 1.7570079630985618, 1.7595231398591369, 1.7608992974133308, 1.7605024905452744, 1.7561586119109924, 1.7550127113601914, 1.7571543523976858, 1.7705450435041892, 1.8169043448114877, 1.8406734366607045, 1.8701135029092228, 1.8803845725980235, 1.883069850492748, 1.8882541827030621, 1.8939604624354964, 1.9069900086311005]","['NO', 'NO']",0.0,58.65076174108976,54.92638583486976,1.8079298007869578,55.380462508142244,0.0,2014.0,26.043265432067525,1132.5537688442212 -NO_PS_41,"12 Gas PETROJARL KNARR , FLAGS TCS",['NO_433996'],"['NO_N_49', 'NO_N_50']","[61.77863352470064, 61.769260196543684, 61.76324795457721, 61.757014661127066, 61.75110133621637, 61.656495407883455, 61.63354104755098, 61.6193222712351, 61.578006748964704, 61.55316029652716, 61.533006095050894, 61.516644064939385, 61.500674187974276, 61.48925251264519, 61.47919287581583, 61.460327813490075, 61.34392696681742, 61.340829770996706, 61.32447882352935, 61.31382314771855, 61.29787701477502, 61.28468122903074, 61.27790986397755, 61.25696183568394, 61.24627627326335, 61.049252388718884]","[2.840095186244976, 2.8432388209911466, 2.8428141538735843, 2.839072398738463, 2.831916521626615, 2.660692772396191, 2.6251310146117297, 2.608214318310675, 2.5384145803520544, 2.5013738861763333, 2.4695060796936903, 2.439402110431703, 2.419913435971762, 2.4022565577310484, 2.3834605682707024, 2.3583668906834396, 2.180650197907505, 2.1748632014051092, 2.150942415862812, 2.130860422987323, 2.0914581583284417, 2.0705082833004256, 2.062684433597843, 2.0462221258825988, 2.0349043927779227, 1.7855460994785075]","['NO', 'NO']",0.0,61.4836499349905,99.46858845038147,2.3974041933704857,53.67962091772558,0.0,2015.0,26.043265432067525,1132.5537688442212 -NO_PS_42,"36 Gas AASTA HANSTEEN PLEM, NYHAMNA",['NO_444927'],"['NO_N_51', 'NO_N_52']","[67.05541040761993, 66.98219460057362, 66.9697331092655, 66.72183097161758, 66.56258946710368, 66.51893659688407, 66.49223352880118, 66.4869752977021, 66.4626621810009, 66.42402059157477, 66.4067198437464, 66.38197668637436, 66.37705446574456, 66.37133623046579, 66.34484819237572, 66.26763985625499, 66.26078354036825, 66.23761638718632, 66.23185311778602, 66.13871609728389, 66.13470092901586, 66.13004974773213, 66.10919898626953, 66.07301543582645, 66.06803521146621, 66.02911738908118, 66.0003891226781, 65.97625213944248, 65.95328318084559, 65.91343647933378, 65.79540248471916, 65.78948121698093, 65.7501503584382, 65.74438910239793, 65.72105312627563, 65.7016274209632, 65.69577219324113, 65.6650068625686, 65.65991565114112, 65.63927587322335, 65.58731784337083, 65.5391609049599, 65.46247759388862, 65.43902264557883, 65.43383541603949, 65.42860616627866, 65.37415740832998, 65.36822011962865, 65.3615758152984, 65.30552135215964, 65.29972112028113, 65.27386614571306, 65.26785190046313, 65.26137861101448, 65.24186067983923, 65.23657643942805, 65.19200458817186, 65.16357736439198, 65.08630619072083, 65.0626213068624, 64.95908706724757, 64.92221254082881, 64.82871176446787, 64.78136976465332, 64.77534453323602, 64.75759689747017, 64.7517046683024, 64.69609634785846, 64.68324980363772, 64.63951598861708, 64.60822676023523, 64.54834432760843, 64.53019757790672, 64.52333731779564, 64.5130339065296, 64.50204049983209, 64.48901898191559, 64.46170684055244, 64.44395307861025, 64.42615437821675, 64.39075994218332, 64.37627833512373, 64.36609792875475, 64.36062268841134, 64.35080622305411, 64.34576300751299, 64.31797589035592, 64.27538626331042, 64.26890400281741, 64.160837228617, 64.06675799504856, 63.921272519545795, 63.901747624039736, 63.85325247450738, 63.841845991125076, 63.82928240455233, 63.75743918746835, 63.730290016303314, 63.70058965345834, 63.696630485241876, 63.67171147739733, 63.666660264812116, 63.63035062849421, 63.568770909969366, 63.54819006343146, 63.543669869679, 63.52830819088162, 63.48185708018864, 63.42628062448621, 63.40209161887625, 63.387465951392656, 63.36929817948217, 63.32821437894849, 63.28239033452601, 63.22755394747171, 63.16138503973044, 63.15245461758696, 63.14462422655618, 63.13721983559992, 63.129508401936825, 63.12289700734344, 63.03229537739275, 62.999784541525244, 62.992434170670556, 62.98517683995374, 62.977306516821606, 62.96214095049026, 62.94647528685424, 62.93737293014302, 62.92822461421384, 62.913976163589965, 62.910445068245146, 62.90653300964036, 62.904015044320076, 62.90074243023489, 62.8997357542101, 62.89661483713119, 62.89032377293535, 62.87813154933871, 62.86998556262118, 62.86772853014776, 62.86432042971457, 62.8607372827281, 62.85779413106118, 62.85327585738171]","[7.105239837580851, 7.1346979697754795, 7.138603135506829, 7.185627867263797, 7.2149765458204165, 7.215784982343987, 7.222367313356783, 7.221981706730772, 7.216292372427752, 7.222163587320271, 7.221843909613426, 7.21426152302691, 7.213525873299929, 7.214369345349072, 7.2224416889973435, 7.220694521468082, 7.218936976135043, 7.206038244112611, 7.204238613049816, 7.201868567274421, 7.202165881031151, 7.2036132863705955, 7.214237258930516, 7.214079966942929, 7.213165305062588, 7.200372728059087, 7.19726475149355, 7.201165694231903, 7.202992467916771, 7.202975416295182, 7.206151212350145, 7.204897598159714, 7.1900179099224655, 7.189146296970422, 7.190547047591137, 7.200400827665099, 7.2021393175231045, 7.200350478794782, 7.200762862402526, 7.208857655916755, 7.223336937260778, 7.23200371182892, 7.227300003716243, 7.231045807834933, 7.230257146363127, 7.2279654319745585, 7.191202921120636, 7.1881642277372215, 7.186287627022647, 7.178853296383363, 7.17994674377352, 7.1896109119327685, 7.190343359787233, 7.1890537650404776, 7.180389809855457, 7.178993127344218, 7.181540325906405, 7.179599228872572, 7.186567826662129, 7.1958987983413705, 7.205672243123987, 7.207674825544434, 7.220127605918497, 7.2190807531655175, 7.220829220923166, 7.229725732892707, 7.231195180732274, 7.2320639276388805, 7.231572765859676, 7.232920721557415, 7.239574034358467, 7.2454671988875585, 7.2461884187178685, 7.248368947823745, 7.249948681164865, 7.254263557180508, 7.256396487134584, 7.2563212717000205, 7.254606370010798, 7.258082655203928, 7.261395076947971, 7.261128007921251, 7.2626087212400625, 7.261612040694641, 7.256989512002407, 7.256546822848547, 7.259871738479893, 7.271898912728748, 7.272664357056161, 7.2495704610806095, 7.222544487459337, 7.185593354999375, 7.178359324139812, 7.166444936310069, 7.165451612462602, 7.159887200324565, 7.13918493778652, 7.134952469494952, 7.123544905772012, 7.123129135369827, 7.1246877237644215, 7.124316021489078, 7.112679847355586, 7.0974300869411495, 7.097398341128467, 7.096742593899287, 7.09282739401173, 7.07610663921468, 7.06167250620093, 7.060546927253828, 7.0549436161171375, 7.052687632133326, 7.04297576637591, 7.029038032489485, 7.017097895244795, 7.000184247872172, 6.995427614829934, 6.989527877557159, 6.982195066199664, 6.972367188085344, 6.962057228530419, 6.8022761591813765, 6.760057646396626, 6.754144878926763, 6.7512212066206025, 6.750970660184219, 6.7551146892321725, 6.752907532555721, 6.75399710191449, 6.758594791596017, 6.769161979418946, 6.773125318824595, 6.781391825099861, 6.792681351665605, 6.8354739821664845, 6.8655890545222, 6.8829058192113175, 6.898713717349315, 6.921162181451772, 6.9496186122936034, 6.954514908026244, 6.957656211311635, 6.9575334147503325, 6.95487249561661, 6.947407505957888]","['NO', 'NO']",0.0,64.6133121372476,479.86745507042093,7.124876423851516,73.98967049740695,0.0,2017.0,26.043265432067525,1132.5537688442212 -LKD_PS_262,PS_380,"['LKD_380', 'INET_PL_478']","['LKD_N_217', 'LKD_N_218']","[53.04093692792417, 53.03408130026861]","[9.007211856439628, 8.499220922790897]","['DE', 'DE']",0.0,53.037509114096395,33.983739627994936,8.753216389615263,84.0,0.0,1999.0,1.4845232338862173,475.85945945945946 -LKD_PS_264,PS_382,"['LKD_382', 'INET_PL_478']","['LKD_N_218', 'LKD_N_239']","[53.03408130026861, 53.07469604597906]","[8.499220922790897, 8.200764853862344]","['DE', 'DE']",0.0,53.05438867312384,20.4584039088453,8.349992888326621,84.0,0.0,1999.0,29.70118861792608,1200.0 -LKD_PS_309,PS_427,"['LKD_427', 'INET_PL_318']","['LKD_N_268', 'LKD_N_69']","[48.89417557539229, 49.299595573958506]","[11.741712910821372, 12.093572312872608]","['DE', 'DE']",0.0,49.0968855746754,51.867493735445564,11.91764261184699,100.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_308,PS_426,"['LKD_426', 'INET_PL_318']","['LKD_N_2', 'LKD_N_268']","[48.812255086337444, 48.89417557539229]","[11.651401562075787, 11.741712910821372]","['DE', 'DE']",0.0,48.85321533086487,11.256862709955543,11.69655723644858,100.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_109,PS_163,"['LKD_163', 'INET_PL_318']","['LKD_N_26', 'LKD_N_11']","[48.40123535150261, 48.208639764083046]","[11.812318991665938, 11.804763238406899]","['DE', 'DE']",0.0,48.304937557792826,21.429667708473787,11.80854111503642,68.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_108,PS_162,"['LKD_162', 'INET_PL_318']","['LKD_N_29', 'LKD_N_26']","[48.75092724590084, 48.40123535150261]","[11.69889457697985, 11.812318991665938]","['DE', 'DE']",0.0,48.57608129870172,39.78173518304629,11.755606784322893,68.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_107,PS_161,"['LKD_161', 'INET_PL_318']","['LKD_N_2', 'LKD_N_29']","[48.812255086337444, 48.75092724590084]","[11.651401562075787, 11.69889457697985]","['DE', 'DE']",0.0,48.78159116611914,7.658282876121803,11.675148069527818,68.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_126,STEGAL,"['LKD_185', 'INET_PL_627']","['LKD_N_33', 'LKD_N_36']","[50.650390072432444, 50.678803200903324]","[13.380642483525849, 13.297239816310503]","['DE', 'DE']",0.0,50.66459663666788,6.675707390098203,13.338941149918176,100.0,3.0,1993.0,11.9875,800.0 -LKD_PS_127,STEGAL,"['LKD_186', 'INET_PL_627']","['LKD_N_36', 'LKD_N_40']","[50.678803200903324, 50.78151477868395]","[13.297239816310503, 12.612611391703895]","['DE', 'DE']",0.0,50.73015898979364,49.53683773435999,12.9549256040072,100.0,3.0,1993.0,11.9875,800.0 -LKD_PS_129,STEGAL,"['LKD_191', 'INET_PL_627']","['LKD_N_40', 'LKD_N_35']","[50.78151477868395, 50.7820747876035]","[12.612611391703895, 12.214034690779144]","['DE', 'DE']",0.0,50.781794783143724,28.03109712365929,12.413323041241519,100.0,3.0,1993.0,11.10023465003349,800.0 -LKD_PS_94,PS_145,"['LKD_145', 'INET_PL_1178']","['LKD_N_8', 'LKD_N_11']","[48.0181412733453, 48.208639764083046]","[11.781148938670782, 11.804763238406899]","['DE', 'DE']",0.0,48.11339051871417,21.26156146609099,11.79295608853884,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_53,PS_80,"['LKD_80', 'INET_PL_306']","['LKD_N_836', 'LKD_N_839']","[51.9438993984023, 52.05386431262619]","[7.014060237655141, 7.135550374050841]","['DE', 'DE']",0.0,51.99888185551424,14.792777971652626,7.0748053058529905,100.0,0.0,2024.0,3.9,1000.0 -LKD_PS_14,PS_22,"['LKD_22', 'INET_PL_306']","['LKD_N_844', 'LKD_N_836']","[51.69279334445699, 51.9438993984023]","[7.000274984142983, 7.014060237655141]","['DE', 'DE']",0.0,51.81834637142964,27.946562493995312,7.007167610899062,100.0,0.0,2024.0,3.9,1000.0 -LKD_PS_10,PS_17,"['LKD_17', 'INET_PL_306']","['LKD_N_843', 'LKD_N_844']","[51.54881904357913, 51.69279334445699]","[6.812494016214228, 7.000274984142983]","['DE', 'DE']",0.0,51.62080619401806,20.606332149966462,6.906384500178605,100.0,0.0,2024.0,7.441666666666666,1000.0 -LKD_PS_8,PS_14,"['LKD_14', 'INET_PL_306']","['LKD_N_843', 'LKD_N_859']","[51.54881904357913, 51.43223458934887]","[6.812494016214228, 6.626949289414326]","['DE', 'DE']",0.0,51.490526816464,18.256164763314544,6.719721652814277,100.0,0.0,2024.0,7.441666666666666,1000.0 -LKD_PS_9,PS_15,"['LKD_15', 'INET_PL_306']","['LKD_N_841', 'LKD_N_859']","[51.29479716957135, 51.43223458934887]","[6.623960609069971, 6.626949289414326]","['DE', 'DE']",0.0,51.36351587946011,15.288550304055299,6.625454949242148,100.0,0.0,2024.0,0.197,1000.0 -LKD_PS_3,PS_7,"['LKD_7', 'INET_PL_306']","['LKD_N_842', 'LKD_N_841']","[51.36574797532847, 51.29479716957135]","[6.514310417686442, 6.623960609069971]","['DE', 'DE']",0.0,51.330272572449914,10.97067348353492,6.569135513378207,100.0,0.0,2024.0,0.197,1000.0 -LKD_PS_436,PS_562,"['LKD_562', 'INET_PL_802']","['LKD_N_269', 'LKD_N_801']","[50.551258275670165, 51.664159486368156]","[9.31125260683745, 7.602816535903568]","['DE', 'DE']",0.0,51.107708881019164,171.9170353927206,8.457034571370508,80.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_316,PS_436,"['LKD_436', 'INET_PL_808']","['LKD_N_269', 'LKD_N_270']","[50.551258275670165, 50.32395256766433]","[9.31125260683745, 7.899800650672305]","['DE', 'DE']",0.0,50.43760542166724,103.13841347795554,8.605526628754877,80.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_92,PS_142,"['LKD_142', 'INET_PL_1178']","['LKD_N_8', 'LKD_N_7']","[48.0181412733453, 47.89317394611495]","[11.781148938670782, 12.059478825320987]","['DE', 'DE']",0.0,47.955657609730125,24.96145732822797,11.920313881995884,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_93,PS_143,"['LKD_143', 'INET_PL_1178']","['LKD_N_7', 'LKD_N_5']","[47.89317394611495, 47.607410947785326]","[12.059478825320987, 12.131761968684444]","['DE', 'DE']",0.0,47.75029244695014,32.24178142695605,12.095620397002715,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_161,MEGAL SUED,"['LKD_262', 'INET_PL_384']","['LKD_N_68', 'LKD_N_69']","[49.21185374795587, 49.299595573958506]","[12.256112966930997, 12.093572312872608]","['DE', 'DE']",0.0,49.255724660957185,15.313084844614345,12.174842639901803,68.0,0.0,1980.0,37.7875,800.0 -LKD_PS_432,PS_557,"['LKD_557', 'INET_PL_384']","['LKD_N_68', 'LKD_N_67']","[49.21185374795587, 49.11412229732519]","[12.256112966930997, 12.455545633978723]","['DE', 'DE']",0.0,49.16298802264053,18.126849662533328,12.355829300454861,68.0,0.0,1980.0,37.7875,800.0 -LKD_PS_160,MEGAL SUED,"['LKD_261', 'INET_PL_384']","['LKD_N_66', 'LKD_N_67']","[49.03317415500411, 49.11412229732519]","[12.604222513426175, 12.455545633978723]","['DE', 'DE']",0.0,49.07364822616465,14.086575877090647,12.529884073702448,68.0,0.0,1980.0,1.4845232338862173,475.85945945945946 -LKD_PS_159,MEGAL SUED,"['LKD_260', 'INET_PL_384']","['LKD_N_65', 'LKD_N_66']","[48.97526456204883, 49.03317415500411]","[12.710627122898329, 12.604222513426175]","['DE', 'DE']",0.0,49.00421935852647,10.088127740229982,12.657424818162252,68.0,0.0,1980.0,1.4845232338862173,475.85945945945946 -LKD_PS_158,MEGAL SUED,"['LKD_259', 'INET_PL_384']","['LKD_N_64', 'LKD_N_65']","[48.93453261916366, 48.97526456204883]","[12.846167547261727, 12.710627122898329]","['DE', 'DE']",0.0,48.95489859060625,10.887249661283333,12.778397335080028,68.0,0.0,1980.0,11.10023465003349,800.0 -LKD_PS_156,MEGAL SUED,"['LKD_257', 'INET_PL_389']","['LKD_N_68', 'LKD_N_69']","[49.21185374795587, 49.299595573958506]","[12.256112966930997, 12.093572312872608]","['DE', 'DE']",0.0,49.255724660957185,15.313084844614345,12.174842639901803,68.0,0.0,2012.0,37.7875,1000.0 -LKD_PS_155,MEGAL SUED,"['LKD_256', 'INET_PL_389']","['LKD_N_67', 'LKD_N_68']","[49.11412229732519, 49.21185374795587]","[12.455545633978723, 12.256112966930997]","['DE', 'DE']",0.0,49.16298802264053,18.126849662533328,12.355829300454861,68.0,0.0,2012.0,37.7875,1000.0 -LKD_PS_154,MEGAL SUED,"['LKD_255', 'INET_PL_389']","['LKD_N_66', 'LKD_N_67']","[49.03317415500411, 49.11412229732519]","[12.604222513426175, 12.455545633978723]","['DE', 'DE']",0.0,49.07364822616465,14.086575877090647,12.529884073702448,68.0,0.0,2012.0,1.4845232338862173,475.85945945945946 -LKD_PS_153,MEGAL SUED,"['LKD_254', 'INET_PL_389']","['LKD_N_65', 'LKD_N_66']","[48.97526456204883, 49.03317415500411]","[12.710627122898329, 12.604222513426175]","['DE', 'DE']",0.0,49.00421935852647,10.088127740229982,12.657424818162252,68.0,0.0,2012.0,1.4845232338862173,475.85945945945946 -LKD_PS_152,MEGAL SUED,"['LKD_253', 'INET_PL_389']","['LKD_N_64', 'LKD_N_65']","[48.93453261916366, 48.97526456204883]","[12.846167547261727, 12.710627122898329]","['DE', 'DE']",0.0,48.95489859060625,10.887249661283333,12.778397335080028,68.0,0.0,2012.0,19.470663935585154,1000.0 -LKD_PS_174,MEGAL NORD,"['LKD_275', 'INET_PL_376']","['LKD_N_74', 'LKD_N_75']","[49.721242303861054, 49.62399585150959]","[8.478981482250301, 8.22493232487193]","['DE', 'DE']",0.0,49.672619077685326,21.246681131924905,8.351956903561115,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_218,MEGAL NORD,"['LKD_319', 'INET_PL_376']","['LKD_N_75', 'LKD_N_77']","[49.62399585150959, 49.561198259725266]","[8.22493232487193, 8.085054792722655]","['DE', 'DE']",0.0,49.59259705561743,12.267996559228516,8.154993558797292,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_223,MEGAL NORD,"['LKD_324', 'INET_PL_376']","['LKD_N_77', 'LKD_N_78']","[49.561198259725266, 49.50752214563567]","[8.085054792722655, 7.890746869823889]","['DE', 'DE']",0.0,49.53436020268047,15.244330757216446,7.987900831273272,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_224,MEGAL NORD,"['LKD_325', 'INET_PL_376']","['LKD_N_78', 'LKD_N_79']","[49.50752214563567, 49.40418058545198]","[7.890746869823889, 7.643662261894365]","['DE', 'DE']",0.0,49.45585136554382,21.243461040979586,7.767204565859127,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_1231,PS_1772,"['LKD_1772', 'INET_PL_482']","['LKD_N_881', 'LKD_N_906']","[52.60660086544687, 52.46581105557966]","[8.408661822568982, 8.287430428846196]","['DE', 'DE']",0.0,52.536205960513264,17.677976266442332,8.34804612570759,90.0,0.0,2018.0,4.589900761271087,600.0 -LKD_PS_30,PS_39,"['LKD_39', 'INET_PL_764']","['LKD_N_850', 'LKD_N_822']","[51.02578025262141, 51.032659629393855]","[6.972736322708712, 7.066250000714159]","['DE', 'DE']",0.0,51.02921994100763,6.586359435808584,7.019493161711435,70.0,0.0,2023.0,15.052937368210664,900.0 -LKD_PS_445,Europipe,"['LKD_571', 'NO_323212', 'INET_PL_174']","['LKD_N_199', 'LKD_N_929']","[53.64499215204113, 59.2728]","[7.428634293641472, 5.5197]","['DE', 'NO']",0.0,56.458896076020565,636.8104536631062,6.4741671468207365,49.0,0.0,1999.0,17.6125,1067.0 -LKD_PS_66,PS_101,"['LKD_101', 'INET_PL_408']","['LKD_N_838', 'LKD_N_817']","[51.89454234081536, 52.49631257873201]","[8.320556789742113, 8.3034071512757]","['DE', 'DE']",0.0,52.19542745977368,66.94501476614151,8.311981970508906,70.1877892952991,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_79,PS_128,"['LKD_128', 'INET_PL_408']","['LKD_N_838', 'LKD_N_866']","[51.89454234081536, 51.951236127372916]","[8.320556789742113, 8.485381768579533]","['DE', 'DE']",0.0,51.92288923409414,12.9462744815482,8.402969279160823,70.1877892952991,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_1124,PS_1599,"['LKD_1599', 'INET_PL_162']","['LKD_N_197', 'LKD_N_198']","[48.94172429268092, 48.893616485419415]","[8.411372710674936, 8.491526617019623]","['DE', 'DE']",0.0,48.917670389050166,7.934639994636052,8.45144966384728,62.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_232,PS_345,"['LKD_345', 'INET_PL_408']","['LKD_N_201', 'LKD_N_202']","[53.17837970766746, 53.25077304717978]","[7.231494656018891, 7.497733874426764]","['DE', 'DE']",0.0,53.21457637742362,19.47585059510821,7.364614265222828,70.0,3.0,1993.0,12.420833333333334,800.0 -LKD_PS_238,PS_354,"['LKD_354', 'INET_PL_408']","['LKD_N_206', 'LKD_N_202']","[52.77850264111791, 53.25077304717978]","[8.058019429690933, 7.497733874426764]","['DE', 'DE']",0.0,53.014637844148844,64.53761119019232,7.777876652058849,70.0,3.0,1993.0,2.8212547916666666,800.0 -LKD_PS_237,PS_353,"['LKD_353', 'INET_PL_408']","['LKD_N_206', 'LKD_N_207']","[52.77850264111791, 52.58896399440901]","[8.058019429690933, 8.232263253658873]","['DE', 'DE']",0.0,52.68373331776346,24.13516523617489,8.145141341674904,70.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_1192,PS_1717,"['LKD_1717', 'INET_PL_1187']","['LKD_N_800', 'LKD_N_869']","[49.532273760428566, 49.53510209496081]","[6.365452465294795, 6.272809710098086]","['DE', 'LU']",0.0,49.533687927694686,6.695113773593965,6.319131087696441,76.80652874754169,0.0,1983.0,1.6,998.4639333647048 -LKD_PS_435,PS_561,"['LKD_561', 'INET_PL_1187']","['LKD_N_79', 'LKD_N_800']","[49.40418058545198, 49.532273760428566]","[7.643662261894365, 6.365452465294795]","['DE', 'DE']",0.0,49.468227172940274,93.4861469641076,7.00455736359458,80.0,0.0,1983.0,1.6,900.0 -LKD_PS_221,MEGAL NORD,"['LKD_322', 'INET_PL_1187']","['LKD_N_79', 'LKD_N_80']","[49.40418058545198, 49.25495017749472]","[7.643662261894365, 7.46807157367277]","['DE', 'DE']",0.0,49.32956538147335,20.91734401105931,7.555866917783567,80.0,0.0,1983.0,25.2375,900.0 -LKD_PS_391,NETG,"['LKD_514', 'INET_PL_1174']","['LKD_N_326', 'LKD_N_327']","[51.80289494376811, 51.55171620767763]","[6.123468395929773, 6.403012356758503]","['DE', 'DE']",0.0,51.67730557572287,33.945700948053435,6.263240376344138,76.85775631654093,0.0,1983.0,13.65,1000.0 -LKD_PS_393,NETG,"['LKD_516', 'INET_PL_1174']","['LKD_N_327', 'LKD_N_351']","[51.55171620767763, 51.47904130571957]","[6.403012356758503, 6.387552106419675]","['DE', 'DE']",0.0,51.515378756698595,8.154144171584852,6.395282231589089,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_398,NETG,"['LKD_521', 'INET_PL_1174']","['LKD_N_351', 'LKD_N_328']","[51.47904130571957, 51.34925808979556]","[6.387552106419675, 6.506475250666122]","['DE', 'DE']",0.0,51.414149697757566,16.626896274121826,6.447013678542898,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_414,NETG,"['LKD_537', 'INET_PL_1174']","['LKD_N_328', 'LKD_N_338']","[51.34925808979556, 51.2766001721398]","[6.506475250666122, 6.477783342262684]","['DE', 'DE']",0.0,51.31292913096768,8.324283265045594,6.492129296464403,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_171,MEGAL NORD,"['LKD_272', 'INET_PL_368']","['LKD_N_71', 'LKD_N_72']","[49.50331701988286, 49.57378262030091]","[10.719869907943144, 10.48435427524171]","['DE', 'DE']",0.0,49.53854982009189,18.71961867361485,10.602112091592428,80.0,3.0,1980.0,29.70118861792608,1200.0 -LKD_PS_172,MEGAL NORD,"['LKD_273', 'INET_PL_368']","['LKD_N_72', 'LKD_N_73']","[49.57378262030091, 49.76719251606068]","[10.48435427524171, 9.767452417403721]","['DE', 'DE']",0.0,49.670487568180796,55.91105462707011,10.125903346322715,80.0,3.0,1980.0,29.70118861792608,1200.0 -LKD_PS_166,MEGAL NORD,"['LKD_267', 'INET_PL_376']","['LKD_N_71', 'LKD_N_72']","[49.50331701988286, 49.57378262030091]","[10.719869907943144, 10.48435427524171]","['DE', 'DE']",0.0,49.53854982009189,18.71961867361485,10.602112091592428,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_167,MEGAL NORD,"['LKD_268', 'INET_PL_376']","['LKD_N_72', 'LKD_N_73']","[49.57378262030091, 49.76719251606068]","[10.48435427524171, 9.767452417403721]","['DE', 'DE']",0.0,49.670487568180796,55.91105462707011,10.125903346322715,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_444,Norpipe,"['LKD_570', 'NO_321784']","['LKD_N_222', 'LKD_N_928']","[53.41271920575848, 54.5]","[7.093250747542649, 6.0]","['DE', 'NO']",0.0,53.95635960287924,140.51480543339838,6.546625373771325,73.98967049740695,0.0,1977.0,61.73158333333333,914.0 -LKD_PS_1199,Gascade,"['LKD_1727', 'INET_PL_1447']","['LKD_N_55', 'INET_N_1325']","[53.18327612885241, 53.1763506]","[7.230313945642903, 6.9723944]","['DE', 'NL']",0.0,53.17981336442621,17.21032882455477,7.101354172821452,76.80652874754169,0.0,1983.0,12.420833333333334,998.4639333647048 -LKD_PS_132,MIDAL,"['LKD_200', 'INET_PL_1447']","['LKD_N_54', 'LKD_N_55']","[53.270809754664704, 53.18327612885241]","[7.324344598079275, 7.230313945642903]","['DE', 'DE']",0.0,53.227042941758555,11.57582079056684,7.277329271861089,100.0,0.0,1983.0,12.420833333333334,900.0 -LKD_PS_168,MEGAL NORD,"['LKD_269', 'INET_PL_376']","['LKD_N_73', 'LKD_N_74']","[49.76719251606068, 49.721242303861054]","[9.767452417403721, 8.478981482250301]","['DE', 'DE']",0.0,49.74421740996087,92.75098564930629,9.123216949827011,80.0,0.0,1980.0,24.353414352156957,1100.0 -LKD_PS_147,WEDAL,"['LKD_239', 'INET_PL_780']","['LKD_N_56', 'LKD_N_58']","[51.01781503681846, 50.85304060359307]","[6.941114311021507, 6.777765856644877]","['DE', 'DE']",0.0,50.93542782020577,21.610535265038354,6.859440083833192,100.0,2.0,1998.0,11.10023465003349,800.0 -LKD_PS_148,WEDAL,"['LKD_241', 'INET_PL_780']","['LKD_N_58', 'LKD_N_59']","[50.85304060359307, 50.788561874445634]","[6.777765856644877, 6.392668509075823]","['DE', 'DE']",0.0,50.82080123901935,27.994730589351537,6.58521718286035,100.0,2.0,1998.0,11.179166666666667,800.0 -LKD_PS_114,MONACO 1,"['LKD_168', 'INET_PL_321']","['LKD_N_11', 'LKD_N_25']","[48.208639764083046, 48.167435359221955]","[11.804763238406899, 12.74082214120552]","['DE', 'DE']",0.0,48.1880375616525,69.56472051180594,12.27279268980621,100.0,0.0,1983.0,7.274999999999999,1200.0 -LKD_PS_314,PS_434,"['LKD_434', 'INET_PL_806']","['LKD_N_38', 'LKD_N_271']","[50.68474780129773, 50.90190280835658]","[9.656208132409002, 9.990669156208956]","['DE', 'DE']",0.0,50.79332530482716,33.71091134043956,9.823438644308979,80.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_313,PS_433,"['LKD_433', 'INET_PL_806']","['LKD_N_269', 'LKD_N_38']","[50.551258275670165, 50.68474780129773]","[9.31125260683745, 9.656208132409002]","['DE', 'DE']",0.0,50.61800303848395,28.515506935343115,9.483730369623226,80.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_124,JAGAL,"['LKD_180', 'INET_PL_267']","['LKD_N_34', 'LKD_N_39']","[52.54146169126879, 52.53645739104603]","[14.31805195819919, 13.866978498057335]","['DE', 'DE']",0.0,52.53895954115741,30.521234317052457,14.092515228128264,68.0,1.0,1999.0,38.8125,1200.0 -LKD_PS_311,PS_431,"['LKD_431', 'INET_PL_1176']","['LKD_N_42', 'LKD_N_73']","[50.37922805675541, 49.76719251606068]","[9.424896782358873, 9.767452417403721]","['DE', 'DE']",0.0,50.07321028640804,72.33542345449264,9.596174599881298,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_227,MIDAL,"['LKD_328', 'INET_PL_408']","['LKD_N_61', 'LKD_N_45']","[49.82135241025974, 49.57031722973122]","[8.770963983342954, 8.44114707899471]","['DE', 'DE']",0.0,49.69583481999548,36.64383694904433,8.606055531168831,100.0,3.0,1993.0,11.10023465003349,800.0 -LKD_PS_142,MIDAL,"['LKD_218', 'INET_PL_408']","['LKD_N_43', 'LKD_N_61']","[50.08374137080856, 49.82135241025974]","[8.852748498072176, 8.770963983342954]","['DE', 'DE']",0.0,49.95254689053415,29.76661005090457,8.811856240707565,70.1877892952991,3.0,1993.0,11.10023465003349,800.0 -LKD_PS_141,MIDAL,"['LKD_217', 'INET_PL_408']","['LKD_N_42', 'LKD_N_43']","[50.37922805675541, 50.08374137080856]","[9.424896782358873, 8.852748498072176]","['DE', 'DE']",0.0,50.23148471378198,52.320988102155304,9.138822640215524,100.0,3.0,1993.0,11.10023465003349,800.0 -LKD_PS_140,MIDAL,"['LKD_215', 'INET_PL_408']","['LKD_N_38', 'LKD_N_42']","[50.68474780129773, 50.37922805675541]","[9.656208132409002, 9.424896782358873]","['DE', 'DE']",0.0,50.53198792902657,37.71340258502253,9.540552457383939,100.0,3.0,1993.0,11.10023465003349,800.0 -LKD_PS_162,MEGAL SUED,"['LKD_263', 'INET_PL_384']","['LKD_N_69', 'LKD_N_63']","[49.299595573958506, 49.55465937668777]","[12.093572312872608, 12.135992798188253]","['DE', 'DE']",0.0,49.42712747532314,28.536207212785133,12.11478255553043,68.0,0.0,1980.0,37.7875,800.0 -LKD_PS_157,MEGAL SUED,"['LKD_258', 'INET_PL_389']","['LKD_N_69', 'LKD_N_63']","[49.299595573958506, 49.55465937668777]","[12.093572312872608, 12.135992798188253]","['DE', 'DE']",0.0,49.42712747532314,28.536207212785133,12.11478255553043,68.0,0.0,2012.0,37.7875,1000.0 -LKD_PS_59,PS_87,"['LKD_87', 'INET_PL_158']","['LKD_N_839', 'LKD_N_835']","[52.05386431262619, 52.150065145081214]","[7.135550374050841, 7.200963779153154]","['DE', 'DE']",0.0,52.1019647288537,11.596257068143428,7.168257076601998,100.0,0.0,2019.0,3.9,1100.0 -LKD_PS_315,PS_435,"['LKD_435', 'INET_PL_802']","['LKD_N_269', 'LKD_N_42']","[50.551258275670165, 50.37922805675541]","[9.31125260683745, 9.424896782358873]","['DE', 'DE']",0.0,50.46524316621279,20.757828115025145,9.36807469459816,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_149,WEDAL,"['LKD_243', 'INET_PL_780']","['LKD_N_59', 'LKD_N_810']","[50.788561874445634, 50.65595703246864]","[6.392668509075823, 6.0465710812155375]","['DE', 'BE']",0.0,50.72225945345714,28.48697931193776,6.219619795145681,100.0,2.0,1998.0,5.508333333333333,800.0 -LKD_PS_1164,PS_1685,"['LKD_1685', 'INET_PL_578']","['LKD_N_190', 'LKD_N_191']","[47.56343953067137, 47.58819201603117]","[7.673590754323996, 7.699873381927021]","['DE', 'DE']",0.0,47.575815773351266,3.386689456487532,7.686732068125508,54.0,0.0,1983.0,0.3666666666666667,700.0 -LKD_PS_295,PS_413,"['LKD_413', 'INET_PL_201']","['LKD_N_219', 'LKD_N_259']","[53.1697884106651, 53.26948636318497]","[7.584638571558224, 7.472816806158178]","['DE', 'DE']",0.0,53.21963738692503,13.357958545863854,7.528727688858201,84.0,0.0,2018.0,2.8212547916666666,1000.0 -LKD_PS_163,MEGAL NORD,"['LKD_264', 'INET_PL_376']","['LKD_N_62', 'LKD_N_63']","[49.68154560977083, 49.55465937668777]","[12.501058522508734, 12.135992798188253]","['DE', 'DE']",0.0,49.6181024932293,29.854571113305905,12.318525660348493,80.0,0.0,1980.0,37.7875,1100.0 -LKD_PS_817,PS_1068,"['LKD_1068', 'INET_PL_596']","['LKD_N_613', 'LKD_N_616']","[52.82068552742429, 52.76805894226394]","[11.218910044926568, 11.739550029203262]","['DE', 'DE']",0.0,52.79437223484412,35.503094641355545,11.479230037064916,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_820,PS_1072,"['LKD_1072', 'INET_PL_596']","['LKD_N_616', 'LKD_N_708']","[52.76805894226394, 52.769990701116306]","[11.739550029203262, 12.506151607919785]","['DE', 'DE']",0.0,52.769024821690124,51.590455620553755,12.122850818561524,55.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_944,PS_1320,"['LKD_1320', 'INET_PL_596']","['LKD_N_708', 'LKD_N_667']","[52.769990701116306, 52.73107925616711]","[12.506151607919785, 13.37172429266143]","['DE', 'DE']",0.0,52.75053497864171,58.435625760438384,12.938937950290608,55.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_241,PS_359,"['LKD_359', 'INET_PL_549']","['LKD_N_210', 'LKD_N_209']","[54.08867849343767, 53.93607752747645]","[9.871253757002032, 9.712548481002473]","['DE', 'DE']",0.0,54.012378010457056,19.892379735660914,9.791901119002253,84.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_242,PS_360,"['LKD_360', 'INET_PL_549']","['LKD_N_209', 'LKD_N_211']","[53.93607752747645, 53.66616411123031]","[9.712548481002473, 9.66417466638007]","['DE', 'DE']",0.0,53.80112081935338,30.190128071471012,9.688361573691271,84.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_90,PS_140,"['LKD_140', 'INET_PL_1183']","['LKD_N_21', 'LKD_N_22']","[47.682937362483145, 47.64773899942439]","[10.529801837879148, 10.334395180125703]","['DE', 'DE']",0.0,47.66533818095377,15.15221758107474,10.432098509002426,68.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_89,PS_139,"['LKD_139', 'INET_PL_1183']","['LKD_N_20', 'LKD_N_21']","[47.71967472141489, 47.682937362483145]","[10.906670911854631, 10.529801837879148]","['DE', 'DE']",0.0,47.70130604194902,28.505736097316113,10.71823637486689,68.0,0.0,1983.0,0.226,600.0 -LKD_PS_88,PS_138,"['LKD_138', 'INET_PL_1183']","['LKD_N_8', 'LKD_N_20']","[48.0181412733453, 47.71967472141489]","[11.781148938670782, 10.906670911854631]","['DE', 'DE']",0.0,47.86890799738009,73.20953699330529,11.343909925262707,68.0,0.0,1983.0,0.226,600.0 -LKD_PS_145,WEDAL,"['LKD_223', 'INET_PL_780']","['LKD_N_48', 'LKD_N_56']","[52.20253744662892, 51.01781503681846]","[8.483276930958208, 6.941114311021507]","['DE', 'DE']",0.0,51.61017624172369,169.43945249582873,7.712195620989858,100.0,2.0,1998.0,1.4845232338862173,475.85945945945946 -LKD_PS_144,RHG,"['LKD_220', 'INET_PL_580']","['LKD_N_51', 'LKD_N_52']","[52.5517987869226, 53.47343165409706]","[8.347535098990326, 9.6366222000119]","['DE', 'DE']",0.0,53.01261522050983,133.97590328548426,8.992078649501114,84.0,0.0,1994.0,11.10023465003349,800.0 -LKD_PS_1251,PS_1796,"['LKD_1796', 'INET_PL_486']","['LKD_N_909', 'LKD_N_883']","[52.5778895679001, 52.650938905026955]","[8.806534938646603, 8.775477305184085]","['DE', 'DE']",0.0,52.61441423646353,8.391632077504402,8.791006121915345,100.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1249,PS_1794,"['LKD_1794', 'INET_PL_486']","['LKD_N_881', 'LKD_N_909']","[52.60660086544687, 52.5778895679001]","[8.408661822568982, 8.806534938646603]","['DE', 'DE']",0.0,52.59224521667349,27.073373231063847,8.607598380607794,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1079,PS_1524,"['LKD_1524', 'INET_PL_1181']","['LKD_N_193', 'LKD_N_114']","[47.59802839872982, 48.28487072438573]","[9.824284207399424, 10.000694636925994]","['DE', 'DE']",0.0,47.941449561557775,77.51985619016735,9.91248942216271,67.0,0.0,1983.0,1.0583333333333331,500.0 -LKD_PS_1230,PS_1771,"['LKD_1771', 'INET_PL_475']","['LKD_N_881', 'LKD_N_882']","[52.60660086544687, 52.85057453176961]","[8.408661822568982, 8.890129248593077]","['DE', 'DE']",0.0,52.72858769860824,42.28732218918318,8.649395535581029,100.0,0.0,2013.0,1.4845232338862173,475.85945945945946 -LKD_PS_229,MIDAL,"['LKD_338', 'INET_PL_160']","['LKD_N_46', 'LKD_N_47']","[49.26747587880932, 49.03190005854372]","[8.359094743394953, 8.316900769531678]","['DE', 'DE']",0.0,49.14968796867652,26.382261800935332,8.337997756463317,100.0,0.0,1983.0,11.10023465003349,400.0 -LKD_PS_896,PS_1234,"['LKD_1234', 'INET_PL_598']","['LKD_N_679', 'LKD_N_681']","[52.48767592650672, 52.422729202159886]","[13.782270007722927, 13.792438809819322]","['DE', 'DE']",0.0,52.455202564333305,7.256820346487483,13.787354408771124,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_894,PS_1232,"['LKD_1232', 'INET_PL_598']","['LKD_N_674', 'LKD_N_679']","[52.61088821990411, 52.48767592650672]","[13.602846109730507, 13.782270007722927]","['DE', 'DE']",0.0,52.54928207320542,18.305635984901922,13.692558058726718,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_1196,PS_1721,"['LKD_1721', 'INET_PL_1185']","['LKD_N_806', 'LKD_N_871']","[48.195603192297966, 48.157405252064684]","[12.776474918189653, 12.90211215622264]","['DE', 'AT']",0.0,48.17650422218132,10.241675492827662,12.839293537206146,76.80652874754169,0.0,1983.0,7.274999999999999,998.4639333647048 -LKD_PS_453,PS_584,"['LKD_584', 'INET_PL_1185']","['LKD_N_13', 'LKD_N_806']","[48.092376053638695, 48.195603192297966]","[12.420097997783367, 12.776474918189653]","['DE', 'DE']",0.0,48.143989622968334,28.834666767352,12.59828645798651,100.0,0.0,1983.0,7.274999999999999,800.0 -LKD_PS_258,PS_376,"['LKD_376', 'INET_PL_478']","['LKD_N_217', 'LKD_N_216']","[53.04093692792417, 52.963947651504064]","[9.007211856439628, 10.705555920919853]","['DE', 'DE']",0.0,53.00244228971412,113.9997409087304,9.85638388867974,84.0,0.0,1999.0,1.4845232338862173,475.85945945945946 -LKD_PS_122,OPAL,"['LKD_178', 'INET_PL_164']","['LKD_N_32', 'LKD_N_33']","[52.09349905015139, 50.650390072432444]","[13.587282157390655, 13.380642483525849]","['DE', 'DE']",0.0,51.37194456129191,161.15659095122442,13.483962320458252,100.0,0.0,2022.0,3.0083333333333333,1400.0 -LKD_PS_497,PS_646,"['LKD_646', 'INET_PL_986']","['LKD_N_412', 'LKD_N_413']","[52.14250677689274, 52.15957607487379]","[14.586065160225177, 14.625475440238667]","['DE', 'DE']",0.0,52.151041425883264,3.292295727508635,14.60577030023192,63.0,0.0,1983.0,38.8125,600.0 -LKD_PS_102,PS_154,"['LKD_154', 'INET_PL_437']","['LKD_N_11', 'LKD_N_13']","[48.208639764083046, 48.092376053638695]","[11.804763238406899, 12.420097997783367]","['DE', 'DE']",0.0,48.150507908860874,47.459626575279756,12.112430618095132,68.0,0.0,1983.0,7.274999999999999,600.0 -LKD_PS_164,MEGAL NORD,"['LKD_265', 'INET_PL_376']","['LKD_N_63', 'LKD_N_70']","[49.55465937668777, 49.37116054766301]","[12.135992798188253, 11.165274755231792]","['DE', 'DE']",0.0,49.46290996217539,73.08318863441815,11.650633776710023,80.0,0.0,1980.0,37.7875,1100.0 -LKD_PS_1144,PS_1650,"['LKD_1650', 'INET_PL_641']","['LKD_N_161', 'LKD_N_162']","[48.63964741411146, 48.64110078765172]","[9.40807087407208, 9.50859194208975]","['DE', 'DE']",0.0,48.64037410088159,7.389945430323219,9.458331408080916,56.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1160,PS_1669,"['LKD_1669', 'INET_PL_641']","['LKD_N_158', 'LKD_N_161']","[48.873185325944895, 48.63964741411146]","[8.847714390423338, 9.40807087407208]","['DE', 'DE']",0.0,48.75641637002818,48.61274056278777,9.12789263224771,56.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_130,STEGAL,"['LKD_194', 'INET_PL_627']","['LKD_N_35', 'LKD_N_37']","[50.7820747876035, 50.872017405452425]","[12.214034690779144, 11.075455959602834]","['DE', 'DE']",0.0,50.827046096527965,80.61864337751322,11.64474532519099,100.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_36,PS_49,"['LKD_49', 'INET_PL_637']","['LKD_N_849', 'LKD_N_861']","[50.69821399747467, 50.63252166083387]","[7.106202673721234, 6.800372559281274]","['DE', 'DE']",0.0,50.66536782915427,22.766335230238205,6.953287616501254,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_35,PS_48,"['LKD_48', 'INET_PL_637']","['LKD_N_824', 'LKD_N_849']","[50.736554762294745, 50.69821399747467]","[7.161533254249624, 7.106202673721234]","['DE', 'DE']",0.0,50.717384379884706,5.776758280776,7.133867963985429,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_34,PS_45,"['LKD_45', 'INET_PL_637']","['LKD_N_832', 'LKD_N_824']","[50.84552894598282, 50.736554762294745]","[7.130127623188774, 7.161533254249624]","['DE', 'DE']",0.0,50.79104185413878,12.32068968443512,7.1458304387192,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_32,PS_43,"['LKD_43', 'INET_PL_637']","['LKD_N_822', 'LKD_N_832']","[51.032659629393855, 50.84552894598282]","[7.066250000714159, 7.130127623188774]","['DE', 'DE']",0.0,50.939094287688334,21.29060090588095,7.0981888119514664,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_31,PS_40,"['LKD_40', 'INET_PL_637']","['LKD_N_828', 'LKD_N_822']","[51.08820254623335, 51.032659629393855]","[7.076187320934977, 7.066250000714159]","['DE', 'DE']",0.0,51.0604310878136,6.216964871629408,7.071218660824568,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_26,PS_35,"['LKD_35', 'INET_PL_637']","['LKD_N_851', 'LKD_N_828']","[51.1610264156069, 51.08820254623335]","[6.99334622507586, 7.076187320934977]","['DE', 'DE']",0.0,51.12461448092012,9.952821658602035,7.034766773005419,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_25,PS_34,"['LKD_34', 'INET_PL_637']","['LKD_N_851', 'LKD_N_863']","[51.1610264156069, 51.16876797167513]","[6.99334622507586, 7.050317124366862]","['DE', 'DE']",0.0,51.16489719364101,4.065955140229106,7.021831674721361,100.0,0.0,2024.0,19.470663935585154,1000.0 -LKD_PS_1259,PS_1808,"['LKD_1808', 'INET_PL_802']","['LKD_N_823', 'LKD_N_825']","[51.39407500163542, 51.54693559723026]","[7.25674162083485, 7.489789766715581]","['DE', 'DE']",0.0,51.470505299432844,23.44827480638381,7.373265693775215,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_58,PS_86,"['LKD_86', 'INET_PL_802']","['LKD_N_845', 'LKD_N_825']","[51.679284180887855, 51.54693559723026]","[7.640442668363652, 7.489789766715581]","['DE', 'DE']",0.0,51.61310988905906,18.027420645728885,7.565116217539616,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_60,PS_88,"['LKD_88', 'INET_PL_802']","['LKD_N_845', 'LKD_N_834']","[51.679284180887855, 51.80386437525348]","[7.640442668363652, 7.979590110419671]","['DE', 'DE']",0.0,51.74157427807067,27.159543851746843,7.810016389391661,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_62,PS_93,"['LKD_93', 'INET_PL_802']","['LKD_N_834', 'LKD_N_838']","[51.80386437525348, 51.89454234081536]","[7.979590110419671, 8.320556789742113]","['DE', 'DE']",0.0,51.84920335803442,25.50679054820748,8.150073450080892,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_63,PS_94,"['LKD_94', 'INET_PL_802']","['LKD_N_838', 'LKD_N_819']","[51.89454234081536, 52.248654465333196]","[8.320556789742113, 9.04791282060342]","['DE', 'DE']",0.0,52.071598403074276,63.43788249084165,8.684234805172768,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_64,PS_96,"['LKD_96', 'INET_PL_802']","['LKD_N_819', 'LKD_N_247']","[52.248654465333196, 52.3681322072938]","[9.04791282060342, 9.911803219949972]","['DE', 'DE']",0.0,52.3083933363135,60.234627772431246,9.479858020276696,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1242,PS_1786,"['LKD_1786', 'INET_PL_802']","['LKD_N_908', 'LKD_N_247']","[52.56852978150802, 52.3681322072938]","[8.933874839991033, 9.911803219949972]","['DE', 'DE']",0.0,52.46833099440091,69.9134299628069,9.422839029970502,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1248,PS_1793,"['LKD_1793', 'INET_PL_802']","['LKD_N_907', 'LKD_N_908']","[52.52600651895855, 52.56852978150802]","[8.827042470194236, 8.933874839991033]","['DE', 'DE']",0.0,52.547268150233286,8.636435883033121,8.880458655092635,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1247,PS_1792,"['LKD_1792', 'INET_PL_802']","['LKD_N_903', 'LKD_N_907']","[52.49547934319279, 52.52600651895855]","[8.745485308894999, 8.827042470194236]","['DE', 'DE']",0.0,52.51074293107567,6.481666880481595,8.786263889544617,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1236,PS_1779,"['LKD_1779', 'INET_PL_802']","['LKD_N_881', 'LKD_N_903']","[52.60660086544687, 52.49547934319279]","[8.408661822568982, 8.745485308894999]","['DE', 'DE']",0.0,52.55104010431983,25.91768539840702,8.57707356573199,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1229,PS_1770,"['LKD_1770', 'INET_PL_802']","['LKD_N_880', 'LKD_N_881']","[52.5972945136329, 52.60660086544687]","[7.8457537949577025, 8.408661822568982]","['DE', 'DE']",0.0,52.601947689539884,38.0414155237763,8.127207808763343,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1228,PS_1768,"['LKD_1768', 'INET_PL_802']","['LKD_N_895', 'LKD_N_880']","[52.69827907280385, 52.5972945136329]","[7.845736865920657, 7.8457537949577025]","['DE', 'DE']",0.0,52.64778679321837,11.23249573344736,7.84574533043918,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1227,PS_1767,"['LKD_1767', 'INET_PL_802']","['LKD_N_895', 'LKD_N_893']","[52.69827907280385, 52.71400434656121]","[7.845736865920657, 7.879111505378666]","['DE', 'DE']",0.0,52.70614170968253,2.849319611319841,7.862424185649662,80.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_233,PS_347,"['LKD_347', 'INET_PL_478']","['LKD_N_202', 'LKD_N_205']","[53.25077304717978, 52.80830945207796]","[7.497733874426764, 8.334259400090296]","['DE', 'DE']",0.0,53.02954124962886,74.52082510761622,7.91599663725853,70.0,0.0,1999.0,2.8212547916666666,1200.0 -LKD_PS_458,PS_589,"['LKD_589', 'INET_PL_1466']","['LKD_N_802', 'LKD_N_808']","[51.977309305401505, 51.937960617529406]","[6.730058770180284, 6.934246610831669]","['NL', 'DE']",0.0,51.95763496146546,14.664367857659018,6.832152690505977,67.0,0.0,1983.0,7.441666666666666,350.0 -LKD_PS_121,OPAL,"['LKD_177', 'INET_PL_164']","['LKD_N_936', 'LKD_N_32']","[54.1513, 52.09349905015139]","[13.6566, 13.587282157390655]","['DE', 'DE']",0.0,53.12239952507569,222.58331553409133,13.621941078695327,100.0,0.0,2022.0,0.0041666666666666675,1400.0 -LKD_PS_170,MEGAL NORD,"['LKD_271', 'INET_PL_368']","['LKD_N_70', 'LKD_N_71']","[49.37116054766301, 49.50331701988286]","[11.165274755231792, 10.719869907943144]","['DE', 'DE']",0.0,49.43723878377293,35.41148909019899,10.942572331587467,80.0,3.0,1980.0,29.70118861792608,1200.0 -LKD_PS_131,STEGAL,"['LKD_197', 'INET_PL_627']","['LKD_N_37', 'LKD_N_38']","[50.872017405452425, 50.68474780129773]","[11.075455959602834, 9.656208132409002]","['DE', 'DE']",0.0,50.77838260337508,101.96845342359802,10.365832046005918,100.0,3.0,1993.0,11.10023465003349,800.0 -LKD_PS_169,MEGAL NORD,"['LKD_270', 'INET_PL_368']","['LKD_N_62', 'LKD_N_70']","[49.68154560977083, 49.37116054766301]","[12.501058522508734, 11.165274755231792]","['DE', 'DE']",0.0,49.52635307871692,102.43379556093299,11.833166638870264,80.0,3.0,1980.0,37.7875,1200.0 -LKD_PS_668,PS_869,"['LKD_869', 'INET_PL_164']","['LKD_N_518', 'LKD_N_524']","[51.44402756812266, 51.44870041289058]","[13.488353618841144, 13.441098842026802]","['DE', 'DE']",0.0,51.44636399050662,3.316850938700325,13.464726230433973,100.0,0.0,2022.0,41.791808697056254,1400.0 -LKD_PS_669,PS_870,"['LKD_870', 'INET_PL_164']","['LKD_N_524', 'LKD_N_523']","[51.44870041289058, 51.452468767807765]","[13.441098842026802, 13.418831890167068]","['DE', 'DE']",0.0,51.45058459034917,1.599384910171107,13.429965366096935,100.0,0.0,2022.0,41.791808697056254,1400.0 -LKD_PS_671,PS_873,"['LKD_873', 'INET_PL_164']","['LKD_N_523', 'LKD_N_521']","[51.452468767807765, 51.539633769177115]","[13.418831890167068, 13.118763042150636]","['DE', 'DE']",0.0,51.49605126849244,22.929783700945606,13.268797466158851,100.0,0.0,2022.0,1.4845232338862173,475.85945945945946 -LKD_PS_1193,PS_1718,"['LKD_1718', 'INET_PL_724']","['LKD_N_106', 'INET_N_479']","[47.74369301557125, 47.658044]","[8.723710862662807, 8.6948726]","['DE', 'CH']",0.0,47.70086850778563,9.76825392858859,8.709291731331405,67.5,0.0,2002.0,1.4845232338862173,475.85945945945946 -LKD_PS_225,MEGAL NORD,"['LKD_326', 'INET_PL_677']","['LKD_N_79', 'LKD_N_80']","[49.40418058545198, 49.25495017749472]","[7.643662261894365, 7.46807157367277]","['DE', 'DE']",1.0,49.32956538147335,20.91734401105931,7.555866917783567,80.0,0.0,1975.0,25.2375,900.0 -LKD_PS_1213,Virtueller Mï¿œP,"['LKD_1748', 'INET_PL_267']","['LKD_N_678', 'LKD_N_39']","[52.45214475747545, 52.53645739104603]","[13.979228779110445, 13.866978498057335]","['DE', 'DE']",0.0,52.49430107426074,12.072055824905824,13.923103638583889,63.0,1.0,1999.0,0.0041666666666666675,1200.0 -LKD_PS_236,PS_352,"['LKD_352', 'INET_PL_408']","['LKD_N_204', 'LKD_N_206']","[52.81460339925159, 52.77850264111791]","[8.248556797788542, 8.058019429690933]","['DE', 'DE']",0.0,52.796553020184746,13.428948706885281,8.153288113739737,70.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_104,PS_156,"['LKD_156', 'INET_PL_203']","['LKD_N_16', 'LKD_N_11']","[48.458766776685366, 48.208639764083046]","[10.920231459483269, 11.804763238406899]","['DE', 'DE']",0.0,48.333703270384206,71.07707616716581,11.362497348945084,100.0,0.0,2019.0,1.4845232338862173,475.85945945945946 -LKD_PS_1047,PS_1474,"['LKD_1474', 'INET_PL_604']","['LKD_N_63', 'LKD_N_70']","[49.55465937668777, 49.37116054766301]","[12.135992798188253, 11.165274755231792]","['DE', 'DE']",0.0,49.46290996217539,73.08318863441815,11.650633776710023,100.0,0.0,2018.0,37.7875,1000.0 -LKD_PS_120,NEL Ost,"['LKD_174', 'INET_PL_475']","['LKD_N_936', 'LKD_N_51']","[54.1513, 52.5517987869226]","[13.6566, 8.347535098990326]","['DE', 'DE']",0.0,53.3515493934613,615.7897239844594,11.002067549495163,100.0,0.0,2013.0,72.58333333333333,1400.0 -LKD_PS_709,PS_938,"['LKD_938', 'INET_PL_627']","['LKD_N_546', 'LKD_N_547']","[51.37508600623542, 51.4458404120697]","[11.885311397389108, 11.855839368962846]","['DE', 'DE']",0.0,51.41046320915256,8.131283248255793,11.870575383175977,100.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_708,PS_937,"['LKD_937', 'INET_PL_627']","['LKD_N_545', 'LKD_N_546']","[51.367361935866555, 51.37508600623542]","[11.891179771425444, 11.885311397389108]","['DE', 'DE']",0.0,51.37122397105099,0.9508831172989733,11.888245584407276,100.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_707,PS_936,"['LKD_936', 'INET_PL_627']","['LKD_N_532', 'LKD_N_545']","[51.360047719720505, 51.367361935866555]","[11.90094412075095, 11.891179771425444]","['DE', 'DE']",0.0,51.363704827793526,1.0591184447931254,11.896061946088196,100.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_706,PS_935,"['LKD_935', 'INET_PL_627']","['LKD_N_529', 'LKD_N_532']","[51.322644420271466, 51.360047719720505]","[11.936734510091185, 11.90094412075095]","['DE', 'DE']",0.0,51.341346069995986,4.846947946302645,11.918839315421067,100.0,3.0,1993.0,1.4845232338862173,475.85945945945946 -LKD_PS_701,PS_926,"['LKD_926', 'INET_PL_627']","['LKD_N_535', 'LKD_N_529']","[51.283601498571855, 51.322644420271466]","[11.96792653089944, 11.936734510091185]","['DE', 'DE']",0.0,51.30312295942166,4.854323515039072,11.952330520495313,100.0,3.0,1993.0,11.587788904724416,813.0 -LKD_PS_992,PS_1396,"['LKD_1396', 'INET_PL_170']","['LKD_N_769', 'LKD_N_768']","[51.44131505093763, 51.44371354423165]","[13.618312245871264, 13.503567267894237]","['DE', 'DE']",0.0,51.44251429758464,7.959683539774397,13.56093975688275,100.0,0.0,2022.0,41.791808697056254,1400.0 -LKD_PS_0,PS_2,['LKD_2'],"['LKD_N_840', 'LKD_N_842']","[51.600642043953656, 51.36574797532847]","[6.428326836195894, 6.514310417686442]","['DE', 'DE']",0.0,51.483195009641065,26.797469135468447,6.4713186269411676,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_1,PS_3,['LKD_3'],"['LKD_N_840', 'LKD_N_843']","[51.600642043953656, 51.54881904357913]","[6.428326836195894, 6.812494016214228]","['DE', 'DE']",0.0,51.57473054376639,27.17528125696955,6.620410426205061,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_2,PS_5,['LKD_5'],"['LKD_N_842', 'LKD_N_862']","[51.36574797532847, 51.31807840409071]","[6.514310417686442, 6.284121232597186]","['DE', 'DE']",0.0,51.34191318970959,16.850012298588613,6.399215825141814,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_4,PS_9,['LKD_9'],"['LKD_N_841', 'LKD_N_833']","[51.29479716957135, 51.25472020380113]","[6.623960609069971, 6.543607262541104]","['DE', 'DE']",0.0,51.27475868668624,7.150815636052652,6.5837839358055374,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_5,PS_10,['LKD_10'],"['LKD_N_833', 'LKD_N_860']","[51.25472020380113, 51.248120833446094]","[6.543607262541104, 6.449576957985789]","['DE', 'DE']",0.0,51.25142051862361,6.587341566243789,6.496592110263446,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_6,PS_11,['LKD_11'],"['LKD_N_833', 'LKD_N_850']","[51.25472020380113, 51.02578025262141]","[6.543607262541104, 6.972736322708712]","['DE', 'DE']",0.0,51.14025022821127,39.31062597466473,6.758171792624908,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_7,PS_12,['LKD_12'],"['LKD_N_841', 'LKD_N_848']","[51.29479716957135, 51.181397993043966]","[6.623960609069971, 6.898994271812236]","['DE', 'DE']",0.0,51.238097581307656,22.93338449286018,6.761477440441103,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_11,PS_18,['LKD_18'],"['LKD_N_843', 'LKD_N_830']","[51.54881904357913, 51.477669834931504]","[6.812494016214228, 6.951520786885571]","['DE', 'DE']",0.0,51.51324443925532,12.459773873167347,6.8820074015499,76.80652874754169,0.0,1983.0,7.441666666666666,998.4639333647048 -LKD_PS_12,PS_20,['LKD_20'],"['LKD_N_844', 'LKD_N_864']","[51.69279334445699, 51.729334762612275]","[7.000274984142983, 6.96311476246033]","['DE', 'DE']",0.0,51.71106405353463,4.804109746137911,6.981694873301656,76.80652874754169,0.0,1983.0,7.441666666666666,998.4639333647048 -LKD_PS_13,PS_21,['LKD_21'],"['LKD_N_844', 'LKD_N_847']","[51.69279334445699, 51.556253812943154]","[7.000274984142983, 7.311879104782008]","['DE', 'DE']",0.0,51.62452357870007,26.337027200258785,7.156077044462496,76.80652874754169,0.0,1983.0,7.441666666666666,998.4639333647048 -LKD_PS_15,PS_23,['LKD_23'],"['LKD_N_830', 'LKD_N_844']","[51.477669834931504, 51.69279334445699]","[6.951520786885571, 7.000274984142983]","['DE', 'DE']",0.0,51.585231589694246,24.16423230533869,6.975897885514277,76.80652874754169,0.0,1983.0,7.441666666666666,998.4639333647048 -LKD_PS_16,PS_24,['LKD_24'],"['LKD_N_830', 'LKD_N_827']","[51.477669834931504, 51.459919914055604]","[6.951520786885571, 6.837923692564928]","['DE', 'DE']",0.0,51.468794874493554,8.114930473508748,6.894722239725249,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_17,PS_25,['LKD_25'],"['LKD_N_827', 'LKD_N_859']","[51.459919914055604, 51.43223458934887]","[6.837923692564928, 6.626949289414326]","['DE', 'DE']",0.0,51.446077251702235,14.94627669294064,6.7324364909896275,76.80652874754169,0.0,1983.0,0.197,998.4639333647048 -LKD_PS_18,PS_26,['LKD_26'],"['LKD_N_827', 'LKD_N_826']","[51.459919914055604, 51.392262499839624]","[6.837923692564928, 6.795709728560038]","['DE', 'DE']",0.0,51.42609120694762,8.074965345965397,6.816816710562483,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_19,PS_27,['LKD_27'],"['LKD_N_826', 'LKD_N_848']","[51.392262499839624, 51.181397993043966]","[6.795709728560038, 6.898994271812236]","['DE', 'DE']",0.0,51.286830246441795,24.53027936082558,6.847352000186136,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_20,PS_28,['LKD_28'],"['LKD_N_830', 'LKD_N_846']","[51.477669834931504, 51.370137175624244]","[6.951520786885571, 6.95743786467993]","['DE', 'DE']",0.0,51.42390350527788,11.967878331017342,6.954479325782751,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_21,PS_29,['LKD_29'],"['LKD_N_846', 'LKD_N_829']","[51.370137175624244, 51.211743565263525]","[6.95743786467993, 6.947731812162102]","['DE', 'DE']",0.0,51.290940370443884,17.631026295995998,6.952584838421016,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_22,PS_30,['LKD_30'],"['LKD_N_846', 'LKD_N_829']","[51.370137175624244, 51.211743565263525]","[6.95743786467993, 6.947731812162102]","['DE', 'DE']",0.0,51.290940370443884,17.631026295995998,6.952584838421016,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_23,PS_32,['LKD_32'],"['LKD_N_848', 'LKD_N_829']","[51.181397993043966, 51.211743565263525]","[6.898994271812236, 6.947731812162102]","['DE', 'DE']",0.0,51.196570779153745,4.788868449094545,6.9233630419871695,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_24,PS_33,['LKD_33'],"['LKD_N_829', 'LKD_N_851']","[51.211743565263525, 51.1610264156069]","[6.947731812162102, 6.99334622507586]","['DE', 'DE']",0.0,51.186384990435215,6.475880761685919,6.970539018618981,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_27,PS_36,['LKD_36'],"['LKD_N_827', 'LKD_N_846']","[51.459919914055604, 51.370137175624244]","[6.837923692564928, 6.95743786467993]","['DE', 'DE']",0.0,51.41502854483993,12.97954389160374,6.897680778622429,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_28,PS_37,['LKD_37'],"['LKD_N_848', 'LKD_N_850']","[51.181397993043966, 51.02578025262141]","[6.898994271812236, 6.972736322708712]","['DE', 'DE']",0.0,51.10358912283269,18.059322154015092,6.935865297260474,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_29,PS_38,['LKD_38'],"['LKD_N_850', 'LKD_N_849']","[51.02578025262141, 50.69821399747467]","[6.972736322708712, 7.106202673721234]","['DE', 'DE']",0.0,50.861997125048035,37.62074670447275,7.039469498214973,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_33,PS_44,['LKD_44'],"['LKD_N_850', 'LKD_N_832']","[51.02578025262141, 50.84552894598282]","[6.972736322708712, 7.130127623188774]","['DE', 'DE']",0.0,50.93565459930211,22.88430963563184,7.051431972948743,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_37,PS_50,['LKD_50'],"['LKD_N_849', 'LKD_N_821']","[50.69821399747467, 50.64551940048997]","[7.106202673721234, 7.271725503613444]","['DE', 'DE']",0.0,50.67186669898231,13.057603228066311,7.188964088667339,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_38,PS_51,['LKD_51'],"['LKD_N_821', 'LKD_N_812']","[50.64551940048997, 50.403136195339194]","[7.271725503613444, 8.05694613886978]","['DE', 'DE']",0.0,50.52432779791458,61.72507629780374,7.664335821241612,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_39,PS_54,['LKD_54'],"['LKD_N_812', 'LKD_N_867']","[50.403136195339194, 50.364023796236054]","[8.05694613886978, 7.922593368379646]","['DE', 'DE']",0.0,50.38357999578763,10.475117907385364,7.989769753624713,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_40,PS_55,['LKD_55'],"['LKD_N_812', 'LKD_N_811']","[50.403136195339194, 50.535805222054634]","[8.05694613886978, 8.5068181803233]","['DE', 'DE']",0.0,50.46947070869692,35.10186757990677,8.28188215959654,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_41,PS_60,['LKD_60'],"['LKD_N_812', 'LKD_N_811']","[50.403136195339194, 50.535805222054634]","[8.05694613886978, 8.5068181803233]","['DE', 'DE']",0.0,50.46947070869692,35.10186757990677,8.28188215959654,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_42,PS_62,['LKD_62'],"['LKD_N_811', 'LKD_N_813']","[50.535805222054634, 50.57321148956608]","[8.5068181803233, 8.653905827280312]","['DE', 'DE']",0.0,50.554508355810356,11.196351571632068,8.580362003801806,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_43,PS_63,['LKD_63'],"['LKD_N_813', 'LKD_N_855']","[50.57321148956608, 50.51902183820401]","[8.653905827280312, 8.806687681400179]","['DE', 'DE']",0.0,50.546116663885044,12.367166364089517,8.730296754340245,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_44,PS_64,['LKD_64'],"['LKD_N_813', 'LKD_N_853']","[50.57321148956608, 50.79117846387341]","[8.653905827280312, 8.714253129774704]","['DE', 'DE']",0.0,50.68219497671974,24.614658494399663,8.684079478527508,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_45,PS_65,['LKD_65'],"['LKD_N_811', 'LKD_N_814']","[50.535805222054634, 50.59643710866627]","[8.5068181803233, 8.379558677940809]","['DE', 'DE']",0.0,50.56612116536046,11.239330320917013,8.443188429132054,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_46,PS_66,['LKD_66'],"['LKD_N_814', 'LKD_N_854']","[50.59643710866627, 50.53036935366043]","[8.379558677940809, 8.300911617583134]","['DE', 'DE']",0.0,50.56340323116335,9.213159707417253,8.340235147761971,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_47,PS_68,['LKD_68'],"['LKD_N_814', 'LKD_N_818']","[50.59643710866627, 50.829527528671804]","[8.379558677940809, 7.993757799155905]","['DE', 'DE']",0.0,50.712982318669034,37.55695863766564,8.186658238548358,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_48,PS_70,['LKD_70'],"['LKD_N_818', 'LKD_N_868']","[50.829527528671804, 50.77331515675383]","[7.993757799155905, 7.714182326801239]","['DE', 'DE']",0.0,50.801421342712814,20.624282289053724,7.853970062978572,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_49,PS_71,['LKD_71'],"['LKD_N_818', 'LKD_N_837']","[50.829527528671804, 51.09273679594541]","[7.993757799155905, 7.891541703438193]","['DE', 'DE']",0.0,50.96113216230861,30.1397818680153,7.942649751297049,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_50,PS_72,['LKD_72'],"['LKD_N_818', 'LKD_N_865']","[50.829527528671804, 50.89962841756117]","[7.993757799155905, 7.8533224113203355]","['DE', 'DE']",0.0,50.86457797311648,12.569742355501733,7.92354010523812,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_51,PS_74,['LKD_74'],"['LKD_N_837', 'LKD_N_845']","[51.09273679594541, 51.679284180887855]","[7.891541703438193, 7.640442668363652]","['DE', 'DE']",0.0,51.38601048841663,67.52966143826984,7.765992185900922,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_52,PS_79,['LKD_79'],"['LKD_N_852', 'LKD_N_836']","[51.973241622646796, 51.9438993984023]","[6.833656935472014, 7.014060237655141]","['DE', 'DE']",0.0,51.95857051052455,12.788894222662796,6.923858586563577,76.80652874754169,0.0,1983.0,7.441666666666666,998.4639333647048 -LKD_PS_54,PS_81,['LKD_81'],"['LKD_N_828', 'LKD_N_831']","[51.08820254623335, 51.237730906461444]","[7.076187320934977, 7.371066780707108]","['DE', 'DE']",0.0,51.16296672634739,26.451751441638336,7.223627050821042,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_55,PS_83,['LKD_83'],"['LKD_N_831', 'LKD_N_823']","[51.237730906461444, 51.39407500163542]","[7.371066780707108, 7.25674162083485]","['DE', 'DE']",0.0,51.31590295404843,19.120355107534795,7.313904200770979,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_56,PS_84,['LKD_84'],"['LKD_N_823', 'LKD_N_847']","[51.39407500163542, 51.556253812943154]","[7.25674162083485, 7.311879104782008]","['DE', 'DE']",0.0,51.475164407289284,18.43913407889483,7.284310362808429,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_57,PS_85,['LKD_85'],"['LKD_N_830', 'LKD_N_847']","[51.477669834931504, 51.556253812943154]","[6.951520786885571, 7.311879104782008]","['DE', 'DE']",0.0,51.51696182393733,26.42991184680425,7.131699945833789,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_61,PS_90,['LKD_90'],"['LKD_N_834', 'LKD_N_837']","[51.80386437525348, 51.09273679594541]","[7.979590110419671, 7.891541703438193]","['DE', 'DE']",0.0,51.44830058559945,79.33372409325686,7.935565906928932,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_65,PS_97,['LKD_97'],"['LKD_N_819', 'LKD_N_856']","[52.248654465333196, 52.134783540756956]","[9.04791282060342, 9.311697503603455]","['DE', 'DE']",0.0,52.19171900304508,21.998554137804234,9.179805162103438,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_67,PS_105,['LKD_105'],"['LKD_N_820', 'LKD_N_858']","[52.5014575870917, 52.43186093738939]","[8.766731538843322, 9.572759598568174]","['DE', 'DE']",0.0,52.46665926224054,55.165054404636095,9.169745568705748,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_68,PS_107,['LKD_107'],"['LKD_N_845', 'LKD_N_816']","[51.679284180887855, 52.317115996629276]","[7.640442668363652, 8.011673519010131]","['DE', 'DE']",0.0,51.998200088758566,75.3631644220004,7.826058093686891,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_69,PS_109,['LKD_109'],"['LKD_N_816', 'LKD_N_857']","[52.317115996629276, 52.43971699576132]","[8.011673519010131, 7.880748793290177]","['DE', 'DE']",0.0,52.3784164961953,16.27856869010564,7.946211156150154,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_70,PS_110,['LKD_110'],"['LKD_N_845', 'LKD_N_815']","[51.679284180887855, 52.218422608671666]","[7.640442668363652, 8.083304303382745]","['DE', 'DE']",0.0,51.94885339477976,67.21598320566784,7.861873485873199,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_71,PS_111,['LKD_111'],"['LKD_N_815', 'LKD_N_817']","[52.218422608671666, 52.49631257873201]","[8.083304303382745, 8.3034071512757]","['DE', 'DE']",0.0,52.35736759370184,34.33607996479902,8.193355727329223,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_72,PS_112,['LKD_112'],"['LKD_N_815', 'LKD_N_816']","[52.218422608671666, 52.317115996629276]","[8.083304303382745, 8.011673519010131]","['DE', 'DE']",0.0,52.26776930265047,12.011781699472206,8.047488911196439,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_73,PS_115,['LKD_115'],"['LKD_N_847', 'LKD_N_845']","[51.556253812943154, 51.679284180887855]","[7.311879104782008, 7.640442668363652]","['DE', 'DE']",0.0,51.6177689969155,26.498632041030543,7.4761608865728295,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_74,PS_116,['LKD_116'],"['LKD_N_825', 'LKD_N_831']","[51.54693559723026, 51.237730906461444]","[7.489789766715581, 7.371066780707108]","['DE', 'DE']",0.0,51.392333251845855,35.366101770641116,7.430428273711344,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_75,PS_118,['LKD_118'],"['LKD_N_824', 'LKD_N_821']","[50.736554762294745, 50.64551940048997]","[7.161533254249624, 7.271725503613444]","['DE', 'DE']",0.0,50.69103708139235,12.76017478652186,7.216629378931534,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_76,PS_120,['LKD_120'],"['LKD_N_845', 'LKD_N_835']","[51.679284180887855, 52.150065145081214]","[7.640442668363652, 7.200963779153154]","['DE', 'DE']",0.0,51.91467466298454,60.42549733564186,7.420703223758403,76.80652874754169,0.0,1983.0,3.9,998.4639333647048 -LKD_PS_77,PS_123,['LKD_123'],"['LKD_N_817', 'LKD_N_820']","[52.49631257873201, 52.5014575870917]","[8.3034071512757, 8.766731538843322]","['DE', 'DE']",0.0,52.498885082911855,31.37878188577032,8.535069345059512,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_78,PS_126,['LKD_126'],"['LKD_N_835', 'LKD_N_839']","[52.150065145081214, 52.05386431262619]","[7.200963779153154, 7.135550374050841]","['DE', 'DE']",0.0,52.1019647288537,11.596257068143428,7.168257076601998,76.80652874754169,0.0,1983.0,3.9,998.4639333647048 -LKD_PS_80,PS_129,['LKD_129'],"['LKD_N_0', 'LKD_N_14']","[48.699313451740046, 48.580883398532684]","[10.545235014617488, 10.656869315272235]","['DE', 'DE']",0.0,48.640098425136365,15.519315733033286,10.60105216494486,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_81,PS_130,['LKD_130'],"['LKD_N_14', 'LKD_N_15']","[48.580883398532684, 48.375408310209544]","[10.656869315272235, 10.187765259821576]","['DE', 'DE']",0.0,48.478145854371114,41.457946464497724,10.422317287546907,68.0,0.0,1983.0,19.470663935585154,400.0 -LKD_PS_82,PS_131,['LKD_131'],"['LKD_N_15', 'LKD_N_3']","[48.375408310209544, 48.40830188800201]","[10.187765259821576, 10.060439608527526]","['DE', 'DE']",0.0,48.391855099105776,10.090950479830743,10.124102434174551,68.0,0.0,1983.0,2.032269590685856,400.0 -LKD_PS_83,PS_132,['LKD_132'],"['LKD_N_15', 'LKD_N_4']","[48.375408310209544, 48.32849152932591]","[10.187765259821576, 10.095729836114076]","['DE', 'DE']",0.0,48.351949919767726,8.574099818414613,10.141747547967826,68.0,0.0,1983.0,2.032269590685856,400.0 -LKD_PS_84,PS_133,['LKD_133'],"['LKD_N_914', 'LKD_N_16']","[48.38069770687552, 48.458766776685366]","[10.279688468665526, 10.920231459483269]","['DE', 'DE']",0.0,48.419732241780444,48.0753113766818,10.599959964074397,68.0,0.0,1983.0,19.470663935585154,400.0 -LKD_PS_85,PS_134,['LKD_134'],"['LKD_N_16', 'LKD_N_17']","[48.458766776685366, 48.2680992347215]","[10.920231459483269, 10.982712437838162]","['DE', 'DE']",0.0,48.36343300570343,21.70475629885986,10.951471948660714,68.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_86,PS_135,['LKD_135'],"['LKD_N_17', 'LKD_N_18']","[48.2680992347215, 48.236578625984095]","[10.982712437838162, 10.815858936833639]","['DE', 'DE']",0.0,48.25233893035279,12.845319287374473,10.899285687335901,25.0,0.0,1983.0,4.589900761271087,300.0 -LKD_PS_87,PS_136,['LKD_136'],"['LKD_N_17', 'LKD_N_8']","[48.2680992347215, 48.0181412733453]","[10.982712437838162, 11.781148938670782]","['DE', 'DE']",0.0,48.1431202540334,65.45787819610165,11.38193068825447,68.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_91,PS_141,['LKD_141'],"['LKD_N_21', 'LKD_N_6']","[47.682937362483145, 47.568727729899976]","[10.529801837879148, 10.60617205578263]","['DE', 'DE']",0.0,47.62583254619156,13.934003712571725,10.567986946830889,25.0,0.0,1983.0,0.226,300.0 -LKD_PS_95,PS_146,['LKD_146'],"['LKD_N_11', 'LKD_N_23']","[48.208639764083046, 48.04561473029104]","[11.804763238406899, 12.376260012214923]","['DE', 'DE']",0.0,48.12712724718705,46.14226264786238,12.09051162531091,75.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_96,PS_147,['LKD_147'],"['LKD_N_23', 'LKD_N_24']","[48.04561473029104, 47.91540564685577]","[12.376260012214923, 12.40821452881308]","['DE', 'DE']",0.0,47.980510188573405,14.677251266564868,12.392237270514002,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_97,PS_148,['LKD_148'],"['LKD_N_23', 'LKD_N_13']","[48.04561473029104, 48.092376053638695]","[12.376260012214923, 12.420097997783367]","['DE', 'DE']",0.0,48.06899539196487,6.137593869408277,12.398179004999145,75.0,0.0,1983.0,7.274999999999999,1000.0 -LKD_PS_98,PS_149,['LKD_149'],"['LKD_N_13', 'LKD_N_25']","[48.092376053638695, 48.167435359221955]","[12.420097997783367, 12.74082214120552]","['DE', 'DE']",0.0,48.12990570643032,25.231721010329615,12.580460069494443,75.0,0.0,1983.0,7.274999999999999,1000.0 -LKD_PS_99,PS_151,['LKD_151'],"['LKD_N_25', 'LKD_N_9']","[48.167435359221955, 48.180718722834186]","[12.74082214120552, 12.786676699305698]","['DE', 'DE']",0.0,48.17407704102807,3.708349668260014,12.763749420255609,100.0,0.0,1983.0,7.274999999999999,1000.0 -LKD_PS_100,PS_152,['LKD_152'],"['LKD_N_23', 'LKD_N_13']","[48.04561473029104, 48.092376053638695]","[12.376260012214923, 12.420097997783367]","['DE', 'DE']",0.0,48.06899539196487,6.137593869408277,12.398179004999145,25.0,0.0,1983.0,7.274999999999999,300.0 -LKD_PS_101,PS_153,['LKD_153'],"['LKD_N_13', 'LKD_N_25']","[48.092376053638695, 48.167435359221955]","[12.420097997783367, 12.74082214120552]","['DE', 'DE']",0.0,48.12990570643032,25.231721010329615,12.580460069494443,25.0,0.0,1983.0,7.274999999999999,300.0 -LKD_PS_103,PS_155,['LKD_155'],"['LKD_N_14', 'LKD_N_16']","[48.580883398532684, 48.458766776685366]","[10.656869315272235, 10.920231459483269]","['DE', 'DE']",0.0,48.51982508760902,23.68489528913712,10.788550387377752,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_105,PS_158,['LKD_158'],"['LKD_N_14', 'LKD_N_1']","[48.580883398532684, 48.75570275403629]","[10.656869315272235, 11.555788024007844]","['DE', 'DE']",0.0,48.668293076284485,68.83593219746611,11.106328669640039,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_106,PS_159,['LKD_159'],"['LKD_N_16', 'LKD_N_29']","[48.458766776685366, 48.75092724590084]","[10.920231459483269, 11.69889457697985]","['DE', 'DE']",0.0,48.6048470112931,65.84807077586052,11.30956301823156,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_110,PS_164,['LKD_164'],"['LKD_N_26', 'LKD_N_27']","[48.40123535150261, 48.44299259139959]","[11.812318991665938, 11.925569682491215]","['DE', 'DE']",0.0,48.4221139714511,9.563373361302862,11.868944337078577,68.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_111,PS_165,['LKD_165'],"['LKD_N_27', 'LKD_N_28']","[48.44299259139959, 48.576242698769384]","[11.925569682491215, 12.132926149353322]","['DE', 'DE']",0.0,48.50961764508449,21.28729121889497,12.02924791592227,25.0,0.0,1983.0,4.589900761271087,300.0 -LKD_PS_112,PS_166,['LKD_166'],"['LKD_N_29', 'LKD_N_30']","[48.75092724590084, 48.85277348253458]","[11.69889457697985, 11.952563277174667]","['DE', 'DE']",0.0,48.801850364217714,21.765047892724386,11.825728927077257,25.0,0.0,1983.0,7.612555781053631,300.0 -LKD_PS_113,PS_167,['LKD_167'],"['LKD_N_30', 'LKD_N_68']","[48.85277348253458, 49.21185374795587]","[11.952563277174667, 12.256112966930997]","['DE', 'DE']",0.0,49.03231361524523,45.66466486379381,12.104338122052832,25.0,0.0,1983.0,37.7875,300.0 -LKD_PS_115,MONACO 2,['LKD_169'],"['LKD_N_11', 'LKD_N_31']","[48.208639764083046, 48.41393281983274]","[11.804763238406899, 11.173175987605614]","['DE', 'DE']",0.0,48.31128629195789,52.0042184481662,11.488969613006256,100.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_116,MONACO 2,['LKD_170'],"['LKD_N_31', 'LKD_N_0']","[48.41393281983274, 48.699313451740046]","[11.173175987605614, 10.545235014617488]","['DE', 'DE']",0.0,48.556623135786396,56.077981108087116,10.85920550111155,100.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_117,MONACO 2,['LKD_171'],"['LKD_N_31', 'LKD_N_0']","[48.41393281983274, 48.699313451740046]","[11.173175987605614, 10.545235014617488]","['DE', 'DE']",0.0,48.556623135786396,56.077981108087116,10.85920550111155,100.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_118,PS_172,['LKD_172'],"['LKD_N_12', 'LKD_N_9']","[48.21915679567742, 48.180718722834186]","[12.78878209417577, 12.786676699305698]","['DE', 'DE']",0.0,48.1999377592558,4.278308797826159,12.787729396740733,25.0,0.0,1983.0,7.274999999999999,300.0 -LKD_PS_119,PS_173,['LKD_173'],"['LKD_N_9', 'LKD_N_10']","[48.180718722834186, 48.11882656440544]","[12.786676699305698, 12.818238361881166]","['DE', 'AT']",0.0,48.14977264361981,7.271791862778054,12.802457530593433,75.0,0.0,1983.0,7.274999999999999,1000.0 -LKD_PS_123,JAMAL,['LKD_179'],"['LKD_N_931', 'LKD_N_34']","[52.427, 52.54146169126879]","[14.543, 14.31805195819919]","['DE', 'DE']",0.0,52.4842308456344,19.856116622043427,14.430525979099595,68.0,0.0,1983.0,38.8125,1200.0 -LKD_PS_125,JAGAL,['LKD_181'],"['LKD_N_39', 'LKD_N_35']","[52.53645739104603, 50.7820747876035]","[13.866978498057335, 12.214034690779144]","['DE', 'DE']",0.0,51.65926608932476,226.0113935717493,13.04050659441824,68.0,0.0,1983.0,0.0041666666666666675,1200.0 -LKD_PS_128,STEGAL,['LKD_189'],"['LKD_N_40', 'LKD_N_41']","[50.78151477868395, 50.97812999589501]","[12.612611391703895, 12.495753789979588]","['DE', 'DE']",0.0,50.87982238728948,23.356623493129725,12.55418259084174,100.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_133,MIDAL,['LKD_201'],"['LKD_N_54', 'LKD_N_53']","[53.270809754664704, 53.208726879767326]","[7.324344598079275, 7.359352708168941]","['DE', 'DE']",0.0,53.23976831721602,7.288089665722469,7.341848653124108,100.0,0.0,1983.0,12.420833333333334,900.0 -LKD_PS_134,MIDAL,['LKD_202'],"['LKD_N_874', 'LKD_N_53']","[53.299704144300605, 53.208726879767326]","[7.175788358377915, 7.359352708168941]","['XX', 'DE']",0.0,53.254215512033966,15.862374931682247,7.267570533273428,100.0,0.0,1983.0,12.420833333333334,900.0 -LKD_PS_135,MIDAL,['LKD_203'],"['LKD_N_53', 'LKD_N_51']","[53.208726879767326, 52.5517987869226]","[7.359352708168941, 8.347535098990326]","['DE', 'DE']",0.0,52.880262833344965,98.68531860072346,7.853443903579633,100.0,0.0,1983.0,2.8212547916666666,900.0 -LKD_PS_136,MIDAL,['LKD_204'],"['LKD_N_51', 'LKD_N_48']","[52.5517987869226, 52.20253744662892]","[8.347535098990326, 8.483276930958208]","['DE', 'DE']",0.0,52.37716811677576,39.926703311483635,8.415406014974266,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_137,MIDAL,['LKD_207'],"['LKD_N_48', 'LKD_N_50']","[52.20253744662892, 52.06156536115527]","[8.483276930958208, 9.202600684204958]","['DE', 'DE']",0.0,52.13205140389209,51.555888099393286,8.842938807581582,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_138,MIDAL,['LKD_208'],"['LKD_N_48', 'LKD_N_49']","[52.20253744662892, 51.921375832676524]","[8.483276930958208, 8.663706939190082]","['DE', 'DE']",0.0,52.06195663965272,33.61960371045658,8.573491935074145,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_139,MIDAL,['LKD_209'],"['LKD_N_49', 'LKD_N_38']","[51.921375832676524, 50.68474780129773]","[8.663706939190082, 9.656208132409002]","['DE', 'DE']",0.0,51.303061816987125,153.89137616126726,9.159957535799542,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_143,MIDAL,['LKD_219'],"['LKD_N_44', 'LKD_N_61']","[49.81333804570784, 49.82135241025974]","[8.46627137355672, 8.770963983342954]","['DE', 'DE']",0.0,49.81734522798379,21.885457154164914,8.618617678449837,100.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_146,WEDAL,['LKD_237'],"['LKD_N_56', 'LKD_N_57']","[51.01781503681846, 51.175057597332284]","[6.941114311021507, 6.690487639023255]","['DE', 'DE']",0.0,51.09643631707537,24.746762058891232,6.8158009750223805,100.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_151,MEGAL SUED,['LKD_246'],"['LKD_N_82', 'LKD_N_64']","[48.663607445802356, 48.93453261916366]","[13.823490992447457, 12.846167547261727]","['AT', 'DE']",0.0,48.79907003248301,77.68779289202186,13.334829269854591,68.0,0.0,1983.0,8.308333333333334,800.0 -LKD_PS_165,MEGAL NORD,['LKD_266'],"['LKD_N_70', 'LKD_N_71']","[49.37116054766301, 49.50331701988286]","[11.165274755231792, 10.719869907943144]","['DE', 'DE']",0.0,49.43723878377293,35.41148909019899,10.942572331587467,80.0,0.0,1983.0,24.353414352156957,1100.0 -LKD_PS_173,MEGAL NORD,['LKD_274'],"['LKD_N_73', 'LKD_N_74']","[49.76719251606068, 49.721242303861054]","[9.767452417403721, 8.478981482250301]","['DE', 'DE']",0.0,49.74421740996087,92.75098564930629,9.123216949827011,80.0,0.0,1983.0,24.353414352156957,1100.0 -LKD_PS_175,MEGAL NORD,['LKD_276'],"['LKD_N_75', 'LKD_N_74']","[49.62399585150959, 49.721242303861054]","[8.22493232487193, 8.478981482250301]","['DE', 'DE']",0.0,49.672619077685326,21.246681131924905,8.351956903561115,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_176,MEGAL NORD,['LKD_277'],"['LKD_N_75', 'LKD_N_76']","[49.62399585150959, 49.48708422503927]","[8.22493232487193, 8.28467498746112]","['DE', 'DE']",0.0,49.55554003827443,15.827029755167246,8.254803656166525,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_177,TENP,['LKD_278'],"['LKD_N_83', 'LKD_N_84']","[50.81374334608456, 50.76075076630351]","[5.986492338279513, 6.2073667419386505]","['NL', 'DE']",0.0,50.78724705619403,16.612664779085662,6.096929540109082,68.0,0.0,1983.0,16.491666666666667,950.0 -LKD_PS_178,TENP,['LKD_279'],"['LKD_N_84', 'LKD_N_85']","[50.76075076630351, 50.41039063300071]","[6.2073667419386505, 6.611011692848884]","['DE', 'DE']",0.0,50.58557069965211,48.283561829458314,6.409189217393767,68.0,0.0,1983.0,11.179166666666667,950.0 -LKD_PS_179,TENP,['LKD_280'],"['LKD_N_83', 'LKD_N_84']","[50.81374334608456, 50.76075076630351]","[5.986492338279513, 6.2073667419386505]","['NL', 'DE']",0.0,50.78724705619403,16.612664779085662,6.096929540109082,68.0,0.0,1983.0,16.491666666666667,1000.0 -LKD_PS_180,TENP,['LKD_281'],"['LKD_N_84', 'LKD_N_85']","[50.76075076630351, 50.41039063300071]","[6.2073667419386505, 6.611011692848884]","['DE', 'DE']",0.0,50.58557069965211,48.283561829458314,6.409189217393767,68.0,0.0,1983.0,11.179166666666667,1000.0 -LKD_PS_182,TENP,['LKD_283'],"['LKD_N_84', 'LKD_N_60']","[50.76075076630351, 50.67060850865022]","[6.2073667419386505, 6.0297411244639125]","['DE', 'BE']",0.0,50.71567963747687,16.03193646116139,6.118553933201282,85.0,0.0,1983.0,5.508333333333333,900.0 -LKD_PS_183,TENP,['LKD_284'],"['LKD_N_85', 'LKD_N_86']","[50.41039063300071, 50.250416838817465]","[6.611011692848884, 6.789284435452361]","['DE', 'DE']",0.0,50.33040373590909,21.836906231749715,6.700148064150622,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_184,TENP,['LKD_285'],"['LKD_N_86', 'LKD_N_87']","[50.250416838817465, 50.12805390725503]","[6.789284435452361, 6.951183230327409]","['DE', 'DE']",0.0,50.18923537303625,17.837499840321925,6.870233832889885,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_185,TENP,['LKD_286'],"['LKD_N_87', 'LKD_N_88']","[50.12805390725503, 49.959259049836845]","[6.951183230327409, 7.192789797388998]","['DE', 'DE']",0.0,50.04365647854594,25.502071971149327,7.071986513858203,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_186,TENP,['LKD_287'],"['LKD_N_88', 'LKD_N_89']","[49.959259049836845, 49.87015314696163]","[7.192789797388998, 7.315278490405851]","['DE', 'DE']",0.0,49.914706098399236,13.236318352996062,7.2540341438974245,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_187,TENP,['LKD_288'],"['LKD_N_89', 'LKD_N_90']","[49.87015314696163, 49.749549416619686]","[7.315278490405851, 7.376450675917467]","['DE', 'DE']",0.0,49.80985128179066,14.115067201804893,7.345864583161659,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_188,TENP,['LKD_289'],"['LKD_N_90', 'LKD_N_91']","[49.749549416619686, 49.63041145507221]","[7.376450675917467, 7.531061511331257]","['DE', 'DE']",0.0,49.68998043584595,17.302621132223486,7.453756093624362,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_189,TENP,['LKD_290'],"['LKD_N_91', 'LKD_N_92']","[49.63041145507221, 49.523750730973894]","[7.531061511331257, 7.55515977001868]","['DE', 'DE']",0.0,49.577081093023054,11.990492688702695,7.543110640674968,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_190,TENP,['LKD_291'],"['LKD_N_92', 'LKD_N_79']","[49.523750730973894, 49.40418058545198]","[7.55515977001868, 7.643662261894365]","['DE', 'DE']",0.0,49.46396565821294,14.758641093396644,7.599411015956522,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_191,TENP,['LKD_292'],"['LKD_N_79', 'LKD_N_93']","[49.40418058545198, 49.29718373884663]","[7.643662261894365, 7.697398977760081]","['DE', 'DE']",0.0,49.350682162149305,12.521986509857996,7.670530619827223,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_192,TENP,['LKD_293'],"['LKD_N_93', 'LKD_N_94']","[49.29718373884663, 49.208049645981035]","[7.697398977760081, 7.8324303987767365]","['DE', 'DE']",0.0,49.25261669241383,13.942940216130408,7.764914688268409,68.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_193,TENP,['LKD_294'],"['LKD_N_94', 'LKD_N_95']","[49.208049645981035, 49.10669143384409]","[7.8324303987767365, 8.055781928385603]","['DE', 'DE']",0.0,49.15737053991256,19.775581039968536,7.94410616358117,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_194,TENP,['LKD_295'],"['LKD_N_95', 'LKD_N_96']","[49.10669143384409, 49.019946722842306]","[8.055781928385603, 8.180301460653041]","['DE', 'DE']",0.0,49.0633190783432,13.245825092661494,8.118041694519322,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_195,TENP,['LKD_296'],"['LKD_N_96', 'LKD_N_97']","[49.019946722842306, 48.923731889525136]","[8.180301460653041, 8.225166141023202]","['DE', 'DE']",0.0,48.971839306183725,11.192079394797329,8.202733800838121,68.0,0.0,1983.0,17.203672670748244,950.0 -LKD_PS_196,TENP,['LKD_297'],"['LKD_N_97', 'LKD_N_911']","[48.923731889525136, 48.52399407214032]","[8.225166141023202, 7.833856069543884]","['DE', 'DE']",0.0,48.72386298083273,52.92793970920433,8.029511105283543,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_197,TENP,['LKD_298'],"['LKD_N_911', 'LKD_N_99']","[48.52399407214032, 47.849604284590825]","[7.833856069543884, 7.637348579901323]","['DE', 'DE']",0.0,48.186799178365575,76.4145615981276,7.735602324722604,68.0,0.0,1983.0,0.3666666666666667,950.0 -LKD_PS_198,TENP,['LKD_299'],"['LKD_N_99', 'LKD_N_100']","[47.849604284590825, 47.61650348813267]","[7.637348579901323, 7.827246426153907]","['DE', 'DE']",0.0,47.733053886361745,29.564740221629297,7.732297503027615,68.0,0.0,1983.0,13.2475,950.0 -LKD_PS_199,TENP,['LKD_300'],"['LKD_N_100', 'LKD_N_101']","[47.61650348813267, 47.56608735138649]","[7.827246426153907, 7.897300622068181]","['DE', 'CH']",0.0,47.59129541975958,7.6852731342816805,7.862273524111044,68.0,0.0,1983.0,13.2475,950.0 -LKD_PS_200,TENP,['LKD_301'],"['LKD_N_85', 'LKD_N_86']","[50.41039063300071, 50.250416838817465]","[6.611011692848884, 6.789284435452361]","['DE', 'DE']",0.0,50.33040373590909,21.836906231749715,6.700148064150622,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_201,TENP,['LKD_302'],"['LKD_N_86', 'LKD_N_87']","[50.250416838817465, 50.12805390725503]","[6.789284435452361, 6.951183230327409]","['DE', 'DE']",0.0,50.18923537303625,17.837499840321925,6.870233832889885,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_202,TENP,['LKD_303'],"['LKD_N_87', 'LKD_N_88']","[50.12805390725503, 49.959259049836845]","[6.951183230327409, 7.192789797388998]","['DE', 'DE']",0.0,50.04365647854594,25.502071971149327,7.071986513858203,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_203,TENP,['LKD_304'],"['LKD_N_88', 'LKD_N_89']","[49.959259049836845, 49.87015314696163]","[7.192789797388998, 7.315278490405851]","['DE', 'DE']",0.0,49.914706098399236,13.236318352996062,7.2540341438974245,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_204,TENP,['LKD_305'],"['LKD_N_89', 'LKD_N_90']","[49.87015314696163, 49.749549416619686]","[7.315278490405851, 7.376450675917467]","['DE', 'DE']",0.0,49.80985128179066,14.115067201804893,7.345864583161659,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_205,TENP,['LKD_306'],"['LKD_N_90', 'LKD_N_91']","[49.749549416619686, 49.63041145507221]","[7.376450675917467, 7.531061511331257]","['DE', 'DE']",0.0,49.68998043584595,17.302621132223486,7.453756093624362,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_206,TENP,['LKD_307'],"['LKD_N_91', 'LKD_N_92']","[49.63041145507221, 49.523750730973894]","[7.531061511331257, 7.55515977001868]","['DE', 'DE']",0.0,49.577081093023054,11.990492688702695,7.543110640674968,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_207,TENP,['LKD_308'],"['LKD_N_92', 'LKD_N_79']","[49.523750730973894, 49.40418058545198]","[7.55515977001868, 7.643662261894365]","['DE', 'DE']",0.0,49.46396565821294,14.758641093396644,7.599411015956522,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_208,TENP,['LKD_309'],"['LKD_N_79', 'LKD_N_93']","[49.40418058545198, 49.29718373884663]","[7.643662261894365, 7.697398977760081]","['DE', 'DE']",0.0,49.350682162149305,12.521986509857996,7.670530619827223,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_209,TENP,['LKD_310'],"['LKD_N_93', 'LKD_N_94']","[49.29718373884663, 49.208049645981035]","[7.697398977760081, 7.8324303987767365]","['DE', 'DE']",0.0,49.25261669241383,13.942940216130408,7.764914688268409,68.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_210,TENP,['LKD_311'],"['LKD_N_94', 'LKD_N_95']","[49.208049645981035, 49.10669143384409]","[7.8324303987767365, 8.055781928385603]","['DE', 'DE']",0.0,49.15737053991256,19.775581039968536,7.94410616358117,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_211,TENP,['LKD_312'],"['LKD_N_95', 'LKD_N_96']","[49.10669143384409, 49.019946722842306]","[8.055781928385603, 8.180301460653041]","['DE', 'DE']",0.0,49.0633190783432,13.245825092661494,8.118041694519322,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_212,TENP,['LKD_313'],"['LKD_N_96', 'LKD_N_97']","[49.019946722842306, 48.923731889525136]","[8.180301460653041, 8.225166141023202]","['DE', 'DE']",0.0,48.971839306183725,11.192079394797329,8.202733800838121,68.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_213,TENP,['LKD_314'],"['LKD_N_97', 'LKD_N_911']","[48.923731889525136, 48.52399407214032]","[8.225166141023202, 7.833856069543884]","['DE', 'DE']",0.0,48.72386298083273,52.92793970920433,8.029511105283543,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_214,TENP,['LKD_315'],"['LKD_N_911', 'LKD_N_99']","[48.52399407214032, 47.849604284590825]","[7.833856069543884, 7.637348579901323]","['DE', 'DE']",0.0,48.186799178365575,76.4145615981276,7.735602324722604,68.0,0.0,1983.0,0.3666666666666667,1000.0 -LKD_PS_215,TENP,['LKD_316'],"['LKD_N_99', 'LKD_N_100']","[47.849604284590825, 47.61650348813267]","[7.637348579901323, 7.827246426153907]","['DE', 'DE']",0.0,47.733053886361745,29.564740221629297,7.732297503027615,68.0,0.0,1983.0,13.2475,1000.0 -LKD_PS_216,TENP,['LKD_317'],"['LKD_N_100', 'LKD_N_101']","[47.61650348813267, 47.56608735138649]","[7.827246426153907, 7.897300622068181]","['DE', 'CH']",0.0,47.59129541975958,7.6852731342816805,7.862273524111044,68.0,0.0,1983.0,13.2475,1000.0 -LKD_PS_217,MEGAL NORD,['LKD_318'],"['LKD_N_75', 'LKD_N_77']","[49.62399585150959, 49.561198259725266]","[8.22493232487193, 8.085054792722655]","['DE', 'DE']",0.0,49.59259705561743,12.267996559228516,8.154993558797292,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_219,MEGAL NORD,['LKD_320'],"['LKD_N_77', 'LKD_N_78']","[49.561198259725266, 49.50752214563567]","[8.085054792722655, 7.890746869823889]","['DE', 'DE']",0.0,49.53436020268047,15.244330757216446,7.987900831273272,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_220,MEGAL NORD,['LKD_321'],"['LKD_N_78', 'LKD_N_79']","[49.50752214563567, 49.40418058545198]","[7.890746869823889, 7.643662261894365]","['DE', 'DE']",0.0,49.45585136554382,21.243461040979586,7.767204565859127,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_222,MEGAL NORD,['LKD_323'],"['LKD_N_80', 'LKD_N_81']","[49.25495017749472, 49.11794384230306]","[7.46807157367277, 7.393614165690986]","['DE', 'FR']",0.0,49.18644700989889,16.172008722389176,7.430842869681878,80.0,0.0,1983.0,25.2375,900.0 -LKD_PS_226,MEGAL NORD,['LKD_327'],"['LKD_N_80', 'LKD_N_81']","[49.25495017749472, 49.11794384230306]","[7.46807157367277, 7.393614165690986]","['DE', 'FR']",0.0,49.18644700989889,16.172008722389176,7.430842869681878,80.0,0.0,1983.0,25.2375,900.0 -LKD_PS_228,MIDAL,['LKD_332'],"['LKD_N_45', 'LKD_N_46']","[49.57031722973122, 49.26747587880932]","[8.44114707899471, 8.359094743394953]","['DE', 'DE']",0.0,49.41889655427027,34.20420521775274,8.400120911194833,100.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_230,NETRA,['LKD_343'],"['LKD_N_199', 'LKD_N_200']","[53.64499215204113, 53.511550393304]","[7.428634293641472, 7.904586161934975]","['DE', 'DE']",0.0,53.578271272672566,34.759979318992514,7.666610227788223,70.0,0.0,1983.0,17.6125,1200.0 -LKD_PS_231,NETRA,['LKD_344'],"['LKD_N_239', 'LKD_N_610']","[53.07469604597906, 52.831490042734906]","[8.200764853862344, 11.029334789200306]","['DE', 'DE']",0.0,52.95309304435698,191.45711492564706,9.615049821531326,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_234,PS_350,['LKD_350'],"['LKD_N_205', 'LKD_N_203']","[52.80830945207796, 52.67618666024568]","[8.334259400090296, 8.807958934185866]","['DE', 'DE']",0.0,52.74224805616182,35.120776106000115,8.571109167138081,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_235,PS_351,['LKD_351'],"['LKD_N_205', 'LKD_N_204']","[52.80830945207796, 52.81460339925159]","[8.334259400090296, 8.248556797788542]","['DE', 'DE']",0.0,52.81145642566477,5.804308593205933,8.291408098939419,70.0,0.0,1983.0,21.187400322022967,1036.2597827226236 -LKD_PS_239,DEUDAN,['LKD_357'],"['LKD_N_208', 'LKD_N_232']","[54.80165843093199, 54.15361223058414]","[9.271240102792843, 9.369836035531572]","['DE', 'DE']",0.0,54.47763533075806,72.36313702339146,9.320538069162208,84.0,0.0,1983.0,6.9375,500.0 -LKD_PS_240,DEUDAN,['LKD_358'],"['LKD_N_232', 'LKD_N_209']","[54.15361223058414, 53.93607752747645]","[9.369836035531572, 9.712548481002473]","['DE', 'DE']",0.0,54.04484487903029,32.96086261488274,9.541192258267023,84.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_243,PS_361,['LKD_361'],"['LKD_N_211', 'LKD_N_229']","[53.66616411123031, 53.70141196782597]","[9.66417466638007, 9.79624182821757]","['DE', 'DE']",0.0,53.68378803952814,9.542515321441677,9.730208247298819,84.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_244,PS_362,['LKD_362'],"['LKD_N_211', 'LKD_N_235']","[53.66616411123031, 53.59870860367436]","[9.66417466638007, 9.565659219357705]","['DE', 'DE']",0.0,53.632436357452335,9.925462908235808,9.614916942868888,84.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_245,PS_363,['LKD_363'],"['LKD_N_235', 'LKD_N_212']","[53.59870860367436, 53.53542989899015]","[9.565659219357705, 9.447570667470552]","['DE', 'DE']",0.0,53.567069251332256,10.50665158370714,9.506614943414128,70.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_246,PS_364,['LKD_364'],"['LKD_N_226', 'LKD_N_212']","[53.65741141672065, 53.53542989899015]","[9.463833135501359, 9.447570667470552]","['DE', 'DE']",0.0,53.596420657855404,13.610385970892745,9.455701901485956,70.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_247,PS_365,['LKD_365'],"['LKD_N_212', 'LKD_N_213']","[53.53542989899015, 53.34217498040588]","[9.447570667470552, 9.603748383000013]","['DE', 'DE']",0.0,53.438802439698016,23.856758549111948,9.525659525235284,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_248,PS_366,['LKD_366'],"['LKD_N_213', 'LKD_N_234']","[53.34217498040588, 53.381984716466356]","[9.603748383000013, 9.851890058349621]","['DE', 'DE']",0.0,53.36207984843612,17.055740914746654,9.727819220674817,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_249,PS_367,['LKD_367'],"['LKD_N_234', 'LKD_N_214']","[53.381984716466356, 53.38313081137577]","[9.851890058349621, 10.055259823690523]","['DE', 'DE']",0.0,53.382557763921064,13.493200236907704,9.953574941020072,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_250,PS_368,['LKD_368'],"['LKD_N_214', 'LKD_N_233']","[53.38313081137577, 53.584832466530514]","[10.055259823690523, 10.242541164249804]","['DE', 'DE']",0.0,53.48398163895314,25.631811419502544,10.148900493970164,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_251,PS_369,['LKD_369'],"['LKD_N_233', 'LKD_N_215']","[53.584832466530514, 53.784470424559636]","[10.242541164249804, 10.475105675748793]","['DE', 'DE']",0.0,53.68465144554507,26.97756339394077,10.358823419999299,70.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_252,PS_370,['LKD_370'],"['LKD_N_215', 'LKD_N_227']","[53.784470424559636, 53.70009860885451]","[10.475105675748793, 10.655501218302252]","['DE', 'DE']",0.0,53.74228451670707,15.12937219868941,10.565303447025522,70.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_253,PS_371,['LKD_371'],"['LKD_N_215', 'LKD_N_228']","[53.784470424559636, 53.989615699762204]","[10.475105675748793, 10.614454646510076]","['DE', 'DE']",0.0,53.88704306216092,24.578966096469617,10.544780161129435,70.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_254,PS_372,['LKD_372'],"['LKD_N_215', 'LKD_N_236']","[53.784470424559636, 53.79321755670522]","[10.475105675748793, 10.836840953422675]","['DE', 'DE']",0.0,53.78884399063243,23.789664215360204,10.655973314585733,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_255,PS_373,['LKD_373'],"['LKD_N_213', 'LKD_N_238']","[53.34217498040588, 53.21622232933195]","[9.603748383000013, 9.359298705072112]","['DE', 'DE']",0.0,53.279198654868914,21.460977913408286,9.481523544036062,70.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_256,PS_374,['LKD_374'],"['LKD_N_238', 'LKD_N_237']","[53.21622232933195, 53.34006012364771]","[9.359298705072112, 9.243661642216]","['DE', 'DE']",0.0,53.27814122648983,15.776036856509647,9.301480173644055,70.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_257,PS_375,['LKD_375'],"['LKD_N_238', 'LKD_N_217']","[53.21622232933195, 53.04093692792417]","[9.359298705072112, 9.007211856439628]","['DE', 'DE']",0.0,53.12857962862806,30.53360791367785,9.18325528075587,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_259,PS_377,['LKD_377'],"['LKD_N_214', 'LKD_N_216']","[53.38313081137577, 52.963947651504064]","[10.055259823690523, 10.705555920919853]","['DE', 'DE']",0.0,53.17353923143992,63.6677927316377,10.380407872305188,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_260,PS_378,['LKD_378'],"['LKD_N_216', 'LKD_N_230']","[52.963947651504064, 53.130304212978245]","[10.705555920919853, 10.97665398353439]","['DE', 'DE']",0.0,53.04712593224116,25.903533143625577,10.841104952227122,70.0,0.0,1983.0,1.4845232338862173,350.0 -LKD_PS_261,PS_379,['LKD_379'],"['LKD_N_216', 'LKD_N_231']","[52.963947651504064, 52.625574384601855]","[10.705555920919853, 13.4290987981024]","['DE', 'DE']",0.0,52.79476101805296,186.9931436625115,12.067327359511125,84.0,0.0,1983.0,0.0041666666666666675,1200.0 -LKD_PS_263,PS_381,['LKD_381'],"['LKD_N_218', 'LKD_N_225']","[53.03408130026861, 53.164231881008604]","[8.499220922790897, 8.714443295820267]","['DE', 'DE']",0.0,53.09915659063861,20.400466574211066,8.606832109305582,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_265,PS_383,['LKD_383'],"['LKD_N_239', 'LKD_N_219']","[53.07469604597906, 53.1697884106651]","[8.200764853862344, 7.584638571558224]","['DE', 'DE']",0.0,53.12224222832208,42.46470199143633,7.892701712710284,84.0,0.0,1983.0,2.8212547916666666,1000.0 -LKD_PS_266,PS_384,['LKD_384'],"['LKD_N_219', 'LKD_N_222']","[53.1697884106651, 53.41271920575848]","[7.584638571558224, 7.093250747542649]","['DE', 'DE']",0.0,53.29125380821179,42.39725896460763,7.338944659550437,84.0,0.0,1983.0,61.73158333333333,1000.0 -LKD_PS_267,PS_385,['LKD_385'],"['LKD_N_219', 'LKD_N_220']","[53.1697884106651, 53.192789236891734]","[7.584638571558224, 7.328936144608864]","['DE', 'DE']",0.0,53.18128882377842,17.235633636208718,7.4567873580835435,70.0,0.0,1983.0,12.420833333333334,700.0 -LKD_PS_268,PS_386,['LKD_386'],"['LKD_N_220', 'LKD_N_221']","[53.192789236891734, 52.55825394799947]","[7.328936144608864, 7.266157436878651]","['DE', 'DE']",0.0,52.8755215924456,70.7049645760834,7.297546790743757,70.0,0.0,1983.0,12.420833333333334,1000.0 -LKD_PS_269,PS_387,['LKD_387'],"['LKD_N_221', 'LKD_N_224']","[52.55825394799947, 52.44089510919946]","[7.266157436878651, 7.317078520851352]","['DE', 'DE']",0.0,52.49957452859947,13.501505213997874,7.291617978865002,70.0,0.0,1983.0,3.9,1000.0 -LKD_PS_270,PS_388,['LKD_388'],"['LKD_N_221', 'LKD_N_223']","[52.55825394799947, 52.51081689269512]","[7.266157436878651, 6.968138281067094]","['DE', 'DE']",0.0,52.5345354203473,20.842661061451015,7.1171478589728725,70.0,0.0,1983.0,3.0,700.0 -LKD_PS_271,PS_389,['LKD_389'],"['LKD_N_217', 'LKD_N_265']","[53.04093692792417, 53.17856217793069]","[9.007211856439628, 9.299038358147609]","['DE', 'DE']",0.0,53.109749552927425,24.779099358120522,9.153125107293619,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_272,PS_390,['LKD_390'],"['LKD_N_217', 'LKD_N_256']","[53.04093692792417, 52.92986473911877]","[9.007211856439628, 9.290890625296061]","['DE', 'DE']",0.0,52.98540083352147,22.659976462073903,9.149051240867845,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_273,PS_391,['LKD_391'],"['LKD_N_256', 'LKD_N_262']","[52.92986473911877, 52.78501617531169]","[9.290890625296061, 9.245955207597572]","['DE', 'DE']",0.0,52.85744045721523,16.39168897110847,9.268422916446816,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_274,PS_392,['LKD_392'],"['LKD_N_262', 'LKD_N_251']","[52.78501617531169, 52.6803511394006]","[9.245955207597572, 9.263047317540407]","['DE', 'DE']",0.0,52.73268365735615,11.698655132166333,9.25450126256899,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_275,PS_393,['LKD_393'],"['LKD_N_251', 'LKD_N_252']","[52.6803511394006, 52.65680303491534]","[9.263047317540407, 8.890640866040048]","['DE', 'DE']",0.0,52.66857708715797,25.255905164841415,9.076844091790228,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_276,PS_394,['LKD_394'],"['LKD_N_252', 'LKD_N_246']","[52.65680303491534, 52.6006333110176]","[8.890640866040048, 9.13045639990686]","['DE', 'DE']",0.0,52.62871817296647,17.354525364848374,9.010548632973453,84.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_277,PS_395,['LKD_395'],"['LKD_N_251', 'LKD_N_250']","[52.6803511394006, 52.51805557075581]","[9.263047317540407, 9.865477950925364]","['DE', 'DE']",0.0,52.5992033550782,44.52355716994653,9.564262634232886,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_278,PS_396,['LKD_396'],"['LKD_N_256', 'LKD_N_253']","[52.92986473911877, 52.93164215048878]","[9.290890625296061, 9.369984670956157]","['DE', 'DE']",0.0,52.93075344480377,5.306709792001934,9.330437648126109,84.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_279,PS_397,['LKD_397'],"['LKD_N_253', 'LKD_N_262']","[52.93164215048878, 52.78501617531169]","[9.369984670956157, 9.245955207597572]","['DE', 'DE']",0.0,52.85832916290023,18.313204932513823,9.307969939276864,84.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_280,PS_398,['LKD_398'],"['LKD_N_253', 'LKD_N_255']","[52.93164215048878, 52.92816100654416]","[9.369984670956157, 9.429593844135667]","['DE', 'DE']",0.0,52.929901578516464,4.015413350348591,9.399789257545912,84.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_281,PS_399,['LKD_399'],"['LKD_N_255', 'LKD_N_250']","[52.92816100654416, 52.51805557075581]","[9.429593844135667, 9.865477950925364]","['DE', 'DE']",0.0,52.72310828864998,54.250162133458154,9.647535897530515,84.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_282,PS_400,['LKD_400'],"['LKD_N_255', 'LKD_N_254']","[52.92816100654416, 52.918473189866035]","[9.429593844135667, 9.537058503693203]","['DE', 'DE']",0.0,52.923317098205096,7.286549701572812,9.483326173914435,70.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_283,PS_401,['LKD_401'],"['LKD_N_254', 'LKD_N_241']","[52.918473189866035, 53.12394870410176]","[9.537058503693203, 9.76398621184415]","['DE', 'DE']",0.0,53.0212109469839,27.438548645613352,9.650522357768676,70.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_284,PS_402,['LKD_402'],"['LKD_N_254', 'LKD_N_245']","[52.918473189866035, 52.91933353139826]","[9.537058503693203, 9.699324175777631]","['DE', 'DE']",0.0,52.91890336063214,10.882838880837337,9.618191339735418,70.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_285,PS_403,['LKD_403'],"['LKD_N_250', 'LKD_N_249']","[52.51805557075581, 52.50905361202662]","[9.865477950925364, 9.897287632213475]","['DE', 'DE']",0.0,52.51355459139121,2.3746675298922004,9.881382791569418,84.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_286,PS_404,['LKD_404'],"['LKD_N_249', 'LKD_N_248']","[52.50905361202662, 52.50017980154073]","[9.897287632213475, 9.936919799800153]","['DE', 'DE']",0.0,52.50461670678368,2.8590869383467457,9.917103716006814,84.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_287,PS_405,['LKD_405'],"['LKD_N_248', 'LKD_N_264']","[52.50017980154073, 52.58878173385361]","[9.936919799800153, 10.067812866674211]","['DE', 'DE']",0.0,52.544480767697166,13.248389596411094,10.002366333237182,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_288,PS_406,['LKD_406'],"['LKD_N_264', 'LKD_N_242']","[52.58878173385361, 53.02222338807455]","[10.067812866674211, 10.106536731070346]","['DE', 'DE']",0.0,52.80550256096408,48.28190384754523,10.08717479887228,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_289,PS_407,['LKD_407'],"['LKD_N_248', 'LKD_N_263']","[52.50017980154073, 52.38598792691155]","[9.936919799800153, 10.444147479370882]","['DE', 'DE']",0.0,52.44308386422614,36.66058694871886,10.190533639585517,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_290,PS_408,['LKD_408'],"['LKD_N_263', 'LKD_N_243']","[52.38598792691155, 52.49508192319409]","[10.444147479370882, 10.776076990993067]","['DE', 'DE']",0.0,52.440534925052816,25.568943805857767,10.610112235181974,70.0,0.0,1983.0,1.4845232338862173,350.0 -LKD_PS_291,PS_409,['LKD_409'],"['LKD_N_249', 'LKD_N_247']","[52.50905361202662, 52.3681322072938]","[9.897287632213475, 9.911803219949972]","['DE', 'DE']",0.0,52.43859290966021,15.70553607082937,9.904545426081723,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_292,PS_410,['LKD_410'],"['LKD_N_252', 'LKD_N_203']","[52.65680303491534, 52.67618666024568]","[8.890640866040048, 8.807958934185866]","['DE', 'DE']",0.0,52.66649484758051,5.979593482215226,8.849299900112957,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_293,PS_411,['LKD_411'],"['LKD_N_218', 'LKD_N_260']","[53.03408130026861, 53.45816199371522]","[8.499220922790897, 8.743171320465065]","['DE', 'DE']",0.0,53.24612164699192,49.88660159173982,8.621196121627982,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_294,PS_412,['LKD_412'],"['LKD_N_260', 'LKD_N_240']","[53.45816199371522, 53.857868011880655]","[8.743171320465065, 8.701038887124259]","['DE', 'DE']",0.0,53.65801500279794,44.545885560141684,8.72210510379466,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_296,PS_414,['LKD_414'],"['LKD_N_217', 'LKD_N_218']","[53.04093692792417, 53.03408130026861]","[9.007211856439628, 8.499220922790897]","['DE', 'DE']",0.0,53.037509114096395,33.983739627994936,8.753216389615263,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_297,PS_415,['LKD_415'],"['LKD_N_218', 'LKD_N_258']","[53.03408130026861, 53.1485438851924]","[8.499220922790897, 7.832022691920125]","['DE', 'DE']",0.0,53.0913125927305,46.350262105945966,8.16562180735551,70.0,0.0,1983.0,2.8212547916666666,1000.0 -LKD_PS_298,PS_416,['LKD_416'],"['LKD_N_258', 'LKD_N_224']","[53.1485438851924, 52.44089510919946]","[7.832022691920125, 7.317078520851352]","['DE', 'DE']",0.0,52.79471949719593,85.99379894037804,7.574550606385738,40.0,0.0,1983.0,2.8212547916666666,1000.0 -LKD_PS_299,PS_417,['LKD_417'],"['LKD_N_224', 'LKD_N_244']","[52.44089510919946, 52.32009444747525]","[7.317078520851352, 7.37904071559821]","['DE', 'DE']",0.0,52.38049477833735,14.079846868321976,7.348059618224781,70.0,0.0,1983.0,3.9,1000.0 -LKD_PS_300,PS_418,['LKD_418'],"['LKD_N_258', 'LKD_N_219']","[53.1485438851924, 53.1697884106651]","[7.832022691920125, 7.584638571558224]","['DE', 'DE']",0.0,53.15916614792875,16.66708215216767,7.708330631739175,70.0,0.0,1983.0,2.8212547916666666,1000.0 -LKD_PS_301,PS_419,['LKD_419'],"['LKD_N_219', 'LKD_N_220']","[53.1697884106651, 53.192789236891734]","[7.584638571558224, 7.328936144608864]","['DE', 'DE']",0.0,53.18128882377842,17.235633636208718,7.4567873580835435,70.0,0.0,1983.0,12.420833333333334,1000.0 -LKD_PS_302,PS_420,['LKD_420'],"['LKD_N_218', 'LKD_N_204']","[53.03408130026861, 52.81460339925159]","[8.499220922790897, 8.248556797788542]","['DE', 'DE']",0.0,52.924342349760096,29.639546046623607,8.37388886028972,70.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_303,PS_421,['LKD_421'],"['LKD_N_204', 'LKD_N_257']","[52.81460339925159, 52.4611933722466]","[8.248556797788542, 8.406803616688068]","['DE', 'DE']",0.0,52.6378983857491,40.73512763757358,8.327680207238306,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_304,PS_422,['LKD_422'],"['LKD_N_257', 'LKD_N_261']","[52.4611933722466, 52.06032352546985]","[8.406803616688068, 8.485444728278907]","['DE', 'DE']",0.0,52.260758448858226,44.90895899890717,8.446124172483486,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_305,PS_423,['LKD_423'],"['LKD_N_261', 'LKD_N_266']","[52.06032352546985, 51.81391114873259]","[8.485444728278907, 8.774214573309925]","['DE', 'DE']",0.0,51.93711733710122,33.813662969819724,8.629829650794417,70.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_306,PS_424,['LKD_424'],"['LKD_N_257', 'LKD_N_267']","[52.4611933722466, 52.73475421700365]","[8.406803616688068, 8.350004374948703]","['DE', 'DE']",0.0,52.59797379462512,30.669148715230143,8.378403995818385,70.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_307,PS_425,['LKD_425'],"['LKD_N_0', 'LKD_N_71']","[48.699313451740046, 49.50331701988286]","[10.545235014617488, 10.719869907943144]","['DE', 'DE']",0.0,49.101315235811455,90.32887972051958,10.632552461280316,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_310,PS_428,['LKD_428'],"['LKD_N_268', 'LKD_N_798']","[48.89417557539229, 48.125529493836666]","[11.741712910821372, 12.360185701709078]","['DE', 'DE']",0.0,48.50985253461448,96.88397413604228,12.050949306265224,100.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_312,PS_432,['LKD_432'],"['LKD_N_42', 'LKD_N_73']","[50.37922805675541, 49.76719251606068]","[9.424896782358873, 9.767452417403721]","['DE', 'DE']",0.0,50.07321028640804,72.33542345449264,9.596174599881298,80.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_317,METG,['LKD_437'],"['LKD_N_270', 'LKD_N_74']","[50.32395256766433, 49.721242303861054]","[7.899800650672305, 8.478981482250301]","['DE', 'DE']",0.0,50.02259743576269,78.78669062980227,8.189391066461303,80.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_318,METG,['LKD_438'],"['LKD_N_270', 'LKD_N_74']","[50.32395256766433, 49.721242303861054]","[7.899800650672305, 8.478981482250301]","['DE', 'DE']",0.0,50.02259743576269,78.78669062980227,8.189391066461303,80.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_319,PS_439,['LKD_439'],"['LKD_N_244', 'LKD_N_273']","[52.32009444747525, 52.137442134469005]","[7.37904071559821, 7.129815712863853]","['DE', 'DE']",0.0,52.22876829097213,26.477519114197914,7.254428214231032,70.0,0.0,1983.0,3.9,1000.0 -LKD_PS_320,PS_440,['LKD_440'],"['LKD_N_272', 'LKD_N_273']","[52.58991321686469, 52.137442134469005]","[6.9004400125988985, 7.129815712863853]","['DE', 'DE']",0.0,52.36367767566685,52.684488726087196,7.015127862731376,70.0,0.0,1983.0,3.9,700.0 -LKD_PS_321,PS_441,['LKD_441'],"['LKD_N_273', 'LKD_N_275']","[52.137442134469005, 52.06401445836075]","[7.129815712863853, 7.114205936767786]","['DE', 'DE']",0.0,52.10072829641488,8.236692448961936,7.12201082481582,68.0,0.0,1983.0,3.9,700.0 -LKD_PS_322,PS_442,['LKD_442'],"['LKD_N_273', 'LKD_N_274']","[52.137442134469005, 52.11445442798648]","[7.129815712863853, 7.280094003604168]","['DE', 'DE']",0.0,52.12594828122774,10.575811617522566,7.204954858234011,70.0,0.0,1983.0,3.9,700.0 -LKD_PS_323,PS_443,['LKD_443'],"['LKD_N_274', 'LKD_N_286']","[52.11445442798648, 52.2523815080037]","[7.280094003604168, 7.450328388402764]","['DE', 'DE']",0.0,52.18341796799509,19.239338802898555,7.365211196003466,68.0,0.0,1983.0,3.9,225.0 -LKD_PS_324,PS_444,['LKD_444'],"['LKD_N_274', 'LKD_N_275']","[52.11445442798648, 52.06401445836075]","[7.280094003604168, 7.114205936767786]","['DE', 'DE']",0.0,52.089234443173616,12.649591259921964,7.197149970185977,68.0,0.0,1983.0,3.9,225.0 -LKD_PS_325,PS_446,['LKD_446'],"['LKD_N_273', 'LKD_N_275']","[52.137442134469005, 52.06401445836075]","[7.129815712863853, 7.114205936767786]","['DE', 'DE']",0.0,52.10072829641488,8.236692448961936,7.12201082481582,68.0,0.0,1983.0,3.9,700.0 -LKD_PS_326,PS_447,['LKD_447'],"['LKD_N_274', 'LKD_N_278']","[52.11445442798648, 51.936816340899775]","[7.280094003604168, 7.775604351526366]","['DE', 'DE']",0.0,52.02563538444313,39.24909143942506,7.527849177565267,70.0,0.0,1983.0,3.9,700.0 -LKD_PS_327,PS_448,['LKD_448'],"['LKD_N_278', 'LKD_N_293']","[51.936816340899775, 51.88764676420514]","[7.775604351526366, 7.964439104653853]","['DE', 'DE']",0.0,51.912231552552456,14.063711232175171,7.8700217280901095,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_328,PS_449,['LKD_449'],"['LKD_N_293', 'LKD_N_319']","[51.88764676420514, 52.00909422852102]","[7.964439104653853, 8.044505057735213]","['DE', 'DE']",0.0,51.94837049636308,14.581267539728874,8.004472081194534,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_329,PS_450,['LKD_450'],"['LKD_N_293', 'LKD_N_294']","[51.88764676420514, 51.8379794357684]","[7.964439104653853, 8.157952568637414]","['DE', 'DE']",0.0,51.86281309998677,14.394675099318222,8.061195836645634,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_330,PS_451,['LKD_451'],"['LKD_N_294', 'LKD_N_320']","[51.8379794357684, 51.94182941301953]","[8.157952568637414, 8.294442137261921]","['DE', 'DE']",0.0,51.88990442439397,14.873564745706954,8.226197352949669,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_331,PS_452,['LKD_452'],"['LKD_N_294', 'LKD_N_300']","[51.8379794357684, 51.662601496495846]","[8.157952568637414, 8.343085283439738]","['DE', 'DE']",0.0,51.75029046613213,23.303560431152672,8.250518926038577,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_332,PS_453,['LKD_453'],"['LKD_N_300', 'LKD_N_316']","[51.662601496495846, 51.65969243355986]","[8.343085283439738, 8.510985951336119]","['DE', 'DE']",0.0,51.661146965027854,11.589173889145876,8.42703561738793,68.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_333,PS_454,['LKD_454'],"['LKD_N_300', 'LKD_N_295']","[51.662601496495846, 51.51849314249869]","[8.343085283439738, 8.352079081494551]","['DE', 'DE']",0.0,51.59054731949727,16.04119284305694,8.347582182467145,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_334,PS_455,['LKD_455'],"['LKD_N_295', 'LKD_N_299']","[51.51849314249869, 51.51520155811922]","[8.352079081494551, 8.198059017436634]","['DE', 'DE']",0.0,51.51684735030896,10.667028228006846,8.275069049465593,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_335,PS_456,['LKD_456'],"['LKD_N_299', 'LKD_N_317']","[51.51520155811922, 51.652356763577586]","[8.198059017436634, 8.075672721367846]","['DE', 'DE']",0.0,51.58377916084841,17.4438377475195,8.13686586940224,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_336,PS_457,['LKD_457'],"['LKD_N_299', 'LKD_N_298']","[51.51520155811922, 51.50642209704624]","[8.198059017436634, 7.936545577053217]","['DE', 'DE']",0.0,51.51081182758273,18.12977906901914,8.067302297244925,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_337,PS_458,['LKD_458'],"['LKD_N_298', 'LKD_N_318']","[51.50642209704624, 51.63936033816715]","[7.936545577053217, 7.976230626149097]","['DE', 'DE']",0.0,51.572891217606696,15.039053445608223,7.956388101601157,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_338,PS_459,['LKD_459'],"['LKD_N_298', 'LKD_N_297']","[51.50642209704624, 51.440275909435904]","[7.936545577053217, 8.019447834573459]","['DE', 'DE']",0.0,51.47334900324107,9.333902023123962,7.977996705813338,68.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_339,PS_460,['LKD_460'],"['LKD_N_297', 'LKD_N_323']","[51.440275909435904, 51.38441025160746]","[8.019447834573459, 8.075586935482207]","['DE', 'DE']",0.0,51.41234308052168,7.3335748307662065,8.047517385027833,68.0,0.0,1983.0,1.4845232338862173,225.0 -LKD_PS_340,PS_461,['LKD_461'],"['LKD_N_323', 'LKD_N_296']","[51.38441025160746, 51.38399319420699]","[8.075586935482207, 8.208955277440218]","['DE', 'DE']",0.0,51.38420172290722,9.258277143663122,8.142271106461212,68.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_341,PS_462,['LKD_462'],"['LKD_N_297', 'LKD_N_321']","[51.440275909435904, 51.43923462622274]","[8.019447834573459, 8.083719793476895]","['DE', 'DE']",0.0,51.43975526782933,4.457716884093927,8.051583814025177,68.0,0.0,1983.0,1.4845232338862173,350.0 -LKD_PS_342,PS_463,['LKD_463'],"['LKD_N_321', 'LKD_N_295']","[51.43923462622274, 51.51849314249869]","[8.083719793476895, 8.352079081494551]","['DE', 'DE']",0.0,51.47886388436072,20.574807391973568,8.217899437485723,68.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_343,PS_464,['LKD_464'],"['LKD_N_323', 'LKD_N_321']","[51.38441025160746, 51.43923462622274]","[8.075586935482207, 8.083719793476895]","['DE', 'DE']",0.0,51.4118224389151,6.1241528402048955,8.079653364479551,68.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_344,PS_465,['LKD_465'],"['LKD_N_321', 'LKD_N_296']","[51.43923462622274, 51.38399319420699]","[8.083719793476895, 8.208955277440218]","['DE', 'DE']",0.0,51.41161391021487,10.641562057853495,8.146337535458557,68.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_345,PS_466,['LKD_466'],"['LKD_N_296', 'LKD_N_314']","[51.38399319420699, 51.191896503196475]","[8.208955277440218, 8.426467818553148]","['DE', 'DE']",0.0,51.28794484870173,26.181865535935078,8.317711547996684,68.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_346,PS_467,['LKD_467'],"['LKD_N_296', 'LKD_N_322']","[51.38399319420699, 51.41086241111221]","[8.208955277440218, 8.2965240178074]","['DE', 'DE']",0.0,51.3974278026596,6.772228707771798,8.252739647623809,68.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_347,PS_468,['LKD_468'],"['LKD_N_322', 'LKD_N_295']","[51.41086241111221, 51.51849314249869]","[8.2965240178074, 8.352079081494551]","['DE', 'DE']",0.0,51.46467777680545,12.575499772443491,8.324301549650976,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_348,PS_469,['LKD_469'],"['LKD_N_322', 'LKD_N_315']","[51.41086241111221, 51.382781913649936]","[8.2965240178074, 8.532103943386739]","['DE', 'DE']",0.0,51.39682216238107,16.644646944095868,8.414313980597068,68.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_349,PS_470,['LKD_470'],"['LKD_N_298', 'LKD_N_292']","[51.50642209704624, 51.48615091864612]","[7.936545577053217, 7.683913626493144]","['DE', 'DE']",0.0,51.49628650784618,17.638913032781705,7.81022960177318,70.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_350,PS_471,['LKD_471'],"['LKD_N_292', 'LKD_N_291']","[51.48615091864612, 51.54255710688759]","[7.683913626493144, 7.274527048757532]","['DE', 'DE']",0.0,51.51435401276686,29.024088641595615,7.479220337625338,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_351,PS_472,['LKD_472'],"['LKD_N_292', 'LKD_N_278']","[51.48615091864612, 51.936816340899775]","[7.683913626493144, 7.775604351526366]","['DE', 'DE']",0.0,51.71148362977294,50.52418597725751,7.729758989009754,70.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_352,PS_474,['LKD_474'],"['LKD_N_291', 'LKD_N_288']","[51.54255710688759, 51.40567954657097]","[7.274527048757532, 7.263019062820674]","['DE', 'DE']",0.0,51.47411832672928,15.245729980149845,7.268773055789103,70.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_353,PS_475,['LKD_475'],"['LKD_N_291', 'LKD_N_290']","[51.54255710688759, 51.707470227494724]","[7.274527048757532, 7.3451521627134735]","['DE', 'DE']",0.0,51.625013667191155,18.980472883226508,7.309839605735503,70.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_354,PS_476,['LKD_476'],"['LKD_N_290', 'LKD_N_289']","[51.707470227494724, 51.72804052842961]","[7.3451521627134735, 7.257755313011423]","['DE', 'DE']",0.0,51.71775537796216,6.442569365579408,7.301453737862449,70.0,0.0,1983.0,3.9,350.0 -LKD_PS_355,PS_477,['LKD_477'],"['LKD_N_289', 'LKD_N_287']","[51.72804052842961, 51.59068162742817]","[7.257755313011423, 7.117511665354153]","['DE', 'DE']",0.0,51.65936107792889,18.08506657861519,7.187633489182788,68.0,0.0,1983.0,3.9,225.0 -LKD_PS_356,PS_478,['LKD_478'],"['LKD_N_290', 'LKD_N_275']","[51.707470227494724, 52.06401445836075]","[7.3451521627134735, 7.114205936767786]","['DE', 'DE']",0.0,51.88574234292774,42.71039147697193,7.22967904974063,84.0,0.0,1983.0,3.9,700.0 -LKD_PS_357,PS_480,['LKD_480'],"['LKD_N_289', 'LKD_N_276']","[51.72804052842961, 51.81086814125938]","[7.257755313011423, 6.895098997113272]","['DE', 'DE']",0.0,51.7694543348445,26.608194248443553,7.076427155062348,70.0,0.0,1983.0,7.441666666666666,350.0 -LKD_PS_358,PS_481,['LKD_481'],"['LKD_N_276', 'LKD_N_275']","[51.81086814125938, 52.06401445836075]","[6.895098997113272, 7.114205936767786]","['DE', 'DE']",0.0,51.93744129981006,31.91551892828428,7.004652466940529,84.0,0.0,1983.0,3.9,1000.0 -LKD_PS_359,PS_482,['LKD_482'],"['LKD_N_276', 'LKD_N_307']","[51.81086814125938, 51.76610082754029]","[6.895098997113272, 6.865762713558444]","['DE', 'DE']",0.0,51.78848448439983,5.372994434424697,6.880430855335858,84.0,0.0,1983.0,7.441666666666666,1000.0 -LKD_PS_360,PS_483,['LKD_483'],"['LKD_N_307', 'LKD_N_277']","[51.76610082754029, 51.569554089597624]","[6.865762713558444, 6.706151449706333]","['DE', 'DE']",0.0,51.66782745856896,24.478241856978645,6.785957081632388,84.0,0.0,1983.0,7.441666666666666,1000.0 -LKD_PS_361,PS_484,['LKD_484'],"['LKD_N_277', 'LKD_N_306']","[51.569554089597624, 51.55664771862836]","[6.706151449706333, 6.598467698464013]","['DE', 'DE']",0.0,51.56310090411299,7.5830573423376455,6.652309574085173,68.0,0.0,1983.0,7.441666666666666,500.0 -LKD_PS_362,PS_485,['LKD_485'],"['LKD_N_306', 'LKD_N_280']","[51.55664771862836, 51.61534688812875]","[6.598467698464013, 6.36169961432461]","['DE', 'DE']",0.0,51.585997303378555,17.617868001145144,6.480083656394312,86.0,0.0,1983.0,0.197,500.0 -LKD_PS_363,PS_486,['LKD_486'],"['LKD_N_306', 'LKD_N_301']","[51.55664771862836, 51.60318932651133]","[6.598467698464013, 6.131468555381808]","['DE', 'DE']",0.0,51.57991852256984,32.691736041246045,6.364968126922911,68.0,0.0,1983.0,0.197,500.0 -LKD_PS_364,PS_487,['LKD_487'],"['LKD_N_301', 'LKD_N_308']","[51.60318932651133, 51.752485205127726]","[6.131468555381808, 6.0991387980123015]","['DE', 'DE']",0.0,51.67783726581953,16.755195191510015,6.115303676697055,68.0,0.0,1983.0,13.65,225.0 -LKD_PS_365,PS_488,['LKD_488'],"['LKD_N_301', 'LKD_N_309']","[51.60318932651133, 51.47837819426403]","[6.131468555381808, 6.335239910537509]","['DE', 'DE']",0.0,51.54078376038768,19.78517847806188,6.233354232959659,68.0,0.0,1983.0,0.197,225.0 -LKD_PS_366,PS_489,['LKD_489'],"['LKD_N_277', 'LKD_N_827']","[51.569554089597624, 51.459919914055604]","[6.706151449706333, 6.837923692564928]","['DE', 'DE']",0.0,51.51473700182662,15.22842966927942,6.77203757113563,68.0,0.0,1983.0,7.441666666666666,500.0 -LKD_PS_367,PS_490,['LKD_490'],"['LKD_N_306', 'LKD_N_827']","[51.55664771862836, 51.459919914055604]","[6.598467698464013, 6.837923692564928]","['DE', 'DE']",0.0,51.50828381634199,19.762781881540892,6.718195695514471,68.0,0.0,1983.0,7.441666666666666,700.0 -LKD_PS_368,PS_491,['LKD_491'],"['LKD_N_827', 'LKD_N_279']","[51.459919914055604, 51.35175016658574]","[6.837923692564928, 6.882478412877103]","['DE', 'DE']",0.0,51.40583504032067,12.422513502917244,6.860201052721015,68.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_369,PS_492,['LKD_492'],"['LKD_N_279', 'LKD_N_305']","[51.35175016658574, 51.31030724992486]","[6.882478412877103, 7.167880367632912]","['DE', 'DE']",0.0,51.3310287082553,20.363631233021096,7.0251793902550075,68.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_370,PS_493,['LKD_493'],"['LKD_N_305', 'LKD_N_313']","[51.31030724992486, 51.20790331792239]","[7.167880367632912, 7.2143979462368515]","['DE', 'DE']",0.0,51.259105283923624,11.841665958232383,7.191139156934882,68.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_371,PS_494,['LKD_494'],"['LKD_N_305', 'LKD_N_279']","[51.31030724992486, 51.35175016658574]","[7.167880367632912, 6.882478412877103]","['DE', 'DE']",0.0,51.3310287082553,20.363631233021096,7.0251793902550075,68.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_372,PS_495,['LKD_495'],"['LKD_N_279', 'LKD_N_302']","[51.35175016658574, 50.97149058561986]","[6.882478412877103, 6.310867113642061]","['DE', 'DE']",0.0,51.1616203761028,58.12717460732661,6.596672763259582,68.0,0.0,1983.0,0.079,500.0 -LKD_PS_373,PS_496,['LKD_496'],"['LKD_N_302', 'LKD_N_312']","[50.97149058561986, 51.014720705065656]","[6.310867113642061, 6.114676507054715]","['DE', 'DE']",0.0,50.99310564534276,14.552585884580088,6.2127718103483875,68.0,0.0,1983.0,0.079,225.0 -LKD_PS_374,PS_497,['LKD_497'],"['LKD_N_302', 'LKD_N_303']","[50.97149058561986, 50.85376367124122]","[6.310867113642061, 6.332856041344958]","['DE', 'DE']",0.0,50.91262712843054,13.185235249708464,6.321861577493509,68.0,0.0,1983.0,0.079,500.0 -LKD_PS_375,PS_498,['LKD_498'],"['LKD_N_303', 'LKD_N_304']","[50.85376367124122, 50.87203142376522]","[6.332856041344958, 6.411822661683032]","['DE', 'DE']",0.0,50.86289754750322,5.904551031302808,6.372339351513995,68.0,0.0,1983.0,11.179166666666667,500.0 -LKD_PS_376,PS_499,['LKD_499'],"['LKD_N_304', 'LKD_N_310']","[50.87203142376522, 50.89461968146965]","[6.411822661683032, 6.759382538450062]","['DE', 'DE']",0.0,50.883325552617436,24.519087718489317,6.585602600066547,68.0,0.0,1983.0,11.179166666666667,500.0 -LKD_PS_377,PS_500,['LKD_500'],"['LKD_N_304', 'LKD_N_311']","[50.87203142376522, 50.821722067311306]","[6.411822661683032, 6.501480912664607]","['DE', 'DE']",0.0,50.84687674553827,8.423922753717948,6.456651787173819,68.0,0.0,1983.0,11.179166666666667,225.0 -LKD_PS_378,PS_501,['LKD_501'],"['LKD_N_303', 'LKD_N_281']","[50.85376367124122, 50.817272481115694]","[6.332856041344958, 6.1801334127297975]","['DE', 'DE']",0.0,50.83551807617846,11.470460201135081,6.256494727037378,68.0,0.0,1983.0,11.179166666666667,500.0 -LKD_PS_379,PS_502,['LKD_502'],"['LKD_N_281', 'LKD_N_282']","[50.817272481115694, 50.7860148129456]","[6.1801334127297975, 6.2409609112845335]","['DE', 'DE']",0.0,50.801643647030645,5.511140508889171,6.210547162007165,68.0,0.0,1983.0,11.179166666666667,500.0 -LKD_PS_380,PS_503,['LKD_503'],"['LKD_N_282', 'LKD_N_283']","[50.7860148129456, 50.751293250894264]","[6.2409609112845335, 6.159900924973606]","['DE', 'DE']",0.0,50.76865403191994,6.8871435309037805,6.2004309181290695,99.0,0.0,1983.0,11.179166666666667,500.0 -LKD_PS_381,PS_504,['LKD_504'],"['LKD_N_281', 'LKD_N_285']","[50.817272481115694, 50.76222213248271]","[6.1801334127297975, 5.98497124325856]","['DE', 'NL']",0.0,50.7897473067992,15.027139419342095,6.082552327994179,99.0,0.0,1983.0,16.491666666666667,350.0 -LKD_PS_382,PS_505,['LKD_505'],"['LKD_N_283', 'LKD_N_284']","[50.751293250894264, 50.66595267382933]","[6.159900924973606, 6.113742485619246]","['DE', 'BE']",0.0,50.7086229623618,10.033791119765288,6.136821705296426,99.0,0.0,1983.0,11.179166666666667,1000.0 -LKD_PS_383,PS_506,['LKD_506'],"['LKD_N_283', 'LKD_N_285']","[50.751293250894264, 50.76222213248271]","[6.159900924973606, 5.98497124325856]","['DE', 'NL']",0.0,50.75675769168849,12.368900540742294,6.072436084116083,99.0,0.0,1983.0,11.179166666666667,700.0 -LKD_PS_384,PS_507,['LKD_507'],"['LKD_N_307', 'LKD_N_352']","[51.76610082754029, 51.7778191232721]","[6.865762713558444, 6.649206588557996]","['DE', 'DE']",0.0,51.7719599754062,14.962051918585148,6.75748465105822,70.0,0.0,1983.0,7.441666666666666,500.0 -LKD_PS_385,PS_508,['LKD_508'],"['LKD_N_352', 'LKD_N_347']","[51.7778191232721, 51.76943441773103]","[6.649206588557996, 6.552755154292132]","['DE', 'DE']",0.0,51.773626770501565,6.703529150707084,6.6009808714250635,68.0,0.0,1983.0,7.441666666666666,350.0 -LKD_PS_386,PS_509,['LKD_509'],"['LKD_N_352', 'LKD_N_353']","[51.7778191232721, 51.64284866193249]","[6.649206588557996, 6.629241447660377]","['DE', 'DE']",0.0,51.71033389260229,15.07567255533495,6.639224018109186,68.0,0.0,1983.0,7.441666666666666,225.0 -LKD_PS_387,PS_510,['LKD_510'],"['LKD_N_353', 'LKD_N_277']","[51.64284866193249, 51.569554089597624]","[6.629241447660377, 6.706151449706333]","['DE', 'DE']",0.0,51.60620137576505,9.730975889586254,6.667696448683355,68.0,0.0,1983.0,7.441666666666666,225.0 -LKD_PS_388,PS_511,['LKD_511'],"['LKD_N_353', 'LKD_N_348']","[51.64284866193249, 51.703948298057306]","[6.629241447660377, 6.50141551534648]","['DE', 'DE']",0.0,51.6733984799949,11.132409709601873,6.565328481503428,68.0,0.0,1983.0,7.441666666666666,225.0 -LKD_PS_389,PS_512,['LKD_512'],"['LKD_N_347', 'LKD_N_326']","[51.76943441773103, 51.80289494376811]","[6.552755154292132, 6.123468395929773]","['DE', 'DE']",0.0,51.786164680749565,29.771257644702555,6.338111775110953,55.18036349750499,0.0,1983.0,13.65,350.0 -LKD_PS_390,PS_513,['LKD_513'],"['LKD_N_348', 'LKD_N_326']","[51.703948298057306, 51.80289494376811]","[6.50141551534648, 6.123468395929773]","['DE', 'DE']",0.0,51.753421620912704,28.255621771819314,6.312441955638127,51.01163410922885,0.0,1983.0,13.65,225.0 -LKD_PS_392,NETG,['LKD_515'],"['LKD_N_326', 'LKD_N_327']","[51.80289494376811, 51.55171620767763]","[6.123468395929773, 6.403012356758503]","['DE', 'DE']",0.0,51.67730557572287,33.945700948053435,6.263240376344138,76.85775631654093,0.0,1983.0,13.65,1000.0 -LKD_PS_394,NETG,['LKD_517'],"['LKD_N_327', 'LKD_N_351']","[51.55171620767763, 51.47904130571957]","[6.403012356758503, 6.387552106419675]","['DE', 'DE']",0.0,51.515378756698595,8.154144171584852,6.395282231589089,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_395,PS_518,['LKD_518'],"['LKD_N_309', 'LKD_N_351']","[51.47837819426403, 51.47904130571957]","[6.335239910537509, 6.387552106419675]","['DE', 'DE']",0.0,51.4787097499918,3.6246537873187674,6.361396008478592,55.18036349750499,0.0,1983.0,0.197,350.0 -LKD_PS_396,PS_519,['LKD_519'],"['LKD_N_351', 'LKD_N_346']","[51.47904130571957, 51.44639426921549]","[6.387552106419675, 6.5871827137700745]","['DE', 'DE']",0.0,51.462717787467525,14.302815993672441,6.487367410094874,55.18036349750499,0.0,1983.0,0.197,350.0 -LKD_PS_397,PS_520,['LKD_520'],"['LKD_N_327', 'LKD_N_354']","[51.55171620767763, 51.389550104956044]","[6.403012356758503, 6.977259083514942]","['DE', 'DE']",0.0,51.470633156316836,43.685324774228995,6.690135720136722,70.0,0.0,1983.0,0.197,700.0 -LKD_PS_399,NETG,['LKD_522'],"['LKD_N_351', 'LKD_N_328']","[51.47904130571957, 51.34925808979556]","[6.387552106419675, 6.506475250666122]","['DE', 'DE']",0.0,51.414149697757566,16.626896274121826,6.447013678542898,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_400,PS_523,['LKD_523'],"['LKD_N_328', 'LKD_N_329']","[51.34925808979556, 51.320544025712294]","[6.506475250666122, 6.595103927269362]","['DE', 'DE']",0.0,51.334901057753925,6.93791282355777,6.550789588967742,66.8528057846782,0.0,1983.0,0.197,700.0 -LKD_PS_401,PS_524,['LKD_524'],"['LKD_N_329', 'LKD_N_345']","[51.320544025712294, 51.44251290573816]","[6.595103927269362, 6.703312510372679]","['DE', 'DE']",0.0,51.381528465725225,15.507513459379568,6.64920821882102,60.182838763436365,0.0,1983.0,0.197,500.0 -LKD_PS_402,PS_525,['LKD_525'],"['LKD_N_329', 'LKD_N_330']","[51.320544025712294, 51.00522925330046]","[6.595103927269362, 7.126491398378709]","['DE', 'DE']",0.0,51.16288663950638,51.02875652229872,6.8607976628240355,66.8528057846782,0.0,1983.0,0.197,700.0 -LKD_PS_403,PS_526,['LKD_526'],"['LKD_N_330', 'LKD_N_331']","[51.00522925330046, 50.95630218294193]","[7.126491398378709, 7.284367481188874]","['DE', 'DE']",0.0,50.9807657181212,12.32262922762003,7.205429439783792,76.85775631654093,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_404,PS_527,['LKD_527'],"['LKD_N_331', 'LKD_N_332']","[50.95630218294193, 50.93153279392239]","[7.284367481188874, 7.488252515415454]","['DE', 'DE']",0.0,50.94391748843216,14.552212548311212,7.386309998302163,55.18036349750499,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_405,PS_528,['LKD_528'],"['LKD_N_332', 'LKD_N_343']","[50.93153279392239, 51.023825767408816]","[7.488252515415454, 7.775844703580595]","['DE', 'DE']",0.0,50.977679280665605,22.60620230408037,7.632048609498025,55.18036349750499,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_406,PS_529,['LKD_529'],"['LKD_N_331', 'LKD_N_332']","[50.95630218294193, 50.93153279392239]","[7.284367481188874, 7.488252515415454]","['DE', 'DE']",0.0,50.94391748843216,14.552212548311212,7.386309998302163,55.18036349750499,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_407,PS_530,['LKD_530'],"['LKD_N_330', 'LKD_N_331']","[51.00522925330046, 50.95630218294193]","[7.126491398378709, 7.284367481188874]","['DE', 'DE']",0.0,50.9807657181212,12.32262922762003,7.205429439783792,51.01163410922885,0.0,1983.0,19.470663935585154,225.0 -LKD_PS_408,PS_531,['LKD_531'],"['LKD_N_330', 'LKD_N_340']","[51.00522925330046, 50.957285319911655]","[7.126491398378709, 7.008494815893731]","['DE', 'DE']",0.0,50.98125728660606,9.834423639951464,7.067493107136221,55.18036349750499,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_409,PS_532,['LKD_532'],"['LKD_N_340', 'LKD_N_341']","[50.957285319911655, 50.914963394325994]","[7.008494815893731, 6.945082445774481]","['DE', 'DE']",0.0,50.93612435711883,6.474374522483555,6.976788630834106,55.18036349750499,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_410,PS_533,['LKD_533'],"['LKD_N_341', 'LKD_N_310']","[50.914963394325994, 50.89461968146965]","[6.945082445774481, 6.759382538450062]","['DE', 'DE']",0.0,50.90479153789782,13.220589144170903,6.852232492112272,60.182838763436365,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_411,PS_534,['LKD_534'],"['LKD_N_310', 'LKD_N_350']","[50.89461968146965, 50.79310317482686]","[6.759382538450062, 6.557447607294139]","['DE', 'DE']",0.0,50.84386142814826,18.128791726386005,6.658415072872101,55.18036349750499,0.0,1983.0,11.179166666666667,350.0 -LKD_PS_412,PS_535,['LKD_535'],"['LKD_N_350', 'LKD_N_342']","[50.79310317482686, 50.69619274304463]","[6.557447607294139, 6.5403155724060005]","['DE', 'DE']",0.0,50.744647958935744,10.846565028731009,6.54888158985007,51.01163410922885,0.0,1983.0,11.179166666666667,225.0 -LKD_PS_413,PS_536,['LKD_536'],"['LKD_N_282', 'LKD_N_325']","[50.7860148129456, 50.87935457895904]","[6.2409609112845335, 6.063906677748991]","['DE', 'NL']",0.0,50.832684695952324,16.201861528560478,6.152433794516762,55.18036349750499,0.0,1983.0,0.079,350.0 -LKD_PS_415,PS_538,['LKD_538'],"['LKD_N_338', 'LKD_N_339']","[51.2766001721398, 51.171604061727685]","[6.477783342262684, 6.524753685082474]","['DE', 'DE']",0.0,51.22410211693374,12.128391088395441,6.501268513672579,55.18036349750499,0.0,1983.0,0.197,350.0 -LKD_PS_416,PS_541,['LKD_541'],"['LKD_N_329', 'LKD_N_337']","[51.320544025712294, 51.252719782652036]","[6.595103927269362, 6.539895858105908]","['DE', 'DE']",0.0,51.286631904182165,8.465418888953943,6.567499892687635,60.182838763436365,0.0,1983.0,0.197,500.0 -LKD_PS_417,NETG,['LKD_542'],"['LKD_N_338', 'LKD_N_337']","[51.2766001721398, 51.252719782652036]","[6.477783342262684, 6.539895858105908]","['DE', 'DE']",0.0,51.26465997739592,5.073815929181894,6.508839600184295,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_418,NETG,['LKD_543'],"['LKD_N_337', 'LKD_N_336']","[51.252719782652036, 51.17800699869613]","[6.539895858105908, 6.606521183440065]","['DE', 'DE']",0.0,51.215363390674085,9.518898855308786,6.573208520772987,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_419,PS_544,['LKD_544'],"['LKD_N_339', 'LKD_N_336']","[51.171604061727685, 51.17800699869613]","[6.524753685082474, 6.606521183440065]","['DE', 'DE']",0.0,51.174805530211906,5.746373537420678,6.565637434261269,55.18036349750499,0.0,1983.0,0.197,350.0 -LKD_PS_420,PS_545,['LKD_545'],"['LKD_N_339', 'LKD_N_349']","[51.171604061727685, 51.112700296406445]","[6.524753685082474, 6.47811903259205]","['DE', 'DE']",0.0,51.14215217906707,7.31558478892132,6.501436358837262,55.18036349750499,0.0,1983.0,0.197,350.0 -LKD_PS_421,NETG,['LKD_546'],"['LKD_N_336', 'LKD_N_335']","[51.17800699869613, 51.09760876048905]","[6.606521183440065, 6.748368012248878]","['DE', 'DE']",0.0,51.137807879592586,13.340705329319734,6.677444597844471,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_422,NETG,['LKD_547'],"['LKD_N_336', 'LKD_N_335']","[51.17800699869613, 51.09760876048905]","[6.606521183440065, 6.748368012248878]","['DE', 'DE']",0.0,51.137807879592586,13.340705329319734,6.677444597844471,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_423,PS_548,['LKD_548'],"['LKD_N_344', 'LKD_N_335']","[51.170186158546414, 51.09760876048905]","[6.799459495179675, 6.748368012248878]","['DE', 'DE']",0.0,51.13389745951773,8.825317104837048,6.773913753714276,60.182838763436365,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_424,PS_549,['LKD_549'],"['LKD_N_335', 'LKD_N_334']","[51.09760876048905, 51.055590131233416]","[6.748368012248878, 6.772679457166312]","['DE', 'DE']",0.0,51.076599445861234,4.972947529650273,6.760523734707595,76.85775631654093,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_425,NETG,['LKD_550'],"['LKD_N_334', 'LKD_N_333']","[51.055590131233416, 51.06118985792035]","[6.772679457166312, 6.8990961850552734]","['DE', 'DE']",0.0,51.058389994576885,8.859848864199902,6.835887821110793,76.85775631654093,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_426,NETG,['LKD_551'],"['LKD_N_334', 'LKD_N_333']","[51.055590131233416, 51.06118985792035]","[6.772679457166312, 6.8990961850552734]","['DE', 'DE']",0.0,51.058389994576885,8.859848864199902,6.835887821110793,76.85775631654093,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_427,PS_552,['LKD_552'],"['LKD_N_324', 'LKD_N_333']","[51.099863971502906, 51.06118985792035]","[6.89157023598651, 6.8990961850552734]","['DE', 'DE']",0.0,51.080526914711626,4.333742008697219,6.895333210520892,47.17640307201479,0.0,1983.0,19.470663935585154,110.0 -LKD_PS_428,PS_553,['LKD_553'],"['LKD_N_333', 'LKD_N_330']","[51.06118985792035, 51.00522925330046]","[6.8990961850552734, 7.126491398378709]","['DE', 'DE']",0.0,51.033209555610405,17.080619734463657,7.012793791716991,76.85775631654093,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_429,NETG,['LKD_554'],"['LKD_N_333', 'LKD_N_340']","[51.06118985792035, 50.957285319911655]","[6.8990961850552734, 7.008494815893731]","['DE', 'DE']",0.0,51.009237588916,13.863243925833459,6.953795500474502,60.182838763436365,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_430,PS_555,['LKD_555'],"['LKD_N_334', 'LKD_N_310']","[51.055590131233416, 50.89461968146965]","[6.772679457166312, 6.759382538450062]","['DE', 'DE']",0.0,50.97510490635153,17.92891885830868,6.766030997808187,60.182838763436365,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_431,PS_556,['LKD_556'],"['LKD_N_103', 'LKD_N_72']","[49.264875761129794, 49.57378262030091]","[10.084668561662204, 10.48435427524171]","['DE', 'DE']",0.0,49.41932919071535,44.91039935900215,10.284511418451956,68.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_433,PS_559,['LKD_559'],"['LKD_N_798', 'LKD_N_13']","[48.125529493836666, 48.092376053638695]","[12.360185701709078, 12.420097997783367]","['DE', 'DE']",0.0,48.108952773737684,5.779140125241882,12.390141849746222,100.0,0.0,1983.0,7.274999999999999,800.0 -LKD_PS_434,PS_560,['LKD_560'],"['LKD_N_798', 'LKD_N_799']","[48.125529493836666, 47.9208242112486]","[12.360185701709078, 12.362052007611215]","['DE', 'DE']",0.0,48.02317685254263,22.769757748197804,12.361118854660146,100.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_437,PS_563,['LKD_563'],"['LKD_N_801', 'LKD_N_807']","[51.664159486368156, 51.88730739209967]","[7.602816535903568, 7.167652736578986]","['DE', 'DE']",0.0,51.77573343923392,38.897348681012204,7.385234636241277,67.0,0.0,1983.0,3.9,800.0 -LKD_PS_438,PS_564,['LKD_564'],"['LKD_N_808', 'LKD_N_807']","[51.937960617529406, 51.88730739209967]","[6.934246610831669, 7.167652736578986]","['DE', 'DE']",0.0,51.912634004814535,16.9769686900217,7.050949673705327,67.0,0.0,1983.0,7.441666666666666,350.0 -LKD_PS_439,METG,['LKD_565'],"['LKD_N_270', 'LKD_N_801']","[50.32395256766433, 51.664159486368156]","[7.899800650672305, 7.602816535903568]","['DE', 'DE']",0.0,50.99405602701624,150.51355085264885,7.751308593287937,100.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_440,PS_566,['LKD_566'],"['LKD_N_270', 'LKD_N_803']","[50.32395256766433, 50.41193650859204]","[7.899800650672305, 8.641864155312868]","['DE', 'DE']",0.0,50.367944538128185,53.549895945124,8.270832402992587,80.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_441,DEUDAN,['LKD_567'],"['LKD_N_208', 'LKD_N_232']","[54.80165843093199, 54.15361223058414]","[9.271240102792843, 9.369836035531572]","['DE', 'DE']",0.0,54.47763533075806,72.36313702339146,9.320538069162208,84.0,0.0,1983.0,6.9375,500.0 -LKD_PS_442,PS_568,['LKD_568'],"['LKD_N_200', 'LKD_N_239']","[53.511550393304, 53.07469604597906]","[7.904586161934975, 8.200764853862344]","['DE', 'DE']",0.0,53.29312321964153,52.42940068417342,8.052675507898659,84.0,0.0,1983.0,17.6125,1000.0 -LKD_PS_443,PS_569,['LKD_569'],"['LKD_N_200', 'LKD_N_804']","[53.511550393304, 53.472621227282595]","[7.904586161934975, 7.275472329809927]","['DE', 'DE']",0.0,53.4920858102933,41.85566543796598,7.590029245872451,84.0,0.0,1983.0,61.73158333333333,1000.0 -LKD_PS_446,PS_572,['LKD_572'],"['LKD_N_222', 'LKD_N_804']","[53.41271920575848, 53.472621227282595]","[7.093250747542649, 7.275472329809927]","['DE', 'DE']",0.0,53.44267021652054,13.789052389529692,7.1843615386762885,84.0,0.0,1983.0,61.73158333333333,1000.0 -LKD_PS_447,PS_573,['LKD_573'],"['LKD_N_804', 'LKD_N_55']","[53.472621227282595, 53.18327612885241]","[7.275472329809927, 7.230313945642903]","['DE', 'DE']",0.0,53.3279486780675,32.323313651971326,7.252893137726415,84.0,0.0,1983.0,12.420833333333334,1000.0 -LKD_PS_448,PS_574,['LKD_574'],"['LKD_N_55', 'LKD_N_801']","[53.18327612885241, 51.664159486368156]","[7.230313945642903, 7.602816535903568]","['DE', 'DE']",0.0,52.42371780761029,170.84909213752152,7.416565240773236,84.0,0.0,1983.0,12.420833333333334,1200.0 -LKD_PS_449,PS_576,['LKD_576'],"['LKD_N_801', 'LKD_N_805']","[51.664159486368156, 52.402358890168635]","[7.602816535903568, 8.25316592287593]","['DE', 'DE']",0.0,52.033259188268396,93.39347120410231,7.9279912293897485,80.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_450,PS_577,['LKD_577'],"['LKD_N_801', 'LKD_N_805']","[51.664159486368156, 52.402358890168635]","[7.602816535903568, 8.25316592287593]","['DE', 'DE']",0.0,52.033259188268396,93.39347120410231,7.9279912293897485,80.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_451,PS_578,['LKD_578'],"['LKD_N_805', 'LKD_N_247']","[52.402358890168635, 52.3681322072938]","[8.25316592287593, 9.911803219949972]","['DE', 'DE']",0.0,52.38524554873122,112.66514967538689,9.082484571412952,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_452,PS_580,['LKD_580'],"['LKD_N_805', 'LKD_N_239']","[52.402358890168635, 53.07469604597906]","[8.25316592287593, 8.200764853862344]","['DE', 'DE']",0.0,52.73852746807385,74.86715932341383,8.226965388369138,84.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_454,NETG,['LKD_585'],"['LKD_N_334', 'LKD_N_335']","[51.055590131233416, 51.09760876048905]","[6.772679457166312, 6.748368012248878]","['DE', 'DE']",0.0,51.076599445861234,4.972947529650273,6.760523734707595,76.85775631654093,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_455,NETG,['LKD_586'],"['LKD_N_336', 'LKD_N_337']","[51.17800699869613, 51.252719782652036]","[6.606521183440065, 6.539895858105908]","['DE', 'DE']",0.0,51.215363390674085,9.518898855308786,6.573208520772987,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_456,NETG,['LKD_587'],"['LKD_N_337', 'LKD_N_338']","[51.252719782652036, 51.2766001721398]","[6.539895858105908, 6.477783342262684]","['DE', 'DE']",0.0,51.26465997739592,5.073815929181894,6.508839600184295,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_457,NETG,['LKD_588'],"['LKD_N_338', 'LKD_N_328']","[51.2766001721398, 51.34925808979556]","[6.477783342262684, 6.506475250666122]","['DE', 'DE']",0.0,51.31292913096768,8.324283265045594,6.492129296464403,76.85775631654093,0.0,1983.0,0.197,1000.0 -LKD_PS_459,PS_590,['LKD_590'],"['LKD_N_808', 'LKD_N_809']","[51.937960617529406, 52.536250849620224]","[6.934246610831669, 7.346966079480298]","['DE', 'DE']",0.0,52.237105733574815,72.24194058378447,7.140606345155984,67.0,0.0,1983.0,3.9,350.0 -LKD_PS_460,DE-DK,['LKD_593'],"['LKD_N_208', 'LKD_N_930']","[54.80165843093199, 54.80609]","[9.271240102792843, 9.29094]","['DE', 'DK']",0.0,54.803874215465996,1.35574994019083,9.281090051396422,76.80652874754169,0.0,1983.0,6.9375,998.4639333647048 -LKD_PS_462,PS_595,['LKD_595'],"['LKD_N_357', 'LKD_N_355']","[50.875591754992456, 50.886907723488015]","[14.763474595607521, 14.768665756286975]","['DE', 'DE']",0.0,50.88124973924023,1.3103349076498358,14.766070175947249,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_463,PS_596,['LKD_596'],"['LKD_N_356', 'LKD_N_355']","[50.89084717967213, 50.886907723488015]","[14.747196796115443, 14.768665756286975]","['DE', 'DE']",0.0,50.88887745158007,1.5688424834198094,14.757931276201209,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_464,PS_597,['LKD_597'],"['LKD_N_355', 'LKD_N_358']","[50.886907723488015, 51.12225852749414]","[14.768665756286975, 14.836874774076145]","['DE', 'DE']",0.0,51.00458312549108,26.609795004420707,14.802770265181561,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_465,PS_601,['LKD_601'],"['LKD_N_358', 'LKD_N_366']","[51.12225852749414, 51.13677280587728]","[14.836874774076145, 14.915376352572352]","['DE', 'DE']",0.0,51.129515666685705,5.712565470230517,14.876125563324248,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_466,PS_603,['LKD_603'],"['LKD_N_366', 'LKD_N_365']","[51.13677280587728, 51.146498372671644]","[14.915376352572352, 14.978092565310606]","['DE', 'DE']",0.0,51.14163558927446,4.508377939360855,14.946734458941478,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_467,PS_605,['LKD_605'],"['LKD_N_366', 'LKD_N_363']","[51.13677280587728, 51.23838030378934]","[14.915376352572352, 14.838287428591306]","['DE', 'DE']",0.0,51.18757655483331,12.514535503863176,14.87683189058183,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_468,PS_609,['LKD_609'],"['LKD_N_363', 'LKD_N_933']","[51.23838030378934, 51.12]","[14.838287428591306, 17.03]","['DE', 'PL']",0.0,51.17919015189467,153.3852845985355,15.934143714295654,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_469,PS_612,['LKD_612'],"['LKD_N_363', 'LKD_N_362']","[51.23838030378934, 51.25630378235809]","[14.838287428591306, 14.819734387434446]","['DE', 'DE']",0.0,51.247342043073715,2.375540675019155,14.829010908012876,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_470,PS_613,['LKD_613'],"['LKD_N_362', 'LKD_N_360']","[51.25630378235809, 51.32702033664994]","[14.819734387434446, 14.742041110828579]","['DE', 'DE']",0.0,51.29166205950401,9.543380970544966,14.780887749131512,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_471,PS_616,['LKD_616'],"['LKD_N_362', 'LKD_N_367']","[51.25630378235809, 51.34461714390011]","[14.819734387434446, 14.670056095816602]","['DE', 'DE']",0.0,51.3004604631291,14.312501008196923,14.744895241625525,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_472,PS_617,['LKD_617'],"['LKD_N_360', 'LKD_N_359']","[51.32702033664994, 51.35214743831197]","[14.742041110828579, 14.677881076426402]","['DE', 'DE']",0.0,51.339583887480956,5.261837189481832,14.709961093627491,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_473,PS_618,['LKD_618'],"['LKD_N_367', 'LKD_N_359']","[51.34461714390011, 51.35214743831197]","[14.670056095816602, 14.677881076426402]","['DE', 'DE']",0.0,51.348382291106034,0.9985413442836646,14.673968586121502,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_474,PS_619,['LKD_619'],"['LKD_N_360', 'LKD_N_361']","[51.32702033664994, 51.383194810513736]","[14.742041110828579, 14.77907481797945]","['DE', 'DE']",0.0,51.35510757358183,6.757100852424305,14.760557964404015,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_475,PS_620,['LKD_620'],"['LKD_N_367', 'LKD_N_370']","[51.34461714390011, 51.398990254310405]","[14.670056095816602, 14.512193007599208]","['DE', 'DE']",0.0,51.37180369910526,12.519256058741858,14.591124551707905,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_476,PS_621,['LKD_621'],"['LKD_N_359', 'LKD_N_372']","[51.35214743831197, 51.40906243777531]","[14.677881076426402, 14.521786053806428]","['DE', 'DE']",0.0,51.38060493804364,12.55030096279299,14.599833565116416,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_477,PS_623,['LKD_623'],"['LKD_N_372', 'LKD_N_371']","[51.40906243777531, 51.4188473296217]","[14.521786053806428, 14.496846326415175]","['DE', 'DE']",0.0,51.41395488369851,2.0440003769177624,14.509316190110802,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_478,PS_624,['LKD_624'],"['LKD_N_370', 'LKD_N_369']","[51.398990254310405, 51.40555350528962]","[14.512193007599208, 14.4936548641196]","['DE', 'DE']",0.0,51.40227187980001,1.4790865069418686,14.502923935859403,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_479,PS_625,['LKD_625'],"['LKD_N_372', 'LKD_N_370']","[51.40906243777531, 51.398990254310405]","[14.521786053806428, 14.512193007599208]","['DE', 'DE']",0.0,51.404026346042855,1.3031545537535805,14.51698953070282,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_480,PS_626,['LKD_626'],"['LKD_N_371', 'LKD_N_369']","[51.4188473296217, 51.40555350528962]","[14.496846326415175, 14.4936548641196]","['DE', 'DE']",0.0,51.41220041745566,1.4951543916919818,14.495250595267388,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_481,PS_627,['LKD_627'],"['LKD_N_371', 'LKD_N_406']","[51.4188473296217, 51.513549263716385]","[14.496846326415175, 14.364409557960037]","['DE', 'DE']",0.0,51.46619829666904,13.970535143700426,14.430627942187606,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_482,PS_628,['LKD_628'],"['LKD_N_369', 'LKD_N_401']","[51.40555350528962, 51.48034056769879]","[14.4936548641196, 14.361987436353049]","['DE', 'DE']",0.0,51.4429470364942,12.350101715699996,14.427821150236324,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_483,PS_629,['LKD_629'],"['LKD_N_401', 'LKD_N_404']","[51.48034056769879, 51.50105244777116]","[14.361987436353049, 14.332912125550203]","['DE', 'DE']",0.0,51.490696507734974,3.0597681551269535,14.347449780951626,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_484,PS_630,['LKD_630'],"['LKD_N_401', 'LKD_N_402']","[51.48034056769879, 51.49074164490758]","[14.361987436353049, 14.323271736510616]","['DE', 'DE']",0.0,51.48554110630319,2.9205266750691377,14.342629586431833,25.0,0.0,1983.0,11.10023465003349,400.0 -LKD_PS_485,PS_631,['LKD_631'],"['LKD_N_402', 'LKD_N_404']","[51.49074164490758, 51.50105244777116]","[14.323271736510616, 14.332912125550203]","['DE', 'DE']",0.0,51.495897046339365,1.3270168531086366,14.32809193103041,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_486,PS_632,['LKD_632'],"['LKD_N_402', 'LKD_N_403']","[51.49074164490758, 51.50528263353187]","[14.323271736510616, 14.273526319955588]","['DE', 'DE']",0.0,51.498012139219725,3.805449613546471,14.298399028233103,25.0,0.0,1983.0,11.10023465003349,400.0 -LKD_PS_487,PS_633,['LKD_633'],"['LKD_N_403', 'LKD_N_405']","[51.50528263353187, 51.52605380857892]","[14.273526319955588, 14.329981484747945]","['DE', 'DE']",0.0,51.51566822105539,4.539628435971845,14.301753902351766,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_488,PS_634,['LKD_634'],"['LKD_N_405', 'LKD_N_404']","[51.52605380857892, 51.50105244777116]","[14.329981484747945, 14.332912125550203]","['DE', 'DE']",0.0,51.51355312817504,2.7882867250256185,14.331446805149074,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_489,PS_635,['LKD_635'],"['LKD_N_404', 'LKD_N_406']","[51.50105244777116, 51.513549263716385]","[14.332912125550203, 14.364409557960037]","['DE', 'DE']",0.0,51.50730085574377,2.5859577449185758,14.34866084175512,25.0,0.0,1983.0,11.10023465003349,400.0 -LKD_PS_490,PS_636,['LKD_636'],"['LKD_N_406', 'LKD_N_407']","[51.513549263716385, 51.523855482478375]","[14.364409557960037, 14.364399627730062]","['DE', 'DE']",0.0,51.51870237309738,1.1463592001642684,14.36440459284505,25.0,0.0,1983.0,4.589900761271087,400.0 -LKD_PS_491,PS_637,['LKD_637'],"['LKD_N_405', 'LKD_N_407']","[51.52605380857892, 51.523855482478375]","[14.329981484747945, 14.364399627730062]","['DE', 'DE']",0.0,51.52495464552865,2.3944008009278495,14.347190556239003,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_492,PS_638,['LKD_638'],"['LKD_N_406', 'LKD_N_408']","[51.513549263716385, 51.69548765882818]","[14.364409557960037, 14.556962468414548]","['DE', 'DE']",0.0,51.60451846127228,24.217400934253895,14.460686013187292,25.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_493,PS_640,['LKD_640'],"['LKD_N_408', 'LKD_N_409']","[51.69548765882818, 51.72644896465354]","[14.556962468414548, 14.541798613521927]","['DE', 'DE']",0.0,51.71096831174086,3.5989108762263586,14.549380540968237,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_494,PS_641,['LKD_641'],"['LKD_N_409', 'LKD_N_410']","[51.72644896465354, 51.89319656027256]","[14.541798613521927, 14.659416352637525]","['DE', 'DE']",0.0,51.80982276246305,20.234332790468017,14.600607483079726,25.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_495,PS_642,['LKD_642'],"['LKD_N_410', 'LKD_N_411']","[51.89319656027256, 51.908106305140706]","[14.659416352637525, 14.715483766786734]","['DE', 'PL']",0.0,51.90065143270663,4.190164727364891,14.68745005971213,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_496,PS_643,['LKD_643'],"['LKD_N_410', 'LKD_N_412']","[51.89319656027256, 52.14250677689274]","[14.659416352637525, 14.586065160225177]","['DE', 'DE']",0.0,52.01785166858265,28.18163605817052,14.622740756431352,25.0,0.0,1983.0,38.8125,600.0 -LKD_PS_498,PS_647,['LKD_647'],"['LKD_N_413', 'LKD_N_412']","[52.15957607487379, 52.14250677689274]","[14.625475440238667, 14.586065160225177]","['DE', 'DE']",0.0,52.151041425883264,3.292295727508635,14.60577030023192,63.0,0.0,1983.0,38.8125,600.0 -LKD_PS_499,PS_649,['LKD_649'],"['LKD_N_358', 'LKD_N_368']","[51.12225852749414, 51.15717090746996]","[14.836874774076145, 14.452441711822972]","['DE', 'DE']",0.0,51.13971471748205,27.108445391854193,14.644658242949559,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_500,PS_653,['LKD_653'],"['LKD_N_368', 'LKD_N_369']","[51.15717090746996, 51.40555350528962]","[14.452441711822972, 14.4936548641196]","['DE', 'DE']",0.0,51.28136220637979,27.77595116635367,14.473048287971286,63.0,0.0,1983.0,9.298267234393897,750.0 -LKD_PS_501,PS_655,['LKD_655'],"['LKD_N_368', 'LKD_N_374']","[51.15717090746996, 51.14188303648825]","[14.452441711822972, 14.411795392162324]","['DE', 'DE']",0.0,51.14952697197911,3.306759690731778,14.432118551992648,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_502,PS_657,['LKD_657'],"['LKD_N_374', 'LKD_N_373']","[51.14188303648825, 51.17055885666466]","[14.411795392162324, 14.401765077925306]","['DE', 'DE']",0.0,51.156220946576454,3.265461248332106,14.406780235043815,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_503,PS_658,['LKD_658'],"['LKD_N_374', 'LKD_N_376']","[51.14188303648825, 51.07779309696466]","[14.411795392162324, 14.169343339947682]","['DE', 'DE']",0.0,51.109838066726454,18.370766883459314,14.290569366055003,63.0,0.0,1983.0,9.298267234393897,750.0 -LKD_PS_504,PS_660,['LKD_660'],"['LKD_N_375', 'LKD_N_376']","[51.02356437295131, 51.07779309696466]","[14.190610625360545, 14.169343339947682]","['DE', 'DE']",0.0,51.050678734957984,6.2124554809338814,14.179976982654114,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_505,PS_661,['LKD_661'],"['LKD_N_376', 'LKD_N_377']","[51.07779309696466, 50.9790299071368]","[14.169343339947682, 13.729357381630479]","['DE', 'DE']",0.0,51.02841150205073,32.68136203043348,13.94935036078908,63.0,0.0,1983.0,3.96,750.0 -LKD_PS_506,PS_669,['LKD_669'],"['LKD_N_377', 'LKD_N_378']","[50.9790299071368, 50.991783028413145]","[13.729357381630479, 13.706868195015577]","['DE', 'DE']",0.0,50.98540646777497,2.119425418444711,13.718112788323028,63.0,0.0,1983.0,3.96,600.0 -LKD_PS_507,PS_670,['LKD_670'],"['LKD_N_377', 'LKD_N_379']","[50.9790299071368, 50.97676904043177]","[13.729357381630479, 13.70713717241843]","['DE', 'DE']",0.0,50.977899473784284,1.5763262905262658,13.718247277024453,63.0,0.0,1983.0,3.96,600.0 -LKD_PS_508,PS_671,['LKD_671'],"['LKD_N_379', 'LKD_N_380']","[50.97676904043177, 50.91915864131099]","[13.70713717241843, 13.492130127133532]","['DE', 'DE']",0.0,50.94796384087138,16.37322497940564,13.599633649775981,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_509,PS_672,['LKD_672'],"['LKD_N_381', 'LKD_N_380']","[50.93801297823346, 50.91915864131099]","[13.474712460549263, 13.492130127133532]","['DE', 'DE']",0.0,50.92858580977223,2.426763544087945,13.483421293841397,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_510,PS_673,['LKD_673'],"['LKD_N_380', 'LKD_N_440']","[50.91915864131099, 50.93132451030158]","[13.492130127133532, 13.388213784323726]","['DE', 'DE']",0.0,50.92524157580628,7.410376749770448,13.44017195572863,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_511,PS_674,['LKD_674'],"['LKD_N_379', 'LKD_N_382']","[50.97676904043177, 51.01550979238516]","[13.70713717241843, 13.564966896621016]","['DE', 'DE']",0.0,50.99613941640847,10.84543447132681,13.636052034519722,63.0,0.0,1983.0,3.0083333333333333,600.0 -LKD_PS_512,PS_677,['LKD_677'],"['LKD_N_383', 'LKD_N_382']","[50.981770570082844, 51.01550979238516]","[13.493317694698062, 13.564966896621016]","['DE', 'DE']",0.0,50.998640181234,6.264115522300531,13.52914229565954,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_513,PS_678,['LKD_678'],"['LKD_N_382', 'LKD_N_384']","[51.01550979238516, 51.09141504518765]","[13.564966896621016, 13.578213448831912]","['DE', 'DE']",0.0,51.05346241878641,8.4935770317914,13.571590172726463,63.0,0.0,1983.0,3.0083333333333333,600.0 -LKD_PS_514,PS_679,['LKD_679'],"['LKD_N_386', 'LKD_N_389']","[51.104732076453374, 51.12007239535477]","[13.58853250202163, 13.602217007690955]","['DE', 'DE']",0.0,51.11240223590407,1.955658567593336,13.595374754856293,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_515,PS_680,['LKD_680'],"['LKD_N_390', 'LKD_N_389']","[51.118405046949086, 51.12007239535477]","[13.572554646047157, 13.602217007690955]","['DE', 'DE']",0.0,51.11923872115193,2.0792884112332297,13.587385826869056,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_516,PS_681,['LKD_681'],"['LKD_N_389', 'LKD_N_391']","[51.12007239535477, 51.14358553597288]","[13.602217007690955, 13.623601475020225]","['DE', 'DE']",0.0,51.13182896566383,3.011327238338609,13.61290924135559,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_517,PS_682,['LKD_682'],"['LKD_N_392', 'LKD_N_391']","[51.161760137600965, 51.14358553597288]","[13.619301088762727, 13.623601475020225]","['DE', 'DE']",0.0,51.15267283678692,2.0437014396253845,13.621451281891476,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_518,PS_683,['LKD_683'],"['LKD_N_391', 'LKD_N_393']","[51.14358553597288, 51.20588092588878]","[13.623601475020225, 13.647214851181513]","['DE', 'DE']",0.0,51.174733230930826,7.122083767053858,13.63540816310087,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_519,PS_686,['LKD_686'],"['LKD_N_393', 'LKD_N_400']","[51.20588092588878, 51.3571139520692]","[13.647214851181513, 14.261061890620782]","['DE', 'DE']",0.0,51.28149743897899,45.900855562939824,13.954138370901148,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_520,PS_687,['LKD_687'],"['LKD_N_400', 'LKD_N_401']","[51.3571139520692, 51.48034056769879]","[14.261061890620782, 14.361987436353049]","['DE', 'DE']",0.0,51.418727259883994,15.390842442529827,14.311524663486916,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_521,PS_690,['LKD_690'],"['LKD_N_386', 'LKD_N_384']","[51.104732076453374, 51.09141504518765]","[13.58853250202163, 13.578213448831912]","['DE', 'DE']",0.0,51.09807356082051,1.6473172667477698,13.583372975426771,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_522,PS_692,['LKD_692'],"['LKD_N_402', 'LKD_N_427']","[51.49074164490758, 51.44467243131602]","[14.323271736510616, 14.212570004894063]","['DE', 'DE']",0.0,51.4677070381118,9.22481276308021,14.26792087070234,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_523,PS_693,['LKD_693'],"['LKD_N_427', 'LKD_N_426']","[51.44467243131602, 51.443090656578235]","[14.212570004894063, 14.143872144157523]","['DE', 'DE']",0.0,51.44388154394713,4.765894395604146,14.178221074525794,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_524,PS_694,['LKD_694'],"['LKD_N_426', 'LKD_N_425']","[51.443090656578235, 51.4432375017376]","[14.143872144157523, 14.039572631332435]","['DE', 'DE']",0.0,51.44316407915792,7.230948264648952,14.09172238774498,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_525,PS_695,['LKD_695'],"['LKD_N_875', 'LKD_N_425']","[51.428444026829, 51.4432375017376]","[14.038245022947313, 14.039572631332435]","['DE', 'DE']",0.0,51.4358407642833,1.6480487608848213,14.038908827139874,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_526,PS_696,['LKD_696'],"['LKD_N_425', 'LKD_N_423']","[51.4432375017376, 51.44096072980519]","[14.039572631332435, 13.867466905216396]","['DE', 'DE']",0.0,51.4420991157714,11.934797167628027,13.953519768274415,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_527,PS_697,['LKD_697'],"['LKD_N_424', 'LKD_N_423']","[51.426104623226195, 51.44096072980519]","[13.866861564544271, 13.867466905216396]","['DE', 'DE']",0.0,51.433532676515696,1.6529753224129027,13.867164234880335,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_528,PS_698,['LKD_698'],"['LKD_N_403', 'LKD_N_414']","[51.50528263353187, 51.451742240021495]","[14.273526319955588, 14.214184574688312]","['DE', 'DE']",0.0,51.47851243677668,7.23635789651572,14.24385544732195,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_529,PS_699,['LKD_699'],"['LKD_N_414', 'LKD_N_415']","[51.451742240021495, 51.451947005777136]","[14.214184574688312, 14.145503048095152]","['DE', 'DE']",0.0,51.451844622899316,4.76073747831828,14.179843811391732,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_530,PS_700,['LKD_700'],"['LKD_N_415', 'LKD_N_426']","[51.451947005777136, 51.443090656578235]","[14.145503048095152, 14.143872144157523]","['DE', 'DE']",0.0,51.44751883117769,0.9915567345388899,14.144687596126339,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_531,PS_701,['LKD_701'],"['LKD_N_414', 'LKD_N_427']","[51.451742240021495, 51.44467243131602]","[14.214184574688312, 14.212570004894063]","['DE', 'DE']",0.0,51.448207335668755,0.7942986507237283,14.213377289791188,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_532,PS_702,['LKD_702'],"['LKD_N_415', 'LKD_N_416']","[51.451947005777136, 51.45102250343868]","[14.145503048095152, 13.98489508553423]","['DE', 'DE']",0.0,51.451484754607904,11.133155512581132,14.065199066814692,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_533,PS_703,['LKD_703'],"['LKD_N_417', 'LKD_N_416']","[51.4824756901189, 51.45102250343868]","[13.985462998623678, 13.98489508553423]","['DE', 'DE']",0.0,51.46674909677879,3.498754023069913,13.985179042078954,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_534,PS_704,['LKD_704'],"['LKD_N_416', 'LKD_N_418']","[51.45102250343868, 51.45002663558802]","[13.98489508553423, 13.942874613137915]","['DE', 'DE']",0.0,51.45052456951335,2.9148528923923513,13.963884849336072,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_535,PS_705,['LKD_705'],"['LKD_N_419', 'LKD_N_418']","[51.47229468929404, 51.45002663558802]","[13.944736167729694, 13.942874613137915]","['DE', 'DE']",0.0,51.46116066244103,2.4802293159701763,13.943805390433806,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_536,PS_706,['LKD_706'],"['LKD_N_418', 'LKD_N_421']","[51.45002663558802, 51.45032248606342]","[13.942874613137915, 13.889811061872496]","['DE', 'DE']",0.0,51.450174560825715,3.678399612223679,13.916342837505205,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_537,PS_707,['LKD_707'],"['LKD_N_420', 'LKD_N_421']","[51.48403385199707, 51.45032248606342]","[13.891203885017008, 13.889811061872496]","['DE', 'DE']",0.0,51.46717816903025,3.750951432337256,13.890507473444753,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_538,PS_708,['LKD_708'],"['LKD_N_421', 'LKD_N_422']","[51.45032248606342, 51.449531541778136]","[13.889811061872496, 13.867816379300194]","['DE', 'DE']",0.0,51.44992701392078,1.52716903578222,13.878813720586345,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_539,PS_709,['LKD_709'],"['LKD_N_423', 'LKD_N_422']","[51.44096072980519, 51.449531541778136]","[13.867466905216396, 13.867816379300194]","['DE', 'DE']",0.0,51.44524613579166,0.9536377879384872,13.867641642258295,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_540,PS_710,['LKD_710'],"['LKD_N_393', 'LKD_N_428']","[51.20588092588878, 51.306168361110714]","[13.647214851181513, 13.668602966672108]","['DE', 'DE']",0.0,51.25602464349974,11.253877500202943,13.65790890892681,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_541,PS_712,['LKD_712'],"['LKD_N_428', 'LKD_N_724']","[51.306168361110714, 51.44220016963008]","[13.668602966672108, 13.7318737588468]","['DE', 'DE']",0.0,51.374184265370396,15.755639558155561,13.700238362759453,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_542,PS_713,['LKD_713'],"['LKD_N_428', 'LKD_N_432']","[51.306168361110714, 51.29983059854724]","[13.668602966672108, 13.589935915433706]","['DE', 'DE']",0.0,51.302999479828976,5.515825671392791,13.629269441052907,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_543,PS_714,['LKD_714'],"['LKD_N_432', 'LKD_N_431']","[51.29983059854724, 51.30120762553433]","[13.589935915433706, 13.572653961176185]","['DE', 'DE']",0.0,51.30051911204079,1.2115913750053038,13.581294938304946,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_544,PS_715,['LKD_715'],"['LKD_N_431', 'LKD_N_430']","[51.30120762553433, 51.302533587589586]","[13.572653961176185, 13.559017701209838]","['DE', 'DE']",0.0,51.30187060656196,0.9597042466904919,13.565835831193011,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_545,PS_716,['LKD_716'],"['LKD_N_430', 'LKD_N_429']","[51.302533587589586, 51.30713253725767]","[13.559017701209838, 13.513563860328567]","['DE', 'DE']",0.0,51.304833062423626,3.2019096228811326,13.536290780769203,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_546,PS_717,['LKD_717'],"['LKD_N_431', 'LKD_N_433']","[51.30120762553433, 51.272743118461094]","[13.572653961176185, 13.563474949041655]","['DE', 'DE']",0.0,51.28697537199771,3.2298512754746556,13.568064455108921,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_547,PS_718,['LKD_718'],"['LKD_N_432', 'LKD_N_433']","[51.29983059854724, 51.272743118461094]","[13.589935915433706, 13.563474949041655]","['DE', 'DE']",0.0,51.28628685850417,3.530765714878905,13.57670543223768,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_548,PS_719,['LKD_719'],"['LKD_N_433', 'LKD_N_395']","[51.272743118461094, 51.20148611536129]","[13.563474949041655, 13.552316846935012]","['DE', 'DE']",0.0,51.23711461691119,7.963905134009352,13.557895897988335,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_549,PS_720,['LKD_720'],"['LKD_N_433', 'LKD_N_434']","[51.272743118461094, 51.20542318499977]","[13.563474949041655, 13.417377987512324]","['DE', 'DE']",0.0,51.23908315173043,12.632408206015695,13.49042646827699,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_550,PS_723,['LKD_723'],"['LKD_N_434', 'LKD_N_435']","[51.20542318499977, 51.1162628270567]","[13.417377987512324, 13.366499800540229]","['DE', 'DE']",0.0,51.16084300602824,10.533212920196624,13.391938894026277,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_551,PS_724,['LKD_724'],"['LKD_N_434', 'LKD_N_435']","[51.20542318499977, 51.1162628270567]","[13.417377987512324, 13.366499800540229]","['DE', 'DE']",0.0,51.16084300602824,10.533212920196624,13.391938894026277,85.0,0.0,1983.0,11.9875,900.0 -LKD_PS_552,PS_726,['LKD_726'],"['LKD_N_395', 'LKD_N_399']","[51.20148611536129, 51.16764843192537]","[13.552316846935012, 13.487791496085096]","['DE', 'DE']",0.0,51.18456727364333,5.8655328429880145,13.520054171510054,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_553,PS_727,['LKD_727'],"['LKD_N_395', 'LKD_N_396']","[51.20148611536129, 51.16740601352097]","[13.552316846935012, 13.506717642670125]","['DE', 'DE']",0.0,51.18444606444113,4.947414939101831,13.52951724480257,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_554,PS_728,['LKD_728'],"['LKD_N_399', 'LKD_N_396']","[51.16764843192537, 51.16740601352097]","[13.487791496085096, 13.506717642670125]","['DE', 'DE']",0.0,51.167527222723166,1.3203013366481888,13.49725456937761,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_555,PS_729,['LKD_729'],"['LKD_N_393', 'LKD_N_394']","[51.20588092588878, 51.21298555105856]","[13.647214851181513, 13.62027594977089]","['DE', 'DE']",0.0,51.209433238473665,2.036733427656599,13.6337454004762,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_556,PS_730,['LKD_730'],"['LKD_N_394', 'LKD_N_395']","[51.21298555105856, 51.20148611536129]","[13.62027594977089, 13.552316846935012]","['DE', 'DE']",0.0,51.20723583320992,4.9054953952624265,13.586296398352951,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_557,PS_731,['LKD_731'],"['LKD_N_396', 'LKD_N_397']","[51.16740601352097, 51.12260460105198]","[13.506717642670125, 13.529108908491]","['DE', 'DE']",0.0,51.145005307286475,5.222463011960678,13.517913275580563,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_558,PS_732,['LKD_732'],"['LKD_N_399', 'LKD_N_398']","[51.16764843192537, 51.10988486304679]","[13.487791496085096, 13.512244940495584]","['DE', 'DE']",0.0,51.13876664748608,6.64781995463039,13.50001821829034,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_559,PS_735,['LKD_735'],"['LKD_N_397', 'LKD_N_398']","[51.12260460105198, 51.10988486304679]","[13.529108908491, 13.512244940495584]","['DE', 'DE']",0.0,51.11624473204938,1.84071072562222,13.520676924493293,25.0,0.0,1983.0,11.9875,500.0 -LKD_PS_560,PS_736,['LKD_736'],"['LKD_N_397', 'LKD_N_386']","[51.12260460105198, 51.104732076453374]","[13.529108908491, 13.58853250202163]","['DE', 'DE']",0.0,51.113668338752674,4.60103682282628,13.558820705256316,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_561,PS_737,['LKD_737'],"['LKD_N_398', 'LKD_N_436']","[51.10988486304679, 50.952558802805065]","[13.512244940495584, 13.381605003643429]","['DE', 'DE']",0.0,51.03122183292592,19.741829492755766,13.446924972069507,25.0,0.0,1983.0,11.9875,500.0 -LKD_PS_562,PS_738,['LKD_738'],"['LKD_N_398', 'LKD_N_438']","[51.10988486304679, 50.942216755586394]","[13.512244940495584, 13.385823317959542]","['DE', 'DE']",0.0,51.02605080931659,20.640615052170517,13.449034129227563,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_563,PS_740,['LKD_740'],"['LKD_N_436', 'LKD_N_437']","[50.952558802805065, 50.94988199044572]","[13.381605003643429, 13.366137782026986]","['DE', 'DE']",0.0,50.95122039662539,1.1239838581200274,13.373871392835207,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_564,PS_741,['LKD_741'],"['LKD_N_437', 'LKD_N_442']","[50.94988199044572, 50.93970954478826]","[13.366137782026986, 13.355884815457685]","['DE', 'DE']",0.0,50.94479576761699,1.3403597379364138,13.361011298742335,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_565,PS_742,['LKD_742'],"['LKD_N_442', 'LKD_N_444']","[50.93970954478826, 50.935855360046126]","[13.355884815457685, 13.292430415955014]","['DE', 'DE']",0.0,50.937782452417196,4.468323614356648,13.32415761570635,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_566,PS_744,['LKD_744'],"['LKD_N_438', 'LKD_N_439']","[50.942216755586394, 50.94127645094511]","[13.385823317959542, 13.368600380493724]","['DE', 'DE']",0.0,50.941746603265756,1.211627558561497,13.377211849226633,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_567,PS_745,['LKD_745'],"['LKD_N_439', 'LKD_N_442']","[50.94127645094511, 50.93970954478826]","[13.368600380493724, 13.355884815457685]","['DE', 'DE']",0.0,50.940492997866684,0.9081023296142707,13.362242597975705,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_568,PS_746,['LKD_746'],"['LKD_N_436', 'LKD_N_438']","[50.952558802805065, 50.942216755586394]","[13.381605003643429, 13.385823317959542]","['DE', 'DE']",0.0,50.94738777919573,1.187720083685112,13.383714160801485,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_569,PS_747,['LKD_747'],"['LKD_N_437', 'LKD_N_439']","[50.94988199044572, 50.94127645094511]","[13.366137782026986, 13.368600380493724]","['DE', 'DE']",0.0,50.945579220695414,0.9726265831056883,13.367369081260355,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_570,PS_748,['LKD_748'],"['LKD_N_440', 'LKD_N_441']","[50.93132451030158, 50.93437497122701]","[13.388213784323726, 13.372017108046768]","['DE', 'DE']",0.0,50.9328497407643,1.1850091606272302,13.380115446185247,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_571,PS_749,['LKD_749'],"['LKD_N_438', 'LKD_N_440']","[50.942216755586394, 50.93132451030158]","[13.385823317959542, 13.388213784323726]","['DE', 'DE']",0.0,50.93677063294399,1.2230745864261208,13.387018551141633,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_572,PS_750,['LKD_750'],"['LKD_N_439', 'LKD_N_441']","[50.94127645094511, 50.93437497122701]","[13.368600380493724, 13.372017108046768]","['DE', 'DE']",0.0,50.93782571108606,0.8041405125556219,13.370308744270247,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_573,PS_751,['LKD_751'],"['LKD_N_442', 'LKD_N_443']","[50.93970954478826, 50.932236834951]","[13.355884815457685, 13.359286647383437]","['DE', 'DE']",0.0,50.93597318986963,0.8647162758724453,13.35758573142056,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_574,PS_752,['LKD_752'],"['LKD_N_441', 'LKD_N_443']","[50.93437497122701, 50.932236834951]","[13.372017108046768, 13.359286647383437]","['DE', 'DE']",0.0,50.93330590308901,0.9235489265400508,13.365651877715102,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_575,PS_753,['LKD_753'],"['LKD_N_443', 'LKD_N_447']","[50.932236834951, 50.86213081761823]","[13.359286647383437, 13.388866971858663]","['DE', 'DE']",0.0,50.89718382628462,8.069283030542843,13.37407680962105,85.0,0.0,1983.0,11.9875,900.0 -LKD_PS_576,PS_754,['LKD_754'],"['LKD_N_441', 'LKD_N_446']","[50.93437497122701, 50.86948595081441]","[13.372017108046768, 13.395410942622016]","['DE', 'DE']",0.0,50.90193046102071,7.401796007539938,13.383714025334392,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_577,PS_755,['LKD_755'],"['LKD_N_440', 'LKD_N_445']","[50.93132451030158, 50.871598476889886]","[13.388213784323726, 13.4099324593707]","['DE', 'DE']",0.0,50.90146149359573,6.815772774025602,13.399073121847213,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_578,PS_756,['LKD_756'],"['LKD_N_445', 'LKD_N_446']","[50.871598476889886, 50.86948595081441]","[13.4099324593707, 13.395410942622016]","['DE', 'DE']",0.0,50.87054221385215,1.046061039508361,13.402671700996358,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_579,PS_757,['LKD_757'],"['LKD_N_446', 'LKD_N_447']","[50.86948595081441, 50.86213081761823]","[13.395410942622016, 13.388866971858663]","['DE', 'DE']",0.0,50.86580838421632,0.9382693364993477,13.39213895724034,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_580,PS_758,['LKD_758'],"['LKD_N_447', 'LKD_N_448']","[50.86213081761823, 50.85294238568369]","[13.388866971858663, 13.392207022044092]","['DE', 'DE']",0.0,50.85753660165096,1.0485892539649544,13.390536996951377,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_581,PS_759,['LKD_759'],"['LKD_N_446', 'LKD_N_448']","[50.86948595081441, 50.85294238568369]","[13.395410942622016, 13.392207022044092]","['DE', 'DE']",0.0,50.86121416824905,1.853835688895372,13.393808982333054,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_582,PS_760,['LKD_760'],"['LKD_N_445', 'LKD_N_449']","[50.871598476889886, 50.8454036625963]","[13.4099324593707, 13.401013904552366]","['DE', 'DE']",0.0,50.85850106974309,2.9801752844364233,13.405473181961533,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_583,PS_761,['LKD_761'],"['LKD_N_448', 'LKD_N_449']","[50.85294238568369, 50.8454036625963]","[13.392207022044092, 13.401013904552366]","['DE', 'DE']",0.0,50.84917302413999,1.041944063559044,13.396610463298229,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_584,PS_762,['LKD_762'],"['LKD_N_449', 'LKD_N_450']","[50.8454036625963, 50.79711753791234]","[13.401013904552366, 13.422123959989364]","['DE', 'DE']",0.0,50.82126060025432,5.571939014588224,13.411568932270864,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_585,PS_764,['LKD_764'],"['LKD_N_448', 'LKD_N_452']","[50.85294238568369, 50.72334983809705]","[13.392207022044092, 13.422590727869233]","['DE', 'DE']",0.0,50.78814611189037,14.572035703723756,13.407398874956662,85.0,0.0,1983.0,3.0083333333333333,900.0 -LKD_PS_586,PS_765,['LKD_765'],"['LKD_N_449', 'LKD_N_450']","[50.8454036625963, 50.79711753791234]","[13.401013904552366, 13.422123959989364]","['DE', 'DE']",0.0,50.82126060025432,5.571939014588224,13.411568932270864,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_587,PS_766,['LKD_766'],"['LKD_N_450', 'LKD_N_452']","[50.79711753791234, 50.72334983809705]","[13.422123959989364, 13.422590727869233]","['DE', 'DE']",0.0,50.760233688004696,8.20523467430229,13.4223573439293,63.0,0.0,1983.0,3.0083333333333333,600.0 -LKD_PS_588,PS_767,['LKD_767'],"['LKD_N_450', 'LKD_N_451']","[50.79711753791234, 50.71091255576189]","[13.422123959989364, 13.457335775077357]","['DE', 'DE']",0.0,50.75401504683711,9.903549751291479,13.43972986753336,63.0,0.0,1983.0,39.66141666666667,600.0 -LKD_PS_589,PS_768,['LKD_768'],"['LKD_N_451', 'LKD_N_452']","[50.71091255576189, 50.72334983809705]","[13.457335775077357, 13.422590727869233]","['DE', 'DE']",0.0,50.71713119692947,2.8109113295325883,13.439963251473294,85.0,0.0,1983.0,3.0083333333333333,900.0 -LKD_PS_590,PS_769,['LKD_769'],"['LKD_N_452', 'LKD_N_457']","[50.72334983809705, 50.7132578942927]","[13.422590727869233, 13.406074212518723]","['DE', 'DE']",0.0,50.71830386619487,1.6164704875089535,13.414332470193978,63.0,0.0,1983.0,3.0083333333333333,600.0 -LKD_PS_591,PS_770,['LKD_770'],"['LKD_N_457', 'LKD_N_456']","[50.7132578942927, 50.706128561765325]","[13.406074212518723, 13.380647863863963]","['DE', 'DE']",0.0,50.70969322802901,1.958646861700785,13.393361038191344,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_592,PS_771,['LKD_771'],"['LKD_N_453', 'LKD_N_451']","[50.66994854373903, 50.71091255576189]","[13.440770037678904, 13.457335775077357]","['DE', 'DE']",0.0,50.69043054975046,4.703570328503795,13.449052906378132,85.0,0.0,1983.0,39.66141666666667,900.0 -LKD_PS_593,PS_772,['LKD_772'],"['LKD_N_453', 'LKD_N_457']","[50.66994854373903, 50.7132578942927]","[13.440770037678904, 13.406074212518723]","['DE', 'DE']",0.0,50.69160321901587,5.402155793597898,13.423422125098813,63.0,0.0,1983.0,39.66141666666667,600.0 -LKD_PS_594,PS_773,['LKD_773'],"['LKD_N_453', 'LKD_N_454']","[50.66994854373903, 50.67521485840151]","[13.440770037678904, 13.431032766379099]","['DE', 'DE']",0.0,50.67258170107027,0.9023707730862897,13.435901402029002,63.0,0.0,1983.0,39.66141666666667,600.0 -LKD_PS_595,PS_774,['LKD_774'],"['LKD_N_454', 'LKD_N_457']","[50.67521485840151, 50.7132578942927]","[13.431032766379099, 13.406074212518723]","['DE', 'DE']",0.0,50.694236376347106,4.582392902689426,13.418553489448911,85.0,0.0,1983.0,39.66141666666667,900.0 -LKD_PS_596,PS_775,['LKD_775'],"['LKD_N_455', 'LKD_N_454']","[50.664617719961676, 50.67521485840151]","[13.409118303747698, 13.431032766379099]","['DE', 'DE']",0.0,50.66991628918159,1.943203139251621,13.420075535063399,85.0,0.0,1983.0,39.66141666666667,900.0 -LKD_PS_597,PS_776,['LKD_776'],"['LKD_N_457', 'LKD_N_458']","[50.7132578942927, 50.81325591208634]","[13.406074212518723, 13.261966195817166]","['DE', 'DE']",0.0,50.76325690318952,15.05030165311156,13.334020204167945,85.0,0.0,1983.0,3.0083333333333333,900.0 -LKD_PS_598,PS_777,['LKD_777'],"['LKD_N_458', 'LKD_N_459']","[50.81325591208634, 50.879963035254356]","[13.261966195817166, 13.330649856726764]","['DE', 'DE']",0.0,50.84660947367035,8.849950488994809,13.296308026271966,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_599,PS_778,['LKD_778'],"['LKD_N_458', 'LKD_N_460']","[50.81325591208634, 50.9276207515461]","[13.261966195817166, 13.028024378487453]","['DE', 'DE']",0.0,50.87043833181622,20.77211687938798,13.144995287152309,85.0,0.0,1983.0,11.9875,900.0 -LKD_PS_600,PS_779,['LKD_779'],"['LKD_N_435', 'LKD_N_436']","[51.1162628270567, 50.952558802805065]","[13.366499800540229, 13.381605003643429]","['DE', 'DE']",0.0,51.03441081493088,18.239399225016395,13.374052402091829,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_601,PS_780,['LKD_780'],"['LKD_N_435', 'LKD_N_437']","[51.1162628270567, 50.94988199044572]","[13.366499800540229, 13.366137782026986]","['DE', 'DE']",0.0,51.03307240875121,18.50653003378124,13.366318791283607,85.0,0.0,1983.0,11.9875,900.0 -LKD_PS_602,PS_782,['LKD_782'],"['LKD_N_460', 'LKD_N_461']","[50.9276207515461, 50.96751600514985]","[13.028024378487453, 13.04248779010364]","['DE', 'DE']",0.0,50.947568378347974,4.5518247372313985,13.035256084295547,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_603,PS_783,['LKD_783'],"['LKD_N_460', 'LKD_N_462']","[50.9276207515461, 50.94220235672377]","[13.028024378487453, 12.99486149802303]","['DE', 'DE']",0.0,50.934911554134935,2.8345186332078933,13.011442938255241,85.0,0.0,1983.0,11.9875,900.0 -LKD_PS_604,PS_784,['LKD_784'],"['LKD_N_462', 'LKD_N_472']","[50.94220235672377, 50.997492880476095]","[12.99486149802303, 12.843025013061547]","['DE', 'DE']",0.0,50.96984761859993,12.285450395606409,12.918943255542288,85.0,0.0,1983.0,11.9875,900.0 -LKD_PS_605,PS_785,['LKD_785'],"['LKD_N_462', 'LKD_N_463']","[50.94220235672377, 50.8838387569302]","[12.99486149802303, 12.85623099638783]","['DE', 'DE']",0.0,50.913020556826986,11.690351700049094,12.925546247205428,63.0,0.0,1983.0,11.9875,600.0 -LKD_PS_606,PS_786,['LKD_786'],"['LKD_N_463', 'LKD_N_464']","[50.8838387569302, 50.85569878851892]","[12.85623099638783, 12.872878027955744]","['DE', 'DE']",0.0,50.86976877272456,3.3410217377659404,12.864554512171786,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_607,PS_788,['LKD_788'],"['LKD_N_463', 'LKD_N_465']","[50.8838387569302, 50.85852882458359]","[12.85623099638783, 12.797048676999077]","['DE', 'DE']",0.0,50.871183790756895,5.018255623802196,12.826639836693452,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_608,PS_790,['LKD_790'],"['LKD_N_465', 'LKD_N_466']","[50.85852882458359, 50.815289927370216]","[12.797048676999077, 12.564364394914303]","['DE', 'DE']",0.0,50.8369093759769,17.03779197899408,12.680706535956691,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_609,PS_791,['LKD_791'],"['LKD_N_466', 'LKD_N_467']","[50.815289927370216, 50.75068467035971]","[12.564364394914303, 12.429296740023139]","['DE', 'DE']",0.0,50.78298729886497,11.910744682882536,12.49683056746872,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_610,PS_793,['LKD_793'],"['LKD_N_467', 'LKD_N_468']","[50.75068467035971, 50.73639430972278]","[12.429296740023139, 12.42826473312562]","['DE', 'DE']",0.0,50.74353949004124,1.5911732898044662,12.428780736574378,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_611,PS_794,['LKD_794'],"['LKD_N_467', 'LKD_N_469']","[50.75068467035971, 50.94498299612328]","[12.429296740023139, 12.651334323640196]","['DE', 'DE']",0.0,50.847833833241495,26.649960856188166,12.540315531831666,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_612,PS_798,['LKD_798'],"['LKD_N_469', 'LKD_N_470']","[50.94498299612328, 50.944608657946034]","[12.651334323640196, 12.620398845180082]","['DE', 'DE']",0.0,50.94479582703465,2.168434080324272,12.635866584410138,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_613,PS_799,['LKD_799'],"['LKD_N_469', 'LKD_N_472']","[50.94498299612328, 50.997492880476095]","[12.651334323640196, 12.843025013061547]","['DE', 'DE']",0.0,50.97123793829969,14.64187215084199,12.74717966835087,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_614,PS_800,['LKD_800'],"['LKD_N_472', 'LKD_N_769']","[50.997492880476095, 51.44131505093763]","[12.843025013061547, 13.618312245871264]","['DE', 'DE']",0.0,51.21940396570686,73.17284070222149,13.230668629466406,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_615,PS_801,['LKD_801'],"['LKD_N_518', 'LKD_N_510']","[51.44402756812266, 51.412787402545746]","[13.488353618841144, 12.43937859704229]","['DE', 'DE']",0.0,51.428407485334205,72.82969460789835,12.963866107941717,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_616,PS_802,['LKD_802'],"['LKD_N_472', 'LKD_N_473']","[50.997492880476095, 51.064621246972806]","[12.843025013061547, 12.790837715240144]","['DE', 'DE']",0.0,51.03105706372445,8.311336099107425,12.816931364150847,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_617,PS_803,['LKD_803'],"['LKD_N_474', 'LKD_N_475']","[51.09864679141486, 51.12009448537341]","[12.815555776994401, 12.774536648657998]","['DE', 'DE']",0.0,51.10937063839413,3.727833865754754,12.7950462128262,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_618,PS_804,['LKD_804'],"['LKD_N_474', 'LKD_N_476']","[51.09864679141486, 51.29864616920966]","[12.815555776994401, 13.168887909587593]","['DE', 'DE']",0.0,51.19864648031226,33.18675665315234,12.992221843290997,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_619,PS_808,['LKD_808'],"['LKD_N_473', 'LKD_N_477']","[51.064621246972806, 51.08675945433757]","[12.790837715240144, 12.646903090090706]","['DE', 'DE']",0.0,51.07569035065519,10.355880322462092,12.718870402665425,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_620,PS_809,['LKD_809'],"['LKD_N_477', 'LKD_N_478']","[51.08675945433757, 50.99904560308887]","[12.646903090090706, 12.676370892520245]","['DE', 'DE']",0.0,51.04290252871321,9.97167167335662,12.661636991305475,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_621,PS_810,['LKD_810'],"['LKD_N_477', 'LKD_N_479']","[51.08675945433757, 51.1226756474521]","[12.646903090090706, 12.567272624812784]","['DE', 'DE']",0.0,51.10471755089483,6.847604306502352,12.607087857451745,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_622,PS_811,['LKD_811'],"['LKD_N_479', 'LKD_N_481']","[51.1226756474521, 51.151633742114996]","[12.567272624812784, 12.498350211535028]","['DE', 'DE']",0.0,51.13715469478355,5.7890634795726506,12.532811418173907,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_623,PS_812,['LKD_812'],"['LKD_N_479', 'LKD_N_514']","[51.1226756474521, 51.161728075428634]","[12.567272624812784, 12.503158518900394]","['DE', 'DE']",0.0,51.14220186144037,6.235922092514173,12.53521557185659,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_624,PS_813,['LKD_813'],"['LKD_N_481', 'LKD_N_514']","[51.151633742114996, 51.161728075428634]","[12.498350211535028, 12.503158518900394]","['DE', 'DE']",0.0,51.15668090877182,1.1718274291764468,12.50075436521771,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_625,PS_814,['LKD_814'],"['LKD_N_481', 'LKD_N_482']","[51.151633742114996, 51.16156470282387]","[12.498350211535028, 12.436222197385964]","['DE', 'DE']",0.0,51.15659922246943,4.472763947746808,12.467286204460496,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_626,PS_815,['LKD_815'],"['LKD_N_514', 'LKD_N_515']","[51.161728075428634, 51.1683476352014]","[12.503158518900394, 12.437967394788298]","['DE', 'DE']",0.0,51.16503785531502,4.606302508871153,12.470562956844347,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_627,PS_816,['LKD_816'],"['LKD_N_515', 'LKD_N_482']","[51.1683476352014, 51.16156470282387]","[12.437967394788298, 12.436222197385964]","['DE', 'DE']",0.0,51.16495616901263,0.764221299332275,12.43709479608713,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_628,PS_817,['LKD_817'],"['LKD_N_514', 'LKD_N_512']","[51.161728075428634, 51.28071596274454]","[12.503158518900394, 12.516437800837966]","['DE', 'DE']",0.0,51.22122201908658,13.267294726865131,12.509798159869181,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_629,PS_818,['LKD_818'],"['LKD_N_512', 'LKD_N_513']","[51.28071596274454, 51.28199053480608]","[12.516437800837966, 12.488808113593162]","['DE', 'DE']",0.0,51.281353248775304,1.9275253525330733,12.502622957215564,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_630,PS_819,['LKD_819'],"['LKD_N_512', 'LKD_N_511']","[51.28071596274454, 51.37366723962002]","[12.516437800837966, 12.535950467344824]","['DE', 'DE']",0.0,51.32719160118228,10.42752668153719,12.526194134091394,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_631,PS_820,['LKD_820'],"['LKD_N_511', 'LKD_N_517']","[51.37366723962002, 51.3618353819905]","[12.535950467344824, 12.94473577693614]","['DE', 'DE']",0.0,51.36775131080526,28.417706963992288,12.740343122140482,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_632,PS_821,['LKD_821'],"['LKD_N_511', 'LKD_N_508']","[51.37366723962002, 51.399568016565865]","[12.535950467344824, 12.419851418566273]","['DE', 'DE']",0.0,51.38661762809294,8.558402758209581,12.477900942955548,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_633,PS_822,['LKD_822'],"['LKD_N_508', 'LKD_N_509']","[51.399568016565865, 51.39157730443229]","[12.419851418566273, 12.391144600442379]","['DE', 'DE']",0.0,51.39557266049908,2.1815436462954545,12.405498009504326,25.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_634,PS_823,['LKD_823'],"['LKD_N_508', 'LKD_N_507']","[51.399568016565865, 51.412917188305606]","[12.419851418566273, 12.403340200508003]","['DE', 'DE']",0.0,51.40624260243574,1.875409761017942,12.411595809537138,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_635,PS_824,['LKD_824'],"['LKD_N_507', 'LKD_N_510']","[51.412917188305606, 51.412787402545746]","[12.403340200508003, 12.43937859704229]","['DE', 'DE']",0.0,51.41285229542568,2.5001882002946147,12.421359398775147,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_636,PS_825,['LKD_825'],"['LKD_N_510', 'LKD_N_511']","[51.412787402545746, 51.37366723962002]","[12.43937859704229, 12.535950467344824]","['DE', 'DE']",0.0,51.39322732108288,7.991094702877074,12.487664532193557,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_637,PS_827,['LKD_827'],"['LKD_N_507', 'LKD_N_505']","[51.412917188305606, 51.415522953423284]","[12.403340200508003, 12.306327997613698]","['DE', 'DE']",0.0,51.414220070864445,6.736211727979434,12.35483409906085,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_638,PS_828,['LKD_828'],"['LKD_N_505', 'LKD_N_506']","[51.415522953423284, 51.42996457960186]","[12.306327997613698, 12.30827364273596]","['DE', 'DE']",0.0,51.42274376651257,1.611998253936518,12.307300820174829,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_639,PS_829,['LKD_829'],"['LKD_N_506', 'LKD_N_519']","[51.42996457960186, 51.6417560139566]","[12.30827364273596, 12.165170928859263]","['DE', 'DE']",0.0,51.535860296779234,25.55357366853915,12.236722285797612,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_640,PS_830,['LKD_830'],"['LKD_N_505', 'LKD_N_504']","[51.415522953423284, 51.42841354170701]","[12.306327997613698, 12.228764523314036]","['DE', 'DE']",0.0,51.42196824756515,5.567645907429177,12.267546260463867,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_641,PS_831,['LKD_831'],"['LKD_N_504', 'LKD_N_503']","[51.42841354170701, 51.43324830651078]","[12.228764523314036, 12.153698818731117]","['DE', 'DE']",0.0,51.43083092410889,5.233302727989122,12.191231671022576,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_642,PS_832,['LKD_832'],"['LKD_N_503', 'LKD_N_502']","[51.43324830651078, 51.424495921642816]","[12.153698818731117, 12.15017745439265]","['DE', 'DE']",0.0,51.428872114076796,1.0036885510448916,12.151938136561885,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_643,PS_833,['LKD_833'],"['LKD_N_504', 'LKD_N_506']","[51.42841354170701, 51.42996457960186]","[12.228764523314036, 12.30827364273596]","['DE', 'DE']",0.0,51.42918906065444,5.51663392784105,12.268519083024998,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_644,PS_834,['LKD_834'],"['LKD_N_507', 'LKD_N_506']","[51.412917188305606, 51.42996457960186]","[12.403340200508003, 12.30827364273596]","['DE', 'DE']",0.0,51.421440883953736,6.861178239263254,12.355806921621982,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_645,PS_835,['LKD_835'],"['LKD_N_515', 'LKD_N_486']","[51.1683476352014, 51.171544053836044]","[12.437967394788298, 12.347756822398201]","['DE', 'DE']",0.0,51.16994584451872,6.301548093120436,12.392862108593249,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_646,PS_836,['LKD_836'],"['LKD_N_482', 'LKD_N_483']","[51.16156470282387, 51.16386558992805]","[12.436222197385964, 12.352190447962869]","['DE', 'DE']",0.0,51.16271514637596,5.8670872041123925,12.394206322674417,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_647,PS_837,['LKD_837'],"['LKD_N_483', 'LKD_N_484']","[51.16386558992805, 51.086309363244645]","[12.352190447962869, 12.382988066920685]","['DE', 'DE']",0.0,51.125087476586344,8.890450116506111,12.367589257441777,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_648,PS_839,['LKD_839'],"['LKD_N_484', 'LKD_N_492']","[51.086309363244645, 51.05443007174028]","[12.382988066920685, 12.385285619595866]","['DE', 'DE']",0.0,51.07036971749246,3.5495625342268564,12.384136843258275,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_649,PS_840,['LKD_840'],"['LKD_N_492', 'LKD_N_467']","[51.05443007174028, 50.75068467035971]","[12.385285619595866, 12.429296740023139]","['DE', 'DE']",0.0,50.902557371049994,33.926304647666704,12.407291179809501,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_650,PS_846,['LKD_846'],"['LKD_N_483', 'LKD_N_485']","[51.16386558992805, 51.15423260254293]","[12.352190447962869, 12.335438195135472]","['DE', 'DE']",0.0,51.15904909623549,1.5854755178979738,12.343814321549171,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_651,PS_847,['LKD_847'],"['LKD_N_483', 'LKD_N_486']","[51.16386558992805, 51.171544053836044]","[12.352190447962869, 12.347756822398201]","['DE', 'DE']",0.0,51.16770482188205,0.9083304852559316,12.349973635180536,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_652,PS_848,['LKD_848'],"['LKD_N_486', 'LKD_N_487']","[51.171544053836044, 51.180507047716524]","[12.347756822398201, 12.317015027799098]","['DE', 'DE']",0.0,51.17602555077629,2.364207855822123,12.332385925098649,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_653,PS_851,['LKD_851'],"['LKD_N_487', 'LKD_N_489']","[51.180507047716524, 51.196297724389304]","[12.317015027799098, 12.295292807919225]","['DE', 'DE']",0.0,51.188402386052914,2.31909325203823,12.306153917859161,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_654,PS_852,['LKD_852'],"['LKD_N_489', 'LKD_N_505']","[51.196297724389304, 51.415522953423284]","[12.295292807919225, 12.306327997613698]","['DE', 'DE']",0.0,51.305910338906294,24.396456442149894,12.300810402766462,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_655,PS_853,['LKD_853'],"['LKD_N_489', 'LKD_N_490']","[51.196297724389304, 51.19066748356161]","[12.295292807919225, 12.288194786570662]","['DE', 'DE']",0.0,51.193482603975454,0.7981217215364664,12.291743797244944,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_656,PS_854,['LKD_854'],"['LKD_N_490', 'LKD_N_488']","[51.19066748356161, 51.17649519925681]","[12.288194786570662, 12.308644042808728]","['DE', 'DE']",0.0,51.18358134140921,2.1255045036141484,12.298419414689695,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_657,PS_855,['LKD_855'],"['LKD_N_488', 'LKD_N_487']","[51.17649519925681, 51.180507047716524]","[12.308644042808728, 12.317015027799098]","['DE', 'DE']",0.0,51.17850112348667,0.7347375759153896,12.312829535303912,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_658,PS_856,['LKD_856'],"['LKD_N_491', 'LKD_N_488']","[51.18464564293958, 51.17649519925681]","[12.27596077804813, 12.308644042808728]","['DE', 'DE']",0.0,51.180570421098196,2.452590694714443,12.29230241042843,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_659,PS_857,['LKD_857'],"['LKD_N_491', 'LKD_N_498']","[51.18464564293958, 51.10092974622646]","[12.27596077804813, 12.173580731277037]","['DE', 'DE']",0.0,51.14278769458302,11.736732082585936,12.224770754662583,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_660,PS_858,['LKD_858'],"['LKD_N_498', 'LKD_N_499']","[51.10092974622646, 51.110639996906905]","[12.173580731277037, 12.153749626981945]","['DE', 'DE']",0.0,51.105784871566684,1.756348189253807,12.163665179129492,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_661,PS_859,['LKD_859'],"['LKD_N_498', 'LKD_N_497']","[51.10092974622646, 51.07636596341515]","[12.173580731277037, 12.139546625824797]","['DE', 'DE']",0.0,51.088647854820806,3.6220180482647626,12.156563678550917,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_662,PS_860,['LKD_860'],"['LKD_N_492', 'LKD_N_493']","[51.05443007174028, 51.056277354094824]","[12.385285619595866, 12.306563525933887]","['DE', 'DE']",0.0,51.05535371291755,5.50774072925273,12.345924572764876,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_663,PS_861,['LKD_861'],"['LKD_N_493', 'LKD_N_494']","[51.056277354094824, 51.056753060624715]","[12.306563525933887, 12.277759869299773]","['DE', 'DE']",0.0,51.056515207359766,2.0144711018497112,12.29216169761683,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_664,PS_862,['LKD_862'],"['LKD_N_494', 'LKD_N_496']","[51.056753060624715, 51.061870794775054]","[12.277759869299773, 12.113254161720466]","['DE', 'DE']",0.0,51.05931192769988,11.514618539970648,12.19550701551012,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_665,PS_864,['LKD_864'],"['LKD_N_494', 'LKD_N_495']","[51.056753060624715, 51.10270819193021]","[12.277759869299773, 12.29277318536861]","['DE', 'DE']",0.0,51.07973062627747,5.218132282270291,12.28526652733419,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_666,PS_866,['LKD_866'],"['LKD_N_489', 'LKD_N_500']","[51.196297724389304, 51.25978618066807]","[12.295292807919225, 12.16161040445556]","['DE', 'DE']",0.0,51.228041952528685,11.68652595286341,12.228451606187392,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_667,PS_867,['LKD_867'],"['LKD_N_500', 'LKD_N_501']","[51.25978618066807, 51.32800208119196]","[12.16161040445556, 12.141558904541824]","['DE', 'DE']",0.0,51.29389413093001,7.714756014895732,12.151584654498691,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_670,PS_871,['LKD_871'],"['LKD_N_524', 'LKD_N_523']","[51.44870041289058, 51.452468767807765]","[13.441098842026802, 13.418831890167068]","['DE', 'DE']",0.0,51.45058459034917,1.599384910171107,13.429965366096935,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_672,PS_875,['LKD_875'],"['LKD_N_521', 'LKD_N_520']","[51.539633769177115, 51.71159321151147]","[13.118763042150636, 12.218489752145178]","['DE', 'DE']",0.0,51.62561349034429,65.04042673832451,12.668626397147907,100.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_673,PS_879,['LKD_879'],"['LKD_N_469', 'LKD_N_471']","[50.94498299612328, 50.95755156642055]","[12.651334323640196, 12.636040802870916]","['DE', 'DE']",0.0,50.95126728127191,1.7614923764188253,12.643687563255556,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_674,PS_880,['LKD_880'],"['LKD_N_474', 'LKD_N_473']","[51.09864679141486, 51.064621246972806]","[12.815555776994401, 12.790837715240144]","['DE', 'DE']",0.0,51.08163401919383,4.160148144025888,12.803196746117273,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_675,PS_881,['LKD_881'],"['LKD_N_479', 'LKD_N_480']","[51.1226756474521, 51.136151501774876]","[12.567272624812784, 12.614890163360046]","['DE', 'DE']",0.0,51.12941357461349,3.6462250483068557,12.591081394086416,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_676,PS_882,['LKD_882'],"['LKD_N_515', 'LKD_N_516']","[51.1683476352014, 51.18447207456843]","[12.437967394788298, 12.452832624235585]","['DE', 'DE']",0.0,51.176409854884916,2.071529426115812,12.445400009511943,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_677,PS_884,['LKD_884'],"['LKD_N_510', 'LKD_N_508']","[51.412787402545746, 51.399568016565865]","[12.43937859704229, 12.419851418566273]","['DE', 'DE']",0.0,51.406177709555806,1.9994409913376199,12.429615007804282,25.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_678,PS_886,['LKD_886'],"['LKD_N_502', 'LKD_N_501']","[51.424495921642816, 51.32800208119196]","[12.15017745439265, 12.141558904541824]","['DE', 'DE']",0.0,51.37624900141739,10.749661448821396,12.145868179467238,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_679,PS_887,['LKD_887'],"['LKD_N_521', 'LKD_N_522']","[51.539633769177115, 51.594122984050344]","[13.118763042150636, 13.2147327979719]","['DE', 'DE']",0.0,51.56687837661373,8.986775713069438,13.166747920061269,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_680,PS_889,['LKD_889'],"['LKD_N_491', 'LKD_N_539']","[51.18464564293958, 51.217558905837414]","[12.27596077804813, 12.18045053712441]","['DE', 'DE']",0.0,51.2011022743885,7.596910902498458,12.228205657586269,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_681,PS_890,['LKD_890'],"['LKD_N_491', 'LKD_N_490']","[51.18464564293958, 51.19066748356161]","[12.27596077804813, 12.288194786570662]","['DE', 'DE']",0.0,51.1876565632506,1.0844750050704381,12.282077782309397,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_682,PS_891,['LKD_891'],"['LKD_N_490', 'LKD_N_489']","[51.19066748356161, 51.196297724389304]","[12.288194786570662, 12.295292807919225]","['DE', 'DE']",0.0,51.193482603975454,0.7981217215364664,12.291743797244944,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_683,PS_892,['LKD_892'],"['LKD_N_490', 'LKD_N_539']","[51.19066748356161, 51.217558905837414]","[12.288194786570662, 12.18045053712441]","['DE', 'DE']",0.0,51.20411319469952,8.08261575690733,12.234322661847536,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_684,PS_893,['LKD_893'],"['LKD_N_539', 'LKD_N_538']","[51.217558905837414, 51.25300128714324]","[12.18045053712441, 12.146229895132958]","['DE', 'DE']",0.0,51.23528009649033,4.606649247882148,12.163340216128685,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_685,PS_894,['LKD_894'],"['LKD_N_539', 'LKD_N_534']","[51.217558905837414, 51.2758687436908]","[12.18045053712441, 11.958202431366779]","['DE', 'DE']",0.0,51.24671382476411,16.778553442606885,12.069326484245593,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_686,PS_896,['LKD_896'],"['LKD_N_538', 'LKD_N_537']","[51.25300128714324, 51.284788083182484]","[12.146229895132958, 12.093782795142712]","['DE', 'DE']",0.0,51.26889468516286,5.081613501162987,12.120006345137835,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_687,PS_898,['LKD_898'],"['LKD_N_538', 'LKD_N_500']","[51.25300128714324, 51.25978618066807]","[12.146229895132958, 12.16161040445556]","['DE', 'DE']",0.0,51.256393733905654,1.3099104279795337,12.15392014979426,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_688,PS_899,['LKD_899'],"['LKD_N_537', 'LKD_N_536']","[51.284788083182484, 51.327497752026034]","[12.093782795142712, 12.10231221333097]","['DE', 'DE']",0.0,51.30614291760426,4.7874703001863965,12.098047504236842,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_689,PS_900,['LKD_900'],"['LKD_N_536', 'LKD_N_540']","[51.327497752026034, 51.41129474008128]","[12.10231221333097, 12.111608152974085]","['DE', 'DE']",0.0,51.369396246053654,9.343051042872204,12.106960183152527,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_690,PS_902,['LKD_902'],"['LKD_N_536', 'LKD_N_501']","[51.327497752026034, 51.32800208119196]","[12.10231221333097, 12.141558904541824]","['DE', 'DE']",0.0,51.327749916608994,2.728362458168446,12.121935558936396,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_691,PS_904,['LKD_904'],"['LKD_N_537', 'LKD_N_535']","[51.284788083182484, 51.283601498571855]","[12.093782795142712, 11.96792653089944]","['DE', 'DE']",0.0,51.284194790877166,8.75676103777805,12.030854663021076,100.0,0.0,1983.0,11.587788904724416,813.0 -LKD_PS_692,PS_906,['LKD_906'],"['LKD_N_534', 'LKD_N_527']","[51.2758687436908, 51.26915373834834]","[11.958202431366779, 11.952047379890924]","['DE', 'DE']",0.0,51.27251124101957,0.8610024347403247,11.955124905628852,16.0,0.0,1983.0,4.589900761271087,300.0 -LKD_PS_693,PS_907,['LKD_907'],"['LKD_N_527', 'LKD_N_525']","[51.26915373834834, 51.358132797828866]","[11.952047379890924, 11.350947278896777]","['DE', 'DE']",0.0,51.313643268088605,42.94726665728523,11.651497329393852,16.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_694,PS_915,['LKD_915'],"['LKD_N_525', 'LKD_N_526']","[51.358132797828866, 51.25338208372344]","[11.350947278896777, 10.576745377428079]","['DE', 'DE']",0.0,51.30575744077615,55.08172766528404,10.963846328162429,16.0,0.0,1983.0,1.4845232338862173,300.0 -LKD_PS_695,PS_918,['LKD_918'],"['LKD_N_525', 'LKD_N_548']","[51.358132797828866, 51.3961513352192]","[11.350947278896777, 11.815024357992035]","['DE', 'DE']",0.0,51.37714206652403,32.49653292240422,11.582985818444406,16.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_696,PS_919,['LKD_919'],"['LKD_N_548', 'LKD_N_547']","[51.3961513352192, 51.4458404120697]","[11.815024357992035, 11.855839368962846]","['DE', 'DE']",0.0,51.42099587364445,6.2097798699755815,11.83543186347744,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_697,PS_921,['LKD_921'],"['LKD_N_547', 'LKD_N_550']","[51.4458404120697, 51.560515083185045]","[11.855839368962846, 11.8215406371311]","['DE', 'DE']",0.0,51.503177747627376,12.974425195135932,11.838690003046974,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_698,PS_922,['LKD_922'],"['LKD_N_527', 'LKD_N_528']","[51.26915373834834, 51.32629428320686]","[11.952047379890924, 11.917898889596254]","['DE', 'DE']",0.0,51.2977240107776,6.784979724213299,11.93497313474359,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_699,PS_924,['LKD_924'],"['LKD_N_534', 'LKD_N_529']","[51.2758687436908, 51.322644420271466]","[11.958202431366779, 11.936734510091185]","['DE', 'DE']",0.0,51.29925658198113,5.412834440710458,11.947468470728982,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_700,PS_925,['LKD_925'],"['LKD_N_534', 'LKD_N_535']","[51.2758687436908, 51.283601498571855]","[11.958202431366779, 11.96792653089944]","['DE', 'DE']",0.0,51.279735121131324,1.094320616535645,11.96306448113311,16.0,0.0,1983.0,4.589900761271087,300.0 -LKD_PS_702,PS_929,['LKD_929'],"['LKD_N_535', 'LKD_N_536']","[51.283601498571855, 51.327497752026034]","[11.96792653089944, 12.10231221333097]","['DE', 'DE']",0.0,51.305549625298944,10.543476823354755,12.035119372115204,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_703,PS_932,['LKD_932'],"['LKD_N_529', 'LKD_N_528']","[51.322644420271466, 51.32629428320686]","[11.936734510091185, 11.917898889596254]","['DE', 'DE']",0.0,51.32446935173917,1.3707354236207077,11.927316699843718,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_704,PS_933,['LKD_933'],"['LKD_N_528', 'LKD_N_530']","[51.32629428320686, 51.35758814761541]","[11.917898889596254, 11.880806336817486]","['DE', 'DE']",0.0,51.34194121541114,4.331091558213321,11.899352613206869,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_705,PS_934,['LKD_934'],"['LKD_N_530', 'LKD_N_531']","[51.35758814761541, 51.40226659376612]","[11.880806336817486, 11.823455133143824]","['DE', 'DE']",0.0,51.379927370690766,6.36785973261302,11.852130734980655,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_710,PS_939,['LKD_939'],"['LKD_N_532', 'LKD_N_530']","[51.360047719720505, 51.35758814761541]","[11.90094412075095, 11.880806336817486]","['DE', 'DE']",0.0,51.35881793366796,1.4252037376898403,11.890875228784218,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_711,PS_940,['LKD_940'],"['LKD_N_530', 'LKD_N_533']","[51.35758814761541, 51.416918803224405]","[11.880806336817486, 11.827953299968355]","['DE', 'DE']",0.0,51.38725347541991,7.550541518894167,11.854379818392921,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_712,PS_941,['LKD_941'],"['LKD_N_545', 'LKD_N_542']","[51.367361935866555, 51.40482553398778]","[11.891179771425444, 12.056304479120124]","['DE', 'DE']",0.0,51.38609373492717,12.196118333914587,11.973742125272784,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_713,PS_942,['LKD_942'],"['LKD_N_546', 'LKD_N_543']","[51.37508600623542, 51.41865835407202]","[11.885311397389108, 12.054369796178305]","['DE', 'DE']",0.0,51.39687218015372,12.694059993487674,11.969840596783706,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_714,PS_945,['LKD_945'],"['LKD_N_550', 'LKD_N_549']","[51.560515083185045, 51.53334961506592]","[11.8215406371311, 11.897962553794653]","['DE', 'DE']",0.0,51.546932349125484,6.088819587826331,11.859751595462876,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_715,PS_946,['LKD_946'],"['LKD_N_550', 'LKD_N_555']","[51.560515083185045, 51.75124317880299]","[11.8215406371311, 11.784090749681981]","['DE', 'DE']",0.0,51.655879130994016,21.371471272874004,11.80281569340654,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_716,PS_947,['LKD_947'],"['LKD_N_555', 'LKD_N_556']","[51.75124317880299, 51.75121333186004]","[11.784090749681981, 11.768361070075514]","['DE', 'DE']",0.0,51.75122825533151,1.0831483722606932,11.776225909878747,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_717,PS_948,['LKD_948'],"['LKD_N_556', 'LKD_N_558']","[51.75121333186004, 51.76083092811301]","[11.768361070075514, 11.70341271816463]","['DE', 'DE']",0.0,51.756022129986526,4.598033577113459,11.735886894120071,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_718,PS_950,['LKD_950'],"['LKD_N_558', 'LKD_N_557']","[51.76083092811301, 51.759136645013186]","[11.70341271816463, 11.677858308228442]","['DE', 'DE']",0.0,51.7599837865631,1.7693961393397113,11.690635513196536,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_719,PS_951,['LKD_951'],"['LKD_N_556', 'LKD_N_559']","[51.75121333186004, 51.80241304892727]","[11.768361070075514, 11.741197638540157]","['DE', 'DE']",0.0,51.77681319039365,5.9939125809653735,11.754779354307836,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_720,PS_953,['LKD_953'],"['LKD_N_558', 'LKD_N_559']","[51.76083092811301, 51.80241304892727]","[11.70341271816463, 11.741197638540157]","['DE', 'DE']",0.0,51.78162198852014,5.305921455687846,11.722305178352393,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_721,PS_954,['LKD_954'],"['LKD_N_559', 'LKD_N_561']","[51.80241304892727, 51.8510243130377]","[11.741197638540157, 11.660783136955844]","['DE', 'DE']",0.0,51.82671868098248,7.73275126832901,11.700990387748,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_722,PS_955,['LKD_955'],"['LKD_N_559', 'LKD_N_560']","[51.80241304892727, 51.808545685952176]","[11.741197638540157, 11.755599941033879]","['DE', 'DE']",0.0,51.80547936743972,1.2027015147468232,11.748398789787018,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_723,PS_956,['LKD_956'],"['LKD_N_560', 'LKD_N_555']","[51.808545685952176, 51.75124317880299]","[11.755599941033879, 11.784090749681981]","['DE', 'DE']",0.0,51.77989443237758,6.668487445663064,11.769845345357929,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_724,PS_957,['LKD_957'],"['LKD_N_560', 'LKD_N_554']","[51.808545685952176, 51.724476230116736]","[11.755599941033879, 11.83465442529572]","['DE', 'DE']",0.0,51.76651095803446,10.819212109581315,11.7951271831648,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_725,PS_958,['LKD_958'],"['LKD_N_555', 'LKD_N_554']","[51.75124317880299, 51.724476230116736]","[11.784090749681981, 11.83465442529572]","['DE', 'DE']",0.0,51.737859704459865,4.5819612943724195,11.809372587488852,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_726,PS_960,['LKD_960'],"['LKD_N_560', 'LKD_N_562']","[51.808545685952176, 51.86044246622181]","[11.755599941033879, 11.68305039437493]","['DE', 'DE']",0.0,51.834494076087,7.628036133180285,11.719325167704405,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_727,PS_961,['LKD_961'],"['LKD_N_560', 'LKD_N_563']","[51.808545685952176, 51.86699734174678]","[11.755599941033879, 11.700745938578422]","['DE', 'DE']",0.0,51.837771513849475,7.515533838289006,11.72817293980615,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_728,PS_962,['LKD_962'],"['LKD_N_563', 'LKD_N_562']","[51.86699734174678, 51.86044246622181]","[11.700745938578422, 11.68305039437493]","['DE', 'DE']",0.0,51.8637199039843,1.4173790958862282,11.691898166476676,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_729,PS_963,['LKD_963'],"['LKD_N_562', 'LKD_N_561']","[51.86044246622181, 51.8510243130377]","[11.68305039437493, 11.660783136955844]","['DE', 'DE']",0.0,51.855733389629755,1.8540814137076918,11.671916765665387,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_730,PS_964,['LKD_964'],"['LKD_N_561', 'LKD_N_564']","[51.8510243130377, 51.48688109581044]","[11.660783136955844, 11.055522277462932]","['DE', 'DE']",0.0,51.66895270442407,58.17127445731373,11.358152707209388,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_731,PS_967,['LKD_967'],"['LKD_N_561', 'LKD_N_565']","[51.8510243130377, 51.885444263327756]","[11.660783136955844, 11.609907928883212]","['DE', 'DE']",0.0,51.86823428818273,5.183326242621094,11.635345532919528,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_732,PS_968,['LKD_968'],"['LKD_N_565', 'LKD_N_566']","[51.885444263327756, 51.89556272223674]","[11.609907928883212, 11.594697777819993]","['DE', 'DE']",0.0,51.890503492782244,1.535223936736862,11.602302853351603,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_733,PS_969,['LKD_969'],"['LKD_N_566', 'LKD_N_577']","[51.89556272223674, 52.091339984488314]","[11.594697777819993, 11.51698537443287]","['DE', 'DE']",0.0,51.99345135336253,22.41729384809007,11.555841576126433,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_734,PS_970,['LKD_970'],"['LKD_N_562', 'LKD_N_567']","[51.86044246622181, 51.89167564694706]","[11.68305039437493, 11.651273669166065]","['DE', 'DE']",0.0,51.87605905658444,4.1025124746928325,11.667162031770498,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_735,PS_971,['LKD_971'],"['LKD_N_567', 'LKD_N_568']","[51.89167564694706, 51.90224018770776]","[11.651273669166065, 11.647246447104374]","['DE', 'DE']",0.0,51.89695791732741,1.2071654805585148,11.64926005813522,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_736,PS_972,['LKD_972'],"['LKD_N_563', 'LKD_N_567']","[51.86699734174678, 51.89167564694706]","[11.700745938578422, 11.651273669166065]","['DE', 'DE']",0.0,51.879336494346916,4.367414522528424,11.676009803872244,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_737,PS_973,['LKD_973'],"['LKD_N_565', 'LKD_N_567']","[51.885444263327756, 51.89167564694706]","[11.609907928883212, 11.651273669166065]","['DE', 'DE']",0.0,51.88855995513741,2.923131752703418,11.630590799024638,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_738,PS_975,['LKD_975'],"['LKD_N_566', 'LKD_N_568']","[51.89556272223674, 51.90224018770776]","[11.594697777819993, 11.647246447104374]","['DE', 'DE']",0.0,51.89890145497225,3.6823333733694916,11.620972112462184,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_739,PS_976,['LKD_976'],"['LKD_N_568', 'LKD_N_569']","[51.90224018770776, 51.904736334957526]","[11.647246447104374, 11.666298610299703]","['DE', 'DE']",0.0,51.90348826133264,1.336655557283673,11.656772528702039,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_740,PS_977,['LKD_977'],"['LKD_N_568', 'LKD_N_571']","[51.90224018770776, 51.93114478522943]","[11.647246447104374, 11.65491680041046]","['DE', 'DE']",0.0,51.91669248646859,3.257836736796785,11.651081623757417,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_741,PS_978,['LKD_978'],"['LKD_N_569', 'LKD_N_571']","[51.904736334957526, 51.93114478522943]","[11.666298610299703, 11.65491680041046]","['DE', 'DE']",0.0,51.91794056009348,3.039423465920943,11.660607705355082,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_742,PS_979,['LKD_979'],"['LKD_N_569', 'LKD_N_570']","[51.904736334957526, 51.92104398863297]","[11.666298610299703, 11.679335660034017]","['DE', 'DE']",0.0,51.91289016179525,2.0224680403635955,11.67281713516686,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_743,PS_980,['LKD_980'],"['LKD_N_570', 'LKD_N_571']","[51.92104398863297, 51.93114478522943]","[11.679335660034017, 11.65491680041046]","['DE', 'DE']",0.0,51.9260943869312,2.0168710745778,11.667126230222237,100.0,0.0,1983.0,41.791808697056254,1400.0 -LKD_PS_744,PS_981,['LKD_981'],"['LKD_N_570', 'LKD_N_572']","[51.92104398863297, 51.95098035503791]","[11.679335660034017, 11.785770329056659]","['DE', 'DE']",0.0,51.93601217183544,8.022706893591176,11.732552994545337,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_745,PS_982,['LKD_982'],"['LKD_N_570', 'LKD_N_732']","[51.92104398863297, 51.87515679854906]","[11.679335660034017, 11.78137782918419]","['DE', 'DE']",0.0,51.89810039359101,8.666219232894386,11.730356744609104,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_746,PS_983,['LKD_983'],"['LKD_N_563', 'LKD_N_732']","[51.86699734174678, 51.87515679854906]","[11.700745938578422, 11.78137782918419]","['DE', 'DE']",0.0,51.87107707014792,5.6114344265493585,11.741061883881306,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_747,PS_985,['LKD_985'],"['LKD_N_571', 'LKD_N_574']","[51.93114478522943, 52.02366864341894]","[11.65491680041046, 11.585630619539574]","['DE', 'DE']",0.0,51.97740671432418,11.333498114986266,11.620273709975017,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_748,PS_986,['LKD_986'],"['LKD_N_574', 'LKD_N_575']","[52.02366864341894, 52.08940355374101]","[11.585630619539574, 11.541439518776233]","['DE', 'DE']",0.0,52.05653609857997,7.91173070885843,11.563535069157904,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_749,PS_988,['LKD_988'],"['LKD_N_571', 'LKD_N_573']","[51.93114478522943, 52.02869867701834]","[11.65491680041046, 11.630427667655054]","['DE', 'DE']",0.0,51.97992173112388,10.979844861656732,11.642672234032757,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_750,PS_989,['LKD_989'],"['LKD_N_574', 'LKD_N_573']","[52.02366864341894, 52.02869867701834]","[11.585630619539574, 11.630427667655054]","['DE', 'DE']",0.0,52.026183660218635,3.116535607304731,11.608029143597314,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_751,PS_990,['LKD_990'],"['LKD_N_573', 'LKD_N_576']","[52.02869867701834, 52.086672594762646]","[11.630427667655054, 11.572502395322035]","['DE', 'DE']",0.0,52.05768563589049,7.568126613818705,11.601465031488544,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_752,PS_991,['LKD_991'],"['LKD_N_576', 'LKD_N_575']","[52.086672594762646, 52.08940355374101]","[11.572502395322035, 11.541439518776233]","['DE', 'DE']",0.0,52.08803807425183,2.144618929842926,11.556970957049135,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_753,PS_992,['LKD_992'],"['LKD_N_575', 'LKD_N_577']","[52.08940355374101, 52.091339984488314]","[11.541439518776233, 11.51698537443287]","['DE', 'DE']",0.0,52.09037176911466,1.6850575668167016,11.529212446604552,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_754,PS_993,['LKD_993'],"['LKD_N_576', 'LKD_N_582']","[52.086672594762646, 52.11068817713334]","[11.572502395322035, 11.576897850136174]","['DE', 'DE']",0.0,52.09868038594799,2.688080052032431,11.574700122729105,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_755,PS_994,['LKD_994'],"['LKD_N_577', 'LKD_N_581']","[52.091339984488314, 52.14939210087682]","[11.51698537443287, 11.489247343769632]","['DE', 'DE']",0.0,52.12036604268256,6.729278588913966,11.503116359101252,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_756,PS_995,['LKD_995'],"['LKD_N_581', 'LKD_N_587']","[52.14939210087682, 52.20746385434683]","[11.489247343769632, 11.467395297526167]","['DE', 'DE']",0.0,52.17842797761182,6.62903899825395,11.4783213206479,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_757,PS_996,['LKD_996'],"['LKD_N_577', 'LKD_N_578']","[52.091339984488314, 52.138143898280326]","[11.51698537443287, 11.523090846532327]","['DE', 'DE']",0.0,52.114741941384324,5.2226680440691,11.520038110482599,55.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_758,PS_997,['LKD_997'],"['LKD_N_575', 'LKD_N_578']","[52.08940355374101, 52.138143898280326]","[11.541439518776233, 11.523090846532327]","['DE', 'DE']",0.0,52.11377372601066,5.564366528758445,11.53226518265428,55.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_759,PS_998,['LKD_998'],"['LKD_N_578', 'LKD_N_580']","[52.138143898280326, 52.15274389675535]","[11.523090846532327, 11.512354373493576]","['DE', 'DE']",0.0,52.145443897517836,1.7816531579299881,11.517722610012951,100.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_760,PS_999,['LKD_999'],"['LKD_N_578', 'LKD_N_579']","[52.138143898280326, 52.151199682750466]","[11.523090846532327, 11.532870651465302]","['DE', 'DE']",0.0,52.144671790515396,1.5982777238002013,11.527980748998814,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_761,PS_1000,['LKD_1000'],"['LKD_N_579', 'LKD_N_580']","[52.151199682750466, 52.15274389675535]","[11.532870651465302, 11.512354373493576]","['DE', 'DE']",0.0,52.151971789752906,1.410674378763299,11.522612512479439,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_762,PS_1001,['LKD_1001'],"['LKD_N_580', 'LKD_N_581']","[52.15274389675535, 52.14939210087682]","[11.512354373493576, 11.489247343769632]","['DE', 'DE']",0.0,52.15106799881608,1.6204916085549808,11.500800858631603,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_763,PS_1002,['LKD_1002'],"['LKD_N_580', 'LKD_N_586']","[52.15274389675535, 52.1828271490307]","[11.512354373493576, 11.50805544733964]","['DE', 'DE']",0.0,52.16778552289303,3.3589835540182618,11.510204910416608,100.0,0.0,1983.0,41.791808697056254,1400.0 -LKD_PS_764,PS_1003,['LKD_1003'],"['LKD_N_579', 'LKD_N_584']","[52.151199682750466, 52.17356068753071]","[11.532870651465302, 11.52999042370377]","['DE', 'DE']",0.0,52.16238018514059,2.49496261072772,11.531430537584537,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_765,PS_1004,['LKD_1004'],"['LKD_N_584', 'LKD_N_583']","[52.17356068753071, 52.178202928425996]","[11.52999042370377, 11.574273550967279]","['DE', 'DE']",0.0,52.17588180797836,3.064392636307993,11.552131987335525,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_766,PS_1005,['LKD_1005'],"['LKD_N_584', 'LKD_N_585']","[52.17356068753071, 52.1800634708324]","[11.52999042370377, 11.5285985860407]","['DE', 'DE']",0.0,52.17681207918156,0.7295072327423686,11.529294504872235,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_767,PS_1006,['LKD_1006'],"['LKD_N_585', 'LKD_N_591']","[52.1800634708324, 52.20925916952569]","[11.5285985860407, 11.615691539533309]","['DE', 'DE']",0.0,52.194661320179044,6.768118161725012,11.572145062787005,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_768,PS_1007,['LKD_1007'],"['LKD_N_591', 'LKD_N_593']","[52.20925916952569, 52.26025638792816]","[11.615691539533309, 11.66563127098848]","['DE', 'DE']",0.0,52.23475777872692,6.614318937707867,11.640661405260895,85.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_769,PS_1009,['LKD_1009'],"['LKD_N_585', 'LKD_N_590']","[52.1800634708324, 52.235270017777765]","[11.5285985860407, 11.500851565755951]","['DE', 'DE']",0.0,52.20766674430509,6.4252716452763385,11.514725075898326,55.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_770,PS_1010,['LKD_1010'],"['LKD_N_586', 'LKD_N_589']","[52.1828271490307, 52.23674354864293]","[11.50805544733964, 11.465720318450158]","['DE', 'DE']",0.0,52.20978534883682,6.655183182202725,11.486887882894898,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_771,PS_1011,['LKD_1011'],"['LKD_N_587', 'LKD_N_589']","[52.20746385434683, 52.23674354864293]","[11.467395297526167, 11.465720318450158]","['DE', 'DE']",0.0,52.22210370149487,3.2587747642996447,11.466557807988163,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_772,PS_1012,['LKD_1012'],"['LKD_N_586', 'LKD_N_587']","[52.1828271490307, 52.20746385434683]","[11.50805544733964, 11.467395297526167]","['DE', 'DE']",0.0,52.19514550168876,3.8980522293211877,11.487725372432903,100.0,0.0,1983.0,41.791808697056254,1400.0 -LKD_PS_773,PS_1013,['LKD_1013'],"['LKD_N_587', 'LKD_N_588']","[52.20746385434683, 52.23620147324074]","[11.467395297526167, 11.436575274234901]","['DE', 'DE']",0.0,52.22183266379378,3.824632685721611,11.451985285880534,25.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_774,PS_1014,['LKD_1014'],"['LKD_N_588', 'LKD_N_594']","[52.23620147324074, 52.2579214890433]","[11.436575274234901, 11.387248839680868]","['DE', 'DE']",0.0,52.24706148114202,4.137733253191335,11.411912056957885,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_775,PS_1016,['LKD_1016'],"['LKD_N_594', 'LKD_N_599']","[52.2579214890433, 52.272922260448446]","[11.387248839680868, 11.377759104654578]","['DE', 'DE']",0.0,52.26542187474587,1.789221733360367,11.382503972167722,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_776,PS_1017,['LKD_1017'],"['LKD_N_598', 'LKD_N_594']","[52.180093421433604, 52.2579214890433]","[11.165984180858672, 11.387248839680868]","['DE', 'DE']",0.0,52.219007455238454,17.386324445386983,11.27661651026977,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_777,PS_1018,['LKD_1018'],"['LKD_N_594', 'LKD_N_595']","[52.2579214890433, 52.26985135445715]","[11.387248839680868, 11.41360610102087]","['DE', 'DE']",0.0,52.26388642175023,2.2316517591302394,11.40042747035087,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_778,PS_1019,['LKD_1019'],"['LKD_N_595', 'LKD_N_596']","[52.26985135445715, 52.28052036531248]","[11.41360610102087, 11.432698171002507]","['DE', 'DE']",0.0,52.275185859884814,1.7597304922067807,11.423152136011687,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_779,PS_1020,['LKD_1020'],"['LKD_N_596', 'LKD_N_597']","[52.28052036531248, 52.276555910938775]","[11.432698171002507, 11.454632229780966]","['DE', 'DE']",0.0,52.278538138125626,1.5564512594841722,11.443665200391736,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_780,PS_1021,['LKD_1021'],"['LKD_N_597', 'LKD_N_589']","[52.276555910938775, 52.23674354864293]","[11.454632229780966, 11.465720318450158]","['DE', 'DE']",0.0,52.25664972979085,4.492214320600895,11.460176274115561,25.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_781,PS_1023,['LKD_1023'],"['LKD_N_588', 'LKD_N_589']","[52.23620147324074, 52.23674354864293]","[11.436575274234901, 11.465720318450158]","['DE', 'DE']",0.0,52.23647251094184,1.9862055111628916,11.451147796342529,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_782,PS_1024,['LKD_1024'],"['LKD_N_588', 'LKD_N_595']","[52.23620147324074, 52.26985135445715]","[11.436575274234901, 11.41360610102087]","['DE', 'DE']",0.0,52.25302641384894,4.056506182494461,11.425090687627886,25.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_783,PS_1025,['LKD_1025'],"['LKD_N_589', 'LKD_N_590']","[52.23674354864293, 52.235270017777765]","[11.465720318450158, 11.500851565755951]","['DE', 'DE']",0.0,52.23600678321034,2.3986870936286584,11.483285942103056,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_784,PS_1026,['LKD_1026'],"['LKD_N_590', 'LKD_N_592']","[52.235270017777765, 52.23556940978806]","[11.500851565755951, 11.57770098124291]","['DE', 'DE']",0.0,52.23541971378292,5.2350267088519375,11.53927627349943,85.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_785,PS_1027,['LKD_1027'],"['LKD_N_592', 'LKD_N_591']","[52.23556940978806, 52.20925916952569]","[11.57770098124291, 11.615691539533309]","['DE', 'DE']",0.0,52.222414289656875,3.907094508858877,11.596696260388109,85.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_786,PS_1028,['LKD_1028'],"['LKD_N_597', 'LKD_N_592']","[52.276555910938775, 52.23556940978806]","[11.454632229780966, 11.57770098124291]","['DE', 'DE']",0.0,52.25606266036342,9.539331609336267,11.516166605511938,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_787,PS_1029,['LKD_1029'],"['LKD_N_592', 'LKD_N_593']","[52.23556940978806, 52.26025638792816]","[11.57770098124291, 11.66563127098848]","['DE', 'DE']",0.0,52.24791289885811,6.587634025894529,11.621666126115695,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_788,PS_1030,['LKD_1030'],"['LKD_N_593', 'LKD_N_752']","[52.26025638792816, 52.26575521999728]","[11.66563127098848, 11.857045592763875]","['DE', 'DE']",0.0,52.26300580396272,13.045228579785116,11.761338431876178,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_789,PS_1032,['LKD_1032'],"['LKD_N_595', 'LKD_N_600']","[52.26985135445715, 52.344807385738704]","[11.41360610102087, 11.356826897145108]","['DE', 'DE']",0.0,52.30732937009793,9.188166629515594,11.38521649908299,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_790,PS_1034,['LKD_1034'],"['LKD_N_596', 'LKD_N_601']","[52.28052036531248, 52.3510044634404]","[11.432698171002507, 11.37467187649557]","['DE', 'DE']",0.0,52.31576241437644,8.776781684177964,11.403685023749038,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_791,PS_1036,['LKD_1036'],"['LKD_N_601', 'LKD_N_602']","[52.3510044634404, 52.521915600829054]","[11.37467187649557, 11.247553679466098]","['DE', 'DE']",0.0,52.436460032134725,20.873394107689816,11.311112777980835,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_792,PS_1037,['LKD_1037'],"['LKD_N_602', 'LKD_N_605']","[52.521915600829054, 52.678799237353914]","[11.247553679466098, 11.168571976118157]","['DE', 'DE']",0.0,52.60035741909148,18.247694391633054,11.208062827792126,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_793,PS_1038,['LKD_1038'],"['LKD_N_596', 'LKD_N_603']","[52.28052036531248, 52.526884188810634]","[11.432698171002507, 11.261473903544708]","['DE', 'DE']",0.0,52.403702277061555,29.764638348357323,11.347086037273607,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_794,PS_1039,['LKD_1039'],"['LKD_N_603', 'LKD_N_604']","[52.526884188810634, 52.68136918083045]","[11.261473903544708, 11.18726254340234]","['DE', 'DE']",0.0,52.60412668482054,17.89967783983094,11.224368223473524,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_795,PS_1040,['LKD_1040'],"['LKD_N_601', 'LKD_N_600']","[52.3510044634404, 52.344807385738704]","[11.37467187649557, 11.356826897145108]","['DE', 'DE']",0.0,52.347905924589554,1.3947392400494458,11.36574938682034,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_796,PS_1041,['LKD_1041'],"['LKD_N_602', 'LKD_N_603']","[52.521915600829054, 52.526884188810634]","[11.247553679466098, 11.261473903544708]","['DE', 'DE']",0.0,52.524399894819844,1.0921923574556358,11.254513791505403,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_797,PS_1042,['LKD_1042'],"['LKD_N_605', 'LKD_N_604']","[52.678799237353914, 52.68136918083045]","[11.168571976118157, 11.18726254340234]","['DE', 'DE']",0.0,52.680084209092186,1.2924026503096917,11.17791725976025,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_798,PS_1043,['LKD_1043'],"['LKD_N_600', 'LKD_N_606']","[52.344807385738704, 52.76064091394829]","[11.356826897145108, 11.124105270043433]","['DE', 'DE']",0.0,52.5527241498435,48.85760542621152,11.24046608359427,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_799,PS_1044,['LKD_1044'],"['LKD_N_606', 'LKD_N_609']","[52.76064091394829, 52.817696268400965]","[11.124105270043433, 11.033669856638815]","['DE', 'DE']",0.0,52.78916859117463,8.79095316086572,11.078887563341123,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_800,PS_1045,['LKD_1045'],"['LKD_N_606', 'LKD_N_608']","[52.76064091394829, 52.836024812765295]","[11.124105270043433, 11.088338078530777]","['DE', 'DE']",0.0,52.79833286335679,8.723142590447672,11.106221674287106,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_801,PS_1046,['LKD_1046'],"['LKD_N_605', 'LKD_N_606']","[52.678799237353914, 52.76064091394829]","[11.168571976118157, 11.124105270043433]","['DE', 'DE']",0.0,52.719720075651104,9.583537331615808,11.146338623080794,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_802,PS_1048,['LKD_1048'],"['LKD_N_604', 'LKD_N_607']","[52.68136918083045, 52.79845685156647]","[11.18726254340234, 11.122675366614017]","['DE', 'DE']",0.0,52.73991301619846,13.730729706118177,11.15496895500818,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_803,PS_1049,['LKD_1049'],"['LKD_N_609', 'LKD_N_610']","[52.817696268400965, 52.831490042734906]","[11.033669856638815, 11.029334789200306]","['DE', 'DE']",0.0,52.82459315556794,1.561700001841852,11.031502322919561,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_804,PS_1050,['LKD_1050'],"['LKD_N_610', 'LKD_N_611']","[52.831490042734906, 52.848939634237674]","[11.029334789200306, 11.075303075367813]","['DE', 'DE']",0.0,52.84021483848629,3.64772236109128,11.05231893228406,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_805,PS_1052,['LKD_1052'],"['LKD_N_609', 'LKD_N_611']","[52.817696268400965, 52.848939634237674]","[11.033669856638815, 11.075303075367813]","['DE', 'DE']",0.0,52.833317951319316,4.461379774976221,11.054486466003315,25.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_806,PS_1053,['LKD_1053'],"['LKD_N_611', 'LKD_N_612']","[52.848939634237674, 52.848652180762514]","[11.075303075367813, 11.090761339946184]","['DE', 'DE']",0.0,52.84879590750009,1.0388852873561334,11.083032207656998,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_807,PS_1054,['LKD_1054'],"['LKD_N_611', 'LKD_N_613']","[52.848939634237674, 52.82068552742429]","[11.075303075367813, 11.218910044926568]","['DE', 'DE']",0.0,52.834812580830985,10.14861365295995,11.14710656014719,25.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_808,PS_1055,['LKD_1055'],"['LKD_N_612', 'LKD_N_613']","[52.848652180762514, 52.82068552742429]","[11.090761339946184, 11.218910044926568]","['DE', 'DE']",0.0,52.8346688540934,9.15570501954197,11.154835692436375,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_809,PS_1056,['LKD_1056'],"['LKD_N_612', 'LKD_N_613']","[52.848652180762514, 52.82068552742429]","[11.090761339946184, 11.218910044926568]","['DE', 'DE']",0.0,52.8346688540934,9.15570501954197,11.154835692436375,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_810,PS_1058,['LKD_1058'],"['LKD_N_612', 'LKD_N_614']","[52.848652180762514, 52.606223139884804]","[11.090761339946184, 11.760551385791652]","['DE', 'DE']",0.0,52.72743766032366,52.561795773684665,11.425656362868917,25.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_811,PS_1059,['LKD_1059'],"['LKD_N_614', 'LKD_N_615']","[52.606223139884804, 52.57164671624005]","[11.760551385791652, 11.758736386557025]","['DE', 'DE']",0.0,52.58893492806243,3.847885021475802,11.759643886174338,85.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_812,PS_1060,['LKD_1060'],"['LKD_N_614', 'LKD_N_710']","[52.606223139884804, 52.60121244902835]","[11.760551385791652, 11.782368020634765]","['DE', 'DE']",0.0,52.60371779445658,1.5756344319595115,11.771459703213209,85.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_813,PS_1061,['LKD_1061'],"['LKD_N_710', 'LKD_N_709']","[52.60121244902835, 52.62190346538467]","[11.782368020634765, 11.82804411803385]","['DE', 'DE']",0.0,52.611557957206514,3.848876088645734,11.805206069334307,84.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_814,PS_1062,['LKD_1062'],"['LKD_N_710', 'LKD_N_701']","[52.60121244902835, 52.53436061068685]","[11.782368020634765, 12.358117061227684]","['DE', 'DE']",0.0,52.5677865298576,39.62899731081978,12.070242540931226,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_815,PS_1064,['LKD_1064'],"['LKD_N_615', 'LKD_N_593']","[52.57164671624005, 52.26025638792816]","[11.758736386557025, 11.66563127098848]","['DE', 'DE']",0.0,52.41595155208411,35.20712605193316,11.712183828772753,25.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_816,PS_1067,['LKD_1067'],"['LKD_N_613', 'LKD_N_619']","[52.82068552742429, 53.16084916729773]","[11.218910044926568, 11.697935797191604]","['DE', 'DE']",0.0,52.99076734736101,49.60067216187562,11.458422921059086,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_818,PS_1069,['LKD_1069'],"['LKD_N_616', 'LKD_N_614']","[52.76805894226394, 52.606223139884804]","[11.739550029203262, 11.760551385791652]","['DE', 'DE']",0.0,52.68714104107437,18.056575582528904,11.750050707497458,25.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_819,PS_1070,['LKD_1070'],"['LKD_N_616', 'LKD_N_618']","[52.76805894226394, 53.144659069497976]","[11.739550029203262, 11.730517715064062]","['DE', 'DE']",0.0,52.956359005880955,41.8935413423504,11.735033872133663,25.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_821,PS_1076,['LKD_1076'],"['LKD_N_619', 'LKD_N_622']","[53.16084916729773, 53.20051440323451]","[11.697935797191604, 11.629926777026636]","['DE', 'DE']",0.0,53.18068178526612,6.325930505409875,11.66393128710912,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_822,PS_1077,['LKD_1077'],"['LKD_N_619', 'LKD_N_618']","[53.16084916729773, 53.144659069497976]","[11.697935797191604, 11.730517715064062]","['DE', 'DE']",0.0,53.15275411839785,2.822446176620127,11.714226756127832,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_823,PS_1078,['LKD_1078'],"['LKD_N_619', 'LKD_N_620']","[53.16084916729773, 53.173053421587355]","[11.697935797191604, 11.699204018514974]","['DE', 'DE']",0.0,53.16695129444254,1.3601086886555296,11.69856990785329,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_824,PS_1079,['LKD_1079'],"['LKD_N_618', 'LKD_N_617']","[53.144659069497976, 53.157676413341136]","[11.730517715064062, 11.7317896602693]","['DE', 'DE']",0.0,53.151167741419556,1.450400746404086,11.73115368766668,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_825,PS_1080,['LKD_1080'],"['LKD_N_620', 'LKD_N_617']","[53.173053421587355, 53.157676413341136]","[11.699204018514974, 11.7317896602693]","['DE', 'DE']",0.0,53.165364917464245,2.765312742258425,11.715496839392138,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_826,PS_1083,['LKD_1083'],"['LKD_N_617', 'LKD_N_730']","[53.157676413341136, 53.13909904309623]","[11.7317896602693, 12.170587859381268]","['DE', 'DE']",0.0,53.14838772821868,29.344804299064517,11.951188759825284,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_827,PS_1085,['LKD_1085'],"['LKD_N_620', 'LKD_N_621']","[53.173053421587355, 53.34565630075738]","[11.699204018514974, 11.774109547419206]","['DE', 'DE']",0.0,53.25935486117237,19.83496554810107,11.73665678296709,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_828,PS_1086,['LKD_1086'],"['LKD_N_620', 'LKD_N_632']","[53.173053421587355, 53.43413132143489]","[11.699204018514974, 11.463102135776584]","['DE', 'DE']",0.0,53.30359237151112,33.008736495187584,11.581153077145778,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_829,PS_1087,['LKD_1087'],"['LKD_N_632', 'LKD_N_633']","[53.43413132143489, 53.43142088998654]","[11.463102135776584, 11.40593422648957]","['DE', 'DE']",0.0,53.432776105710715,3.800317200882514,11.434518181133077,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_830,PS_1089,['LKD_1089'],"['LKD_N_621', 'LKD_N_625']","[53.34565630075738, 53.57755162779568]","[11.774109547419206, 11.830280331958182]","['DE', 'DE']",0.0,53.461603964276534,26.06051007024448,11.802194939688693,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_831,PS_1091,['LKD_1091'],"['LKD_N_625', 'LKD_N_626']","[53.57755162779568, 53.607768785114175]","[11.830280331958182, 11.376112506847264]","['DE', 'DE']",0.0,53.59266020645492,30.170700900761144,11.603196419402723,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_832,PS_1095,['LKD_1095'],"['LKD_N_632', 'LKD_N_631']","[53.43413132143489, 53.5491179840924]","[11.463102135776584, 11.359219938369808]","['DE', 'DE']",0.0,53.49162465276365,14.520338583527623,11.411161037073196,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_833,PS_1096,['LKD_1096'],"['LKD_N_631', 'LKD_N_629']","[53.5491179840924, 53.57193378960563]","[11.359219938369808, 11.367074244921893]","['DE', 'DE']",0.0,53.560525886849014,2.590307403728599,11.36314709164585,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_834,PS_1098,['LKD_1098'],"['LKD_N_753', 'LKD_N_628']","[53.67009048431768, 53.654852651993096]","[11.324087681697279, 11.35898849315783]","['DE', 'DE']",0.0,53.66247156815539,2.857244142992357,11.341538087427555,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_835,PS_1099,['LKD_1099'],"['LKD_N_630', 'LKD_N_627']","[53.69793428249581, 53.663299155424966]","[11.354223138554643, 11.420484466272924]","['DE', 'DE']",0.0,53.68061671896039,5.822127016137122,11.387353802413784,25.0,0.0,1983.0,1.4845232338862173,400.0 -LKD_PS_836,PS_1100,['LKD_1100'],"['LKD_N_630', 'LKD_N_634']","[53.69793428249581, 54.1201447952394]","[11.354223138554643, 11.996979364085163]","['DE', 'DE']",0.0,53.9090395388676,63.079707301127435,11.675601251319904,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_837,PS_1106,['LKD_1106'],"['LKD_N_625', 'LKD_N_624']","[53.57755162779568, 53.90706497727878]","[11.830280331958182, 12.001123121531363]","['DE', 'DE']",0.0,53.742308302537225,38.3360417650935,11.915701726744771,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_838,PS_1109,['LKD_1109'],"['LKD_N_624', 'LKD_N_635']","[53.90706497727878, 54.09409749067015]","[12.001123121531363, 12.073075854581578]","['DE', 'DE']",0.0,54.000581233974465,21.32881793294932,12.03709948805647,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_839,PS_1113,['LKD_1113'],"['LKD_N_635', 'LKD_N_640']","[54.09409749067015, 54.12176577097674]","[12.073075854581578, 12.035744371027192]","['DE', 'DE']",0.0,54.107931630823444,3.923953095276707,12.054410112804385,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_840,PS_1114,['LKD_1114'],"['LKD_N_635', 'LKD_N_638']","[54.09409749067015, 54.12579469780603]","[12.073075854581578, 12.100824211597471]","['DE', 'DE']",0.0,54.10994609423809,3.962853937329821,12.086950033089526,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_841,PS_1115,['LKD_1115'],"['LKD_N_638', 'LKD_N_639']","[54.12579469780603, 54.13801472126736]","[12.100824211597471, 12.071768891926016]","['DE', 'DE']",0.0,54.1319047095367,2.3309216438801004,12.086296551761745,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_842,PS_1116,['LKD_1116'],"['LKD_N_635', 'LKD_N_637']","[54.09409749067015, 54.115221074346415]","[12.073075854581578, 12.10218262047171]","['DE', 'DE']",0.0,54.10465928250828,3.0205332281920243,12.087629237526645,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_843,PS_1117,['LKD_1117'],"['LKD_N_638', 'LKD_N_754']","[54.12579469780603, 54.10121961162137]","[12.100824211597471, 12.237855544691335]","['DE', 'DE']",0.0,54.1135071547137,9.343353953461994,12.169339878144402,25.0,0.0,1983.0,4.589900761271087,400.0 -LKD_PS_844,PS_1120,['LKD_1120'],"['LKD_N_754', 'LKD_N_641']","[54.10121961162137, 54.06869125873727]","[12.237855544691335, 12.227893495919085]","['DE', 'DE']",0.0,54.08495543517932,3.676042942450177,12.23287452030521,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_845,PS_1121,['LKD_1121'],"['LKD_N_641', 'LKD_N_636']","[54.06869125873727, 54.07688913525254]","[12.227893495919085, 12.190598196502116]","['DE', 'DE']",0.0,54.0727901969949,2.5992652992947307,12.2092458462106,25.0,0.0,1983.0,1.4845232338862173,400.0 -LKD_PS_846,PS_1122,['LKD_1122'],"['LKD_N_641', 'LKD_N_623']","[54.06869125873727, 53.89891711972883]","[12.227893495919085, 12.058960551257021]","['DE', 'DE']",0.0,53.98380418923305,21.878835282697647,12.143427023588053,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_847,PS_1123,['LKD_1123'],"['LKD_N_623', 'LKD_N_624']","[53.89891711972883, 53.90706497727878]","[12.058960551257021, 12.001123121531363]","['DE', 'DE']",0.0,53.90299104850381,3.897021391470356,12.030041836394192,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_848,PS_1124,['LKD_1124'],"['LKD_N_641', 'LKD_N_659']","[54.06869125873727, 53.83175983814996]","[12.227893495919085, 12.306070706015918]","['DE', 'DE']",0.0,53.95022554844361,26.846066469582034,12.266982100967502,25.0,0.0,1983.0,1.4845232338862173,400.0 -LKD_PS_849,PS_1126,['LKD_1126'],"['LKD_N_659', 'LKD_N_623']","[53.83175983814996, 53.89891711972883]","[12.306070706015918, 12.058960551257021]","['DE', 'DE']",0.0,53.86533847893939,17.84660220239624,12.18251562863647,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_850,PS_1130,['LKD_1130'],"['LKD_N_754', 'LKD_N_912']","[54.10121961162137, 54.29625115420379]","[12.237855544691335, 13.124538493484295]","['DE', 'XX']",0.0,54.198735382912574,61.636696921363196,12.681197019087815,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_852,PS_1140,['LKD_1140'],"['LKD_N_912', 'LKD_N_642']","[54.29625115420379, 54.247802397789755]","[13.124538493484295, 13.17321512837713]","['XX', 'DE']",0.0,54.27202677599677,6.247921560087034,13.148876810930712,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_853,PS_1141,['LKD_1141'],"['LKD_N_642', 'LKD_N_658']","[54.247802397789755, 53.91942080500172]","[13.17321512837713, 12.866354625487412]","['DE', 'DE']",0.0,54.08361160139574,41.65343292657121,13.01978487693227,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_854,PS_1143,['LKD_1143'],"['LKD_N_642', 'LKD_N_643']","[54.247802397789755, 54.050548297763]","[13.17321512837713, 13.308192121678731]","['DE', 'DE']",0.0,54.14917534777638,23.636928065192155,13.24070362502793,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_855,PS_1145,['LKD_1145'],"['LKD_N_643', 'LKD_N_657']","[54.050548297763, 53.914527410399046]","[13.308192121678731, 12.90421459026255]","['DE', 'DE']",0.0,53.98253785408102,30.447758289104165,13.10620335597064,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_856,PS_1148,['LKD_1148'],"['LKD_N_657', 'LKD_N_652']","[53.914527410399046, 53.913350816510615]","[12.90421459026255, 12.885208996188734]","['DE', 'DE']",0.0,53.91393911345483,1.2519979472070162,12.894711793225643,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_857,PS_1149,['LKD_1149'],"['LKD_N_652', 'LKD_N_659']","[53.913350816510615, 53.83175983814996]","[12.885208996188734, 12.306070706015918]","['DE', 'DE']",0.0,53.87255532733029,39.04857900967439,12.595639851102327,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_858,PS_1151,['LKD_1151'],"['LKD_N_659', 'LKD_N_731']","[53.83175983814996, 53.32256239346002]","[12.306070706015918, 12.259876280440736]","['DE', 'DE']",0.0,53.577161115804984,56.720046840940185,12.282973493228326,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_859,PS_1152,['LKD_1152'],"['LKD_N_731', 'LKD_N_621']","[53.32256239346002, 53.34565630075738]","[12.259876280440736, 11.774109547419206]","['DE', 'DE']",0.0,53.3341093471087,32.366966577465895,12.016992913929972,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_860,PS_1154,['LKD_1154'],"['LKD_N_731', 'LKD_N_755']","[53.32256239346002, 53.53085340978302]","[12.259876280440736, 13.387906699576918]","['DE', 'DE']",0.0,53.42670790162152,78.26830560030724,12.823891490008826,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_861,PS_1166,['LKD_1166'],"['LKD_N_651', 'LKD_N_650']","[53.6862391801045, 53.72127297291729]","[13.460112226442588, 13.396862233416948]","['DE', 'DE']",0.0,53.7037560765109,5.703424269865624,13.428487229929768,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_862,PS_1167,['LKD_1167'],"['LKD_N_650', 'LKD_N_649']","[53.72127297291729, 53.88535762365381]","[13.396862233416948, 13.45700472668257]","['DE', 'DE']",0.0,53.803315298285554,18.673787376328967,13.426933480049758,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_863,PS_1168,['LKD_1168'],"['LKD_N_649', 'LKD_N_646']","[53.88535762365381, 53.9243418520426]","[13.45700472668257, 13.449428172880838]","['DE', 'DE']",0.0,53.90484973784821,4.364539350474273,13.453216449781703,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_864,PS_1169,['LKD_1169'],"['LKD_N_646', 'LKD_N_643']","[53.9243418520426, 54.050548297763]","[13.449428172880838, 13.308192121678731]","['DE', 'DE']",0.0,53.9874450749028,16.80415077501541,13.378810147279784,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_865,PS_1170,['LKD_1170'],"['LKD_N_643', 'LKD_N_644']","[54.050548297763, 53.97481966062844]","[13.308192121678731, 13.673704694367093]","['DE', 'DE']",0.0,54.01268397919572,25.331120018000224,13.490948408022913,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_866,PS_1175,['LKD_1175'],"['LKD_N_644', 'LKD_N_645']","[53.97481966062844, 54.065146615280916]","[13.673704694367093, 13.976559910159896]","['DE', 'DE']",0.0,54.01998313795468,22.195123624084175,13.825132302263494,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_867,PS_1179,['LKD_1179'],"['LKD_N_644', 'LKD_N_647']","[53.97481966062844, 53.884443384537285]","[13.673704694367093, 13.72476498774646]","['DE', 'DE']",0.0,53.929631522582866,10.594118090012962,13.699234841056775,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_868,PS_1180,['LKD_1180'],"['LKD_N_647', 'LKD_N_648']","[53.884443384537285, 53.854731688726716]","[13.72476498774646, 13.728002286368687]","['DE', 'DE']",0.0,53.869587536632,3.3116398994752365,13.726383637057573,63.0,0.0,1983.0,72.58333333333333,600.0 -LKD_PS_869,PS_1181,['LKD_1181'],"['LKD_N_647', 'LKD_N_646']","[53.884443384537285, 53.9243418520426]","[13.72476498774646, 13.449428172880838]","['DE', 'DE']",0.0,53.90439261828995,18.58039643898119,13.587096580313649,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_870,PS_1182,['LKD_1182'],"['LKD_N_651', 'LKD_N_755']","[53.6862391801045, 53.53085340978302]","[13.460112226442588, 13.387906699576918]","['DE', 'DE']",0.0,53.608546294943764,17.928354570031022,13.424009463009753,25.0,0.0,1983.0,72.58333333333333,300.0 -LKD_PS_871,PS_1184,['LKD_1184'],"['LKD_N_755', 'LKD_N_661']","[53.53085340978302, 53.38283015248922]","[13.387906699576918, 13.11661784186393]","['DE', 'DE']",0.0,53.45684178113612,24.37016828755184,13.252262270720424,25.0,0.0,1983.0,72.58333333333333,400.0 -LKD_PS_872,PS_1190,['LKD_1190'],"['LKD_N_661', 'LKD_N_660']","[53.38283015248922, 53.37555963629301]","[13.11661784186393, 13.07370183583639]","['DE', 'DE']",0.0,53.37919489439112,2.9601045909638466,13.09515983885016,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_873,PS_1191,['LKD_1191'],"['LKD_N_661', 'LKD_N_662']","[53.38283015248922, 53.295121614953835]","[13.11661784186393, 13.115751542971088]","['DE', 'DE']",0.0,53.33897588372153,9.75597564944088,13.116184692417509,25.0,0.0,1983.0,4.589900761271087,400.0 -LKD_PS_874,PS_1195,['LKD_1195'],"['LKD_N_662', 'LKD_N_653']","[53.295121614953835, 53.285483103616286]","[13.115751542971088, 13.084480720438993]","['DE', 'DE']",0.0,53.290302359285064,2.3392917726727434,13.10011613170504,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_875,PS_1196,['LKD_1196'],"['LKD_N_662', 'LKD_N_665']","[53.295121614953835, 52.97930142453562]","[13.115751542971088, 13.141311434427987]","['DE', 'DE']",0.0,53.137211519744724,35.1700047322563,13.128531488699537,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_876,PS_1201,['LKD_1201'],"['LKD_N_665', 'LKD_N_666']","[52.97930142453562, 52.98335024888031]","[13.141311434427987, 13.29661444879752]","['DE', 'DE']",0.0,52.98132583670797,10.41018992523266,13.218962941612753,25.0,0.0,1983.0,0.0041666666666666675,400.0 -LKD_PS_877,PS_1203,['LKD_1203'],"['LKD_N_666', 'LKD_N_663']","[52.98335024888031, 52.971759871583295]","[13.29661444879752, 13.3243075681453]","['DE', 'DE']",0.0,52.97755506023181,2.258775646602197,13.31046100847141,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_878,PS_1204,['LKD_1204'],"['LKD_N_666', 'LKD_N_656']","[52.98335024888031, 53.10602329157271]","[13.29661444879752, 13.519255963725104]","['DE', 'DE']",0.0,53.04468677022651,20.19503679196012,13.407935206261312,25.0,0.0,1983.0,0.0041666666666666675,400.0 -LKD_PS_879,PS_1207,['LKD_1207'],"['LKD_N_656', 'LKD_N_655']","[53.10602329157271, 53.11043951583689]","[13.519255963725104, 13.534750746572612]","['DE', 'DE']",0.0,53.1082314037048,1.1453044480237162,13.527003355148858,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_880,PS_1208,['LKD_1208'],"['LKD_N_655', 'LKD_N_654']","[53.11043951583689, 53.34750888166807]","[13.534750746572612, 13.917851868516147]","['DE', 'DE']",0.0,53.22897419875248,36.688009643820706,13.726301307544379,25.0,0.0,1983.0,0.0041666666666666675,400.0 -LKD_PS_881,PS_1213,['LKD_1213'],"['LKD_N_665', 'LKD_N_667']","[52.97930142453562, 52.73107925616711]","[13.141311434427987, 13.37172429266143]","['DE', 'DE']",0.0,52.85519034035136,31.65096691747239,13.256517863544708,25.0,0.0,1983.0,0.0041666666666666675,400.0 -LKD_PS_882,PS_1216,['LKD_1216'],"['LKD_N_667', 'LKD_N_668']","[52.73107925616711, 52.71927138232471]","[13.37172429266143, 13.515759631782375]","['DE', 'DE']",0.0,52.725175319245906,9.79144030343145,13.443741962221903,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_883,PS_1217,['LKD_1217'],"['LKD_N_668', 'LKD_N_672']","[52.71927138232471, 52.65516659076062]","[13.515759631782375, 13.67243239048923]","['DE', 'DE']",0.0,52.68721898654267,12.744751842117577,13.594096011135804,55.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_884,PS_1218,['LKD_1218'],"['LKD_N_672', 'LKD_N_678']","[52.65516659076062, 52.45214475747545]","[13.67243239048923, 13.979228779110445]","['DE', 'DE']",0.0,52.55365567411803,30.666760446812027,13.825830584799839,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_885,PS_1219,['LKD_1219'],"['LKD_N_668', 'LKD_N_670']","[52.71927138232471, 52.69006430591321]","[13.515759631782375, 13.528534929008094]","['DE', 'DE']",0.0,52.70466784411896,3.360860763866906,13.522147280395235,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_886,PS_1220,['LKD_1220'],"['LKD_N_669', 'LKD_N_671']","[52.709995061777164, 52.68876911299943]","[13.542106274933744, 13.542276952011154]","['DE', 'DE']",0.0,52.6993820873883,2.360986772027924,13.542191613472449,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_887,PS_1221,['LKD_1221'],"['LKD_N_671', 'LKD_N_670']","[52.68876911299943, 52.69006430591321]","[13.542276952011154, 13.528534929008094]","['DE', 'DE']",0.0,52.689416709456324,0.9376254072579155,13.535405940509623,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_888,PS_1222,['LKD_1222'],"['LKD_N_671', 'LKD_N_673']","[52.68876911299943, 52.61932403858557]","[13.542276952011154, 13.598565949986389]","['DE', 'DE']",0.0,52.6540465757925,8.60763171643196,13.570421450998772,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_889,PS_1225,['LKD_1225'],"['LKD_N_673', 'LKD_N_674']","[52.61932403858557, 52.61088821990411]","[13.598565949986389, 13.602846109730507]","['DE', 'DE']",0.0,52.615106129244836,0.981830200878913,13.600706029858447,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_890,PS_1226,['LKD_1226'],"['LKD_N_674', 'LKD_N_677']","[52.61088821990411, 52.58243418352507]","[13.602846109730507, 13.55871147613644]","['DE', 'DE']",0.0,52.596661201714596,4.348389281824668,13.580778792933472,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_891,PS_1229,['LKD_1229'],"['LKD_N_673', 'LKD_N_672']","[52.61932403858557, 52.65516659076062]","[13.598565949986389, 13.67243239048923]","['DE', 'DE']",0.0,52.637245314673095,6.383959052795731,13.63549917023781,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_892,PS_1230,['LKD_1230'],"['LKD_N_674', 'LKD_N_675']","[52.61088821990411, 52.61058814750949]","[13.602846109730507, 13.624855682611386]","['DE', 'DE']",0.0,52.6107381837068,1.4869397476782098,13.613850896170947,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_893,PS_1231,['LKD_1231'],"['LKD_N_675', 'LKD_N_680']","[52.61058814750949, 52.4929310939079]","[13.624855682611386, 13.875822924957061]","['DE', 'DE']",0.0,52.551759620708694,21.43293515529975,13.750339303784223,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_895,PS_1233,['LKD_1233'],"['LKD_N_679', 'LKD_N_680']","[52.48767592650672, 52.4929310939079]","[13.782270007722927, 13.875822924957061]","['DE', 'DE']",0.0,52.49030351020731,6.362997776629587,13.829046466339994,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_897,PS_1235,['LKD_1235'],"['LKD_N_680', 'LKD_N_681']","[52.4929310939079, 52.422729202159886]","[13.875822924957061, 13.792438809819322]","['DE', 'DE']",0.0,52.45783014803389,9.63916079008016,13.834130867388192,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_898,PS_1236,['LKD_1236'],"['LKD_N_681', 'LKD_N_682']","[52.422729202159886, 52.33270782300831]","[13.792438809819322, 13.761441584806782]","['DE', 'DE']",0.0,52.377718512584096,10.231877412049263,13.776940197313053,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_899,PS_1237,['LKD_1237'],"['LKD_N_682', 'LKD_N_412']","[52.33270782300831, 52.14250677689274]","[13.761441584806782, 14.586065160225177]","['DE', 'DE']",0.0,52.237607299950525,60.021559608301736,14.173753372515979,25.0,0.0,1983.0,38.8125,600.0 -LKD_PS_900,PS_1238,['LKD_1238'],"['LKD_N_682', 'LKD_N_693']","[52.33270782300831, 52.196792536504155]","[13.761441584806782, 13.671233016542333]","['DE', 'DE']",0.0,52.264750179756234,16.31744935222945,13.716337300674557,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_901,PS_1239,['LKD_1239'],"['LKD_N_693', 'LKD_N_692']","[52.196792536504155, 52.166074242776716]","[13.671233016542333, 13.663272303368231]","['DE', 'DE']",0.0,52.18143338964043,3.459658783581946,13.667252659955281,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_902,PS_1240,['LKD_1240'],"['LKD_N_692', 'LKD_N_691']","[52.166074242776716, 52.260711295490395]","[13.663272303368231, 13.590518031384597]","['DE', 'DE']",0.0,52.213392769133556,11.635821868291693,13.626895167376414,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_903,PS_1242,['LKD_1242'],"['LKD_N_691', 'LKD_N_685']","[52.260711295490395, 52.272508245436306]","[13.590518031384597, 13.62851477892006]","['DE', 'DE']",0.0,52.26660977046335,2.9002969921375144,13.609516405152329,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_904,PS_1243,['LKD_1243'],"['LKD_N_691', 'LKD_N_690']","[52.260711295490395, 52.31487467720128]","[13.590518031384597, 13.581902799073035]","['DE', 'DE']",0.0,52.287792986345835,6.053032837810713,13.586210415228816,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_905,PS_1245,['LKD_1245'],"['LKD_N_682', 'LKD_N_690']","[52.33270782300831, 52.31487467720128]","[13.761441584806782, 13.581902799073035]","['DE', 'DE']",0.0,52.3237912501048,12.365799795898424,13.671672191939908,25.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_906,PS_1246,['LKD_1246'],"['LKD_N_690', 'LKD_N_688']","[52.31487467720128, 52.315829521095026]","[13.581902799073035, 13.538463061863064]","['DE', 'DE']",0.0,52.31535209914816,2.955657429651773,13.560182930468049,25.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_907,PS_1247,['LKD_1247'],"['LKD_N_688', 'LKD_N_684']","[52.315829521095026, 52.37798362053498]","[13.538463061863064, 13.566463563927355]","['DE', 'DE']",0.0,52.346906570815,7.1704087656903805,13.55246331289521,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_908,PS_1249,['LKD_1249'],"['LKD_N_688', 'LKD_N_687']","[52.315829521095026, 52.31535781475965]","[13.538463061863064, 13.516089061268652]","['DE', 'DE']",0.0,52.31559366792734,1.5222491654987167,13.527276061565857,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_909,PS_1250,['LKD_1250'],"['LKD_N_687', 'LKD_N_694']","[52.31535781475965, 52.36526228065373]","[13.516089061268652, 13.42014527044077]","['DE', 'DE']",0.0,52.340310047706694,8.562976244777325,13.46811716585471,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_910,PS_1251,['LKD_1251'],"['LKD_N_694', 'LKD_N_696']","[52.36526228065373, 52.40578567644236]","[13.42014527044077, 13.430210821137974]","['DE', 'DE']",0.0,52.38552397854805,4.558914146584549,13.425178045789373,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_911,PS_1252,['LKD_1252'],"['LKD_N_694', 'LKD_N_695']","[52.36526228065373, 52.39938004597585]","[13.42014527044077, 13.328508539234363]","['DE', 'DE']",0.0,52.38232116331479,7.287587622999383,13.374326904837567,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_912,PS_1253,['LKD_1253'],"['LKD_N_687', 'LKD_N_756']","[52.31535781475965, 52.29977152190533]","[13.516089061268652, 13.308920667033078]","['DE', 'DE']",0.0,52.30756466833249,14.195454169835969,13.412504864150865,25.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_913,PS_1255,['LKD_1255'],"['LKD_N_688', 'LKD_N_689']","[52.315829521095026, 52.30479667218088]","[13.538463061863064, 13.538080343136233]","['DE', 'DE']",0.0,52.310313096637955,1.2274579029137775,13.53827170249965,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_914,PS_1256,['LKD_1256'],"['LKD_N_687', 'LKD_N_689']","[52.31535781475965, 52.30479667218088]","[13.516089061268652, 13.538080343136233]","['DE', 'DE']",0.0,52.31007724347026,1.901708826068961,13.527084702202442,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_915,PS_1257,['LKD_1257'],"['LKD_N_689', 'LKD_N_705']","[52.30479667218088, 52.178295516028044]","[13.538080343136233, 12.909049506895919]","['DE', 'DE']",0.0,52.241546094104464,45.0944066434097,13.223564925016076,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_916,PS_1265,['LKD_1265'],"['LKD_N_631', 'LKD_N_753']","[53.5491179840924, 53.67009048431768]","[11.359219938369808, 11.324087681697279]","['DE', 'DE']",0.0,53.60960423420504,13.654019186586334,11.341653810033543,25.0,0.0,1983.0,4.589900761271087,400.0 -LKD_PS_917,PS_1266,['LKD_1266'],"['LKD_N_753', 'LKD_N_630']","[53.67009048431768, 53.69793428249581]","[11.324087681697279, 11.354223138554643]","['DE', 'DE']",0.0,53.684012383406746,3.6786742069155576,11.339155410125962,25.0,0.0,1983.0,4.589900761271087,400.0 -LKD_PS_918,PS_1271,['LKD_1271'],"['LKD_N_693', 'LKD_N_760']","[52.196792536504155, 52.19737845613995]","[13.671233016542333, 13.631293070319927]","['DE', 'DE']",0.0,52.19708549632205,2.7238062014583697,13.651263043431129,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_919,PS_1273,['LKD_1273'],"['LKD_N_756', 'LKD_N_757']","[52.29977152190533, 52.30027447469324]","[13.308920667033078, 13.292264308249406]","['DE', 'DE']",0.0,52.30002299829928,1.1343461169004603,13.300592487641243,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_920,PS_1274,['LKD_1274'],"['LKD_N_757', 'LKD_N_758']","[52.30027447469324, 52.29055767812249]","[13.292264308249406, 13.275313802502549]","['DE', 'DE']",0.0,52.29541607640786,1.5804266587366043,13.283789055375976,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_921,PS_1275,['LKD_1275'],"['LKD_N_756', 'LKD_N_698']","[52.29977152190533, 52.31251693462839]","[13.308920667033078, 13.307684854954806]","['DE', 'DE']",0.0,52.30614422826686,1.4201594011978569,13.308302760993943,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_922,PS_1276,['LKD_1276'],"['LKD_N_757', 'LKD_N_683']","[52.30027447469324, 52.37075519852245]","[13.292264308249406, 13.255603415442115]","['DE', 'DE']",0.0,52.33551483660784,8.226003234271069,13.27393386184576,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_923,PS_1278,['LKD_1278'],"['LKD_N_758', 'LKD_N_697']","[52.29055767812249, 52.30012212400062]","[13.275313802502549, 13.256321896356644]","['DE', 'DE']",0.0,52.29533990106155,1.673606143047768,13.265817849429595,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_924,PS_1279,['LKD_1279'],"['LKD_N_758', 'LKD_N_763']","[52.29055767812249, 52.35476430871124]","[13.275313802502549, 13.028677334683023]","['DE', 'DE']",0.0,52.32266099341686,18.225175983525194,13.151995568592785,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_925,PS_1282,['LKD_1282'],"['LKD_N_705', 'LKD_N_706']","[52.178295516028044, 52.29817009569798]","[12.909049506895919, 12.915850894960206]","['DE', 'DE']",0.0,52.23823280586301,13.341675298055591,12.912450200928063,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_926,PS_1283,['LKD_1283'],"['LKD_N_705', 'LKD_N_761']","[52.178295516028044, 52.388922083232934]","[12.909049506895919, 12.843602802754567]","['DE', 'DE']",0.0,52.283608799630485,23.8474584965739,12.876326154825243,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_927,PS_1284,['LKD_1284'],"['LKD_N_670', 'LKD_N_759']","[52.69006430591321, 52.695109506118364]","[13.528534929008094, 13.424806430908497]","['DE', 'DE']",0.0,52.69258690601579,7.015382244856103,13.476670679958296,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_928,PS_1285,['LKD_1285'],"['LKD_N_759', 'LKD_N_676']","[52.695109506118364, 52.6508382172037]","[13.424806430908497, 13.450023990939025]","['DE', 'DE']",0.0,52.672973861661035,5.209739790892087,13.43741521092376,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_929,PS_1286,['LKD_1286'],"['LKD_N_759', 'LKD_N_664']","[52.695109506118364, 52.71625557093654]","[13.424806430908497, 13.364869393564133]","['DE', 'DE']",0.0,52.705682538527455,4.674351244615964,13.394837912236316,63.0,0.0,1983.0,0.0041666666666666675,125.0 -LKD_PS_930,PS_1287,['LKD_1287'],"['LKD_N_664', 'LKD_N_667']","[52.71625557093654, 52.73107925616711]","[13.364869393564133, 13.37172429266143]","['DE', 'DE']",0.0,52.72366741355182,1.7122840595841753,13.36829684311278,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_931,PS_1288,['LKD_1288'],"['LKD_N_664', 'LKD_N_703']","[52.71625557093654, 52.49425653494883]","[13.364869393564133, 12.888269275112924]","['DE', 'DE']",0.0,52.605256052942686,40.57351496391733,13.126569334338528,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_932,PS_1292,['LKD_1292'],"['LKD_N_763', 'LKD_N_764']","[52.35476430871124, 52.365448517293494]","[13.028677334683023, 13.039719882385887]","['DE', 'DE']",0.0,52.36010641300237,1.4053267154785272,13.034198608534455,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_933,PS_1293,['LKD_1293'],"['LKD_N_763', 'LKD_N_767']","[52.35476430871124, 52.38040982277752]","[13.028677334683023, 12.998585548810347]","['DE', 'DE']",0.0,52.36758706574438,3.509103672198175,13.013631441746686,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_934,PS_1294,['LKD_1294'],"['LKD_N_767', 'LKD_N_765']","[52.38040982277752, 52.379759048744994]","[12.998585548810347, 13.033805102817194]","['DE', 'DE']",0.0,52.38008443576126,2.392396389529981,13.01619532581377,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_935,PS_1297,['LKD_1297'],"['LKD_N_767', 'LKD_N_766']","[52.38040982277752, 52.42061724460332]","[12.998585548810347, 13.014283956208443]","['DE', 'DE']",0.0,52.40051353369042,4.597411154564446,13.006434752509396,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_936,PS_1298,['LKD_1298'],"['LKD_N_766', 'LKD_N_762']","[52.42061724460332, 52.42468174683646]","[13.014283956208443, 13.066144742082678]","['DE', 'DE']",0.0,52.422649495719895,3.5467266857964987,13.040214349145561,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_937,PS_1300,['LKD_1300'],"['LKD_N_766', 'LKD_N_703']","[52.42061724460332, 52.49425653494883]","[13.014283956208443, 12.888269275112924]","['DE', 'DE']",0.0,52.457436889776076,11.833830252546898,12.951276615660683,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_938,PS_1306,['LKD_1306'],"['LKD_N_703', 'LKD_N_704']","[52.49425653494883, 52.49445053182319]","[12.888269275112924, 12.862076205204998]","['DE', 'DE']",0.0,52.49435353338601,1.773955482102513,12.87517274015896,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_939,PS_1308,['LKD_1308'],"['LKD_N_703', 'LKD_N_761']","[52.49425653494883, 52.388922083232934]","[12.888269275112924, 12.843602802754567]","['DE', 'DE']",0.0,52.44158930909089,12.101413948043565,12.865936038933746,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_940,PS_1309,['LKD_1309'],"['LKD_N_704', 'LKD_N_761']","[52.49445053182319, 52.388922083232934]","[12.862076205204998, 12.843602802754567]","['DE', 'DE']",0.0,52.44168630752806,11.804550794222465,12.852839503979784,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_941,PS_1314,['LKD_1314'],"['LKD_N_761', 'LKD_N_706']","[52.388922083232934, 52.29817009569798]","[12.843602802754567, 12.915850894960206]","['DE', 'DE']",0.0,52.343546089465455,11.224904309621385,12.879726848857388,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_942,PS_1315,['LKD_1315'],"['LKD_N_706', 'LKD_N_763']","[52.29817009569798, 52.35476430871124]","[12.915850894960206, 13.028677334683023]","['DE', 'DE']",0.0,52.32646720220461,9.92237297908438,12.972264114821614,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_943,PS_1317,['LKD_1317'],"['LKD_N_704', 'LKD_N_708']","[52.49445053182319, 52.769990701116306]","[12.862076205204998, 12.506151607919785]","['DE', 'DE']",0.0,52.63222061646975,38.94423051882303,12.684113906562391,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_945,PS_1322,['LKD_1322'],"['LKD_N_708', 'LKD_N_730']","[52.769990701116306, 53.13909904309623]","[12.506151607919785, 12.170587859381268]","['DE', 'DE']",0.0,52.95454487210627,46.81026803525462,12.338369733650527,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_946,PS_1327,['LKD_1327'],"['LKD_N_730', 'LKD_N_731']","[53.13909904309623, 53.32256239346002]","[12.170587859381268, 12.259876280440736]","['DE', 'DE']",0.0,53.23083071827813,21.25491482196795,12.215232069911002,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_947,PS_1329,['LKD_1329'],"['LKD_N_705', 'LKD_N_702']","[52.178295516028044, 52.11694027058956]","[12.909049506895919, 12.460818835436026]","['DE', 'DE']",0.0,52.147617893308805,31.345361857191495,12.684934171165972,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_948,PS_1332,['LKD_1332'],"['LKD_N_702', 'LKD_N_700']","[52.11694027058956, 52.138313927245235]","[12.460818835436026, 12.446962982845044]","['DE', 'DE']",0.0,52.1276270989174,2.5587411028362714,12.453890909140535,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_949,PS_1333,['LKD_1333'],"['LKD_N_700', 'LKD_N_707']","[52.138313927245235, 52.40165728207187]","[12.446962982845044, 12.397340585879418]","['DE', 'DE']",0.0,52.26998560465855,29.48572739102476,12.422151784362232,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_950,PS_1336,['LKD_1336'],"['LKD_N_705', 'LKD_N_699']","[52.178295516028044, 52.15929223966505]","[12.909049506895919, 12.953078363684153]","['DE', 'DE']",0.0,52.16879387784655,3.672892105292868,12.931063935290036,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_951,PS_1337,['LKD_1337'],"['LKD_N_705', 'LKD_N_750']","[52.178295516028044, 51.956508949983665]","[12.909049506895919, 12.672305421528629]","['DE', 'DE']",0.0,52.06740223300585,29.50620328409803,12.790677464212273,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_952,PS_1339,['LKD_1339'],"['LKD_N_705', 'LKD_N_750']","[52.178295516028044, 51.956508949983665]","[12.909049506895919, 12.672305421528629]","['DE', 'DE']",0.0,52.06740223300585,29.50620328409803,12.790677464212273,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_953,PS_1340,['LKD_1340'],"['LKD_N_750', 'LKD_N_749']","[51.956508949983665, 51.90662840512626]","[12.672305421528629, 12.641059781744834]","['DE', 'DE']",0.0,51.931568677554964,5.947679145533167,12.656682601636732,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_954,PS_1341,['LKD_1341'],"['LKD_N_702', 'LKD_N_746']","[52.11694027058956, 51.90394613175086]","[12.460818835436026, 12.491032123055122]","['DE', 'DE']",0.0,52.010443201170204,23.781433211981724,12.475925479245575,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_955,PS_1342,['LKD_1342'],"['LKD_N_750', 'LKD_N_746']","[51.956508949983665, 51.90394613175086]","[12.672305421528629, 12.491032123055122]","['DE', 'DE']",0.0,51.930227540867264,13.738979823345176,12.581668772291875,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_956,PS_1343,['LKD_1343'],"['LKD_N_746', 'LKD_N_747']","[51.90394613175086, 51.897845588718106]","[12.491032123055122, 12.523986287571136]","['DE', 'DE']",0.0,51.900895860234485,2.36129091260058,12.507509205313129,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_957,PS_1344,['LKD_1344'],"['LKD_N_749', 'LKD_N_748']","[51.90662840512626, 51.907662055053635]","[12.641059781744834, 12.606670391852013]","['DE', 'DE']",0.0,51.90714523008995,2.362663683406432,12.623865086798425,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_958,PS_1345,['LKD_1345'],"['LKD_N_748', 'LKD_N_747']","[51.907662055053635, 51.897845588718106]","[12.606670391852013, 12.523986287571136]","['DE', 'DE']",0.0,51.90275382188587,5.778588350601147,12.565328339711574,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_959,PS_1346,['LKD_1346'],"['LKD_N_749', 'LKD_N_751']","[51.90662840512626, 51.866138477892996]","[12.641059781744834, 12.60121322754371]","['DE', 'DE']",0.0,51.88638344150963,5.269417471048211,12.621136504644273,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_960,PS_1349,['LKD_1349'],"['LKD_N_748', 'LKD_N_751']","[51.907662055053635, 51.866138477892996]","[12.606670391852013, 12.60121322754371]","['DE', 'DE']",0.0,51.88690026647332,4.633830782455854,12.603941809697861,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_961,PS_1350,['LKD_1350'],"['LKD_N_749', 'LKD_N_715']","[51.90662840512626, 51.5552618658098]","[12.641059781744834, 13.434032216860034]","['DE', 'DE']",0.0,51.73094513546803,67.1686225259398,13.037545999302434,63.0,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_962,PS_1355,['LKD_1355'],"['LKD_N_715', 'LKD_N_721']","[51.5552618658098, 51.4741199121513]","[13.434032216860034, 13.704246408740522]","['DE', 'DE']",0.0,51.51469088898055,20.76786125606366,13.569139312800278,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_963,PS_1357,['LKD_1357'],"['LKD_N_721', 'LKD_N_717']","[51.4741199121513, 51.5124348128187]","[13.704246408740522, 13.665510860935091]","['DE', 'DE']",0.0,51.493277362485,5.035728805170063,13.684878634837807,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_964,PS_1358,['LKD_1358'],"['LKD_N_717', 'LKD_N_720']","[51.5124348128187, 51.62710337702513]","[13.665510860935091, 13.64884123590376]","['DE', 'DE']",0.0,51.56976909492191,12.806526784783287,13.657176048419426,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_965,PS_1359,['LKD_1359'],"['LKD_N_717', 'LKD_N_716']","[51.5124348128187, 51.665984143301465]","[13.665510860935091, 13.654168738903413]","['DE', 'DE']",0.0,51.589209478060084,17.097242635970485,13.659839799919252,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_966,PS_1361,['LKD_1361'],"['LKD_N_720', 'LKD_N_719']","[51.62710337702513, 51.63321707221831]","[13.64884123590376, 13.61776322794545]","['DE', 'DE']",0.0,51.63016022462172,2.250936050980327,13.633302231924604,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_967,PS_1362,['LKD_1362'],"['LKD_N_720', 'LKD_N_716']","[51.62710337702513, 51.665984143301465]","[13.64884123590376, 13.654168738903413]","['DE', 'DE']",0.0,51.6465437601633,4.340304573287038,13.651504987403587,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_968,PS_1363,['LKD_1363'],"['LKD_N_716', 'LKD_N_714']","[51.665984143301465, 51.927740498735716]","[13.654168738903413, 13.623088124482418]","['DE', 'DE']",0.0,51.796862321018594,29.193512089091563,13.638628431692915,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_969,PS_1365,['LKD_1365'],"['LKD_N_714', 'LKD_N_711']","[51.927740498735716, 52.02952118621877]","[13.623088124482418, 13.657033079069373]","['DE', 'DE']",0.0,51.978630842477244,11.55745741408988,13.640060601775897,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_970,PS_1367,['LKD_1367'],"['LKD_N_711', 'LKD_N_692']","[52.02952118621877, 52.166074242776716]","[13.657033079069373, 13.663272303368231]","['DE', 'DE']",0.0,52.097797714497744,15.194755720397488,13.660152691218801,85.0,0.0,1983.0,0.0041666666666666675,900.0 -LKD_PS_971,PS_1368,['LKD_1368'],"['LKD_N_692', 'LKD_N_712']","[52.166074242776716, 51.95969137950316]","[13.663272303368231, 13.659710015908246]","['DE', 'DE']",0.0,52.06288281113994,22.957223940865134,13.661491159638238,63.0,0.0,1983.0,0.0041666666666666675,600.0 -LKD_PS_972,PS_1369,['LKD_1369'],"['LKD_N_712', 'LKD_N_714']","[51.95969137950316, 51.927740498735716]","[13.659710015908246, 13.623088124482418]","['DE', 'DE']",0.0,51.94371593911944,4.3514760950471185,13.641399070195332,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_973,PS_1370,['LKD_1370'],"['LKD_N_712', 'LKD_N_713']","[51.95969137950316, 51.95681511701897]","[13.659710015908246, 13.746297379519822]","['DE', 'DE']",0.0,51.958253248261066,5.943640387938093,13.703003697714035,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_974,PS_1371,['LKD_1371'],"['LKD_N_714', 'LKD_N_716']","[51.927740498735716, 51.665984143301465]","[13.623088124482418, 13.654168738903413]","['DE', 'DE']",0.0,51.796862321018594,29.193512089091563,13.638628431692915,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_975,PS_1374,['LKD_1374'],"['LKD_N_715', 'LKD_N_718']","[51.5552618658098, 51.60194383518458]","[13.434032216860034, 13.465474891680612]","['DE', 'DE']",0.0,51.57860285049719,5.628941645424778,13.449753554270323,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_976,PS_1375,['LKD_1375'],"['LKD_N_721', 'LKD_N_422']","[51.4741199121513, 51.449531541778136]","[13.704246408740522, 13.867816379300194]","['DE', 'DE']",0.0,51.46182572696472,11.660698419792517,13.786031394020359,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_977,PS_1376,['LKD_1376'],"['LKD_N_721', 'LKD_N_724']","[51.4741199121513, 51.44220016963008]","[13.704246408740522, 13.7318737588468]","['DE', 'DE']",0.0,51.45816004089069,4.033824829477606,13.718060083793661,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_978,PS_1377,['LKD_1377'],"['LKD_N_724', 'LKD_N_423']","[51.44220016963008, 51.44096072980519]","[13.7318737588468, 13.867466905216396]","['DE', 'DE']",0.0,51.441580449717634,9.40180705484117,13.7996703320316,84.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_979,PS_1379,['LKD_1379'],"['LKD_N_724', 'LKD_N_725']","[51.44220016963008, 51.43806459586726]","[13.7318737588468, 13.706905778750267]","['DE', 'DE']",0.0,51.44013238274867,1.791182240931449,13.719389768798534,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_980,PS_1380,['LKD_1380'],"['LKD_N_725', 'LKD_N_726']","[51.43806459586726, 51.43784283398193]","[13.706905778750267, 13.687688690821181]","['DE', 'DE']",0.0,51.437953714924596,1.332672476887165,13.697297234785724,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_981,PS_1381,['LKD_1381'],"['LKD_N_726', 'LKD_N_727']","[51.43784283398193, 51.437049479514464]","[13.687688690821181, 13.673253099769791]","['DE', 'DE']",0.0,51.437446156748194,1.0048058430882156,13.680470895295485,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_982,PS_1382,['LKD_1382'],"['LKD_N_725', 'LKD_N_723']","[51.43806459586726, 51.374193704693226]","[13.706905778750267, 13.625401316417026]","['DE', 'DE']",0.0,51.40612915028024,9.080343242651994,13.666153547583647,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_983,PS_1383,['LKD_1383'],"['LKD_N_723', 'LKD_N_432']","[51.374193704693226, 51.29983059854724]","[13.625401316417026, 13.589935915433706]","['DE', 'DE']",0.0,51.33701215162023,8.630736943125013,13.607668615925366,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_984,PS_1384,['LKD_1384'],"['LKD_N_726', 'LKD_N_722']","[51.43784283398193, 51.37738137461466]","[13.687688690821181, 13.611925905250052]","['DE', 'DE']",0.0,51.407612104298295,8.53575649480995,13.649807298035617,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_985,PS_1385,['LKD_1385'],"['LKD_N_722', 'LKD_N_430']","[51.37738137461466, 51.302533587589586]","[13.611925905250052, 13.559017701209838]","['DE', 'DE']",0.0,51.33995748110212,9.100886299622392,13.585471803229945,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_986,PS_1386,['LKD_1386'],"['LKD_N_723', 'LKD_N_431']","[51.374193704693226, 51.30120762553433]","[13.625401316417026, 13.572653961176185]","['DE', 'DE']",0.0,51.33770066511378,8.907318138683223,13.599027638796606,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_987,PS_1387,['LKD_1387'],"['LKD_N_727', 'LKD_N_722']","[51.437049479514464, 51.37738137461466]","[13.673253099769791, 13.611925905250052]","['DE', 'DE']",0.0,51.40721542706456,7.883761350849489,13.64258950250992,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_988,PS_1388,['LKD_1388'],"['LKD_N_721', 'LKD_N_518']","[51.4741199121513, 51.44402756812266]","[13.704246408740522, 13.488353618841144]","['DE', 'DE']",0.0,51.45907374013698,15.332126584633846,13.596300013790833,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_989,PS_1392,['LKD_1392'],"['LKD_N_721', 'LKD_N_725']","[51.4741199121513, 51.43806459586726]","[13.704246408740522, 13.706905778750267]","['DE', 'DE']",0.0,51.45609225400928,4.01466018082761,13.705576093745394,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_990,PS_1394,['LKD_1394'],"['LKD_N_721', 'LKD_N_769']","[51.4741199121513, 51.44131505093763]","[13.704246408740522, 13.618312245871264]","['DE', 'DE']",0.0,51.457717481544464,6.98467859127795,13.661279327305893,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_991,PS_1395,['LKD_1395'],"['LKD_N_769', 'LKD_N_727']","[51.44131505093763, 51.437049479514464]","[13.618312245871264, 13.673253099769791]","['DE', 'DE']",0.0,51.43918226522605,3.838733722554906,13.645782672820527,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_993,PS_1397,['LKD_1397'],"['LKD_N_768', 'LKD_N_518']","[51.44371354423165, 51.44402756812266]","[13.503567267894237, 13.488353618841144]","['DE', 'DE']",0.0,51.44387055617715,1.055301593835453,13.49596044336769,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_994,PS_1398,['LKD_1398'],"['LKD_N_768', 'LKD_N_770']","[51.44371354423165, 51.36303800190996]","[13.503567267894237, 13.380043595145322]","['DE', 'DE']",0.0,51.403375773070806,12.4092341213863,13.441805431519779,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_995,PS_1400,['LKD_1400'],"['LKD_N_770', 'LKD_N_728']","[51.36303800190996, 51.329507053159745]","[13.380043595145322, 13.237973028985687]","['DE', 'DE']",0.0,51.34627252753485,10.551562237588566,13.309008312065504,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_996,PS_1404,['LKD_1404'],"['LKD_N_770', 'LKD_N_729']","[51.36303800190996, 51.30982667787366]","[13.380043595145322, 13.400458409026637]","['DE', 'DE']",0.0,51.336432339891815,6.0863268130927395,13.390251002085979,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_997,PS_1406,['LKD_1406'],"['LKD_N_366', 'LKD_N_364']","[51.13677280587728, 51.11897547852385]","[14.915376352572352, 14.968970861469003]","['DE', 'DE']",0.0,51.12787414220057,4.232676051406077,14.942173607020678,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_998,PS_1408,['LKD_1408'],"['LKD_N_384', 'LKD_N_771']","[51.09141504518765, 51.09446884392195]","[13.578213448831912, 13.622089301454237]","['DE', 'DE']",0.0,51.0929419445548,3.083881993687937,13.600151375143074,63.0,0.0,1983.0,11.9875,660.0 -LKD_PS_999,PS_1409,['LKD_1409'],"['LKD_N_771', 'LKD_N_772']","[51.09446884392195, 51.06849945443791]","[13.622089301454237, 13.670574991875553]","['DE', 'DE']",0.0,51.08148414917993,4.452230292555668,13.646332146664895,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1000,PS_1410,['LKD_1410'],"['LKD_N_772', 'LKD_N_387']","[51.06849945443791, 51.08756117035657]","[13.670574991875553, 13.669302788116005]","['DE', 'DE']",0.0,51.078030312397246,2.122094567591679,13.669938889995779,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1001,PS_1411,['LKD_1411'],"['LKD_N_772', 'LKD_N_388']","[51.06849945443791, 51.040202783495715]","[13.670574991875553, 13.687302575022967]","['DE', 'DE']",0.0,51.054351118966814,3.3577040913070904,13.67893878344926,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1002,PS_1412,['LKD_1412'],"['LKD_N_771', 'LKD_N_385']","[51.09446884392195, 51.076930694184696]","[13.622089301454237, 13.61551466608747]","['DE', 'DE']",0.0,51.08569976905332,2.004122118932272,13.618801983770854,63.0,0.0,1983.0,3.0083333333333333,600.0 -LKD_PS_1003,PS_1413,['LKD_1413'],"['LKD_N_540', 'LKD_N_541']","[51.41129474008128, 51.422683794172286]","[12.111608152974085, 12.113588183907288]","['DE', 'DE']",0.0,51.41698926712678,1.2742268894968354,12.112598168440687,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1004,PS_1414,['LKD_1414'],"['LKD_N_541', 'LKD_N_544']","[51.422683794172286, 51.44383380632967]","[12.113588183907288, 12.11819800385817]","['DE', 'DE']",0.0,51.43325880025098,2.374130908970044,12.115893093882729,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1005,PS_1415,['LKD_1415'],"['LKD_N_544', 'LKD_N_553']","[51.44383380632967, 51.48612723997197]","[12.11819800385817, 12.132643266386232]","['DE', 'DE']",0.0,51.46498052315082,4.809609146053114,12.1254206351222,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1006,PS_1416,['LKD_1416'],"['LKD_N_553', 'LKD_N_552']","[51.48612723997197, 51.561781029152286]","[12.132643266386232, 12.143960126847745]","['DE', 'DE']",0.0,51.52395413456213,8.451326161168756,12.138301696616988,63.0,0.0,1983.0,6.347690911236935,660.0 -LKD_PS_1007,PS_1417,['LKD_1417'],"['LKD_N_552', 'LKD_N_519']","[51.561781029152286, 51.6417560139566]","[12.143960126847745, 12.165170928859263]","['DE', 'DE']",0.0,51.60176852155445,9.015496199159815,12.154565527853503,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1008,PS_1418,['LKD_1418'],"['LKD_N_519', 'LKD_N_740']","[51.6417560139566, 51.668629528676846]","[12.165170928859263, 12.175992619159171]","['DE', 'DE']",0.0,51.65519277131672,3.0810051533926286,12.170581774009218,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1009,PS_1419,['LKD_1419'],"['LKD_N_740', 'LKD_N_738']","[51.668629528676846, 51.71207696822741]","[12.175992619159171, 12.160627882150914]","['DE', 'DE']",0.0,51.690353248452126,4.947416528963758,12.168310250655043,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1010,PS_1420,['LKD_1420'],"['LKD_N_738', 'LKD_N_737']","[51.71207696822741, 51.72698764171764]","[12.160627882150914, 12.16279997672329]","['DE', 'DE']",0.0,51.719532304972525,1.66525186052627,12.161713929437102,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1011,PS_1421,['LKD_1421'],"['LKD_N_737', 'LKD_N_736']","[51.72698764171764, 51.88538926445265]","[12.16279997672329, 12.11588460765506]","['DE', 'DE']",0.0,51.80618845308514,17.91200483387156,12.139342292189175,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1012,PS_1422,['LKD_1422'],"['LKD_N_740', 'LKD_N_743']","[51.668629528676846, 51.64481136415918]","[12.175992619159171, 12.24852009053538]","['DE', 'DE']",0.0,51.656720446418014,5.662640253281155,12.212256354847275,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1013,PS_1424,['LKD_1424'],"['LKD_N_740', 'LKD_N_741']","[51.668629528676846, 51.66767436436552]","[12.175992619159171, 12.221840185741634]","['DE', 'DE']",0.0,51.66815194652118,3.164643701935724,12.198916402450402,85.0,0.0,1983.0,11.10023465003349,800.0 -LKD_PS_1014,PS_1425,['LKD_1425'],"['LKD_N_741', 'LKD_N_742']","[51.66767436436552, 51.65443379188711]","[12.221840185741634, 12.26126646957655]","['DE', 'DE']",0.0,51.66105407812631,3.0933864497680754,12.24155332765909,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1015,PS_1426,['LKD_1426'],"['LKD_N_741', 'LKD_N_744']","[51.66767436436552, 51.67149322589463]","[12.221840185741634, 12.281823369754708]","['DE', 'DE']",0.0,51.66958379513007,4.159639813507509,12.251831777748171,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1016,PS_1429,['LKD_1429'],"['LKD_N_740', 'LKD_N_739']","[51.668629528676846, 51.695776760204]","[12.175992619159171, 12.205743696926902]","['DE', 'DE']",0.0,51.68220314444042,3.6507112255784913,12.190868158043036,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1017,PS_1430,['LKD_1430'],"['LKD_N_739', 'LKD_N_741']","[51.695776760204, 51.66767436436552]","[12.205743696926902, 12.221840185741634]","['DE', 'DE']",0.0,51.681725562284754,3.3170946679393216,12.213791941334268,63.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1018,PS_1432,['LKD_1432'],"['LKD_N_739', 'LKD_N_520']","[51.695776760204, 51.71159321151147]","[12.205743696926902, 12.218489752145178]","['DE', 'DE']",0.0,51.703684985857734,1.9664598451154158,12.21211672453604,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1019,PS_1433,['LKD_1433'],"['LKD_N_738', 'LKD_N_520']","[51.71207696822741, 51.71159321151147]","[12.160627882150914, 12.218489752145178]","['DE', 'DE']",0.0,51.71183508986944,3.9881963835771184,12.189558817148047,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1020,PS_1434,['LKD_1434'],"['LKD_N_520', 'LKD_N_737']","[51.71159321151147, 51.72698764171764]","[12.218489752145178, 12.16279997672329]","['DE', 'DE']",0.0,51.719290426614556,4.202195471510972,12.190644864434233,100.0,0.0,1983.0,41.791808697056254,1400.0 -LKD_PS_1021,PS_1435,['LKD_1435'],"['LKD_N_737', 'LKD_N_733']","[51.72698764171764, 51.77622610931332]","[12.16279997672329, 12.0222662477532]","['DE', 'DE']",0.0,51.75160687551548,11.119371221994959,12.092533112238245,100.0,0.0,1983.0,41.791808697056254,1400.0 -LKD_PS_1022,PS_1437,['LKD_1437'],"['LKD_N_733', 'LKD_N_735']","[51.77622610931332, 51.856482788498326]","[12.0222662477532, 12.058433350934854]","['DE', 'DE']",0.0,51.81635444890583,9.26686104003979,12.040349799344026,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1023,PS_1438,['LKD_1438'],"['LKD_N_733', 'LKD_N_732']","[51.77622610931332, 51.87515679854906]","[12.0222662477532, 11.78137782918419]","['DE', 'DE']",0.0,51.825691453931185,19.882852760763704,11.901822038468694,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_1024,PS_1440,['LKD_1440'],"['LKD_N_732', 'LKD_N_746']","[51.87515679854906, 51.90394613175086]","[11.78137782918419, 12.491032123055122]","['DE', 'DE']",0.0,51.88955146514996,48.82182120580318,12.136204976119657,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1025,PS_1444,['LKD_1444'],"['LKD_N_746', 'LKD_N_745']","[51.90394613175086, 51.85636765760119]","[12.491032123055122, 12.469891646864925]","['DE', 'DE']",0.0,51.88015689467602,5.487610010329022,12.480461884960024,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_1026,PS_1445,['LKD_1445'],"['LKD_N_745', 'LKD_N_520']","[51.85636765760119, 51.71159321151147]","[12.469891646864925, 12.218489752145178]","['DE', 'DE']",0.0,51.78398043455633,23.634007833563683,12.344190699505052,63.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1027,PS_1446,['LKD_1446'],"['LKD_N_747', 'LKD_N_745']","[51.897845588718106, 51.85636765760119]","[12.523986287571136, 12.469891646864925]","['DE', 'DE']",0.0,51.87710662315965,5.923097958507761,12.49693896721803,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1028,PS_1448,['LKD_1448'],"['LKD_N_745', 'LKD_N_520']","[51.85636765760119, 51.71159321151147]","[12.469891646864925, 12.218489752145178]","['DE', 'DE']",0.0,51.78398043455633,23.634007833563683,12.344190699505052,85.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1029,PS_1449,['LKD_1449'],"['LKD_N_738', 'LKD_N_734']","[51.71207696822741, 51.7341185617668]","[12.160627882150914, 12.013767477527248]","['DE', 'DE']",0.0,51.72309776499711,10.411845320024117,12.08719767983908,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1030,PS_1450,['LKD_1450'],"['LKD_N_734', 'LKD_N_733']","[51.7341185617668, 51.77622610931332]","[12.013767477527248, 12.0222662477532]","['DE', 'DE']",0.0,51.75517233554006,4.720029797510044,12.018016862640224,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1031,PS_1451,['LKD_1451'],"['LKD_N_734', 'LKD_N_554']","[51.7341185617668, 51.724476230116736]","[12.013767477527248, 11.83465442529572]","['DE', 'DE']",0.0,51.72929739594177,12.386203122168993,11.924210951411485,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1032,PS_1452,['LKD_1452'],"['LKD_N_554', 'LKD_N_544']","[51.724476230116736, 51.44383380632967]","[11.83465442529572, 12.11819800385817]","['DE', 'DE']",0.0,51.5841550182232,36.857301059097196,11.976426214576946,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1033,PS_1455,['LKD_1455'],"['LKD_N_544', 'LKD_N_503']","[51.44383380632967, 51.43324830651078]","[12.11819800385817, 12.153698818731117]","['DE', 'DE']",0.0,51.43854105642022,2.7285802294693435,12.135948411294644,25.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1034,PS_1456,['LKD_1456'],"['LKD_N_541', 'LKD_N_502']","[51.422683794172286, 51.424495921642816]","[12.113588183907288, 12.15017745439265]","['DE', 'DE']",0.0,51.42358985790755,2.54575890747088,12.131882819149968,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1035,PS_1457,['LKD_1457'],"['LKD_N_541', 'LKD_N_543']","[51.422683794172286, 51.41865835407202]","[12.113588183907288, 12.054369796178305]","['DE', 'DE']",0.0,51.420671074122154,4.131876315062904,12.083978990042796,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1036,PS_1458,['LKD_1458'],"['LKD_N_543', 'LKD_N_551']","[51.41865835407202, 51.46829886745637]","[12.054369796178305, 11.967800599996826]","['DE', 'DE']",0.0,51.443478610764195,8.155187621349356,12.011085198087565,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1037,PS_1462,['LKD_1462'],"['LKD_N_540', 'LKD_N_542']","[51.41129474008128, 51.40482553398778]","[12.111608152974085, 12.056304479120124]","['DE', 'DE']",0.0,51.40806013703453,3.9039556909844846,12.083956316047104,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1038,PS_1463,['LKD_1463'],"['LKD_N_542', 'LKD_N_543']","[51.40482553398778, 51.41865835407202]","[12.056304479120124, 12.054369796178305]","['DE', 'DE']",0.0,51.4117419440299,1.5444655256521673,12.055337137649214,63.0,0.0,1983.0,4.589900761271087,600.0 -LKD_PS_1039,PS_1466,['LKD_1466'],"['LKD_N_711', 'LKD_N_686']","[52.02952118621877, 52.028596167397936]","[13.657033079069373, 13.610762765405582]","['DE', 'DE']",0.0,52.029058676808354,3.168201335927093,13.633897922237477,85.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_1040,PS_1467,['LKD_1467'],"['LKD_N_566', 'LKD_N_877']","[51.89556272223674, 51.88166746027068]","[11.594697777819993, 11.564359675997096]","['DE', 'DE']",0.0,51.88861509125371,2.5935471695780588,11.579528726908546,55.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_1041,Schongau,['LKD_1468'],"['LKD_N_19', 'LKD_N_20']","[47.79644049723273, 47.71967472141489]","[10.906992515209698, 10.906670911854631]","['DE', 'DE']",0.0,47.758057609323814,8.538678306224575,10.906831713532164,25.0,0.0,1983.0,0.226,350.0 -LKD_PS_1042,PS_1469,['LKD_1469'],"['LKD_N_15', 'LKD_N_916']","[48.375408310209544, 48.33221508906786]","[10.187765259821576, 10.189555370284399]","['DE', 'DE']",0.0,48.3538116996387,4.80619649984657,10.188660315052989,25.0,0.0,1983.0,19.470663935585154,300.0 -LKD_PS_1043,PS_1470,['LKD_1470'],"['LKD_N_915', 'LKD_N_914']","[48.44431031573974, 48.38069770687552]","[10.280530238460656, 10.279688468665526]","['DE', 'DE']",0.0,48.41250401130763,7.0758928058784925,10.280109353563091,25.0,0.0,1983.0,19.470663935585154,300.0 -LKD_PS_1044,PS_1471,['LKD_1471'],"['LKD_N_30', 'LKD_N_910']","[48.85277348253458, 48.89453234438729]","[11.952563277174667, 11.868976054304905]","['DE', 'DE']",0.0,48.87365291346093,7.679118230582194,11.910769665739785,25.0,0.0,1983.0,37.7875,300.0 -LKD_PS_1045,PS_1472,['LKD_1472'],"['LKD_N_65', 'LKD_N_917']","[48.97526456204883, 48.92799126675177]","[12.710627122898329, 12.633187390076413]","['DE', 'DE']",0.0,48.9516279144003,7.723011326505469,12.671907256487371,25.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1046,PS_1473,['LKD_1473'],"['LKD_N_2', 'LKD_N_1']","[48.812255086337444, 48.75570275403629]","[11.651401562075787, 11.555788024007844]","['DE', 'DE']",0.0,48.78397892018687,9.416596982642167,11.603594793041815,100.0,0.0,1983.0,15.052937368210664,900.0 -LKD_PS_1048,PS_1475,['LKD_1475'],"['LKD_N_70', 'LKD_N_71']","[49.37116054766301, 49.50331701988286]","[11.165274755231792, 10.719869907943144]","['DE', 'DE']",0.0,49.43723878377293,35.41148909019899,10.942572331587467,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1049,PS_1476,['LKD_1476'],"['LKD_N_71', 'LKD_N_72']","[49.50331701988286, 49.57378262030091]","[10.719869907943144, 10.48435427524171]","['DE', 'DE']",0.0,49.53854982009189,18.71961867361485,10.602112091592428,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1050,PS_1477,['LKD_1477'],"['LKD_N_72', 'LKD_N_73']","[49.57378262030091, 49.76719251606068]","[10.48435427524171, 9.767452417403721]","['DE', 'DE']",0.0,49.670487568180796,55.91105462707011,10.125903346322715,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1051,PS_1478,['LKD_1478'],"['LKD_N_73', 'LKD_N_74']","[49.76719251606068, 49.721242303861054]","[9.767452417403721, 8.478981482250301]","['DE', 'DE']",0.0,49.74421740996087,92.75098564930629,9.123216949827011,100.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1052,PS_1479,['LKD_1479'],"['LKD_N_115', 'LKD_N_193']","[47.57346409519236, 47.59802839872982]","[9.824061069583967, 9.824284207399424]","['AT', 'DE']",0.0,47.58574624696109,2.732334669065725,9.824172638491696,67.0,0.0,1983.0,1.0583333333333331,500.0 -LKD_PS_1053,PS_1480,['LKD_1480'],"['LKD_N_193', 'LKD_N_116']","[47.59802839872982, 47.76443013746415]","[9.824284207399424, 9.611477493870362]","['DE', 'DE']",0.0,47.681229268096985,24.424169723928692,9.717880850634893,67.0,0.0,1983.0,1.0583333333333331,500.0 -LKD_PS_1054,PS_1481,['LKD_1481'],"['LKD_N_116', 'LKD_N_118']","[47.76443013746415, 47.96670757254633]","[9.611477493870362, 9.559552357125861]","['DE', 'DE']",0.0,47.86556885500524,22.830486673144076,9.585514925498112,67.0,0.0,1983.0,1.0583333333333331,700.0 -LKD_PS_1055,PS_1482,['LKD_1482'],"['LKD_N_118', 'LKD_N_119']","[47.96670757254633, 48.05556518692942]","[9.559552357125861, 9.605655964284164]","['DE', 'DE']",0.0,48.01113637973788,10.462078080173995,9.582604160705014,67.0,0.0,1983.0,1.0583333333333331,500.0 -LKD_PS_1056,PS_1483,['LKD_1483'],"['LKD_N_119', 'LKD_N_120']","[48.05556518692942, 48.243745037868564]","[9.605655964284164, 9.76516923013871]","['DE', 'DE']",0.0,48.14965511239899,24.046729993598248,9.685412597211437,67.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1057,PS_1484,['LKD_1484'],"['LKD_N_120', 'LKD_N_121']","[48.243745037868564, 48.360497271777525]","[9.76516923013871, 9.77846417700675]","['DE', 'DE']",0.0,48.30212115482304,13.023535106610051,9.77181670357273,67.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1058,PS_1486,['LKD_1486'],"['LKD_N_121', 'LKD_N_122']","[48.360497271777525, 48.423358301790685]","[9.77846417700675, 9.860164123185717]","['DE', 'DE']",0.0,48.39192778678411,9.235905148693494,9.819314150096233,67.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1059,PS_1487,['LKD_1487'],"['LKD_N_122', 'LKD_N_124']","[48.423358301790685, 48.525975444302574]","[9.860164123185717, 9.88353356985506]","['DE', 'DE']",0.0,48.47466687304663,11.543440726943727,9.87184884652039,58.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1060,PS_1488,['LKD_1488'],"['LKD_N_121', 'LKD_N_123']","[48.360497271777525, 48.47902723291451]","[9.77846417700675, 9.831695086053811]","['DE', 'DE']",0.0,48.41976225234602,13.75719847731619,9.80507963153028,67.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1061,PS_1490,['LKD_1490'],"['LKD_N_123', 'LKD_N_124']","[48.47902723291451, 48.525975444302574]","[9.831695086053811, 9.88353356985506]","['DE', 'DE']",0.0,48.50250133860854,6.4703710196653335,9.857614327954437,68.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1062,PS_1491,['LKD_1491'],"['LKD_N_124', 'LKD_N_125']","[48.525975444302574, 48.46080744553692]","[9.88353356985506, 10.045126400722852]","['DE', 'DE']",0.0,48.49339144491975,13.943637990267721,9.964329985288956,58.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1063,PS_1494,['LKD_1494'],"['LKD_N_125', 'LKD_N_3']","[48.46080744553692, 48.40830188800201]","[10.045126400722852, 10.060439608527526]","['DE', 'DE']",0.0,48.434554666769465,5.9485167362573765,10.052783004625189,58.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1064,PS_1495,['LKD_1495'],"['LKD_N_3', 'LKD_N_4']","[48.40830188800201, 48.32849152932591]","[10.060439608527526, 10.095729836114076]","['DE', 'DE']",0.0,48.36839670866396,9.252386756449921,10.078084722320801,58.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1065,PS_1496,['LKD_1496'],"['LKD_N_4', 'LKD_N_112']","[48.32849152932591, 48.08662706778466]","[10.095729836114076, 10.000768083027618]","['DE', 'DE']",0.0,48.20755929855528,27.808231411446158,10.048248959570847,50.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1066,PS_1500,['LKD_1500'],"['LKD_N_112', 'LKD_N_111']","[48.08662706778466, 47.89295753778782]","[10.000768083027618, 9.699779140260524]","['DE', 'DE']",0.0,47.98979230278624,31.08192931829789,9.85027361164407,67.0,0.0,1983.0,1.0583333333333331,500.0 -LKD_PS_1067,PS_1503,['LKD_1503'],"['LKD_N_111', 'LKD_N_194']","[47.89295753778782, 47.88496058489625]","[9.699779140260524, 9.521788729159649]","['DE', 'DE']",0.0,47.888959061342035,13.305594406438342,9.610783934710087,67.0,0.0,1983.0,1.0583333333333331,700.0 -LKD_PS_1068,PS_1507,['LKD_1507'],"['LKD_N_194', 'LKD_N_104']","[47.88496058489625, 47.83810879776254]","[9.521788729159649, 9.48787421464695]","['DE', 'DE']",0.0,47.861534691329396,5.793396068696245,9.5048314719033,67.0,0.0,1983.0,1.0583333333333331,700.0 -LKD_PS_1069,PS_1508,['LKD_1508'],"['LKD_N_194', 'LKD_N_105']","[47.88496058489625, 47.92993290569913]","[9.521788729159649, 9.386995483504316]","['DE', 'DE']",0.0,47.90744674529769,11.226341054385829,9.454392106331984,67.0,0.0,1983.0,1.0583333333333331,700.0 -LKD_PS_1070,PS_1509,['LKD_1509'],"['LKD_N_105', 'LKD_N_110']","[47.92993290569913, 47.95275670904502]","[9.386995483504316, 9.301588313824656]","['DE', 'DE']",0.0,47.941344807372076,6.851531751362287,9.344291898664487,66.0,0.0,1983.0,1.0583333333333331,350.0 -LKD_PS_1071,PS_1510,['LKD_1510'],"['LKD_N_110', 'LKD_N_109']","[47.95275670904502, 47.8390776434178]","[9.301588313824656, 9.004564497551767]","['DE', 'DE']",0.0,47.89591717623141,25.506069429214108,9.15307640568821,67.0,0.0,1983.0,1.0583333333333331,350.0 -LKD_PS_1072,PS_1514,['LKD_1514'],"['LKD_N_109', 'LKD_N_108']","[47.8390776434178, 47.78498930523843]","[9.004564497551767, 9.036967073185806]","['DE', 'DE']",0.0,47.81203347432812,6.484865930633624,9.020765785368788,67.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1073,PS_1515,['LKD_1515'],"['LKD_N_108', 'LKD_N_872']","[47.78498930523843, 47.625155723519825]","[9.036967073185806, 9.212407747389923]","['DE', 'CH']",0.0,47.705072514379125,22.1024141335061,9.124687410287866,67.0,0.0,1983.0,1.0583333333333331,1000.0 -LKD_PS_1074,PS_1517,['LKD_1517'],"['LKD_N_109', 'LKD_N_107']","[47.8390776434178, 47.77021184094231]","[9.004564497551767, 8.868478866845106]","['DE', 'DE']",0.0,47.80464474218006,12.729409498857994,8.936521682198435,67.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1075,PS_1519,['LKD_1519'],"['LKD_N_107', 'LKD_N_106']","[47.77021184094231, 47.74369301557125]","[8.868478866845106, 8.723710862662807]","['DE', 'DE']",0.0,47.75695242825678,11.220021768932607,8.796094864753957,67.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1076,PS_1520,['LKD_1520'],"['LKD_N_109', 'LKD_N_177']","[47.8390776434178, 47.85529039946526]","[9.004564497551767, 8.983985572197156]","['DE', 'DE']",0.0,47.847184021441535,2.3689334919727196,8.994275034874462,67.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1077,PS_1521,['LKD_1521'],"['LKD_N_109', 'LKD_N_117']","[47.8390776434178, 47.95293004808662]","[9.004564497551767, 9.443061585455347]","['DE', 'DE']",0.0,47.89600384575221,35.0682207158933,9.223813041503558,67.0,0.0,1983.0,1.0583333333333331,350.0 -LKD_PS_1078,PS_1523,['LKD_1523'],"['LKD_N_117', 'LKD_N_118']","[47.95293004808662, 47.96670757254633]","[9.443061585455347, 9.559552357125861]","['DE', 'DE']",0.0,47.95981881031648,8.811132285862103,9.501306971290603,67.0,0.0,1983.0,1.0583333333333331,500.0 -LKD_PS_1080,PS_1525,['LKD_1525'],"['LKD_N_114', 'LKD_N_113']","[48.28487072438573, 48.325982931762155]","[10.000694636925994, 10.01441059151308]","['DE', 'DE']",0.0,48.30542682807395,4.684147219000186,10.007552614219538,53.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1081,PS_1526,['LKD_1526'],"['LKD_N_113', 'LKD_N_4']","[48.325982931762155, 48.32849152932591]","[10.01441059151308, 10.095729836114076]","['DE', 'DE']",0.0,48.32723723054403,6.020350709718642,10.055070213813579,50.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1082,PS_1527,['LKD_1527'],"['LKD_N_125', 'LKD_N_126']","[48.46080744553692, 48.508777259682134]","[10.045126400722852, 10.112543672386852]","['DE', 'DE']",0.0,48.48479235260953,7.292038674579866,10.078835036554853,58.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1083,PS_1528,['LKD_1528'],"['LKD_N_126', 'LKD_N_127']","[48.508777259682134, 48.60747497232851]","[10.112543672386852, 10.168350378255925]","['DE', 'DE']",0.0,48.558126116005326,11.721704221006787,10.14044702532139,58.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1084,PS_1529,['LKD_1529'],"['LKD_N_127', 'LKD_N_0']","[48.60747497232851, 48.699313451740046]","[10.168350378255925, 10.545235014617488]","['DE', 'DE']",0.0,48.65339421203428,29.517331102116376,10.356792696436706,80.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_1085,PS_1531,['LKD_1531'],"['LKD_N_127', 'LKD_N_128']","[48.60747497232851, 48.6495202760992]","[10.168350378255925, 10.176749616044207]","['DE', 'DE']",0.0,48.62849762421386,4.717279909019987,10.172549997150066,58.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_1086,PS_1532,['LKD_1532'],"['LKD_N_124', 'LKD_N_127']","[48.525975444302574, 48.60747497232851]","[9.88353356985506, 10.168350378255925]","['DE', 'DE']",0.0,48.566725208315546,22.84022731093935,10.025941974055492,58.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1087,PS_1533,['LKD_1533'],"['LKD_N_124', 'LKD_N_129']","[48.525975444302574, 48.58027397943867]","[9.88353356985506, 9.921619285633186]","['DE', 'DE']",0.0,48.55312471187062,6.658821817501158,9.902576427744123,56.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1088,PS_1534,['LKD_1534'],"['LKD_N_129', 'LKD_N_130']","[48.58027397943867, 48.684655343375915]","[9.921619285633186, 10.015375750206504]","['DE', 'DE']",0.0,48.6324646614073,13.501855396685649,9.968497517919845,67.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1089,PS_1535,['LKD_1535'],"['LKD_N_130', 'LKD_N_131']","[48.684655343375915, 48.693673523979406]","[10.015375750206504, 10.111846711821553]","['DE', 'DE']",0.0,48.68916443367766,7.154307801780383,10.063611231014029,67.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1090,PS_1537,['LKD_1537'],"['LKD_N_130', 'LKD_N_132']","[48.684655343375915, 48.83096448797158]","[10.015375750206504, 10.017070415962017]","['DE', 'DE']",0.0,48.75780991567375,16.274416183100794,10.01622308308426,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1091,PS_1539,['LKD_1539'],"['LKD_N_132', 'LKD_N_133']","[48.83096448797158, 48.828168209512235]","[10.017070415962017, 10.04580833531445]","['DE', 'DE']",0.0,48.829566348741906,2.1271309362449125,10.031439375638232,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1092,PS_1540,['LKD_1540'],"['LKD_N_133', 'LKD_N_134']","[48.828168209512235, 48.84119498911796]","[10.04580833531445, 10.07680098680741]","['DE', 'DE']",0.0,48.8346815993151,2.692299338759887,10.06130466106093,67.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1093,PS_1541,['LKD_1541'],"['LKD_N_133', 'LKD_N_135']","[48.828168209512235, 48.78112007920251]","[10.04580833531445, 10.0824541981084]","['DE', 'DE']",0.0,48.80464414435737,5.881601044401419,10.064131266711424,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1094,PS_1542,['LKD_1542'],"['LKD_N_132', 'LKD_N_136']","[48.83096448797158, 48.91446166072299]","[10.017070415962017, 10.046184399331853]","['DE', 'DE']",0.0,48.87271307434729,9.528490290323136,10.031627407646935,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1095,PS_1543,['LKD_1543'],"['LKD_N_136', 'LKD_N_137']","[48.91446166072299, 49.17120136297344]","[10.046184399331853, 10.018552295201959]","['DE', 'DE']",0.0,49.04283151184822,28.62809189380595,10.032368347266907,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1096,PS_1547,['LKD_1547'],"['LKD_N_137', 'LKD_N_103']","[49.17120136297344, 49.264875761129794]","[10.018552295201959, 10.084668561662204]","['DE', 'DE']",0.0,49.21803856205162,11.473355293971055,10.051610428432081,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1097,PS_1549,['LKD_1549'],"['LKD_N_137', 'LKD_N_138']","[49.17120136297344, 49.119490200725494]","[10.018552295201959, 9.795258898385883]","['DE', 'DE']",0.0,49.14534578184947,17.234955559406416,9.906905596793921,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1098,PS_1552,['LKD_1552'],"['LKD_N_138', 'LKD_N_139']","[49.119490200725494, 48.96854120536804]","[9.795258898385883, 9.642154281486684]","['DE', 'DE']",0.0,49.04401570304677,20.162096508509546,9.718706589936284,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1099,PS_1558,['LKD_1558'],"['LKD_N_138', 'LKD_N_140']","[49.119490200725494, 49.14195071722594]","[9.795258898385883, 9.766706147584976]","['DE', 'DE']",0.0,49.130720458975716,3.2496098820474555,9.780982522985429,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1100,PS_1559,['LKD_1559'],"['LKD_N_140', 'LKD_N_141']","[49.14195071722594, 49.20898403076822]","[9.766706147584976, 9.66585520613546]","['DE', 'DE']",0.0,49.17546737399708,10.458164562880212,9.716280676860219,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1101,PS_1560,['LKD_1560'],"['LKD_N_141', 'LKD_N_142']","[49.20898403076822, 49.221335641479534]","[9.66585520613546, 9.464328839527381]","['DE', 'DE']",0.0,49.215159836123874,14.706726738688358,9.56509202283142,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1102,PS_1562,['LKD_1562'],"['LKD_N_142', 'LKD_N_143']","[49.221335641479534, 49.20962030908019]","[9.464328839527381, 9.221670007289411]","['DE', 'DE']",0.0,49.21547797527986,17.67897336040478,9.342999423408397,50.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_1103,PS_1563,['LKD_1563'],"['LKD_N_143', 'LKD_N_144']","[49.20962030908019, 49.17486588486814]","[9.221670007289411, 9.147650563592146]","['DE', 'DE']",0.0,49.19224309697417,6.625281312346526,9.184660285440778,50.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_1104,PS_1565,['LKD_1565'],"['LKD_N_144', 'LKD_N_145']","[49.17486588486814, 49.16187297083384]","[9.147650563592146, 9.087639629590154]","['DE', 'DE']",0.0,49.16836942785099,4.597431183899518,9.11764509659115,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1105,PS_1566,['LKD_1566'],"['LKD_N_145', 'LKD_N_146']","[49.16187297083384, 49.12590730693966]","[9.087639629590154, 9.120105064810366]","['DE', 'DE']",0.0,49.143890138886746,4.645848333741186,9.103872347200259,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1106,PS_1567,['LKD_1567'],"['LKD_N_146', 'LKD_N_147']","[49.12590730693966, 49.154698087540574]","[9.120105064810366, 9.200212139188883]","['DE', 'DE']",0.0,49.14030269724012,6.650928065521437,9.160158601999624,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1107,PS_1568,['LKD_1568'],"['LKD_N_146', 'LKD_N_148']","[49.12590730693966, 48.96143518242336]","[9.120105064810366, 9.070244402517305]","['DE', 'DE']",0.0,49.043671244681505,18.651901354552678,9.095174733663836,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1108,PS_1572,['LKD_1572'],"['LKD_N_145', 'LKD_N_149']","[49.16187297083384, 49.18937729021746]","[9.087639629590154, 8.607857647269565]","['DE', 'DE']",0.0,49.175625130525646,35.021490972497396,8.84774863842986,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1109,PS_1575,['LKD_1575'],"['LKD_N_149', 'LKD_N_150']","[49.18937729021746, 49.19709878610364]","[8.607857647269565, 8.53249120761634]","['DE', 'DE']",0.0,49.193238038160544,5.5452857198597,8.570174427442954,59.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1110,PS_1576,['LKD_1576'],"['LKD_N_150', 'LKD_N_195']","[49.19709878610364, 49.276384298788706]","[8.53249120761634, 8.572639545085135]","['DE', 'DE']",0.0,49.23674154244617,9.288443134265185,8.552565376350739,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1111,PS_1577,['LKD_1577'],"['LKD_N_195', 'LKD_N_151']","[49.276384298788706, 49.33079153151795]","[8.572639545085135, 8.570000039827685]","['DE', 'DE']",0.0,49.30358791515333,6.054734573214148,8.57131979245641,59.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1112,PS_1579,['LKD_1579'],"['LKD_N_151', 'LKD_N_152']","[49.33079153151795, 49.39777263394966]","[8.570000039827685, 8.55476527926994]","['DE', 'DE']",0.0,49.36428208273381,7.531587237969225,8.562382659548813,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1113,PS_1580,['LKD_1580'],"['LKD_N_152', 'LKD_N_196']","[49.39777263394966, 49.5684872994227]","[8.55476527926994, 8.452996977874754]","['DE', 'DE']",0.0,49.48312996668618,20.36290064774962,8.503881128572347,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1114,PS_1583,['LKD_1583'],"['LKD_N_196', 'LKD_N_45']","[49.5684872994227, 49.57031722973122]","[8.452996977874754, 8.44114707899471]","['DE', 'DE']",0.0,49.56940226457696,0.8786978048431863,8.447072028434732,68.0,0.0,1983.0,11.10023465003349,350.0 -LKD_PS_1115,PS_1584,['LKD_1584'],"['LKD_N_196', 'LKD_N_153']","[49.5684872994227, 49.57926740642866]","[8.452996977874754, 8.412355871780521]","['DE', 'DE']",0.0,49.57387735292568,3.167153071010059,8.432676424827637,68.0,0.0,1983.0,11.10023465003349,350.0 -LKD_PS_1116,PS_1585,['LKD_1585'],"['LKD_N_152', 'LKD_N_154']","[49.39777263394966, 49.255140849210264]","[8.55476527926994, 8.513202938047868]","['DE', 'DE']",0.0,49.32645674157996,16.148485620097425,8.533984108658904,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1117,PS_1589,['LKD_1589'],"['LKD_N_154', 'LKD_N_150']","[49.255140849210264, 49.19709878610364]","[8.513202938047868, 8.53249120761634]","['DE', 'DE']",0.0,49.22611981765695,6.606300920797037,8.522847072832104,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1118,PS_1590,['LKD_1590'],"['LKD_N_150', 'LKD_N_102']","[49.19709878610364, 49.047066355542064]","[8.53249120761634, 8.454227764499594]","['DE', 'DE']",0.0,49.122082570822855,17.633754986803847,8.493359486057967,59.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1119,PS_1593,['LKD_1593'],"['LKD_N_150', 'LKD_N_102']","[49.19709878610364, 49.047066355542064]","[8.53249120761634, 8.454227764499594]","['DE', 'DE']",0.0,49.122082570822855,17.633754986803847,8.493359486057967,59.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1120,PS_1594,['LKD_1594'],"['LKD_N_102', 'LKD_N_187']","[49.047066355542064, 49.025613832072914]","[8.454227764499594, 8.450045429816926]","['DE', 'DE']",0.0,49.03634009380749,2.405571222626968,8.45213659715826,62.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1121,PS_1595,['LKD_1595'],"['LKD_N_102', 'LKD_N_187']","[49.047066355542064, 49.025613832072914]","[8.454227764499594, 8.450045429816926]","['DE', 'DE']",0.0,49.03634009380749,2.405571222626968,8.45213659715826,62.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1122,PS_1596,['LKD_1596'],"['LKD_N_187', 'LKD_N_197']","[49.025613832072914, 48.94172429268092]","[8.450045429816926, 8.411372710674936]","['DE', 'DE']",0.0,48.98366906237692,9.748705587973335,8.430709070245932,62.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1123,PS_1598,['LKD_1598'],"['LKD_N_197', 'LKD_N_97']","[48.94172429268092, 48.923731889525136]","[8.411372710674936, 8.225166141023202]","['DE', 'DE']",0.0,48.93272809110303,13.752846124073196,8.318269425849069,62.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1125,PS_1601,['LKD_1601'],"['LKD_N_197', 'LKD_N_186']","[48.94172429268092, 48.84998407429779]","[8.411372710674936, 8.25230786544007]","['DE', 'DE']",0.0,48.89585418348935,15.473331673774755,8.331840288057503,62.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1126,PS_1604,['LKD_1604'],"['LKD_N_186', 'LKD_N_185']","[48.84998407429779, 48.69282848697537]","[8.25230786544007, 8.112350859836727]","['DE', 'DE']",0.0,48.77140628063658,20.268934097574313,8.182329362638399,62.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1127,PS_1611,['LKD_1611'],"['LKD_N_185', 'LKD_N_183']","[48.69282848697537, 48.46635960162232]","[8.112350859836727, 7.92456125447807]","['DE', 'DE']",0.0,48.579594044298844,28.731560657617607,8.0184560571574,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1128,PS_1612,['LKD_1612'],"['LKD_N_183', 'LKD_N_184']","[48.46635960162232, 48.499667774311355]","[7.92456125447807, 7.869990329874739]","['DE', 'DE']",0.0,48.48301368796684,5.469342683081367,7.897275792176405,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1129,PS_1613,['LKD_1613'],"['LKD_N_184', 'LKD_N_98']","[48.499667774311355, 48.502240319563235]","[7.869990329874739, 7.808723299556]","['DE', 'DE']",0.0,48.500954046937295,4.524543322463722,7.839356814715369,62.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1130,PS_1614,['LKD_1614'],"['LKD_N_183', 'LKD_N_182']","[48.46635960162232, 48.184503585505006]","[7.92456125447807, 8.244984292761224]","['DE', 'DE']",0.0,48.325431593563664,39.29927286895881,8.084772773619648,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1131,PS_1619,['LKD_1619'],"['LKD_N_182', 'LKD_N_179']","[48.184503585505006, 48.1266794136878]","[8.244984292761224, 8.305302700838007]","['DE', 'DE']",0.0,48.155591499596405,7.835833974829568,8.275143496799615,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1132,PS_1621,['LKD_1621'],"['LKD_N_179', 'LKD_N_181']","[48.1266794136878, 48.11496136422985]","[8.305302700838007, 8.251206064385434]","['DE', 'DE']",0.0,48.120820388958826,4.223001919184764,8.27825438261172,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1133,PS_1623,['LKD_1623'],"['LKD_N_179', 'LKD_N_178']","[48.1266794136878, 48.119584139590756]","[8.305302700838007, 8.347019161636933]","['DE', 'DE']",0.0,48.12313177663928,3.196386901098351,8.326160931237471,50.0,0.0,1983.0,1.4845232338862173,350.0 -LKD_PS_1134,PS_1624,['LKD_1624'],"['LKD_N_178', 'LKD_N_180']","[48.119584139590756, 48.18779918342933]","[8.347019161636933, 8.420105827957814]","['DE', 'DE']",0.0,48.15369166151004,9.326538453668368,8.383562494797374,50.0,0.0,1983.0,1.4845232338862173,350.0 -LKD_PS_1135,PS_1625,['LKD_1625'],"['LKD_N_178', 'LKD_N_175']","[48.119584139590756, 48.071164252572785]","[8.347019161636933, 8.59173881019835]","['DE', 'DE']",0.0,48.09537419608177,18.96108140419925,8.469378985917642,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1136,PS_1631,['LKD_1631'],"['LKD_N_175', 'LKD_N_176']","[48.071164252572785, 48.054191699406935]","[8.59173881019835, 8.773475761403619]","['DE', 'DE']",0.0,48.06267797598986,13.641009879190996,8.682607285800984,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1137,PS_1634,['LKD_1634'],"['LKD_N_176', 'LKD_N_177']","[48.054191699406935, 47.85529039946526]","[8.773475761403619, 8.983985572197156]","['DE', 'DE']",0.0,47.954741049436095,27.117634925739914,8.878730666800386,67.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1138,PS_1635,['LKD_1635'],"['LKD_N_175', 'LKD_N_174']","[48.071164252572785, 48.153198005582674]","[8.59173881019835, 8.671059006274097]","['DE', 'DE']",0.0,48.112181129077726,10.860897897493214,8.631398908236225,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1139,PS_1637,['LKD_1637'],"['LKD_N_174', 'LKD_N_173']","[48.153198005582674, 48.31526013567949]","[8.671059006274097, 8.902948915727018]","['DE', 'DE']",0.0,48.23422907063108,24.901966916508957,8.787003961000558,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1140,PS_1639,['LKD_1639'],"['LKD_N_173', 'LKD_N_172']","[48.31526013567949, 48.431484601791965]","[8.902948915727018, 9.098558627427352]","['DE', 'DE']",0.0,48.37337236873573,19.391055301805178,9.000753771577184,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1141,PS_1644,['LKD_1644'],"['LKD_N_172', 'LKD_N_171']","[48.431484601791965, 48.49502155167112]","[9.098558627427352, 9.157192816311142]","['DE', 'DE']",0.0,48.46325307673155,8.285409012375643,9.127875721869247,50.0,0.0,1983.0,1.4845232338862173,350.0 -LKD_PS_1142,PS_1645,['LKD_1645'],"['LKD_N_171', 'LKD_N_170']","[48.49502155167112, 48.60449680833081]","[9.157192816311142, 9.345166389144138]","['DE', 'DE']",0.0,48.54975918000096,18.434749942974765,9.251179602727639,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1143,PS_1649,['LKD_1649'],"['LKD_N_170', 'LKD_N_161']","[48.60449680833081, 48.63964741411146]","[9.345166389144138, 9.40807087407208]","['DE', 'DE']",0.0,48.62207211122113,6.056226321859697,9.37661863160811,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1145,PS_1652,['LKD_1652'],"['LKD_N_162', 'LKD_N_163']","[48.64110078765172, 48.6591861159801]","[9.50859194208975, 9.639560706842714]","['DE', 'DE']",0.0,48.65014345181591,9.832166769431849,9.574076324466231,56.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1146,PS_1653,['LKD_1653'],"['LKD_N_163', 'LKD_N_168']","[48.6591861159801, 48.56259294287939]","[9.639560706842714, 9.791830842778495]","['DE', 'DE']",0.0,48.61088952942974,15.518834398459468,9.715695774810605,56.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1147,PS_1654,['LKD_1654'],"['LKD_N_168', 'LKD_N_795']","[48.56259294287939, 48.62177943680553]","[9.791830842778495, 9.828118188764837]","['DE', 'DE']",0.0,48.592186189842465,7.10399709422907,9.809974515771666,56.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1148,PS_1655,['LKD_1655'],"['LKD_N_168', 'LKD_N_124']","[48.56259294287939, 48.525975444302574]","[9.791830842778495, 9.88353356985506]","['DE', 'DE']",0.0,48.54428419359098,7.886078457069571,9.837682206316778,68.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1149,PS_1657,['LKD_1657'],"['LKD_N_163', 'LKD_N_164']","[48.6591861159801, 48.708354535322165]","[9.639560706842714, 9.683572150904899]","['DE', 'DE']",0.0,48.68377032565113,6.352618000458596,9.661566428873806,56.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1150,PS_1658,['LKD_1658'],"['LKD_N_164', 'LKD_N_165']","[48.708354535322165, 48.80168996920185]","[9.683572150904899, 9.833546026181194]","['DE', 'DE']",0.0,48.75502225226201,15.123866157439261,9.758559088543047,67.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1151,PS_1659,['LKD_1659'],"['LKD_N_165', 'LKD_N_166']","[48.80168996920185, 48.82147931310597]","[9.833546026181194, 9.867504293809288]","['DE', 'DE']",0.0,48.811584641153914,3.3214955005312037,9.850525159995241,56.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1152,PS_1660,['LKD_1660'],"['LKD_N_166', 'LKD_N_167']","[48.82147931310597, 48.83002910761431]","[9.867504293809288, 9.958826399036324]","['DE', 'DE']",0.0,48.82575421036014,6.754642026335979,9.913165346422806,67.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1153,PS_1661,['LKD_1661'],"['LKD_N_167', 'LKD_N_132']","[48.83002910761431, 48.83096448797158]","[9.958826399036324, 10.017070415962017]","['DE', 'DE']",0.0,48.83049679779295,4.265975081815487,9.987948407499172,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1154,PS_1662,['LKD_1662'],"['LKD_N_187', 'LKD_N_155']","[49.025613832072914, 48.955680111212665]","[8.450045429816926, 8.648186516800342]","['DE', 'DE']",0.0,48.99064697164279,16.421018437865403,8.549115973308634,56.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1155,PS_1663,['LKD_1663'],"['LKD_N_155', 'LKD_N_156']","[48.955680111212665, 48.99954575191381]","[8.648186516800342, 8.654558224598215]","['DE', 'DE']",0.0,48.977612931563236,4.901292272815059,8.651372370699278,56.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1156,PS_1664,['LKD_1664'],"['LKD_N_155', 'LKD_N_157']","[48.955680111212665, 48.89765480237989]","[8.648186516800342, 8.735757613748063]","['DE', 'DE']",0.0,48.92666745679628,9.089162939937049,8.691972065274204,56.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1157,PS_1666,['LKD_1666'],"['LKD_N_157', 'LKD_N_158']","[48.89765480237989, 48.873185325944895]","[8.735757613748063, 8.847714390423338]","['DE', 'DE']",0.0,48.88542006416239,8.62911468605275,8.7917360020857,56.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1158,PS_1667,['LKD_1667'],"['LKD_N_158', 'LKD_N_159']","[48.873185325944895, 48.88143631139826]","[8.847714390423338, 8.869271376024848]","['DE', 'DE']",0.0,48.877310818671575,1.824573251982909,8.858492883224093,56.0,0.0,1983.0,19.470663935585154,1000.0 -LKD_PS_1159,PS_1668,['LKD_1668'],"['LKD_N_159', 'LKD_N_160']","[48.88143631139826, 48.904133827076386]","[8.869271376024848, 8.858553045870377]","['DE', 'DE']",0.0,48.89278506923732,2.6435219447814777,8.863912210947612,56.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_1161,PS_1676,['LKD_1676'],"['LKD_N_183', 'LKD_N_188']","[48.46635960162232, 48.177517544982535]","[7.92456125447807, 7.758453007085614]","['DE', 'DE']",0.0,48.32193857330243,34.39672047642744,7.841507130781842,54.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1162,PS_1678,['LKD_1678'],"['LKD_N_188', 'LKD_N_99']","[48.177517544982535, 47.849604284590825]","[7.758453007085614, 7.637348579901323]","['DE', 'DE']",0.0,48.01356091478668,37.57036665722595,7.697900793493469,62.0,0.0,1983.0,0.3666666666666667,700.0 -LKD_PS_1163,PS_1680,['LKD_1680'],"['LKD_N_99', 'LKD_N_190']","[47.849604284590825, 47.56343953067137]","[7.637348579901323, 7.673590754323996]","['DE', 'DE']",0.0,47.7065219076311,31.945443188451566,7.655469667112659,54.0,0.0,1983.0,0.3666666666666667,700.0 -LKD_PS_1165,PS_1686,['LKD_1686'],"['LKD_N_190', 'LKD_N_192']","[47.56343953067137, 47.54468401842751]","[7.673590754323996, 7.60381478996771]","['DE', 'CH']",0.0,47.55406177454944,5.638122352887762,7.638702772145853,54.0,0.0,1983.0,0.3666666666666667,350.0 -LKD_PS_1166,PS_1687,['LKD_1687'],"['LKD_N_183', 'LKD_N_189']","[48.46635960162232, 48.08297733745384]","[7.92456125447807, 7.751374212035206]","['DE', 'DE']",0.0,48.274668469538085,44.529189351292935,7.837967733256638,54.0,0.0,1983.0,26.043265432067525,1132.5537688442212 -LKD_PS_1167,PS_1688,['LKD_1688'],"['LKD_N_189', 'LKD_N_99']","[48.08297733745384, 47.849604284590825]","[7.751374212035206, 7.637348579901323]","['DE', 'DE']",0.0,47.96629081102233,27.31183764529704,7.694361395968264,62.0,0.0,1983.0,0.3666666666666667,700.0 -LKD_PS_1168,PS_1692,['LKD_1692'],"['LKD_N_133', 'LKD_N_773']","[48.828168209512235, 48.840865104555334]","[10.04580833531445, 10.054712173382189]","['DE', 'DE']",0.0,48.83451665703379,1.5554705352726856,10.05026025434832,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1169,PS_1693,['LKD_1693'],"['LKD_N_135', 'LKD_N_774']","[48.78112007920251, 48.78475261477641]","[10.0824541981084, 10.100545689833165]","['DE', 'DE']",0.0,48.78293634698946,1.3861356251246153,10.091499943970781,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1170,PS_1694,['LKD_1694'],"['LKD_N_135', 'LKD_N_775']","[48.78112007920251, 48.77417439332521]","[10.0824541981084, 10.118797036914625]","['DE', 'DE']",0.0,48.77764723626386,2.7736448387332757,10.100625617511511,67.0,0.0,1983.0,2.032269590685856,225.0 -LKD_PS_1171,PS_1695,['LKD_1695'],"['LKD_N_135', 'LKD_N_776']","[48.78112007920251, 48.76278979777836]","[10.0824541981084, 10.099143284546711]","['DE', 'DE']",0.0,48.77195493849044,2.3777669963732793,10.090798741327555,67.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1172,PS_1696,['LKD_1696'],"['LKD_N_171', 'LKD_N_777']","[48.49502155167112, 48.50203107658493]","[9.157192816311142, 9.127566734412552]","['DE', 'DE']",0.0,48.49852631412803,2.31861663354374,9.142379775361846,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1173,PS_1697,['LKD_1697'],"['LKD_N_171', 'LKD_N_778']","[48.49502155167112, 48.48985767806033]","[9.157192816311142, 9.127422711318538]","['DE', 'DE']",0.0,48.49243961486573,2.2683996452427024,9.14230776381484,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1174,PS_1698,['LKD_1698'],"['LKD_N_173', 'LKD_N_780']","[48.31526013567949, 48.33157416562288]","[8.902948915727018, 8.890763485921873]","['DE', 'DE']",0.0,48.32341715065118,2.0260825850034623,8.896856200824445,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1175,PS_1699,['LKD_1699'],"['LKD_N_173', 'LKD_N_779']","[48.31526013567949, 48.32374191048439]","[8.902948915727018, 8.880732888088586]","['DE', 'DE']",0.0,48.31950102308194,1.8947826767335023,8.891840901907802,50.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1176,PS_1700,['LKD_1700'],"['LKD_N_170', 'LKD_N_781']","[48.60449680833081, 48.62014901774857]","[9.345166389144138, 9.339182555577853]","['DE', 'DE']",0.0,48.61232291303969,1.79574457719529,9.342174472360995,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1177,PS_1701,['LKD_1701'],"['LKD_N_170', 'LKD_N_782']","[48.60449680833081, 48.612396203521385]","[9.345166389144138, 9.32290632502428]","['DE', 'DE']",0.0,48.608446505926096,1.8580084985610155,9.334036357084209,50.0,0.0,1983.0,7.612555781053631,700.0 -LKD_PS_1178,PS_1702,['LKD_1702'],"['LKD_N_141', 'LKD_N_783']","[49.20898403076822, 49.22757403587716]","[9.66585520613546, 9.685595329540883]","['DE', 'DE']",0.0,49.21827903332269,2.5164487437890615,9.675725267838171,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1179,PS_1703,['LKD_1703'],"['LKD_N_141', 'LKD_N_784']","[49.20898403076822, 49.227415188337545]","[9.66585520613546, 9.659423606650774]","['DE', 'DE']",0.0,49.21819960955288,2.102673157053969,9.662639406393117,50.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1180,PS_1704,['LKD_1704'],"['LKD_N_166', 'LKD_N_785']","[48.82147931310597, 48.81658440450429]","[9.867504293809288, 9.875163585411617]","['DE', 'DE']",0.0,48.81903185880513,0.7817312730465474,9.871333939610452,67.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1181,PS_1705,['LKD_1705'],"['LKD_N_166', 'LKD_N_786']","[48.82147931310597, 48.80332702343094]","[9.867504293809288, 9.85618643434133]","['DE', 'DE']",0.0,48.81240316826845,2.1826413483564546,9.86184536407531,56.0,0.0,1983.0,2.032269590685856,350.0 -LKD_PS_1182,PS_1706,['LKD_1706'],"['LKD_N_108', 'LKD_N_788']","[47.78498930523843, 47.77392592050945]","[9.036967073185806, 9.015557485540088]","['DE', 'DE']",0.0,47.77945761287394,2.01869952243681,9.026262279362946,67.0,0.0,1983.0,1.0583333333333331,350.0 -LKD_PS_1183,PS_1707,['LKD_1707'],"['LKD_N_108', 'LKD_N_787']","[47.78498930523843, 47.76232527729059]","[9.036967073185806, 9.037555019867302]","['DE', 'DE']",0.0,47.77365729126451,2.5212991511027663,9.037261046526554,67.0,0.0,1983.0,1.0583333333333331,350.0 -LKD_PS_1184,PS_1708,['LKD_1708'],"['LKD_N_143', 'LKD_N_789']","[49.20962030908019, 49.193773899149825]","[9.221670007289411, 9.223009010778602]","['DE', 'DE']",0.0,49.201697104115006,1.7652779451718446,9.222339509034008,50.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_1185,PS_1709,['LKD_1709'],"['LKD_N_143', 'LKD_N_790']","[49.20962030908019, 49.19891177900825]","[9.221670007289411, 9.237351275929443]","['DE', 'DE']",0.0,49.20426604404422,1.6484716368245853,9.229510641609426,50.0,0.0,1983.0,7.612555781053631,225.0 -LKD_PS_1186,PS_1710,['LKD_1710'],"['LKD_N_154', 'LKD_N_791']","[49.255140849210264, 49.270822359963084]","[8.513202938047868, 8.533696003665884]","['DE', 'DE']",0.0,49.26298160458667,2.2924171628426104,8.523449470856876,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1187,PS_1711,['LKD_1711'],"['LKD_N_154', 'LKD_N_792']","[49.255140849210264, 49.256713342991986]","[8.513202938047868, 8.536657259221675]","['DE', 'DE']",0.0,49.255927096101125,1.7116883005939814,8.524930098634773,59.0,0.0,1983.0,7.612555781053631,350.0 -LKD_PS_1188,PS_1712,['LKD_1712'],"['LKD_N_136', 'LKD_N_793']","[48.91446166072299, 48.92557691998497]","[10.046184399331853, 10.07646376635939]","['DE', 'DE']",0.0,48.92001929035398,2.5350567607088035,10.061324082845623,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1189,PS_1713,['LKD_1713'],"['LKD_N_136', 'LKD_N_794']","[48.91446166072299, 48.90542158018699]","[10.046184399331853, 10.083949721201316]","['DE', 'DE']",0.0,48.90994162045499,2.9382524854943375,10.065067060266585,67.0,0.0,1983.0,29.70118861792608,350.0 -LKD_PS_1190,PS_1714,['LKD_1714'],"['LKD_N_795', 'LKD_N_796']","[48.62177943680553, 48.610847908757954]","[9.828118188764837, 9.797897839795153]","['DE', 'DE']",0.0,48.61631367278174,2.533120094416356,9.813008014279994,56.0,0.0,1983.0,2.032269590685856,500.0 -LKD_PS_1191,PS_1715,['LKD_1715'],"['LKD_N_159', 'LKD_N_797']","[48.88143631139826, 48.890416904071984]","[8.869271376024848, 8.854828744480344]","['DE', 'DE']",0.0,48.88592660773512,1.4538474500614178,8.862050060252596,56.0,0.0,1983.0,19.470663935585154,350.0 -LKD_PS_1194,VIP Kiefersfelden-Pfronten,['LKD_1719'],"['LKD_N_6', 'LKD_N_870']","[47.568727729899976, 47.5628110586712]","[10.60617205578263, 10.6080290347062]","['DE', 'AT']",0.0,47.56576939428559,0.6727057480864981,10.607100545244414,76.80652874754169,0.0,1983.0,0.226,998.4639333647048 -LKD_PS_1195,Kiefersfelden,['LKD_1720'],"['LKD_N_5', 'LKD_N_921']","[47.607410947785326, 47.277]","[12.131761968684444, 11.409]","['DE', 'AT']",0.0,47.44220547389266,65.62745297076256,11.770380984342221,76.80652874754169,0.0,1983.0,0.226,998.4639333647048 -LKD_PS_1197,PS_1723,['LKD_1723'],"['LKD_N_33', 'LKD_N_62']","[50.650390072432444, 49.68154560977083]","[13.380642483525849, 12.501058522508734]","['DE', 'DE']",0.0,50.16596784110163,124.66035174210529,12.940850503017291,76.80652874754169,0.0,1983.0,3.0083333333333333,998.4639333647048 -LKD_PS_1198,PS_1724,['LKD_1724'],"['LKD_N_932', 'LKD_N_918']","[53.56382, 53.92902794697626]","[14.82843, 14.225427919277525]","['PL', 'DE']",0.0,53.746423973488135,56.77415231779566,14.526928959638763,76.80652874754169,0.0,1983.0,7.924429246522989,709.5161904761904 -LKD_PS_1201,PS_1729,['LKD_1729'],"['LKD_N_326', 'LKD_N_840']","[51.80289494376811, 51.600642043953656]","[6.123468395929773, 6.428326836195894]","['DE', 'DE']",0.0,51.70176849386088,30.78542421059461,6.275897616062833,76.80652874754169,0.0,1983.0,13.65,998.4639333647048 -LKD_PS_1209,PS_1741,['LKD_1741'],"['LKD_N_455', 'LKD_N_935']","[50.664617719961676, 50.312]","[13.409118303747698, 14.17]","['DE', 'PL']",0.0,50.48830885998083,66.61599908647543,13.78955915187385,76.80652874754169,0.0,1983.0,39.66141666666667,998.4639333647048 -LKD_PS_1210,PS_1745,['LKD_1745'],"['LKD_N_282', 'LKD_N_59']","[50.7860148129456, 50.788561874445634]","[6.2409609112845335, 6.392668509075823]","['DE', 'DE']",0.0,50.78728834369562,10.67178240070905,6.316814710180179,55.18036349750499,0.0,1983.0,11.179166666666667,350.0 -LKD_PS_1211,PS_1746,['LKD_1746'],"['LKD_N_59', 'LKD_N_350']","[50.788561874445634, 50.79310317482686]","[6.392668509075823, 6.557447607294139]","['DE', 'DE']",0.0,50.790832524636244,11.597331104668562,6.475058058184981,55.18036349750499,0.0,1983.0,11.179166666666667,350.0 -LKD_PS_1214,PS_1749,['LKD_1749'],"['LKD_N_878', 'LKD_N_897']","[51.845756680058415, 52.35642178683805]","[7.171231369744617, 7.240145869607786]","['DE', 'DE']",0.0,52.101089233448235,56.99601483800342,7.205688619676201,76.80652874754169,0.0,1983.0,3.9,998.4639333647048 -LKD_PS_1215,PS_1750,['LKD_1750'],"['LKD_N_879', 'LKD_N_897']","[52.54684215315799, 52.35642178683805]","[7.061230768997239, 7.240145869607786]","['DE', 'DE']",0.0,52.45163196999802,24.40697341905146,7.150688319302512,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -LKD_PS_1216,PS_1753,['LKD_1753'],"['LKD_N_879', 'LKD_N_887']","[52.54684215315799, 52.623273109868975]","[7.061230768997239, 7.089791598029426]","['DE', 'DE']",0.0,52.58505763151348,8.717765496488525,7.075511183513333,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -LKD_PS_1217,PS_1754,['LKD_1754'],"['LKD_N_879', 'LKD_N_888']","[52.54684215315799, 52.67392482711143]","[7.061230768997239, 7.424094784272564]","['DE', 'DE']",0.0,52.61038349013471,28.29277663965445,7.242662776634901,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -LKD_PS_1218,PS_1755,['LKD_1755'],"['LKD_N_879', 'LKD_N_899']","[52.54684215315799, 52.570392776612444]","[7.061230768997239, 7.34406640515802]","['DE', 'DE']",0.0,52.55861746488522,19.304486423364438,7.202648587077629,76.80652874754169,0.0,1983.0,3.0,998.4639333647048 -LKD_PS_1219,PS_1756,['LKD_1756'],"['LKD_N_899', 'LKD_N_898']","[52.570392776612444, 52.57032742117107]","[7.34406640515802, 7.376119681896716]","['DE', 'DE']",0.0,52.570360098891754,2.1669423938127212,7.3600930435273675,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1220,PS_1757,['LKD_1757'],"['LKD_N_898', 'LKD_N_900']","[52.57032742117107, 52.57598881614377]","[7.376119681896716, 7.427536293774027]","['DE', 'DE']",0.0,52.57315811865742,3.532331149650567,7.401827987835372,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1221,PS_1760,['LKD_1760'],"['LKD_N_888', 'LKD_N_900']","[52.67392482711143, 52.57598881614377]","[7.424094784272564, 7.427536293774027]","['DE', 'DE']",0.0,52.6249568216276,10.895884255168202,7.425815539023295,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1222,PS_1761,['LKD_1761'],"['LKD_N_899', 'LKD_N_888']","[52.570392776612444, 52.67392482711143]","[7.34406640515802, 7.424094784272564]","['DE', 'DE']",0.0,52.622158801861936,12.720706534424949,7.384080594715292,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1223,PS_1762,['LKD_1762'],"['LKD_N_898', 'LKD_N_905']","[52.57032742117107, 52.45787354405039]","[7.376119681896716, 7.281642534840285]","['DE', 'DE']",0.0,52.51410048261073,14.048293150734192,7.328881108368501,76.80652874754169,0.0,1983.0,3.9,998.4639333647048 -LKD_PS_1224,PS_1763,['LKD_1763'],"['LKD_N_900', 'LKD_N_880']","[52.57598881614377, 52.5972945136329]","[7.427536293774027, 7.8457537949577025]","['DE', 'DE']",0.0,52.58664166488833,28.36182487936446,7.636645044365865,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1225,PS_1764,['LKD_1764'],"['LKD_N_898', 'LKD_N_895']","[52.57032742117107, 52.69827907280385]","[7.376119681896716, 7.845736865920657]","['DE', 'DE']",0.0,52.63430324698746,34.74970981188989,7.610928273908687,80.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1226,PS_1766,['LKD_1766'],"['LKD_N_895', 'LKD_N_894']","[52.69827907280385, 52.66284457434465]","[7.845736865920657, 7.779442130264533]","['DE', 'DE']",0.0,52.68056182357425,5.959862593417883,7.812589498092596,80.0,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1232,PS_1773,['LKD_1773'],"['LKD_N_906', 'LKD_N_896']","[52.46581105557966, 52.47685483259436]","[8.287430428846196, 8.208034564953861]","['DE', 'DE']",0.0,52.47133294408701,5.518058116046998,8.247732496900028,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1233,PS_1774,['LKD_1774'],"['LKD_N_906', 'LKD_N_901']","[52.46581105557966, 52.349472794672735]","[8.287430428846196, 8.198966399618483]","['DE', 'DE']",0.0,52.4076419251262,14.264753706858887,8.243198414232339,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1234,PS_1775,['LKD_1775'],"['LKD_N_901', 'LKD_N_902']","[52.349472794672735, 52.21233842370632]","[8.198966399618483, 7.95080483854069]","['DE', 'DE']",0.0,52.28090560918953,22.75620758537552,8.074885619079586,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1235,PS_1777,['LKD_1777'],"['LKD_N_902', 'LKD_N_901']","[52.21233842370632, 52.349472794672735]","[7.95080483854069, 8.198966399618483]","['DE', 'DE']",0.0,52.28090560918953,22.75620758537552,8.074885619079586,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1237,PS_1780,['LKD_1780'],"['LKD_N_903', 'LKD_N_889']","[52.49547934319279, 52.211164663714214]","[8.745485308894999, 9.708357275523646]","['DE', 'DE']",0.0,52.3533220034535,72.65805866021141,9.226921292209322,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1238,PS_1782,['LKD_1782'],"['LKD_N_889', 'LKD_N_247']","[52.211164663714214, 52.3681322072938]","[9.708357275523646, 9.911803219949972]","['DE', 'DE']",0.0,52.289648435504006,22.280559215152902,9.81008024773681,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1239,PS_1783,['LKD_1783'],"['LKD_N_247', 'LKD_N_890']","[52.3681322072938, 52.14257916881239]","[9.911803219949972, 9.961157669293925]","['DE', 'DE']",0.0,52.25535568805309,25.312286244128828,9.93648044462195,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1240,PS_1784,['LKD_1784'],"['LKD_N_890', 'LKD_N_884']","[52.14257916881239, 52.15402496502688]","[9.961157669293925, 10.362076709161698]","['DE', 'DE']",0.0,52.14830206691963,27.393421517541253,10.161617189227812,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1241,PS_1785,['LKD_1785'],"['LKD_N_890', 'LKD_N_885']","[52.14257916881239, 51.7825135442973]","[9.961157669293925, 9.949775104596613]","['DE', 'DE']",0.0,51.962546356554846,40.05763651233666,9.955466386945268,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1243,PS_1787,['LKD_1787'],"['LKD_N_886', 'LKD_N_891']","[52.8207432470412, 52.92830356557572]","[10.232346039870945, 10.088770864812028]","['DE', 'DE']",0.0,52.874523406308455,15.36364364987493,10.160558452341487,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1244,PS_1788,['LKD_1788'],"['LKD_N_886', 'LKD_N_904']","[52.8207432470412, 52.83860580937084]","[10.232346039870945, 10.75866361485757]","['DE', 'DE']",0.0,52.82967452820602,35.426096059333794,10.495504827364257,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1245,PS_1789,['LKD_1789'],"['LKD_N_247', 'LKD_N_886']","[52.3681322072938, 52.8207432470412]","[9.911803219949972, 10.232346039870945]","['DE', 'DE']",0.0,52.5944377271675,54.804744912626504,10.072074629910459,76.80652874754169,0.0,1983.0,1.4845232338862173,475.85945945945946 -LKD_PS_1246,PS_1790,['LKD_1790'],"['LKD_N_897', 'LKD_N_900']","[52.35642178683805, 52.57598881614377]","[7.240145869607786, 7.427536293774027]","['DE', 'DE']",0.0,52.46620530149091,27.52639123122099,7.333841081690906,76.80652874754169,0.0,1983.0,3.9,998.4639333647048 -LKD_PS_1250,PS_1795,['LKD_1795'],"['LKD_N_907', 'LKD_N_909']","[52.52600651895855, 52.5778895679001]","[8.827042470194236, 8.806534938646603]","['DE', 'DE']",0.0,52.55194804342933,5.9352739117849085,8.81678870442042,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1252,PS_1797,['LKD_1797'],"['LKD_N_889', 'LKD_N_890']","[52.211164663714214, 52.14257916881239]","[9.708357275523646, 9.961157669293925]","['DE', 'DE']",0.0,52.1768719162633,18.85544038338027,9.834757472408786,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1253,PS_1798,['LKD_1798'],"['LKD_N_908', 'LKD_N_892']","[52.56852978150802, 52.55369822791797]","[8.933874839991033, 9.154433130442573]","['DE', 'DE']",0.0,52.56111400471299,15.004729025504528,9.044153985216802,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1254,PS_1799,['LKD_1799'],"['LKD_N_909', 'LKD_N_908']","[52.5778895679001, 52.56852978150802]","[8.806534938646603, 8.933874839991033]","['DE', 'DE']",0.0,52.57320967470406,8.670855336541749,8.870204889318817,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1255,PS_1801,['LKD_1801'],"['LKD_N_936', 'LKD_N_937']","[54.1513, 54.8]","[13.6566, 15.2]","['DE', 'XX']",0.0,57.365157456113636,185.34843466578332,20.921036408241346,76.80652874754169,0.0,1983.0,72.58333333333333,998.4639333647048 -LKD_PS_1256,PS_1802,['LKD_1802'],"['LKD_N_914', 'LKD_N_15']","[48.38069770687552, 48.375408310209544]","[10.279688468665526, 10.187765259821576]","['DE', 'DE']",0.0,48.37805300854254,6.816746492343771,10.23372686424355,68.0,0.0,1983.0,19.470663935585154,400.0 -LKD_PS_1257,PS_1806,['LKD_1806'],"['LKD_N_826', 'LKD_N_846']","[51.392262499839624, 51.370137175624244]","[6.795709728560038, 6.95743786467993]","['DE', 'DE']",0.0,51.381199837731934,11.49412723653631,6.876573796619984,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1258,PS_1807,['LKD_1807'],"['LKD_N_846', 'LKD_N_823']","[51.370137175624244, 51.39407500163542]","[6.95743786467993, 7.25674162083485]","['DE', 'DE']",0.0,51.38210608862983,20.947906223030074,7.10708974275739,76.80652874754169,0.0,1983.0,19.39928803485337,998.4639333647048 -LKD_PS_1260,PS_1809,['LKD_1809'],"['LKD_N_795', 'LKD_N_169']","[48.62177943680553, 48.61520602482246]","[9.828118188764837, 9.818427198225258]","['DE', 'DE']",0.0,48.618492730814,1.020966078450149,9.823272693495047,56.0,0.0,1983.0,2.032269590685856,500.0 diff --git a/data/gas_network/planned_LNGs.csv b/data/gas_network/planned_LNGs.csv new file mode 100644 index 00000000..65706216 --- /dev/null +++ b/data/gas_network/planned_LNGs.csv @@ -0,0 +1,8 @@ +name,geometry,max_cap_store2pipe_M_m3_per_d,source +Wilhelmshaven,"POINT(8.133 53.516)",27.4,https://www.gem.wiki/Wilhelmshaven_LNG_Terminal +Brunsbüttel,"POINT(8.976 53.914)",19.2,https://www.gem.wiki/Brunsb%C3%BCttel_LNG_Terminal +Stade,"POINT(9.510 53.652)",32.9,https://www.gem.wiki/Stade_LNG_Terminal +Alexandroupolis,"POINT(25.843 40.775)",16.7,https://www.gem.wiki/Alexandroupolis_LNG_Terminal +Shannon,"POINT(-9.442 52.581)",22.5,https://www.gem.wiki/Shannon_LNG_Terminal +Gothenburg,"POINT(11.948 57.702)",1.4,https://www.gem.wiki/Gothenburg_LNG_Terminal +Cork,"POINT(-8.323 51.831)",11.0,https://www.gem.wiki/Cork_LNG_Terminal \ No newline at end of file diff --git a/doc/release_notes.rst b/doc/release_notes.rst index 593c420a..080f30e6 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -8,6 +8,52 @@ Future release .. note:: This unreleased version currently may require the master branches of PyPSA, PyPSA-Eur, and the technology-data repository. +This release includes the addition of the European gas transmission network and +incorporates retrofitting options to hydrogen. + +**Gas Transmission Network** + +* New rule ``retrieve_gas_infrastructure_data`` that downloads and extracts the + SciGRID_gas `IGGIELGN `_ dataset from zenodo. + It includes data on the transmission routes, pipe diameters, capacities, pressure, + and whether the pipeline is bidirectional and carries H-Gas or L-Gas. + +* New rule ``build_gas_network`` processes and cleans the pipeline data from SciGRID_gas. + Missing or uncertain pipeline capacities can be inferred by diameter. + +* New rule ``build_gas_input_locations`` compiles the LNG import capacities + (including planned projects from gem.wiki), pipeline entry capacities and + local production capacities for each region of the model. These are the + regions where fossil gas can eventually enter the model. + +* New rule ``cluster_gas_network`` that clusters the gas transmission network + data to the model resolution. Cross-regional pipeline capacities are aggregated + (while pressure and diameter compability is ignored), intra-regional pipelines + are dropped. Lengths are recalculated based on the regions' centroids. + +* With the option ``sector: gas_network:``, the existing gas network is + added with a lossless transport model. A length-weighted `k-edge augmentation + algorithm + `_ + can be run to add new candidate gas pipelines such that all regions of the + model can be connected to the gas network. The number of candidates can be + controlled via the setting ``sector: gas_network_connectivity_upgrade:``. When + the gas network is activated, all the gas demands are regionally disaggregated + as well. + +* New constraint allows retrofitting of gas pipelines to hydrogen pipelines. + This option is activated via the setting ``sector: H2_retrofit:``. For every + unit of gas pipeline capacity dismantled, ``sector: + H2_retrofit_capacity_per_CH4`` units are made available as hydrogen pipeline + capacity in the corresponding corridor. These repurposed hydrogen pipelines + have lower costs than new hydrogen pipelines. Both new and repurposed pipelines + can be built simultaneously. + +* New hydrogen pipelines can now be built where there are already power or gas + transmission routes. Previously, only the electricity transmission routes were + considered. + + PyPSA-Eur-Sec 0.6.0 (4 October 2021) ==================================== diff --git a/doc/spatial_resolution.rst b/doc/spatial_resolution.rst index 83a33f73..d410065a 100644 --- a/doc/spatial_resolution.rst +++ b/doc/spatial_resolution.rst @@ -41,8 +41,10 @@ locations of industry from `HotMaps database 35) & + (prod.geometry.x < 30) & + (prod.country_code != "DE") + ] + + conversion_factor = 437.5 # MCM/day to MWh/h + lng["p_nom"] = lng["max_cap_store2pipe_M_m3_per_d"] * conversion_factor + entry["p_nom"] = entry["max_cap_from_to_M_m3_per_d"] * conversion_factor + prod["p_nom"] = prod["max_supply_M_m3_per_d"] * conversion_factor + + lng["type"] = "lng" + entry["type"] = "pipeline" + prod["type"] = "production" + + sel = ["geometry", "p_nom", "type"] + + return pd.concat([prod[sel], entry[sel], lng[sel]], ignore_index=True) + + +if __name__ == "__main__": + + if 'snakemake' not in globals(): + from helper import mock_snakemake + snakemake = mock_snakemake( + 'build_gas_import_locations', + simpl='', + clusters='37', + ) + + logging.basicConfig(level=snakemake.config['logging_level']) + + regions = load_bus_regions( + snakemake.input.regions_onshore, + snakemake.input.regions_offshore + ) + + # add a buffer to eastern countries because some + # entry points are still in Russian or Ukrainian territory. + buffer = 9000 # meters + eastern_countries = ['FI', 'EE', 'LT', 'LV', 'PL', 'SK', 'HU', 'RO'] + add_buffer_b = regions.index.str[:2].isin(eastern_countries) + regions.loc[add_buffer_b] = regions[add_buffer_b].to_crs(3035).buffer(buffer).to_crs(4326) + + countries = regions.index.str[:2].unique().str.replace("GB", "UK") + + gas_input_locations = build_gas_input_locations( + snakemake.input.lng, + snakemake.input.planned_lng, + snakemake.input.entry, + snakemake.input.production, + countries + ) + + gas_input_nodes = gpd.sjoin(gas_input_locations, regions, how='left') + + gas_input_nodes.rename(columns={"index_right": "bus"}, inplace=True) + + gas_input_nodes.to_file(snakemake.output.gas_input_nodes, driver='GeoJSON') + + gas_input_nodes_s = gas_input_nodes.groupby(["bus", "type"])["p_nom"].sum().unstack() + gas_input_nodes_s.columns.name = "p_nom" + + gas_input_nodes_s.to_csv(snakemake.output.gas_input_nodes_simplified) \ No newline at end of file diff --git a/scripts/build_gas_network.py b/scripts/build_gas_network.py old mode 100755 new mode 100644 index 0f213416..786b7f8d --- a/scripts/build_gas_network.py +++ b/scripts/build_gas_network.py @@ -1,188 +1,16 @@ -""" -Builds clustered natural gas network based on data from: - - [1] the SciGRID Gas project - (https://www.gas.scigrid.de/) - - [2] ENTSOG capacity map - (https://www.entsog.eu/sites/default/files/2019-10/Capacities%20for%20Transmission%20Capacity%20Map%20RTS008_NS%20-%20DWH_final.xlsx) -""" +"""Preprocess gas network based on data from bthe SciGRID Gas project (https://www.gas.scigrid.de/).""" import logging logger = logging.getLogger(__name__) -import re -import json - import pandas as pd import geopandas as gpd -import numpy as np - from shapely.geometry import Point +from pypsa.geo import haversine_pts -def concat_gdf(gdf_list, crs='EPSG:4326'): - """Convert to gepandas dataframe with given Coordinate Reference System (crs).""" - return gpd.GeoDataFrame(pd.concat(gdf_list),crs=crs) - - -def string2list(string, with_None=True): - """Convert string format to a list.""" - p = re.compile('(? MW - clean_pipes.loc[:, 'capacity_recalculated'] *= 1e3 - - # rename columns - to_rename = { - 'capacity_recalculated': 'pipe_capacity_MW', - 'buses_start': 'bus0', - 'buses_destination': 'bus1' - } - clean_pipes.rename(columns=to_rename, inplace=True) - - return clean_pipes - - -def diameter2capacity(pipe_diameter_mm): - """Calculate pipe capacity based on diameter. +def diameter_to_capacity(pipe_diameter_mm): + """Calculate pipe capacity in MW based on diameter in mm. 20 inch (500 mm) 50 bar -> 1.5 GW CH4 pipe capacity (LHV) 24 inch (600 mm) 50 bar -> 5 GW CH4 pipe capacity (LHV) @@ -193,69 +21,115 @@ def diameter2capacity(pipe_diameter_mm): """ # slopes definitions - m0 = (5 - 1.5) / (600 - 500) - m1 = (11.25 - 5) / (900 - 600) - m2 = (21.7 - 11.25) / (1200 - 900) + m0 = (1500 - 0) / (500 - 0) + m1 = (5000 - 1500) / (600 - 500) + m2 = (11250 - 5000) / (900 - 600) + m3 = (21700 - 11250) / (1200 - 900) # intercept - a0 = -16 - a1 = -7.5 - a2 = -20.1 + a0 = 0 + a1 = -16000 + a2 = -7500 + a3 = -20100 if pipe_diameter_mm < 500: - return np.nan - elif pipe_diameter_mm < 600: return a0 + m0 * pipe_diameter_mm - elif pipe_diameter_mm < 900: + elif pipe_diameter_mm < 600: return a1 + m1 * pipe_diameter_mm - else: + elif pipe_diameter_mm < 900: return a2 + m2 * pipe_diameter_mm + else: + return a3 + m3 * pipe_diameter_mm + + +def load_dataset(fn): + df = gpd.read_file(fn) + param = df.param.apply(pd.Series) + method = df.method.apply(pd.Series)[["diameter_mm", "max_cap_M_m3_per_d"]] + method.columns = method.columns + "_method" + df = pd.concat([df, param, method], axis=1) + to_drop = ["param", "uncertainty", "method", "tags"] + to_drop = df.columns.intersection(to_drop) + df.drop(to_drop, axis=1, inplace=True) + return df + + +def prepare_dataset( + df, + length_factor=1.5, + correction_threshold_length=4, + correction_threshold_p_nom=8, + bidirectional_below=10 +): + + # extract start and end from LineString + df["point0"] = df.geometry.apply(lambda x: Point(x.coords[0])) + df["point1"] = df.geometry.apply(lambda x: Point(x.coords[-1])) + + conversion_factor = 437.5 # MCM/day to MWh/h + df["p_nom"] = df.max_cap_M_m3_per_d * conversion_factor + + # for inferred diameters, assume 500 mm rather than 900 mm (more conservative) + df.loc[df.diameter_mm_method != 'raw', "diameter_mm"] = 500. + + keep = ["name", "diameter_mm", "is_H_gas", "is_bothDirection", + "length_km", "p_nom", "max_pressure_bar", + "start_year", "point0", "point1", "geometry"] + to_rename = { + "is_bothDirection": "bidirectional", + "is_H_gas": "H_gas", + "start_year": "build_year", + "length_km": "length", + } + df = df[keep].rename(columns=to_rename) + + df.bidirectional = df.bidirectional.astype(bool) + df.H_gas = df.H_gas.astype(bool) + + # short lines below 10 km are assumed to be bidirectional + short_lines = df["length"] < bidirectional_below + df.loc[short_lines, "bidirectional"] = True + + # correct all capacities that deviate correction_threshold factor + # to diameter-based capacities, unless they are NordStream pipelines + # also all capacities below 0.5 GW are now diameter-based capacities + df["p_nom_diameter"] = df.diameter_mm.apply(diameter_to_capacity) + ratio = df.p_nom / df.p_nom_diameter + not_nordstream = df.max_pressure_bar < 220 + df.p_nom.update(df.p_nom_diameter.where( + (df.p_nom <= 500) | + ((ratio > correction_threshold_p_nom) & not_nordstream) | + ((ratio < 1 / correction_threshold_p_nom) & not_nordstream) + )) + + # lines which have way too discrepant line lengths + # get assigned haversine length * length factor + df["length_haversine"] = df.apply( + lambda p: length_factor * haversine_pts( + [p.point0.x, p.point0.y], + [p.point1.x, p.point1.y] + ), axis=1 + ) + ratio = df.eval("length / length_haversine") + df["length"].update(df.length_haversine.where( + (df["length"] < 20) | + (ratio > correction_threshold_length) | + (ratio < 1 / correction_threshold_length) + )) - -def determine_pipe_capacity(gas_network): - """Check pipe capacity depending on diameter and pressure.""" - - gas_network["capacity_recalculated"] = gas_network.diameter_mm.apply(diameter2capacity) - - # if pipe capacity smaller than 1.5 GW take original pipe capacity - low_cap = gas_network.Capacity_GWh_h < 1.5 - gas_network.loc[low_cap, "capacity_recalculated"] = gas_network.loc[low_cap, "capacity_recalculated"].fillna(gas_network.loc[low_cap, "Capacity_GWh_h"]) - - # for pipes without diameter assume 500 mm diameter - gas_network["capacity_recalculated"].fillna(1.5, inplace=True) - - # for nord stream take orginal data - nord_stream = gas_network[gas_network.max_pressure_bar==220].index - gas_network.loc[nord_stream, "capacity_recalculated"] = gas_network.loc[nord_stream, "Capacity_GWh_h"] + return df if __name__ == "__main__": if 'snakemake' not in globals(): from helper import mock_snakemake - snakemake = mock_snakemake('build_gas_network', - network='elec', simpl='', clusters='37', - lv='1.0', opts='', planning_horizons='2020', - sector_opts='168H-T-H-B-I') + snakemake = mock_snakemake('build_gas_network') logging.basicConfig(level=snakemake.config['logging_level']) - # import gas network data - gas_network, points = load_gas_network(snakemake.input.gas_network) - - # get clustered bus regions - bus_regions = load_bus_regions( - snakemake.input.regions_onshore, - snakemake.input.regions_offshore - ) - nodes = pd.Index(bus_regions.name.unique()) - - # map gas network points to network buses - points2buses_map = points2buses(points, bus_regions) - - # create gas network between pypsa nodes - gas_connections = build_gas_network_topology(gas_network, points2buses_map) + gas_network = load_dataset(snakemake.input.gas_network) - gas_connections = clean_dataset(nodes, gas_connections) + gas_network = prepare_dataset(gas_network) - gas_connections.to_csv(snakemake.output.clustered_gas_network) + gas_network.to_csv(snakemake.output.cleaned_gas_network) \ No newline at end of file diff --git a/scripts/build_industrial_distribution_key.py b/scripts/build_industrial_distribution_key.py index ce5a59ed..909268ff 100644 --- a/scripts/build_industrial_distribution_key.py +++ b/scripts/build_industrial_distribution_key.py @@ -3,7 +3,11 @@ import uuid import pandas as pd import geopandas as gpd + from itertools import product +from distutils.version import StrictVersion + +gpd_version = StrictVersion(gpd.__version__) def locate_missing_industrial_sites(df): @@ -69,7 +73,8 @@ def prepare_hotmaps_database(regions): gdf = gpd.GeoDataFrame(df, geometry='coordinates', crs="EPSG:4326") - gdf = gpd.sjoin(gdf, regions, how="inner", op='within') + kws = dict(op="within") if gpd_version < '0.10' else dict(predicate="within") + gdf = gpd.sjoin(gdf, regions, how="inner", **kws) gdf.rename(columns={"index_right": "bus"}, inplace=True) gdf["country"] = gdf.bus.str[:2] diff --git a/scripts/cluster_gas_network.py b/scripts/cluster_gas_network.py new file mode 100755 index 00000000..4a74dff1 --- /dev/null +++ b/scripts/cluster_gas_network.py @@ -0,0 +1,124 @@ +"""Cluster gas network.""" + +import logging +logger = logging.getLogger(__name__) + +import pandas as pd +import geopandas as gpd + +from shapely import wkt +from pypsa.geo import haversine_pts +from distutils.version import StrictVersion + +gpd_version = StrictVersion(gpd.__version__) + +def concat_gdf(gdf_list, crs='EPSG:4326'): + """Concatenate multiple geopandas dataframes with common coordinate reference system (crs).""" + return gpd.GeoDataFrame(pd.concat(gdf_list), crs=crs) + + +def load_bus_regions(onshore_path, offshore_path): + """Load pypsa-eur on- and offshore regions and concat.""" + + bus_regions_offshore = gpd.read_file(offshore_path) + bus_regions_onshore = gpd.read_file(onshore_path) + bus_regions = concat_gdf([bus_regions_offshore, bus_regions_onshore]) + bus_regions = bus_regions.dissolve(by='name', aggfunc='sum') + + return bus_regions + + +def build_clustered_gas_network(df, bus_regions, length_factor=1.25): + + for i in [0,1]: + + gdf = gpd.GeoDataFrame(geometry=df[f"point{i}"], crs="EPSG:4326") + + kws = dict(op="within") if gpd_version < '0.10' else dict(predicate="within") + bus_mapping = gpd.sjoin(gdf, bus_regions, how="left", **kws).index_right + bus_mapping = bus_mapping.groupby(bus_mapping.index).first() + + df[f"bus{i}"] = bus_mapping + + df[f"point{i}"] = df[f"bus{i}"].map(bus_regions.to_crs(3035).centroid.to_crs(4326)) + + # drop pipes where not both buses are inside regions + df = df.loc[~df.bus0.isna() & ~df.bus1.isna()] + + # drop pipes within the same region + df = df.loc[df.bus1 != df.bus0] + + # recalculate lengths as center to center * length factor + df["length"] = df.apply( + lambda p: length_factor * haversine_pts( + [p.point0.x, p.point0.y], + [p.point1.x, p.point1.y] + ), axis=1 + ) + + # tidy and create new numbered index + df.drop(["point0", "point1"], axis=1, inplace=True) + df.reset_index(drop=True, inplace=True) + + return df + + +def reindex_pipes(df): + + def make_index(x): + connector = " <-> " if x.bidirectional else " -> " + return "gas pipeline " + x.bus0 + connector + x.bus1 + + df.index = df.apply(make_index, axis=1) + + df["p_min_pu"] = df.bidirectional.apply(lambda bi: -1 if bi else 0) + df.drop("bidirectional", axis=1, inplace=True) + + df.sort_index(axis=1, inplace=True) + + +def aggregate_parallel_pipes(df): + + strategies = { + 'bus0': 'first', + 'bus1': 'first', + "p_nom": 'sum', + "p_nom_diameter": 'sum', + "max_pressure_bar": "mean", + "build_year": "mean", + "diameter_mm": "mean", + "length": 'mean', + 'name': ' '.join, + "p_min_pu": 'min', + } + return df.groupby(df.index).agg(strategies) + + +if __name__ == "__main__": + + if 'snakemake' not in globals(): + from helper import mock_snakemake + snakemake = mock_snakemake( + 'cluster_gas_network', + simpl='', + clusters='37' + ) + + logging.basicConfig(level=snakemake.config['logging_level']) + + fn = snakemake.input.cleaned_gas_network + df = pd.read_csv(fn, index_col=0) + for col in ["point0", "point1"]: + df[col] = df[col].apply(wkt.loads) + + bus_regions = load_bus_regions( + snakemake.input.regions_onshore, + snakemake.input.regions_offshore + ) + + gas_network = build_clustered_gas_network(df, bus_regions) + + reindex_pipes(gas_network) + gas_network = aggregate_parallel_pipes(gas_network) + + gas_network.to_csv(snakemake.output.clustered_gas_network) \ No newline at end of file diff --git a/scripts/helper.py b/scripts/helper.py index 21f4e8c0..b176ccee 100644 --- a/scripts/helper.py +++ b/scripts/helper.py @@ -89,3 +89,15 @@ def make_accessable(*ios): os.chdir(script_dir) return snakemake + +# from pypsa-eur/_helpers.py +def progress_retrieve(url, file): + import urllib + from progressbar import ProgressBar + + pbar = ProgressBar(0, 100) + + def dlProgress(count, blockSize, totalSize): + pbar.update( int(count * blockSize * 100 / totalSize) ) + + urllib.request.urlretrieve(url, file, reporthook=dlProgress) \ No newline at end of file diff --git a/scripts/plot_network.py b/scripts/plot_network.py index a78b6551..51bd69bf 100644 --- a/scripts/plot_network.py +++ b/scripts/plot_network.py @@ -236,8 +236,6 @@ def plot_h2_map(network): linewidth_factor = 1e4 # MW below which not drawn line_lower_threshold = 1e3 - bus_color = "m" - link_color = "c" # Drop non-electric buses so they don't clutter the plot n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True) @@ -251,38 +249,63 @@ def plot_h2_map(network): n.links.drop(n.links.index[~n.links.carrier.str.contains("H2 pipeline")], inplace=True) - link_widths = n.links.p_nom_opt / linewidth_factor - link_widths[n.links.p_nom_opt < line_lower_threshold] = 0. - link_color = n.links.carrier.map({"H2 pipeline":"red", - "H2 pipeline retrofitted": "blue"}) + h2_new = n.links.loc[n.links.carrier=="H2 pipeline", "p_nom_opt"] + h2_retro = n.links.loc[n.links.carrier=='H2 pipeline retrofitted'] - n.links.bus0 = n.links.bus0.str.replace(" H2", "") - n.links.bus1 = n.links.bus1.str.replace(" H2", "") + positive_order = h2_retro.bus0 < h2_retro.bus1 + h2_retro_p = h2_retro[positive_order] + swap_buses = {"bus0": "bus1", "bus1": "bus0"} + h2_retro_n = h2_retro[~positive_order].rename(columns=swap_buses) + h2_retro = pd.concat([h2_retro_p, h2_retro_n]) + + h2_retro.index = h2_retro.apply( + lambda x: f"H2 pipeline {x.bus0.replace(' H2', '')} -> {x.bus1.replace(' H2', '')}", + axis=1 + ) - print(link_widths.sort_values()) + h2_retro = h2_retro["p_nom_opt"] - print(n.links[["bus0", "bus1"]]) + link_widths_total = (h2_new + h2_retro) / linewidth_factor + link_widths_total = link_widths_total.groupby(level=0).sum().reindex(n.links.index).fillna(0.) + link_widths_total[n.links.p_nom_opt < line_lower_threshold] = 0. + + retro = n.links.p_nom_opt.where(n.links.carrier=='H2 pipeline retrofitted', other=0.) + link_widths_retro = retro / linewidth_factor + link_widths_retro[n.links.p_nom_opt < line_lower_threshold] = 0. + + n.links.bus0 = n.links.bus0.str.replace(" H2", "") + n.links.bus1 = n.links.bus1.str.replace(" H2", "") fig, ax = plt.subplots( figsize=(7, 6), subplot_kw={"projection": ccrs.PlateCarree()} ) - + n.plot( bus_sizes=bus_sizes, - bus_colors={"H2 Electrolysis": bus_color, - "H2 Fuel Cell": "slateblue"}, - link_colors=link_color, - link_widths=link_widths, + bus_colors=snakemake.config['plotting']['tech_colors'], + link_colors='#a2f0f2', + link_widths=link_widths_total, branch_components=["Link"], - ax=ax, **map_opts + ax=ax, + **map_opts + ) + + n.plot( + geomap=False, + bus_sizes=0, + link_colors='#72d3d6', + link_widths=link_widths_retro, + branch_components=["Link"], + ax=ax, + **map_opts ) handles = make_legend_circles_for( [50000, 10000], scale=bus_size_factor, - facecolor=bus_color + facecolor='grey' ) labels = ["{} GW".format(s) for s in (50, 10)] @@ -303,7 +326,7 @@ def plot_h2_map(network): labels = [] for s in (50, 10): - handles.append(plt.Line2D([0], [0], color="black", + handles.append(plt.Line2D([0], [0], color="grey", linewidth=s * 1e3 / linewidth_factor)) labels.append("{} GW".format(s)) @@ -321,7 +344,6 @@ def plot_h2_map(network): fig.savefig( snakemake.output.map.replace("-costs-all","-h2_network"), - transparent=True, bbox_inches="tight" ) @@ -330,261 +352,129 @@ def plot_ch4_map(network): n = network.copy() - supply_energy = get_nodal_balance().droplevel([0,1]).sort_index() - - if "Gas pipeline" not in n.links.carrier.unique(): + if "gas pipeline" not in n.links.carrier.unique(): return assign_location(n) - bus_size_factor = 1e7 + bus_size_factor = 6e7 linewidth_factor = 1e4 # MW below which not drawn - line_lower_threshold = 5e3 - bus_color = "maroon" - link_color = "lightcoral" + line_lower_threshold = 500 # Drop non-electric buses so they don't clutter the plot n.buses.drop(n.buses.index[n.buses.carrier != "AC"], inplace=True) - elec = n.generators[n.generators.carrier=="gas"].index - methanation_i = n.links[n.links.carrier.isin(["helmeth", "Sabatier"])].index - - bus_sizes = n.generators_t.p.loc[:,elec].mul(n.snapshot_weightings, axis=0).sum().groupby(n.generators.loc[elec,"bus"]).sum() / bus_size_factor - bus_sizes.rename(index=lambda x: x.replace(" gas", ""), inplace=True) - bus_sizes = bus_sizes.reindex(n.buses.index).fillna(0) - bus_sizes.index = pd.MultiIndex.from_product( - [bus_sizes.index, ["fossil gas"]]) + fossil_gas_i = n.generators[n.generators.carrier=="gas"].index + fossil_gas = n.generators_t.p.loc[:,fossil_gas_i].mul(n.snapshot_weightings.generators, axis=0).sum().groupby(n.generators.loc[fossil_gas_i,"bus"]).sum() / bus_size_factor + fossil_gas.rename(index=lambda x: x.replace(" gas", ""), inplace=True) + fossil_gas = fossil_gas.reindex(n.buses.index).fillna(0) + # make a fake MultiIndex so that area is correct for legend + fossil_gas.index = pd.MultiIndex.from_product([fossil_gas.index, ["fossil gas"]]) - methanation = abs(n.links_t.p1.loc[:,methanation_i].mul(n.snapshot_weightings, axis=0)).sum().groupby(n.links.loc[methanation_i,"bus1"]).sum() / bus_size_factor + methanation_i = n.links[n.links.carrier.isin(["helmeth", "Sabatier"])].index + methanation = abs(n.links_t.p1.loc[:,methanation_i].mul(n.snapshot_weightings.generators, axis=0)).sum().groupby(n.links.loc[methanation_i,"bus1"]).sum() / bus_size_factor methanation = methanation.groupby(methanation.index).sum().rename(index=lambda x: x.replace(" gas", "")) # make a fake MultiIndex so that area is correct for legend - methanation.index = pd.MultiIndex.from_product( - [methanation.index, ["methanation"]]) + methanation.index = pd.MultiIndex.from_product([methanation.index, ["methanation"]]) biogas_i = n.stores[n.stores.carrier=="biogas"].index - biogas = n.stores_t.p.loc[:,biogas_i].mul(n.snapshot_weightings, axis=0).sum().groupby(n.stores.loc[biogas_i,"bus"]).sum() / bus_size_factor + biogas = n.stores_t.p.loc[:,biogas_i].mul(n.snapshot_weightings.generators, axis=0).sum().groupby(n.stores.loc[biogas_i,"bus"]).sum() / bus_size_factor biogas = biogas.groupby(biogas.index).sum().rename(index=lambda x: x.replace(" biogas", "")) # make a fake MultiIndex so that area is correct for legend - biogas.index = pd.MultiIndex.from_product( - [biogas.index, ["biogas"]]) + biogas.index = pd.MultiIndex.from_product([biogas.index, ["biogas"]]) - bus_sizes = pd.concat([bus_sizes, methanation, biogas]) + bus_sizes = pd.concat([fossil_gas, methanation, biogas]) bus_sizes.sort_index(inplace=True) - n.links.drop(n.links.index[n.links.carrier != "Gas pipeline"], inplace=True) + to_remove = n.links.index[~n.links.carrier.str.contains("gas pipeline")] + n.links.drop(to_remove, inplace=True) - link_widths = n.links.p_nom_opt / linewidth_factor + link_widths = n.links.p_nom_opt / linewidth_factor link_widths[n.links.p_nom_opt < line_lower_threshold] = 0. - n.links.bus0 = n.links.bus0.str.replace(" gas", "") - n.links.bus1 = n.links.bus1.str.replace(" gas", "") - - print(link_widths.sort_values()) - - print(n.links[["bus0", "bus1"]]) - - fig, ax = plt.subplots(subplot_kw={"projection": ccrs.PlateCarree()}) - - fig.set_size_inches(7, 6) - - n.plot(bus_sizes=bus_sizes, - bus_colors={"fossil gas": bus_color, - "methanation": "steelblue", - "biogas": "seagreen"}, - link_colors=link_color, - link_widths=link_widths, - branch_components=["Link"], - ax=ax, boundaries=(-10, 30, 34, 70)) - - handles = make_legend_circles_for( - [200, 1000], scale=bus_size_factor, facecolor=bus_color) - labels = ["{} MW".format(s) for s in (200, 1000)] - l2 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.01, 1.01), - labelspacing=1.0, - framealpha=1., - title='Biomass potential', - handler_map=make_handler_map_to_scale_circles_as_in(ax)) - ax.add_artist(l2) - - handles = [] - labels = [] - - for s in (50, 10): - handles.append(plt.Line2D([0], [0], color=link_color, - linewidth=s * 1e3 / linewidth_factor)) - labels.append("{} GW".format(s)) - l1_1 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.30, 1.01), - framealpha=1, - labelspacing=0.8, handletextpad=1.5, - title='CH4 pipeline capacity') - ax.add_artist(l1_1) - - fig.savefig(snakemake.output.map.replace("-costs-all","-ch4_network"), transparent=True, - bbox_inches="tight") - - ################################################## - supply_energy.drop("Gas pipeline", level=1, inplace=True) - supply_energy = supply_energy[abs(supply_energy)>5] - supply_energy.rename(index=lambda x: x.replace(" gas",""), level=0, inplace=True) - - - demand = supply_energy[supply_energy<0].groupby(level=[0,1]).sum() - supply = supply_energy[supply_energy>0].groupby(level=[0,1]).sum() - - #### DEMAND ####################################### - bus_size_factor = 2e7 - bus_sizes = abs(demand) / bus_size_factor - - fig, ax = plt.subplots(subplot_kw={"projection": ccrs.PlateCarree()}) - - fig.set_size_inches(7, 6) - - n.plot(bus_sizes=bus_sizes, - bus_colors={"CHP": "r", - "OCGT": "wheat", - "SMR": "darkkhaki", - "SMR CC": "tan", - "gas boiler": "orange", - "gas for industry": "grey", - 'gas for industry CC': "lightgrey"}, - link_colors=link_color, - link_widths=link_widths, - branch_components=["Link"], - ax=ax, boundaries=(-10, 30, 34, 70)) - - handles = make_legend_circles_for( - [10e6, 20e6], scale=bus_size_factor, facecolor=bus_color) - labels = ["{} TWh".format(s) for s in (10, 20)] - l2 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.01, 1.01), - labelspacing=1.0, - framealpha=1., - title='CH4 demand', - handler_map=make_handler_map_to_scale_circles_as_in(ax)) - ax.add_artist(l2) + link_widths_orig = n.links.p_nom / linewidth_factor + link_widths_orig[n.links.p_nom < line_lower_threshold] = 0. - handles = [] - labels = [] - - for s in (50, 10): - handles.append(plt.Line2D([0], [0], color=link_color, - linewidth=s * 1e3 / linewidth_factor)) - labels.append("{} GW".format(s)) - l1_1 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.30, 1.01), - framealpha=1, - labelspacing=0.8, handletextpad=1.5, - title='CH4 pipeline capacity') - ax.add_artist(l1_1) + link_color = n.links.carrier.map({"gas pipeline": "#f08080", + "gas pipeline new": "#c46868"}) - fig.savefig(snakemake.output.map.replace("-costs-all","-ch4_demand"), transparent=True, - bbox_inches="tight") + n.links.bus0 = n.links.bus0.str.replace(" gas", "") + n.links.bus1 = n.links.bus1.str.replace(" gas", "") + tech_colors = snakemake.config['plotting']['tech_colors'] - #### SUPPLY ####################################### - bus_size_factor = 2e7 - bus_sizes = supply / bus_size_factor + bus_colors = { + "fossil gas": tech_colors["fossil gas"], + "methanation": tech_colors["methanation"], + "biogas": "seagreen" + } - fig, ax = plt.subplots(subplot_kw={"projection": ccrs.PlateCarree()}) + fig, ax = plt.subplots(figsize=(7,6), subplot_kw={"projection": ccrs.PlateCarree()}) - fig.set_size_inches(7, 6) + n.plot( + bus_sizes=bus_sizes, + bus_colors=bus_colors, + link_colors='lightgrey', + link_widths=link_widths_orig, + branch_components=["Link"], + ax=ax, + **map_opts + ) - n.plot(bus_sizes=bus_sizes, - bus_colors={"gas": "maroon", - "methanation": "steelblue", - "helmeth": "slateblue", - "biogas": "seagreen"}, - link_colors=link_color, - link_widths=link_widths, - branch_components=["Link"], - ax=ax, boundaries=(-10, 30, 34, 70)) + n.plot( + geomap=False, + ax=ax, + bus_sizes=0., + link_colors=link_color, + link_widths=link_widths, + branch_components=["Link"], + **map_opts + ) handles = make_legend_circles_for( - [10e6, 20e6], scale=bus_size_factor, facecolor="black") - labels = ["{} TWh".format(s) for s in (10, 20)] - l2 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.01, 1.01), - labelspacing=1.0, - framealpha=1., - title='CH4 supply', - handler_map=make_handler_map_to_scale_circles_as_in(ax)) + [10e6, 100e6], + scale=bus_size_factor, + facecolor='grey' + ) + labels = ["{} TWh".format(s) for s in (10, 100)] + + l2 = ax.legend( + handles, labels, + loc="upper left", + bbox_to_anchor=(-0.03, 1.01), + labelspacing=1.0, + frameon=False, + title='gas generation', + handler_map=make_handler_map_to_scale_circles_as_in(ax) + ) + ax.add_artist(l2) handles = [] labels = [] for s in (50, 10): - handles.append(plt.Line2D([0], [0], color=link_color, - linewidth=s * 1e3 / linewidth_factor)) + handles.append(plt.Line2D([0], [0], color="grey", linewidth=s * 1e3 / linewidth_factor)) labels.append("{} GW".format(s)) - l1_1 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.30, 1.01), - framealpha=1, - labelspacing=0.8, handletextpad=1.5, - title='CH4 pipeline capacity') + + l1_1 = ax.legend( + handles, labels, + loc="upper left", + bbox_to_anchor=(0.28, 1.01), + frameon=False, + labelspacing=0.8, + handletextpad=1.5, + title='gas pipeline capacity' + ) + ax.add_artist(l1_1) - fig.savefig(snakemake.output.map.replace("-costs-all","-ch4_supply"), transparent=True, - bbox_inches="tight") - - ########################################################################### - net = pd.concat([demand.groupby(level=0).sum().rename("demand"), - supply.groupby(level=0).sum().rename("supply")], axis=1).sum(axis=1) - mask = net>0 - net_importer = net.mask(mask).rename("net_importer") - net_exporter = net.mask(~mask).rename("net_exporter") - - bus_size_factor = 2e7 - linewidth_factor = 1e-1 - bus_sizes = pd.concat([abs(net_importer), net_exporter], axis=1).fillna(0).stack() / bus_size_factor - - link_widths = abs(n.links_t.p0).max().loc[n.links.index] / n.links.p_nom_opt - link_widths /= linewidth_factor - - - fig, ax = plt.subplots(subplot_kw={"projection": ccrs.PlateCarree()}) - - fig.set_size_inches(7, 6) - - n.plot(bus_sizes=bus_sizes, - bus_colors={"net_importer": "r", - "net_exporter": "darkgreen", - }, - link_colors="lightgrey", - link_widths=link_widths, - branch_components=["Link"], - ax=ax, boundaries=(-10, 30, 34, 70)) - - handles = make_legend_circles_for( - [10e6, 20e6], scale=bus_size_factor, facecolor="black") - labels = ["{} TWh".format(s) for s in (10, 20)] - l2 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.01, 1.01), - labelspacing=1.0, - framealpha=1., - title='Net Import/Export', - handler_map=make_handler_map_to_scale_circles_as_in(ax)) - ax.add_artist(l2) - - handles = [] - labels = [] - - for s in (0.5, 1): - handles.append(plt.Line2D([0], [0], color="lightgrey", - linewidth=s / linewidth_factor)) - labels.append("{} per unit".format(s)) - l1_1 = ax.legend(handles, labels, - loc="upper left", bbox_to_anchor=(0.30, 1.01), - framealpha=1, - labelspacing=0.8, handletextpad=1.5, - title='maximum used CH4 pipeline capacity') - ax.add_artist(l1_1) + fig.savefig( + snakemake.output.map.replace("-costs-all","-ch4_network"), + bbox_inches="tight" + ) - fig.savefig(snakemake.output.map.replace("-costs-all","-ch4_net_balance"), transparent=True, - bbox_inches="tight") def plot_map_without(network): @@ -785,51 +675,6 @@ def plot_series(network, carrier="AC", name="test"): transparent=True) -def get_nodal_balance(carrier="gas"): - - bus_map = (n.buses.carrier == carrier) - bus_map.at[""] = False - supply_energy = pd.Series(dtype="float64") - - for c in n.iterate_components(n.one_port_components): - - items = c.df.index[c.df.bus.map(bus_map).fillna(False)] - - if len(items) == 0: - continue - - s = round(c.pnl.p.multiply(n.snapshot_weightings,axis=0).sum().multiply(c.df['sign']).loc[items] - .groupby([c.df.bus, c.df.carrier]).sum()) - s = pd.concat([s], keys=[c.list_name]) - s = pd.concat([s], keys=[carrier]) - - supply_energy = supply_energy.reindex(s.index.union(supply_energy.index)) - supply_energy.loc[s.index] = s - - - for c in n.iterate_components(n.branch_components): - - for end in [col[3:] for col in c.df.columns if col[:3] == "bus"]: - - items = c.df.index[c.df["bus" + str(end)].map(bus_map,na_action=False)] - - if len(items) == 0: - continue - - s = ((-1)*c.pnl["p"+end][items].multiply(n.snapshot_weightings,axis=0).sum() - .groupby([c.df.loc[items,'bus{}'.format(end)], c.df.loc[items,'carrier']]).sum()) - s.index = s.index - s = pd.concat([s], keys=[c.list_name]) - s = pd.concat([s], keys=[carrier]) - - supply_energy = supply_energy.reindex(s.index.union(supply_energy.index)) - - supply_energy.loc[s.index] = s - - supply_energy = supply_energy.rename(index=lambda x: rename_techs(x), level=3) - return supply_energy - - if __name__ == "__main__": if 'snakemake' not in globals(): from helper import mock_snakemake diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py index 9cf9acf0..f3c0a401 100644 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -8,6 +8,7 @@ import pandas as pd import numpy as np import xarray as xr +import networkx as nx from itertools import product from scipy.stats import beta @@ -16,6 +17,10 @@ from build_energy_totals import build_eea_co2, build_eurostat_co2, build_co2_totals from helper import override_component_attrs +from networkx.algorithms.connectivity.edge_augmentation import k_edge_augmentation +from networkx.algorithms import complement +from pypsa.geo import haversine_pts + import logging logger = logging.getLogger(__name__) @@ -131,40 +136,6 @@ def get(item, investment_year=None): return item -def create_network_topology(n, prefix, connector=" -> "): - """ - Create a network topology like the power transmission network. - - Parameters - ---------- - n : pypsa.Network - prefix : str - connector : str - - Returns - ------- - pd.DataFrame with columns bus0, bus1 and length - """ - - ln_attrs = ["bus0", "bus1", "length"] - lk_attrs = ["bus0", "bus1", "length", "underwater_fraction"] - - candidates = pd.concat([ - n.lines[ln_attrs], - n.links.loc[n.links.carrier == "DC", lk_attrs] - ]).fillna(0) - - positive_order = candidates.bus0 < candidates.bus1 - candidates_p = candidates[positive_order] - swap_buses = {"bus0": "bus1", "bus1": "bus0"} - candidates_n = candidates[~positive_order].rename(columns=swap_buses) - candidates = pd.concat([candidates_p, candidates_n]) - - topo = candidates.groupby(["bus0", "bus1"], as_index=False).mean() - topo.index = topo.apply(lambda c: prefix + c.bus0 + connector + c.bus1, axis=1) - return topo - - def co2_emissions_year(countries, opts, year): """ Calculate CO2 emissions in one specific year (e.g. 1990 or 2018). @@ -252,14 +223,21 @@ def add_lifetime_wind_solar(n, costs): n.generators.loc[gen_i, "lifetime"] = costs.at[carrier, 'lifetime'] -def create_network_topology(n, prefix, connector=" -> ", bidirectional=True): +def haversine(p): + coord0 = n.buses.loc[p.bus0, ['x', 'y']].values + coord1 = n.buses.loc[p.bus1, ['x', 'y']].values + return 1.5 * haversine_pts(coord0, coord1) + + +def create_network_topology(n, prefix, carriers=["DC"], connector=" -> ", bidirectional=True): """ - Create a network topology like the power transmission network. + Create a network topology from transmission lines and link carrier selection. Parameters ---------- n : pypsa.Network prefix : str + carriers : list-like connector : str bidirectional : bool, default True True: one link for each connection @@ -267,7 +245,7 @@ def create_network_topology(n, prefix, connector=" -> ", bidirectional=True): Returns ------- - pd.DataFrame with columns bus0, bus1 and length + pd.DataFrame with columns bus0, bus1, length, underwater_fraction """ ln_attrs = ["bus0", "bus1", "length"] @@ -275,9 +253,13 @@ def create_network_topology(n, prefix, connector=" -> ", bidirectional=True): candidates = pd.concat([ n.lines[ln_attrs], - n.links.loc[n.links.carrier == "DC", lk_attrs] + n.links.loc[n.links.carrier.isin(carriers), lk_attrs] ]).fillna(0) + # base network topology purely on location not carrier + candidates["bus0"] = candidates.bus0.map(n.buses.location) + candidates["bus1"] = candidates.bus1.map(n.buses.location) + positive_order = candidates.bus0 < candidates.bus1 candidates_p = candidates[positive_order] swap_buses = {"bus0": "bus1", "bus1": "bus0"} @@ -561,17 +543,6 @@ def average_every_nhours(n, offset): logger.info(f'Resampling the network to {offset}') m = n.copy(with_time=False) - # TODO is this still needed? - #fix copying of network attributes - #copied from pypsa/io.py, should be in pypsa/components.py#Network.copy() - allowed_types = (float, int, bool, str) + tuple(np.typeDict.values()) - attrs = dict((attr, getattr(n, attr)) - for attr in dir(n) - if (not attr.startswith("__") and - isinstance(getattr(n,attr), allowed_types))) - for k,v in attrs.items(): - setattr(m,k,v) - snapshot_weightings = n.snapshot_weightings.resample(offset).sum() m.set_snapshots(snapshot_weightings.index) m.snapshot_weightings = snapshot_weightings @@ -1033,8 +1004,8 @@ def add_electricity_grid_connection(n, costs): n.generators.loc[gens, "capital_cost"] += costs.at['electricity grid connection', 'fixed'] -def add_storage(n, costs): - print("adding electricity and hydrogen storage") +def add_storage_and_grids(n, costs): + print("adding electricity and hydrogen storage as well as hydrogen and gas grids") nodes = pop_layout.index @@ -1106,122 +1077,128 @@ def add_storage(n, costs): capital_cost=h2_capital_cost ) - attrs = ["bus0", "bus1", "length"] - h2_links = pd.DataFrame(columns=attrs) - - candidates = pd.concat({"lines": n.lines[attrs], - "links": n.links.loc[n.links.carrier == "DC", attrs]}) - - for candidate in candidates.index: - buses = [candidates.at[candidate, "bus0"], candidates.at[candidate, "bus1"]] - buses.sort() - name = f"H2 pipeline {buses[0]} -> {buses[1]}" - if name not in h2_links.index: - h2_links.at[name, "bus0"] = buses[0] - h2_links.at[name, "bus1"] = buses[1] - h2_links.at[name, "length"] = candidates.at[candidate, "length"] - - # TODO Add efficiency losses - n.madd("Link", - h2_links.index, - bus0=h2_links.bus0.values + " H2", - bus1=h2_links.bus1.values + " H2", - p_min_pu=-1, - p_nom_extendable=True, - length=h2_links.length.values, - capital_cost=costs.at['H2 (g) pipeline', 'fixed'] * h2_links.length.values, - carrier="H2 pipeline", - lifetime=costs.at['H2 (g) pipeline', 'lifetime'] - ) - if options["gas_network"]: logger.info("Add gas network") - cols = [ - "bus0", - "bus1", - "is_bothDirection", - "pipe_capacity_MW", - "id", - "length_km" - ] - gas_pipes = pd.read_csv(snakemake.input.clustered_gas_network, usecols=cols) - - def make_index(x): - connector = " <-> " if x.is_bothDirection else " -> " - return "Gas pipeline " + x.bus0 + connector + x.bus1 - - gas_pipes.index = gas_pipes.apply(make_index, axis=1) - - # group parallel pipes together - strategies = { - 'bus0': 'first', - 'bus1': 'first', - 'is_bothDirection': 'first', - "pipe_capacity_MW": 'sum', - "length_km": 'sum', - 'id': ' '.join, - } - gas_pipes = gas_pipes.groupby(gas_pipes.index).agg(strategies) - - gas_pipes["num_parallel"] = gas_pipes.index.value_counts() - gas_pipes["p_min_pu"] = gas_pipes.apply(lambda x: -1 if x.is_bothDirection else 0, axis=1) + fn = snakemake.input.clustered_gas_network + gas_pipes = pd.read_csv(fn, index_col=0) if options["H2_retrofit"]: - gas_pipes["p_nom_max"] = gas_pipes.gas_pipes.pipe_capacity_MW + gas_pipes["p_nom_max"] = gas_pipes.p_nom gas_pipes["p_nom_min"] = 0. gas_pipes["capital_cost"] = 0. else: gas_pipes["p_nom_max"] = np.inf - gas_pipes["p_nom_min"] = gas_pipes.gas_pipes.pipe_capacity_MW - gas_pipes["capital_cost"] = gas_pipes.length_km * costs.at['CH4 (g) pipeline', 'fixed'] + gas_pipes["p_nom_min"] = gas_pipes.p_nom + gas_pipes["capital_cost"] = gas_pipes.length * costs.at['CH4 (g) pipeline', 'fixed'] n.madd("Link", gas_pipes.index, bus0=gas_pipes.bus0 + " gas", bus1=gas_pipes.bus1 + " gas", p_min_pu=gas_pipes.p_min_pu, - p_nom=gas_pipes.pipe_capacity_MW, + p_nom=gas_pipes.p_nom, p_nom_extendable=True, p_nom_max=gas_pipes.p_nom_max, p_nom_min=gas_pipes.p_nom_min, - length=gas_pipes.length_km, + length=gas_pipes.length, capital_cost=gas_pipes.capital_cost, - type=gas_pipes.num_parallel, - tags=gas_pipes.id, - carrier="Gas pipeline", - lifetime=50 + tags=gas_pipes.name, + carrier="gas pipeline", + lifetime=costs.at['CH4 (g) pipeline', 'lifetime'] ) - # remove fossil generators at all connected nodes - # TODO what should be assumed here? rather located at LNG terminals? - missing = nodes.difference(pd.concat([gas_pipes.bus0, gas_pipes.bus1]).unique()) - remove_i = n.generators[(n.generators.carrier=="gas") - & (~n.generators.bus.str.replace(" gas","").isin(missing))].index + # remove fossil generators where there is neither + # production, LNG terminal, nor entry-point beyond system scope + + fn = snakemake.input.gas_input_nodes_simplified + gas_input_nodes = pd.read_csv(fn, index_col=0) + + unique = gas_input_nodes.index.unique() + gas_i = n.generators.carrier == 'gas' + internal_i = ~n.generators.bus.map(n.buses.location).isin(unique) + + remove_i = n.generators[gas_i & internal_i].index n.generators.drop(remove_i, inplace=True) + p_nom = gas_input_nodes.sum(axis=1).rename(lambda x: x + " gas") + n.generators.loc[gas_i, "p_nom_extendable"] = False + n.generators.loc[gas_i, "p_nom"] = p_nom + + # add candidates for new gas pipelines to achieve full connectivity + + G = nx.Graph() + + gas_buses = n.buses.loc[n.buses.carrier=='gas', 'location'] + G.add_nodes_from(np.unique(gas_buses.values)) + + sel = gas_pipes.p_nom > 1500 + attrs = ["bus0", "bus1", "length"] + G.add_weighted_edges_from(gas_pipes.loc[sel, attrs].values) + + # find all complement edges + complement_edges = pd.DataFrame(complement(G).edges, columns=["bus0", "bus1"]) + complement_edges["length"] = complement_edges.apply(haversine, axis=1) + + # apply k_edge_augmentation weighted by length of complement edges + k_edge = options.get("gas_network_connectivity_upgrade", 3) + augmentation = k_edge_augmentation(G, k_edge, avail=complement_edges.values) + new_gas_pipes = pd.DataFrame(augmentation, columns=["bus0", "bus1"]) + new_gas_pipes["length"] = new_gas_pipes.apply(haversine, axis=1) + + new_gas_pipes.index = new_gas_pipes.apply( + lambda x: f"gas pipeline new {x.bus0} <-> {x.bus1}", axis=1) + + n.madd("Link", + new_gas_pipes.index, + bus0=new_gas_pipes.bus0 + " gas", + bus1=new_gas_pipes.bus1 + " gas", + p_min_pu=-1, # new gas pipes are bidirectional + p_nom_extendable=True, + length=new_gas_pipes.length, + capital_cost=new_gas_pipes.length * costs.at['CH4 (g) pipeline', 'fixed'], + carrier="gas pipeline new", + lifetime=costs.at['CH4 (g) pipeline', 'lifetime'] + ) + # retroftting existing CH4 pipes to H2 pipes if options["gas_network"] and options["H2_retrofit"]: - gas_pipe_i = n.links[n.links.carrier == "Gas pipeline"].index + gas_pipe_i = n.links[n.links.carrier == "gas pipeline"].index n.links.loc[gas_pipe_i, "p_nom_extendable"] = True h2_pipes = gas_pipes.rename(index=lambda x: - x.replace("Gas pipeline", "H2 pipeline retrofitted")) + x.replace("gas pipeline", "H2 pipeline retrofitted")) n.madd("Link", h2_pipes.index, bus0=h2_pipes.bus0 + " H2", bus1=h2_pipes.bus1 + " H2", - p_min_pu=-1., # allow that all H2 pipelines can be used in other direction - p_nom_max=h2_pipes.pipe_capacity_MW * options["H2_retrofit_capacity_per_CH4"], + p_min_pu=-1., # allow that all H2 retrofit pipelines can be used in both directions + p_nom_max=h2_pipes.p_nom * options["H2_retrofit_capacity_per_CH4"], p_nom_extendable=True, - length=h2_pipes.length_km, - capital_cost=costs.at['H2 (g) pipeline repurposed', 'fixed'] * h2_pipes.length_km, - type=gas_pipes.num_parallel, - tags=h2_pipes.id, + length=h2_pipes.length, + capital_cost=costs.at['H2 (g) pipeline repurposed', 'fixed'] * h2_pipes.length, + tags=h2_pipes.name, carrier="H2 pipeline retrofitted", - lifetime=50 + lifetime=costs.at['H2 (g) pipeline repurposed', 'lifetime'] + ) + + if options.get("H2_network", True): + + h2_pipes = create_network_topology(n, "H2 pipeline ", carriers=["DC", "gas pipeline"]) + + # TODO Add efficiency losses + n.madd("Link", + h2_pipes.index, + bus0=h2_pipes.bus0.values + " H2", + bus1=h2_pipes.bus1.values + " H2", + p_min_pu=-1, + p_nom_extendable=True, + length=h2_pipes.length.values, + capital_cost=costs.at['H2 (g) pipeline', 'fixed'] * h2_pipes.length.values, + carrier="H2 pipeline", + lifetime=costs.at['H2 (g) pipeline', 'lifetime'] ) n.add("Carrier", "battery") @@ -1963,14 +1940,6 @@ def add_industry(n, costs): # 1e6 to convert TWh to MWh industrial_demand = pd.read_csv(snakemake.input.industrial_demand, index_col=0) * 1e6 - methane_demand = industrial_demand.loc[nodes, "methane"].div(8760).rename(index=lambda x: x + " gas for industry") - - # need to aggregate methane demand if gas not nodally resolved - if not options["gas_network"]: - methane_demand = methane_demand.sum() - - solid_biomass_by_country = industrial_demand["solid biomass"].groupby(pop_layout.ct).sum() - n.madd("Bus", spatial.biomass.industry, location=spatial.biomass.locations, @@ -2018,11 +1987,18 @@ def add_industry(n, costs): location=spatial.gas.locations, carrier="gas for industry") + gas_demand = industrial_demand.loc[nodes, "methane"] / 8760. + + if options["gas_network"]: + spatial_gas_demand = gas_demand.rename(index=lambda x: x + " gas for industry") + else: + spatial_gas_demand = gas_demand.sum() + n.madd("Load", spatial.gas.industry, bus=spatial.gas.industry, carrier="gas for industry", - p_set=methane_demand + p_set=spatial_gas_demand ) n.madd("Link", @@ -2463,7 +2439,7 @@ def limit_individual_line_extension(n, maxext): add_generation(n, costs) - add_storage(n, costs) + add_storage_and_grids(n, costs) # TODO merge with opts cost adjustment below for o in opts: diff --git a/scripts/retrieve_gas_infrastructure_data.py b/scripts/retrieve_gas_infrastructure_data.py new file mode 100644 index 00000000..4bae3e29 --- /dev/null +++ b/scripts/retrieve_gas_infrastructure_data.py @@ -0,0 +1,36 @@ +""" +Retrieve gas infrastructure data from https://zenodo.org/record/4767098/files/IGGIELGN.zip +""" + +import logging +from helper import progress_retrieve + +import zipfile +from pathlib import Path + +logger = logging.getLogger(__name__) + + +if __name__ == "__main__": + if 'snakemake' not in globals(): + from helper import mock_snakemake + snakemake = mock_snakemake('retrieve_gas_network_data') + rootpath = '..' + else: + rootpath = '.' + + url = "https://zenodo.org/record/4767098/files/IGGIELGN.zip" + + # Save locations + zip_fn = Path(f"{rootpath}/IGGIELGN.zip") + to_fn = Path(f"{rootpath}/data/gas_network/scigrid-gas") + + logger.info(f"Downloading databundle from '{url}'.") + progress_retrieve(url, zip_fn) + + logger.info(f"Extracting databundle.") + zipfile.ZipFile(zip_fn).extractall(to_fn) + + zip_fn.unlink() + + logger.info(f"Gas infrastructure data available in '{to_fn}'.") diff --git a/scripts/solve_network.py b/scripts/solve_network.py index 25666caf..c784c913 100644 --- a/scripts/solve_network.py +++ b/scripts/solve_network.py @@ -189,7 +189,7 @@ def add_chp_constraints(n): def add_pipe_retrofit_constraint(n): """Add constraint for retrofitting existing CH4 pipelines to H2 pipelines.""" - gas_pipes_i = n.links[n.links.carrier=="Gas pipeline"].index + gas_pipes_i = n.links[n.links.carrier=="gas pipeline"].index h2_retrofitted_i = n.links[n.links.carrier=='H2 pipeline retrofitted'].index if h2_retrofitted_i.empty or gas_pipes_i.empty: return @@ -201,7 +201,7 @@ def add_pipe_retrofit_constraint(n): CH4_per_H2 = 1 / n.config["sector"]["H2_retrofit_capacity_per_CH4"] lhs = linexpr( - (CH4_per_H2, link_p_nom.loc[h2_retrofitted_i].rename(index=lambda x: x.replace("H2 pipeline retrofitted", "Gas pipeline"))), + (CH4_per_H2, link_p_nom.loc[h2_retrofitted_i].rename(index=lambda x: x.replace("H2 pipeline retrofitted", "gas pipeline"))), (1, link_p_nom.loc[gas_pipes_i]) )