diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c17c0425..bad6039f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,7 +19,7 @@ on: - cron: "0 5 * * TUE" env: - DATA_CACHE_NUMBER: 1 + DATA_CACHE_NUMBER: 2 jobs: build: diff --git a/.gitignore b/.gitignore index 3336fca7..21062dd3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ # # SPDX-License-Identifier: CC0-1.0 +master + .snakemake* .ipynb_checkpoints __pycache__ @@ -37,18 +39,16 @@ dconf /data/links_p_nom.csv /data/*totals.csv /data/biomass* -/data/bundle-sector/emobility/ -/data/bundle-sector/eea* -/data/bundle-sector/jrc* +/data/bundle/emobility/ +/data/bundle/eea* +/data/bundle/jrc* /data/heating/ -/data/bundle-sector/eurostat* +/data/bundle/eurostat* /data/odyssee/ /data/transport_data.csv -/data/bundle-sector/switzerland* /data/.nfs* -/data/bundle-sector/Industrial_Database.csv -/data/retro/tabula-calculator-calcsetbuilding.csv -/data/bundle-sector/nuts* +/data/retro/* +/data/bundle/nuts* data/gas_network/scigrid-gas/ data/costs_*.csv diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3ffe8d9e..cb2d98fd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -30,7 +30,7 @@ repos: # Find common spelling mistakes in comments and docstrings - repo: https://github.com/codespell-project/codespell - rev: v2.2.6 + rev: v2.3.0 hooks: - id: codespell args: ['--ignore-regex="(\b[A-Z]+\b)"', '--ignore-words-list=fom,appartment,bage,ore,setis,tabacco,berfore,vor'] # Ignore capital case words, e.g. country codes @@ -74,7 +74,7 @@ repos: # Format Snakemake rule / workflow files - repo: https://github.com/snakemake/snakefmt - rev: v0.10.1 + rev: v0.10.2 hooks: - id: snakefmt @@ -87,6 +87,6 @@ repos: # Check for FSFE REUSE compliance (licensing) - repo: https://github.com/fsfe/reuse-tool - rev: v3.0.2 + rev: v3.1.0a1 hooks: - id: reuse diff --git a/.reuse/dep5 b/.reuse/dep5 index 27edd808..a40d090a 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -30,7 +30,3 @@ License: CC0-1.0 Files: borg-it Copyright: 2017-2024 The PyPSA-Eur Authors License: CC0-1.0 - -Files: graphics/* -Copyright: 2017-2024 The PyPSA-Eur Authors -License: CC-BY-4.0 diff --git a/CITATION.cff b/CITATION.cff index af26fd53..c921a773 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -6,7 +6,7 @@ cff-version: 1.1.0 message: "If you use this package, please cite it in the following way." title: "PyPSA-Eur: An open sector-coupled optimisation model of the European energy system" repository: https://github.com/pypsa/pypsa-eur -version: 0.10.0 +version: 0.11.0 license: MIT authors: - family-names: Brown diff --git a/README.md b/README.md index b4c03574..d5a72b77 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ all greenhouse gas emitters except waste management and land use. This diagram gives an overview of the sectors and the links between them: -![sector diagram](graphics/multisector_figure.png) +![sector diagram](doc/img/multisector_figure.png) Each of these sectors is built up on the transmission network nodes from [PyPSA-Eur](https://github.com/PyPSA/pypsa-eur): diff --git a/Snakefile b/Snakefile index e6980708..be2545ad 100644 --- a/Snakefile +++ b/Snakefile @@ -24,9 +24,11 @@ run = config["run"] scenarios = get_scenarios(run) RDIR = get_rdir(run) -logs = path_provider("logs/", RDIR, run["shared_resources"]) -benchmarks = path_provider("benchmarks/", RDIR, run["shared_resources"]) -resources = path_provider("resources/", RDIR, run["shared_resources"]) +shared_resources = run["shared_resources"]["policy"] +exclude_from_shared = run["shared_resources"]["exclude"] +logs = path_provider("logs/", RDIR, shared_resources, exclude_from_shared) +benchmarks = path_provider("benchmarks/", RDIR, shared_resources, exclude_from_shared) +resources = path_provider("resources/", RDIR, shared_resources, exclude_from_shared) CDIR = "" if run["shared_cutouts"] else RDIR RESULTS = "results/" + RDIR @@ -71,7 +73,7 @@ if config["foresight"] == "perfect": rule all: input: - expand(RESULTS + "graphs/costs.pdf", run=config["run"]["name"]), + expand(RESULTS + "graphs/costs.svg", run=config["run"]["name"]), default_target: True diff --git a/config/config.default.yaml b/config/config.default.yaml index 54a4285c..ee61d366 100644 --- a/config/config.default.yaml +++ b/config/config.default.yaml @@ -3,7 +3,7 @@ # SPDX-License-Identifier: CC0-1.0 # docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#top-level-configuration -version: 0.10.0 +version: 0.11.0 tutorial: false logging: @@ -26,7 +26,9 @@ run: enable: false file: config/scenarios.yaml disable_progressbar: false - shared_resources: false + shared_resources: + policy: false + exclude: [] shared_cutouts: true # docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#foresight @@ -38,17 +40,15 @@ scenario: simpl: - '' ll: - - v1.5 + - vopt clusters: - 37 - 128 - 256 - - 512 - - 1024 opts: - '' sector_opts: - - Co2L0-3H-T-H-B-I-A-dist1 + - '' planning_horizons: # - 2020 # - 2030 @@ -69,12 +69,9 @@ enable: retrieve: auto prepare_links_p_nom: false retrieve_databundle: true - retrieve_sector_databundle: true retrieve_cost_data: true build_cutout: false retrieve_cutout: true - build_natura_raster: false - retrieve_natura_raster: true custom_busmap: false drop_leap_day: true @@ -97,7 +94,6 @@ electricity: co2limit_enable: false co2limit: 7.75e+7 co2base: 1.487e+9 - agg_p_nom_limits: data/agg_p_nom_minmax.csv operational_reserve: activate: false @@ -110,17 +106,17 @@ electricity: H2: 168 extendable_carriers: - Generator: [solar, onwind, offwind-ac, offwind-dc, OCGT] + Generator: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float, OCGT, CCGT] StorageUnit: [] # battery, H2 Store: [battery, H2] Link: [] # H2 pipeline powerplants_filter: (DateOut >= 2023 or DateOut != DateOut) and not (Country == 'Germany' and Fueltype == 'Nuclear') custom_powerplants: false - everywhere_powerplants: [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] + everywhere_powerplants: [] conventional_carriers: [nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass] - renewable_carriers: [solar, onwind, offwind-ac, offwind-dc, hydro] + renewable_carriers: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float, hydro] estimate_renewable_capacities: enable: true @@ -128,7 +124,7 @@ electricity: year: 2020 expansion_limit: false technology_mapping: - Offshore: [offwind-ac, offwind-dc] + Offshore: [offwind-ac, offwind-dc, offwind-float] Onshore: [onwind] PV: [solar] @@ -196,7 +192,7 @@ renewable: luisa: false # [0, 5230] natura: true ship_threshold: 400 - max_depth: 50 + max_depth: 60 max_shore_distance: 30000 excluder_resolution: 200 clip_p_max_pu: 1.e-2 @@ -212,10 +208,28 @@ renewable: luisa: false # [0, 5230] natura: true ship_threshold: 400 - max_depth: 50 + max_depth: 60 min_shore_distance: 30000 excluder_resolution: 200 clip_p_max_pu: 1.e-2 + offwind-float: + cutout: europe-2013-era5 + resource: + method: wind + turbine: NREL_ReferenceTurbine_5MW_offshore + # ScholzPhd Tab 4.3.1: 10MW/km^2 + capacity_per_sqkm: 2 + correction_factor: 0.8855 + # proxy for wake losses + # from 10.1016/j.energy.2018.08.153 + # until done more rigorously in #153 + corine: [44, 255] + natura: true + ship_threshold: 400 + excluder_resolution: 200 + min_depth: 60 + max_depth: 1000 + clip_p_max_pu: 1.e-2 solar: cutout: europe-2013-sarah resource: @@ -231,6 +245,21 @@ renewable: natura: true excluder_resolution: 100 clip_p_max_pu: 1.e-2 + solar-hsat: + cutout: europe-2013-sarah + resource: + method: pv + panel: CSi + orientation: + slope: 35. + azimuth: 180. + tracking: horizontal + capacity_per_sqkm: 4.43 # 15% higher land usage acc. to NREL + corine: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 26, 31, 32] + luisa: false # [1111, 1121, 1122, 1123, 1130, 1210, 1221, 1222, 1230, 1241, 1242, 1310, 1320, 1330, 1410, 1421, 1422, 2110, 2120, 2130, 2210, 2220, 2230, 2310, 2410, 2420, 3210, 3320, 3330] + natura: true + excluder_resolution: 100 + clip_p_max_pu: 1.e-2 hydro: cutout: europe-2013-era5 carriers: [ror, PHS, hydro] @@ -263,7 +292,7 @@ lines: max_extension: 20000 #MW length_factor: 1.25 reconnect_crimea: true - under_construction: 'zero' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity + under_construction: 'keep' # 'zero': set capacity to zero, 'remove': remove, 'keep': with full capacity dynamic_line_rating: activate: false cutout: europe-2013-era5 @@ -309,6 +338,8 @@ pypsa_eur: - onwind - offwind-ac - offwind-dc + - offwind-float + - solar-hsat - solar - ror - nuclear @@ -359,8 +390,8 @@ solar_thermal: # docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#existing-capacities existing_capacities: - grouping_years_power: [1895, 1920, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025, 2030] - grouping_years_heat: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020] # heat grouping years >= baseyear will be ignored + grouping_years_power: [1920, 1950, 1955, 1960, 1965, 1970, 1975, 1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2020, 2025] + grouping_years_heat: [1980, 1985, 1990, 1995, 2000, 2005, 2010, 2015, 2019] # heat grouping years >= baseyear will be ignored threshold_capacity: 10 default_heating_lifetime: 20 conventional_carriers: @@ -401,7 +432,6 @@ sector: bev_availability: 0.5 bev_energy: 0.05 bev_charge_efficiency: 0.9 - bev_plug_to_wheel_efficiency: 0.2 bev_charge_rate: 0.011 bev_avail_max: 0.95 bev_avail_mean: 0.8 @@ -430,8 +460,9 @@ sector: 2040: 0.3 2045: 0.15 2050: 0 - transport_fuel_cell_efficiency: 0.5 - transport_internal_combustion_efficiency: 0.3 + transport_electric_efficiency: 53.19 # 1 MWh_el = 53.19*100 km + transport_fuel_cell_efficiency: 30.003 # 1 MWh_H2 = 30.003*100 km + transport_ice_efficiency: 16.0712 # 1 MWh_oil = 16.0712 * 100 km agriculture_machinery_electric_share: 0 agriculture_machinery_oil_share: 1 agriculture_machinery_fuel_efficiency: 0.7 @@ -537,7 +568,7 @@ sector: - nearshore # within 50 km of sea # - offshore ammonia: false - min_part_load_fischer_tropsch: 0.7 + min_part_load_fischer_tropsch: 0.5 min_part_load_methanolisation: 0.3 min_part_load_methanation: 0.3 use_fischer_tropsch_waste_heat: true @@ -560,6 +591,8 @@ sector: gas pipeline: efficiency_per_1000km: 1 #0.977 compression_per_1000km: 0.01 + electricity distribution grid: + efficiency_static: 0.97 H2_network: true gas_network: false H2_retrofit: false @@ -588,6 +621,13 @@ sector: solar: 3 offwind-ac: 3 offwind-dc: 3 + enhanced_geothermal: + enable: false + flexible: true + max_hours: 240 + max_boost: 0.25 + var_cf: true + sustainability_factor: 0.0025 # docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#industry industry: @@ -653,6 +693,9 @@ industry: 2040: 0.12 2045: 0.16 2050: 0.20 + HVC_environment_sequestration_fraction: 0. + waste_to_energy: false + waste_to_energy_cc: false sector_ratios_fraction_future: 2020: 0.0 2025: 0.1 @@ -671,6 +714,7 @@ industry: methanol_production_today: 1.5 MWh_elec_per_tMeOH: 0.167 MWh_CH4_per_tMeOH: 10.25 + MWh_MeOH_per_tMeOH: 5.528 hotmaps_locate_missing: false reference_year: 2015 @@ -678,8 +722,7 @@ industry: # docs in https://pypsa-eur.readthedocs.io/en/latest/configuration.html#costs costs: year: 2030 - version: v0.8.1 - rooftop_share: 0.14 # based on the potentials, assuming (0.1 kW/m2 and 10 m2/person) + version: v0.9.0 social_discountrate: 0.02 fill_values: FOM: 0 @@ -751,11 +794,28 @@ solving: # io_api: "direct" # Increases performance but only supported for the highs and gurobi solvers # options that go into the optimize function track_iterations: false - min_iterations: 4 - max_iterations: 6 + min_iterations: 2 + max_iterations: 3 transmission_losses: 2 linearized_unit_commitment: true horizon: 365 + post_discretization: + enable: false + line_unit_size: 1700 + line_threshold: 0.3 + link_unit_size: + DC: 2000 + H2 pipeline: 1200 + gas pipeline: 1500 + link_threshold: + DC: 0.3 + H2 pipeline: 0.3 + gas pipeline: 0.3 + + agg_p_nom_limits: + agg_offwind: false + include_existing: false + file: data/agg_p_nom_minmax.csv constraints: CCL: false @@ -854,6 +914,7 @@ plotting: CCGT: "Combined-Cycle Gas" offwind-ac: "Offshore Wind (AC)" offwind-dc: "Offshore Wind (DC)" + offwind-float: "Offshore Wind (Floating)" onwind: "Onshore Wind" solar: "Solar" PHS: "Pumped Hydro Storage" @@ -878,6 +939,9 @@ plotting: offwind-dc: "#74c6f2" offshore wind (DC): "#74c6f2" offshore wind dc: "#74c6f2" + offwind-float: "#b5e2fa" + offshore wind (Float): "#b5e2fa" + offshore wind float: "#b5e2fa" # water hydro: '#298c81' hydro reservoir: '#298c81' @@ -889,6 +953,7 @@ plotting: # solar solar: "#f9d002" solar PV: "#f9d002" + solar-hsat: "#fdb915" solar thermal: '#ffbf2b' residential rural solar thermal: '#f1c069' services rural solar thermal: '#eabf61' @@ -990,6 +1055,7 @@ plotting: BEV charger: '#baf238' V2G: '#e5ffa8' land transport EV: '#baf238' + land transport demand: '#38baf2' Li ion: '#baf238' # hot water storage water tanks: '#e69487' @@ -1094,6 +1160,7 @@ plotting: methanolisation: '#83d6d5' methanol: '#468c8b' shipping methanol: '#468c8b' + industry methanol: '#468c8b' # co2 CC: '#f29dae' CCS: '#f29dae' @@ -1124,6 +1191,9 @@ plotting: waste: '#e3d37d' other: '#000000' geothermal: '#ba91b1' + geothermal heat: '#ba91b1' + geothermal district heat: '#d19D00' + geothermal organic rankine cycle: '#ffbf00' AC: "#70af1d" AC-AC: "#70af1d" AC line: "#70af1d" @@ -1133,3 +1203,6 @@ plotting: DC-DC: "#8a1caf" DC link: "#8a1caf" load: "#dd2e23" + waste CHP: '#e3d37d' + waste CHP CC: '#e3d3ff' + HVC to air: 'k' diff --git a/config/config.entsoe-all.yaml b/config/examples/config.entsoe-all.yaml similarity index 92% rename from config/config.entsoe-all.yaml rename to config/examples/config.entsoe-all.yaml index 40e3c0a5..4e7edd03 100644 --- a/config/config.entsoe-all.yaml +++ b/config/examples/config.entsoe-all.yaml @@ -5,7 +5,8 @@ run: name: "entsoe-all" disable_progressbar: true - shared_resources: false + shared_resources: + policy: false shared_cutouts: true scenario: @@ -38,6 +39,5 @@ lines: enable: retrieve: true retrieve_databundle: true - retrieve_sector_databundle: false retrieve_cost_data: true retrieve_cutout: true diff --git a/config/config.perfect.yaml b/config/examples/config.perfect.yaml similarity index 100% rename from config/config.perfect.yaml rename to config/examples/config.perfect.yaml diff --git a/config/config.validation.yaml b/config/examples/config.validation.yaml similarity index 100% rename from config/config.validation.yaml rename to config/examples/config.validation.yaml diff --git a/config/test/config.electricity.yaml b/config/test/config.electricity.yaml index 57964415..38fa31ab 100644 --- a/config/test/config.electricity.yaml +++ b/config/test/config.electricity.yaml @@ -8,14 +8,15 @@ tutorial: true run: name: "test-elec" # use this to keep track of runs with different settings disable_progressbar: true - shared_resources: "test" + shared_resources: + policy: "test" shared_cutouts: true scenario: clusters: - 5 opts: - - Co2L-24h + - '' countries: ['BE'] @@ -24,6 +25,7 @@ snapshots: end: "2013-03-08" electricity: + co2limit_enable: true co2limit: 100.e+6 extendable_carriers: @@ -32,7 +34,7 @@ electricity: Store: [H2] Link: [H2 pipeline] - renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + renewable_carriers: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float] atlite: @@ -53,12 +55,20 @@ renewable: offwind-dc: cutout: be-03-2013-era5 max_depth: false + offwind-float: + cutout: be-03-2013-era5 + max_depth: false + min_depth: false solar: cutout: be-03-2013-era5 + solar-hsat: + cutout: be-03-2013-era5 clustering: exclude_carriers: ["OCGT", "offwind-ac", "coal"] + temporal: + resolution_elec: 24h lines: dynamic_line_rating: diff --git a/config/test/config.myopic.yaml b/config/test/config.myopic.yaml index 5abae36d..0ede9aa7 100644 --- a/config/test/config.myopic.yaml +++ b/config/test/config.myopic.yaml @@ -7,7 +7,8 @@ tutorial: true run: name: "test-sector-myopic" disable_progressbar: true - shared_resources: "test" + shared_resources: + policy: "test" shared_cutouts: true foresight: myopic @@ -18,7 +19,7 @@ scenario: clusters: - 5 sector_opts: - - 24h-T-H-B-I-A-dist1 + - '' planning_horizons: - 2030 - 2040 @@ -34,7 +35,6 @@ sector: central_heat_vent: true electricity: - co2limit: 100.e+6 extendable_carriers: Generator: [OCGT] @@ -42,7 +42,10 @@ electricity: Store: [H2] Link: [H2 pipeline] - renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + renewable_carriers: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float] + + estimate_renewable_capacities: + enable: false atlite: default_cutout: be-03-2013-era5 @@ -62,8 +65,18 @@ renewable: offwind-dc: cutout: be-03-2013-era5 max_depth: false + offwind-float: + cutout: be-03-2013-era5 + max_depth: false + min_depth: false solar: cutout: be-03-2013-era5 + solar-hsat: + cutout: be-03-2013-era5 + +clustering: + temporal: + resolution_sector: 24h industry: St_primary_fraction: diff --git a/config/test/config.overnight.yaml b/config/test/config.overnight.yaml index 7fb53e42..92379ae2 100644 --- a/config/test/config.overnight.yaml +++ b/config/test/config.overnight.yaml @@ -7,7 +7,8 @@ tutorial: true run: name: "test-sector-overnight" disable_progressbar: true - shared_resources: "test" + shared_resources: + policy: "test" shared_cutouts: true @@ -17,7 +18,7 @@ scenario: clusters: - 5 sector_opts: - - CO2L0-24h-T-H-B-I-A-dist1 + - '' planning_horizons: - 2030 @@ -28,7 +29,6 @@ snapshots: end: "2013-03-08" electricity: - co2limit: 100.e+6 extendable_carriers: Generator: [OCGT] @@ -36,7 +36,7 @@ electricity: Store: [H2] Link: [H2 pipeline] - renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + renewable_carriers: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float] atlite: default_cutout: be-03-2013-era5 @@ -56,13 +56,28 @@ renewable: offwind-dc: cutout: be-03-2013-era5 max_depth: false + offwind-float: + cutout: be-03-2013-era5 + max_depth: false + min_depth: false solar: cutout: be-03-2013-era5 + solar-hsat: + cutout: be-03-2013-era5 + +clustering: + temporal: + resolution_sector: 24h sector: gas_network: true H2_retrofit: true +industry: + HVC_environment_sequestration_fraction: 0.5 + waste_to_energy: true + waste_to_energy_cc: true + solving: solver: name: glpk diff --git a/config/test/config.perfect.yaml b/config/test/config.perfect.yaml index 5d77c9c5..781b3fd4 100644 --- a/config/test/config.perfect.yaml +++ b/config/test/config.perfect.yaml @@ -7,7 +7,8 @@ tutorial: true run: name: "test-sector-perfect" disable_progressbar: true - shared_resources: "test" + shared_resources: + policy: "test" shared_cutouts: true foresight: perfect @@ -18,7 +19,7 @@ scenario: clusters: - 5 sector_opts: - - 8760h-T-H-B-I-A-dist1 + - '' planning_horizons: - 2030 - 2040 @@ -31,7 +32,6 @@ snapshots: end: "2013-03-08" electricity: - co2limit: 100.e+6 extendable_carriers: Generator: [OCGT] @@ -39,7 +39,7 @@ electricity: Store: [H2] Link: [H2 pipeline] - renewable_carriers: [solar, onwind, offwind-ac, offwind-dc] + renewable_carriers: [solar, solar-hsat, onwind, offwind-ac, offwind-dc, offwind-float] sector: min_part_load_fischer_tropsch: 0 @@ -63,8 +63,18 @@ renewable: offwind-dc: cutout: be-03-2013-era5 max_depth: false + offwind-float: + cutout: be-03-2013-era5 + max_depth: false + min_depth: false solar: cutout: be-03-2013-era5 + solar-hsat: + cutout: be-03-2013-era5 + +clustering: + temporal: + resolution_sector: 8760h industry: St_primary_fraction: diff --git a/config/test/config.scenarios.yaml b/config/test/config.scenarios.yaml index 8ecbb91b..a9a826fd 100644 --- a/config/test/config.scenarios.yaml +++ b/config/test/config.scenarios.yaml @@ -12,14 +12,15 @@ run: enable: true file: "config/test/scenarios.yaml" disable_progressbar: true - shared_resources: base + shared_resources: + policy: base shared_cutouts: true scenario: clusters: - 5 opts: - - Co2L-24H + - '' countries: ['BE'] diff --git a/data/agg_p_nom_minmax.csv b/data/agg_p_nom_minmax.csv index 111215bc..a3a10dc2 100644 --- a/data/agg_p_nom_minmax.csv +++ b/data/agg_p_nom_minmax.csv @@ -1,31 +1,33 @@ -country,carrier,min,max -DE,onwind,0.1, -DE,offwind-ac,0.1, -DE,offwind-dc,0.1, -DE,solar,0.2, -LU,onwind,, -LU,solar,, -NL,onwind,, -NL,offwind-ac,, -NL,offwind-dc,, -NL,solar,, -GB,onwind,, -GB,offwind-ac,, -GB,offwind-dc,, -GB,solar,, -IE,onwind,, -IE,offwind-ac,, -IE,offwind-dc,, -IE,solar,, -FR,onwind,, -FR,offwind-ac,, -FR,offwind-dc,, -FR,solar,, -DK,onwind,, -DK,offwind-ac,, -DK,offwind-dc,, -DK,solar,, -BE,onwind,, -BE,offwind-ac,, -BE,offwind-dc,, -BE,solar,, +,,2030,2030,2040,2040,2050,2050 +,,min,max,min,max,min,max +country,carrier,,,,,, +DE,onwind,0.1,,0.1,,0.1, +DE,offwind-ac,0.1,,0.1,,0.1, +DE,offwind-dc,0.1,,0.1,,0.1, +DE,solar,0.2,,0.2,,0.2, +LU,onwind,,,,,, +LU,solar,,,,,, +NL,onwind,,,,,, +NL,offwind-ac,,,,,, +NL,offwind-dc,,,,,, +NL,solar,,,,,, +GB,onwind,,,,,, +GB,offwind-ac,,,,,, +GB,offwind-dc,,,,,, +GB,solar,,,,,, +IE,onwind,,,,,, +IE,offwind-ac,,,,,, +IE,offwind-dc,,,,,, +IE,solar,,,,,, +FR,onwind,,,,,, +FR,offwind-ac,,,,,, +FR,offwind-dc,,,,,, +FR,solar,,,,,, +DK,onwind,,,,,, +DK,offwind-ac,,,,,, +DK,offwind-dc,,,,,, +DK,solar,,,,,, +BE,onwind,,,,,, +BE,offwind-ac,,,,,, +BE,offwind-dc,,,,,, +BE,solar,,,,,, diff --git a/data/ch_cantons.csv b/data/ch_cantons.csv new file mode 100644 index 00000000..22711274 --- /dev/null +++ b/data/ch_cantons.csv @@ -0,0 +1,27 @@ +Canton,HASC,NUTS +Aargau,CH.AG,CH033 +Appenzell Inner Rhodes,CH.AI,CH054 +Appenzell Outer Rhodes,CH.AR,CH053 +Basel-Landschaft,CH.BL,CH032 +Basel-Stadt,CH.BS,CH031 +Bern,CH.BE,CH021 +Fribourg,CH.FR,CH022 +Geneva,CH.GE,CH013 +Glarus,CH.GL,CH051 +Graubünden,CH.GR,CH056 +Jura,CH.JU,CH025 +Lucerne,CH.LU,CH061 +Neuchâtel,CH.NE,CH024 +Nidwalden,CH.NW,CH065 +Obwalden,CH.OW,CH064 +Sankt Gallen,CH.SG,CH055 +Schaffhausen,CH.SH,CH052 +Schwyz,CH.SZ,CH063 +Solothurn,CH.SO,CH023 +Thurgau,CH.TG,CH057 +Ticino,CH.TI,CH07 +Uri,CH.UR,CH062 +Valais,CH.VS,CH012 +Vaud,CH.VD,CH011 +Zug,CH.ZG,CH066 +Zurich,CH.ZH,CH04 diff --git a/data/egs_costs.json b/data/egs_costs.json new file mode 100644 index 00000000..1ea153b7 --- /dev/null +++ b/data/egs_costs.json @@ -0,0 +1 @@ +{"Country":["Norway","Sweden","Belarus","Ukraine","Poland","Austria","Hungary","Moldova","Romania","Lithuania","Latvia","Estonia","Germany","Bulgaria","Greece","Albania","Croatia","Switzerland","Luxembourg","Belgium","Netherlands","Portugal","Spain","Ireland","Italy","Denmark","United Kingdom","Iceland","Slovenia","Finland","Slovakia","Czechia","Bosnia and Herz.","Macedonia","Serbia","Montenegro","Kosovo","France"],"LCOE100":[[[{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,7622.4892377208771,null,null,null,null,7271.2996621068824,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,47.013329815863635,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,0.021666414832391505,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,60.5,59.5,60.5,61.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[7163.10981992388,6998.0487120093012,7257.1051428883457,null,6576.1305030118128,null,null,null,null,null,null,null,5486.1065925726371,null,null,null,null,5240.9577287176489,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,50.105589257523071,60.160559602871956,null,38.716356361222076,null,null,null,null,null,null,null,47.013329815863635,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.021606553428581449,0.02523026895908163,null,0.016815197658385215,null,null,null,null,null,null,null,0.021666414832391505,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,59.5,60.5,61.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,64.5,65.5,66.5,78.5,66.5,67.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,11.5,13.5,13.5,13.5,13.5,14.5,15.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[5216.5992785830094,6668.9569359793022,5098.4886689435707,7501.8433861541625,5280.5039380766484,null,4801.7279838153609,null,6938.2147850250112,null,null,6233.6135944236694,null,null,null,null,4034.9258280431741,null,5700.3667613874559,null,null,null,3861.9642521428354,null,6277.4514203966555,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,38.0320782168351,50.105589257523071,37.316850893623979,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,null,null,null,null,47.013329815863635,null,39.161647327308749,null,null,null,0,null,34.361702756004341,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,null,null,null,null,0.021666414832391505,null,0.016524838114285418,null,null,null,0,null,0.014140735524933673,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,59.5,60.5,61.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,61.5,62.5,59.5,61.5,62.5,63.5,61.5,64.5,64.5,65.5,66.5,78.5,66.5,67.5,67.5,78.5,78.5,68.5,69.5,69.5,80.5,69.5,79.5,80.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,13.5,13.5,13.5,13.5,14.5,14.5,15.5,15.5,16.5,19.5,19.5,20.5,20.5,21.5,21.5,22.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[4181.9259121927407,5285.6635431783689,4062.2895852566921,5933.7732756505775,4202.9509138981812,null,3830.7149699527758,null,5493.2919635613007,null,null,4929.2477506850191,null,null,7734.1499374606319,null,null,3233.8304672275503,null,4531.2574329585868,null,null,null,3097.4801164006662,null,6695.6523234228744,4980.830285377926,6345.5119075811463,7389.1881415854605,null,null,null,7203.9685207025459,null,null,6459.3800145666273,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,38.0320782168351,50.105589257523071,37.316850893623979,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,null,null,55.627265236006771,null,null,47.013329815863635,null,39.161647327308749,null,null,null,0,null,24.74293952246223,34.361702756004341,0,0,null,null,null,28.308417161474551,null,null,25.216618234515586,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,null,null,0.0227358524088195,null,null,0.021666414832391505,null,0.016524838114285418,null,null,null,0,null,0.0102700113824071,0.014140735524933673,0,0,null,null,null,0.011170105309658736,null,null,0.010220786817510263,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,59.5,60.5,61.5,62.5,58.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,60.5,61.5,62.5,59.5,61.5,62.5,63.5,61.5,64.5,78.5,64.5,65.5,66.5,78.5,66.5,67.5,77.5,67.5,78.5,78.5,68.5,69.5,69.5,80.5,69.5,79.5,80.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,12.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,15.5,15.5,16.5,19.5,19.5,20.5,20.5,21.5,21.5,22.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[3670.7829558055164,4639.6143910278606,3565.7693809519733,5208.5078170243105,7028.0023927908969,7824.2507522376291,3689.2381411738406,null,3362.4993640498528,null,4821.865077119729,null,null,4326.7621206301519,6892.2138920029638,null,null,6788.8304011556829,null,null,2838.5700775935638,null,3977.4168415504023,7703.2861841335643,null,null,null,2718.8853786432205,null,5877.2649116428211,7802.65019874971,4372.03989291586,5569.9209993886352,6486.0321432978144,null,null,null,6323.4513033466674,null,null,5669.8713847155186,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,38.0320782168351,50.105589257523071,37.316850893623979,24.815591290190557,57.027602712306368,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,30.820307012283966,null,null,55.627265236006771,null,null,47.013329815863635,null,39.161647327308749,0,null,null,null,0,null,24.74293952246223,0,34.361702756004341,0,0,null,null,null,28.308417161474551,null,null,25.216618234515586,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.010004087603401187,0.023370431146044736,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,0.012455966654527424,null,null,0.0227358524088195,null,null,0.021666414832391505,null,0.016524838114285418,0,null,null,null,0,null,0.0102700113824071,0,0.014140735524933673,0,0,null,null,null,0.011170105309658736,null,null,0.010220786817510263,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,61.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,57.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,7285.8330143004332,null,null,null,null,null,null,null,null,null,null,null,null,7577.0102891477954,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,41.637486937589472,null,null,null,null,null,null,null,null,null,null,null,null,60.478627497621559,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,0.017127555817574185,null,null,null,null,null,null,null,null,null,null,null,null,0.024497047822371533,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,61.5,62.5,63.5,56.5,58.5,61.5,62.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,57.5,65.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,16.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,6395.3097709748545,null,null,null,null,null,7257.8364338854672,null,null,null,null,null,null,null,6650.8974117102571,7590.2042030580906,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,41.637486937589472,null,null,null,null,null,74.777278033224889,null,null,null,null,null,null,null,60.478627497621559,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,0.017127555817574185,null,null,null,null,null,0.030959201671045728,null,null,null,null,null,null,null,0.024497047822371533,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[48.5,51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[22.5,24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[6862.7592068588192,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[135.94694317911404,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.055313215426622327,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[48.5,48.5,51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,49.5,51.5,47.5,47.5,47.5,49.5,47.5,48.5,49.5],"Lon":[22.5,23.5,24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,33.5,34.5,35.5,36.5,36.5,37.5,37.5,37.5],"CAPEX":[5437.861424766661,6451.3104226267842,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,6989.1221284879421,null,null,null,null,7536.8168375066689,7119.3473706324812,7181.9981404270784,7346.9258806746029],"HeatSust":[135.94694317911404,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,56.435599999743268,null,null,null,null,0,0,0,0],"PowerSust":[0.055313215426622327,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.023993283026186706,null,null,null,null,0,0,0,0]},{"Lat":[48.5,48.5,49.5,51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,45.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,46.5,47.5,48.5,49.5,50.5,46.5,47.5,48.5,49.5,50.5,51.5,47.5,47.5,47.5,49.5,47.5,48.5,49.5,48.5],"Lon":[22.5,23.5,24.5,24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,32.5,32.5,33.5,33.5,33.5,33.5,33.5,33.5,34.5,35.5,36.5,36.5,37.5,37.5,37.5,38.5],"CAPEX":[4773.2096295315159,5662.7881122771632,7446.1556186112612,null,null,null,null,null,null,null,null,null,null,null,null,null,7120.4733396166266,null,null,null,null,null,null,null,null,null,null,null,7160.1573016460825,null,null,null,7408.65589248449,7617.2096739356639,null,null,6134.8648742188125,6957.049513962007,null,null,null,null,6615.6166725682579,6249.1731162386168,6304.1662899004423,6448.9354585925521,7482.438101646916],"HeatSust":[135.94694317911404,0,50.896104187789376,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,65.834951729368541,null,null,null,0,0,null,null,56.435599999743268,0,null,null,null,null,0,0,0,0,0],"PowerSust":[0.055313215426622327,0,0.020758246458334163,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,0.028262034759660468,null,null,null,0,0,null,null,0.023993283026186706,0,null,null,null,null,0,0,0,0,0]}]],[[{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[52.5,54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[15.5,17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[7752.0323771053654,null,null,null,null,null,null],"HeatSust":[78.920273541151175,null,null,null,null,null,null],"PowerSust":[0.033513450281764667,null,null,null,null,null,null]},{"Lat":[52.5,52.5,51.5,54.5,52.5,53.5,53.5,49.5,53.5,53.5,53.5],"Lon":[14.5,15.5,16.5,17.5,18.5,18.5,19.5,20.5,20.5,21.5,23.5],"CAPEX":[6701.9765452541524,6109.0672006643354,7410.4046850031245,null,7755.1878774969982,null,null,6772.5645453125908,null,null,null],"HeatSust":[103.51153369341698,78.920273541151175,89.841815773377135,null,102.97905273162117,null,null,57.257712005849385,null,null,null],"PowerSust":[0.044108663319881412,0.033513450281764667,0.037497598725992842,null,0.042484858547240649,null,null,0.024171970022278142,null,null,null]},{"Lat":[52.5,51.5,52.5,51.5,52.5,54.5,50.5,51.5,52.5,53.5,50.5,52.5,53.5,49.5,52.5,53.5,50.5,53.5,50.5,50.5,51.5,53.5],"Lon":[14.5,15.5,15.5,16.5,16.5,17.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,20.5,20.5,20.5,21.5,21.5,22.5,23.5,23.5,23.5],"CAPEX":[5882.8161447814336,7017.9465251635293,5362.3761460448395,6504.65545886914,7140.5339559860395,null,7521.8062423237325,7551.2576744355438,6807.2969434455854,null,7515.7236522986077,7752.8344658177,null,5944.7764073349736,7595.7852185312977,null,7316.0325417143431,null,7601.099410132013,7165.040466912551,7618.6929753215518,null],"HeatSust":[103.51153369341698,86.90367597185957,78.920273541151175,89.841815773377135,84.153828449252416,null,71.3908691718809,87.608955624861991,102.97905273162117,null,66.415401778944812,74.114095477815056,null,57.257712005849385,69.72144623714081,null,85.7387227387003,null,84.012954523264938,85.725874516288158,96.545852732711992,null],"PowerSust":[0.044108663319881412,0.036784396339524184,0.033513450281764667,0.037497598725992842,0.033854875485683236,null,0.029049393202046032,0.035558072294488,0.042484858547240649,null,0.027004507585372255,0.029880559277050755,null,0.024171970022278142,0.028997863779848206,null,0.035963627808390658,null,0.034964230127189695,0.035030858028054626,0.040391775794545517,null]}]],[[{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[47.5,48.5],"Lon":[12.5,14.5],"CAPEX":[7191.7180593791236,null],"HeatSust":[170.33404823371092,null],"PowerSust":[0.076233951987499007,null]},{"Lat":[47.5,48.5],"Lon":[12.5,14.5],"CAPEX":[5582.3584178869341,null],"HeatSust":[170.33404823371092,null],"PowerSust":[0.076233951987499007,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5],"CAPEX":[6622.9079463201,4096.9891394557153,5822.69794237936,6671.5918908511749,null],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5],"CAPEX":[4836.8399985517508,3060.0175755960972,4271.7012860567065,4868.9427822019979,null],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5,47.5],"Lon":[11.5,12.5,13.5,14.5,14.5,16.5],"CAPEX":[3882.1862437103887,2487.6018890078426,3417.7990547403524,3883.627584371683,null,7407.6423840610587],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null,129.12043074306817],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null,0.053663704505203053]},{"Lat":[47.5,47.5,47.5,46.5,48.5,47.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5,16.5,16.5],"CAPEX":[3407.6794744559638,2183.5505474585593,3000.0527938408059,3408.9446448210251,null,6502.23078482425,6937.5208392163613],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null,129.12043074306817,73.726036297402587],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null,0.053663704505203053,0.030444201000930773]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[46.5,46.5,47.5],"Lon":[17.5,19.5,21.5],"CAPEX":[7614.3569438132472,5994.4553868933,7434.1278767307913],"HeatSust":[0,169.73950811352361,146.95903846318478],"PowerSust":[0,0.07168335892990145,0.0594795750555533]},{"Lat":[46.5,47.5,46.5,47.5,46.5,46.5,47.5,47.5],"Lon":[17.5,17.5,18.5,18.5,19.5,20.5,20.5,21.5],"CAPEX":[6024.4178637412151,7455.6616960924857,7538.0734080615848,7075.4808023225023,4762.1796856604151,7773.6736217697135,6586.5343036483837,5883.8601813927917],"HeatSust":[0,117.48227606124362,176.75691468619951,119.41242943514806,169.73950811352361,138.70041697840574,147.73230732086634,146.95903846318478],"PowerSust":[0,0.048217323934071452,0.072328806938598583,0.049411064788034427,0.07168335892990145,0.056508601166202738,0.061860740015383643,0.0594795750555533]},{"Lat":[46.5,47.5,46.5,47.5,46.5,46.5,47.5,48.5,47.5],"Lon":[17.5,17.5,18.5,18.5,19.5,20.5,20.5,20.5,21.5],"CAPEX":[5288.073217269447,6544.3808553552817,6616.7196566652028,6210.6682133151908,4180.1142319710807,6823.5232364087933,5781.4840260963756,7725.7147704753743,5164.6954349974549],"HeatSust":[0,117.48227606124362,176.75691468619951,119.41242943514806,169.73950811352361,138.70041697840574,147.73230732086634,57.116344559444244,146.95903846318478],"PowerSust":[0,0.048217323934071452,0.072328806938598583,0.049411064788034427,0.07168335892990145,0.056508601166202738,0.061860740015383643,0.022893741501233755,0.0594795750555533]}]],[[{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,47.5,46.5],"Lon":[27.5,28.5,29.5],"CAPEX":[null,7541.8498702758343,null],"HeatSust":[null,0,null],"PowerSust":[null,0,null]}]],[[{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[46.5,47.5,47.5,45.5,47.5,44.5,44.5,44.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5],"CAPEX":[6825.8710722345841,6735.2654347439675,6932.3348918607244,null,null,null,null,null],"HeatSust":[136.12083607775932,128.65854262906151,156.20925880646371,null,null,null,null,null],"PowerSust":[0.059654606553251832,0.056383711161739306,0.067574971902121125,null,null,null,null,null]},{"Lat":[46.5,47.5,47.5,44.5,45.5,47.5,44.5,44.5,46.5,44.5],"Lon":[21.5,22.5,23.5,24.5,24.5,25.5,26.5,27.5,27.5,28.5],"CAPEX":[5390.7340809431107,5320.0983200662413,5473.1238666201625,7521.5335661362378,null,null,null,null,7037.4548568763139,null],"HeatSust":[136.12083607775932,128.65854262906151,156.20925880646371,66.936010540986288,null,null,null,null,93.885872427104644,null],"PowerSust":[0.059654606553251832,0.056383711161739306,0.067574971902121125,0.028911860840880266,null,null,null,null,0.03966350528841326,null]},{"Lat":[45.5,46.5,46.5,47.5,44.5,47.5,44.5,45.5,46.5,44.5,46.5,47.5,44.5,44.5,46.5,44.5],"Lon":[21.5,21.5,22.5,22.5,23.5,23.5,24.5,24.5,24.5,25.5,25.5,25.5,26.5,27.5,27.5,28.5],"CAPEX":[7628.4413570105653,4731.8425048879417,6899.430219772682,4669.8403191626539,7576.7431578222922,4804.1620598838872,6602.2014248490286,null,7699.1248211365437,7259.5660254641507,7157.8161746201285,null,null,null,6177.290053263313,null],"HeatSust":[135.58166125525847,136.12083607775932,123.50435162973938,128.65854262906151,45.649227187013629,156.20925880646371,66.936010540986288,null,42.793832812575744,0,106.43102525886405,null,null,null,93.885872427104644,null],"PowerSust":[0.057122421516024285,0.059654606553251832,0.0522809649799578,0.056383711161739306,0.019157587919620446,0.067574971902121125,0.028911860840880266,null,0.017461934629654834,0,0.044403867956099373,null,null,null,0.03966350528841326,null]}]],[[{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,55.5,54.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5],"CAPEX":[7312.2152552813659,null,null,null,null,null],"HeatSust":[120.69496566113145,null,null,null,null,null],"PowerSust":[0.048576552485773777,null,null,null,null,null]},{"Lat":[55.5,55.5,54.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5],"CAPEX":[5788.0014744609452,null,null,null,null,null],"HeatSust":[120.69496566113145,null,null,null,null,null],"PowerSust":[0.048576552485773777,null,null,null,null,null]},{"Lat":[55.5,55.5,54.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5],"CAPEX":[5080.553220391248,null,null,null,null,null],"HeatSust":[120.69496566113145,null,null,null,null,null],"PowerSust":[0.048576552485773777,null,null,null,null,null]}]],[[{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,56.5,57.5,56.5],"Lon":[22.5,23.5,24.5,27.5],"CAPEX":[null,7292.108177635444,null,null],"HeatSust":[null,49.794609298258443,null,null],"PowerSust":[null,0.020211053278707564,null,null]}]],[[{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5,59.5],"Lon":[24.5,26.5,26.5],"CAPEX":[null,null,7418.16331084629],"HeatSust":[null,null,49.623597719434642],"PowerSust":[null,null,0.020665048650144294]},{"Lat":[58.5,57.5,59.5],"Lon":[24.5,26.5,26.5],"CAPEX":[null,null,6511.4657735670944],"HeatSust":[null,null,49.623597719434642],"PowerSust":[null,null,0.020665048650144294]}]],[[{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[50.5,50.5],"Lon":[7.5,8.5],"CAPEX":[7453.4401161755577,null],"HeatSust":[85.160392178883427,null],"PowerSust":[0.038451142758912836,null]},{"Lat":[50.5,49.5,50.5],"Lon":[7.5,8.5,8.5],"CAPEX":[5779.5402816429141,7416.2810368171477,null],"HeatSust":[85.160392178883427,133.14482427635787,null],"PowerSust":[0.038451142758912836,0.056642008731078108,null]},{"Lat":[50.5,50.5,49.5,50.5],"Lon":[6.5,7.5,8.5,8.5],"CAPEX":[6076.2944778908823,4235.012326865859,5374.7124580982154,null],"HeatSust":[86.695209314826442,85.160392178883427,133.14482427635787,null],"PowerSust":[0.035816225635009379,0.038451142758912836,0.056642008731078108,null]},{"Lat":[50.5,50.5,52.5,49.5,50.5,47.5,51.5],"Lon":[6.5,7.5,7.5,8.5,8.5,10.5,10.5],"CAPEX":[4452.6787439064356,3157.326447554572,7070.7170513224046,3959.4247952619012,null,6101.0712476249428,6773.0138445631746],"HeatSust":[86.695209314826442,85.160392178883427,0,133.14482427635787,null,131.08951546311761,0],"PowerSust":[0.035816225635009379,0.038451142758912836,0,0.056642008731078108,null,0.057943437064028276,0]},{"Lat":[49.5,50.5,50.5,52.5,49.5,50.5,49.5,52.5,47.5,51.5,52.5,48.5,53.5,50.5,51.5],"Lon":[6.5,6.5,7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,11.5,12.5,14.5],"CAPEX":[7250.3928836772338,3582.0455454791181,2564.5911975621366,5580.4655860033918,3195.5463704583576,null,6703.4016945005887,7747.3296795252509,4826.8620965422542,5349.0166206766144,7734.957624981399,7305.56178528512,7185.5753227459963,7618.8226948446681,7793.3660005470956],"HeatSust":[107.40755367344758,86.695209314826442,85.160392178883427,0,133.14482427635787,null,0,64.788589621184457,131.08951546311761,0,97.7947279996018,92.978458662845071,81.542955371913578,109.50387903882454,80.94531498822731],"PowerSust":[0.044999227730391826,0.035816225635009379,0.038451142758912836,0,0.056642008731078108,null,0,0.027789605889037148,0.057943437064028276,0,0.039771849532480155,0.038887745792438311,0.034377186271151945,0.045209179826616354,0.033548610860872068]},{"Lat":[49.5,50.5,51.5,49.5,50.5,52.5,53.5,49.5,50.5,52.5,53.5,49.5,52.5,47.5,48.5,49.5,51.5,52.5,48.5,52.5,53.5,48.5,50.5,52.5,53.5,52.5,51.5],"Lon":[6.5,6.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,13.5,14.5],"CAPEX":[6364.2013701627147,3144.2239798957489,7187.941959015835,7270.4903013659514,2251.1297077675408,4898.3837563539246,6977.74042777067,2804.9653192000619,null,7784.1563530936264,7332.2563141633191,5884.0671027546605,6800.3992269906075,4236.89072595755,7324.4846237959309,7789.478135656349,4695.2240316483094,6789.5393677053307,6412.6271596111346,7519.56034344116,6307.3062450698562,7588.6623944438406,6687.5992255147075,7239.805693592134,7278.59116394802,6945.4373661912205,6840.8086809367605],"HeatSust":[107.40755367344758,86.695209314826442,101.10075133147673,77.842851286292813,85.160392178883427,0,0,133.14482427635787,null,98.639884499591588,0,0,64.788589621184457,131.08951546311761,103.20129976459971,0,0,97.7947279996018,92.978458662845071,89.570800445766437,81.542955371913578,0,109.50387903882454,90.3749945130452,86.495513703832245,77.1617948925391,80.94531498822731],"PowerSust":[0.044999227730391826,0.035816225635009379,0.042779495262267805,0.031323068727910429,0.038451142758912836,0,0,0.056642008731078108,null,0.041051331170865749,0,0,0.027789605889037148,0.057943437064028276,0.043269644910171018,0,0,0.039771849532480155,0.038887745792438311,0.036499484598581641,0.034377186271151945,0,0.045209179826616354,0.036385244325907611,0.0354169350829264,0.03285222134941089,0.033548610860872068]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":41.5,"Lon":25.5,"CAPEX":7162.8744771084539,"HeatSust":0,"PowerSust":0},{"Lat":[42.5,41.5,42.5],"Lon":[23.5,25.5,27.5],"CAPEX":[6562.9876559017912,5653.057556369703,7792.8954633091125],"HeatSust":[112.52612965452607,0,86.216045722389],"PowerSust":[0.046835472549953079,0,0.036096246921925805]},{"Lat":[41.5,42.5,41.5,43.5,42.5,43.5,42.5],"Lon":[23.5,23.5,25.5,25.5,26.5,26.5,27.5],"CAPEX":[7413.5849142401921,5760.8154071324325,4962.103050560474,7692.11564249073,7301.6646360210825,7141.815979206056,6840.39565590726],"HeatSust":[0,112.52612965452607,0,100.82385902167488,0,112.03960418254539,86.216045722389],"PowerSust":[0,0.046835472549953079,0,0.041208125376613579,0,0.046304080327081491,0.036096246921925805]}]],[[{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5,39.5],"Lon":[20.5,21.5,22.5,22.5,22.5],"CAPEX":[null,null,null,null,7087.5153048527482],"HeatSust":[null,null,null,null,228.59334161849839],"PowerSust":[null,null,null,null,0.10097806161142672]},{"Lat":[39.5,38.5,36.5,37.5,39.5],"Lon":[20.5,21.5,22.5,22.5,22.5],"CAPEX":[null,null,null,null,5161.7085289363167],"HeatSust":[null,null,null,null,228.59334161849839],"PowerSust":[null,null,null,null,0.10097806161142672]},{"Lat":[39.5,38.5,36.5,37.5,39.5],"Lon":[20.5,21.5,22.5,22.5,22.5],"CAPEX":[null,null,null,null,4114.2672556657189],"HeatSust":[null,null,null,null,228.59334161849839],"PowerSust":[null,null,null,null,0.10097806161142672]},{"Lat":[39.5,38.5,36.5,37.5,39.5,40.5],"Lon":[20.5,21.5,22.5,22.5,22.5,23.5],"CAPEX":[null,null,null,null,3611.3939928236578,7159.4027457187212],"HeatSust":[null,null,null,null,228.59334161849839,0],"PowerSust":[null,null,null,null,0.10097806161142672,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]}]],[[{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5,18.5],"CAPEX":[null,null,null,null,null,7698.7040767255385],"HeatSust":[null,null,null,null,null,133.60721363814409],"PowerSust":[null,null,null,null,null,0.0562371934985082]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":47.5,"Lon":8.5,"CAPEX":6066.0848131360763,"HeatSust":169.87753041795551,"PowerSust":0.080780089298402052},{"Lat":[47.5,47.5],"Lon":[8.5,9.5],"CAPEX":[4734.4333583167208,7435.1974323365821],"HeatSust":[169.87753041795551,142.54615643065978],"PowerSust":[0.080780089298402052,0.059903832184067439]},{"Lat":[47.5,46.5,47.5],"Lon":[8.5,9.5,9.5],"CAPEX":[3507.6960772436464,6079.3244292932832,5386.1537890942209],"HeatSust":[169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[47.5,46.5,47.5],"Lon":[8.5,9.5,9.5],"CAPEX":[2644.7361915271513,4452.2250681862279,3967.3688587152756],"HeatSust":[169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[46.5,47.5,47.5,46.5,47.5],"Lon":[6.5,7.5,8.5,9.5,9.5],"CAPEX":[6290.3879449655351,7178.7387810088549,2161.8554200392587,3558.2171286321272,3200.6475440754843],"HeatSust":[112.77574841739151,146.46527019518641,169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.047458032175485478,0.061381246722722348,0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[46.5,46.5,47.5,46.5,47.5,46.5,47.5],"Lon":[6.5,7.5,7.5,8.5,8.5,9.5,9.5],"CAPEX":[5521.5346561882734,7304.1603905547745,6301.3053111909976,7214.926706792904,1897.6189907283413,3123.3080315355119,2809.4429932577868],"HeatSust":[112.77574841739151,130.73931811291797,146.46527019518641,92.718848502459053,169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.047458032175485478,0.054186924557491682,0.061381246722722348,0.038312398527048382,0.080780089298402052,0.044228996035661605,0.059903832184067439]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":50.5,"Lon":5.5,"CAPEX":7819.0398448806673,"HeatSust":0,"PowerSust":0},{"Lat":50.5,"Lon":5.5,"CAPEX":6863.3444962927688,"HeatSust":0,"PowerSust":0}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":52.5,"Lon":6.5,"CAPEX":7298.2528686026762,"HeatSust":0,"PowerSust":0},{"Lat":[51.5,52.5,52.5,52.5],"Lon":[4.5,4.5,5.5,6.5],"CAPEX":[7583.8355695006567,6224.9427785032112,7813.4649436036489,5757.225579846965],"HeatSust":[85.51306062492732,0,0,0],"PowerSust":[0.036907359580420282,0,0,0]},{"Lat":[51.5,52.5,51.5,52.5,52.5],"Lon":[4.5,4.5,5.5,5.5,6.5],"CAPEX":[6656.8884606465454,5464.0886357101663,7596.0442803357946,6858.4509967383374,5053.5389614658843],"HeatSust":[85.51306062492732,0,90.7497560552032,0,0],"PowerSust":[0.036907359580420282,0,0.036398078059291308,0,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[38.5,41.5],"Lon":[-8.5,-6.5],"CAPEX":[7584.3527258449085,7424.5379521950326],"HeatSust":[0,147.44345754470169],"PowerSust":[0,0.062002176552010214]},{"Lat":[38.5,41.5,41.5],"Lon":[-8.5,-8.5,-6.5],"CAPEX":[6657.3424066833295,7329.9340012621469,6517.0612636125088],"HeatSust":[0,111.05779867135188,147.44345754470169],"PowerSust":[0,0.046194859964748383,0.062002176552010214]}]],[[{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[42.5,36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-7.5,-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[6699.7048136478088,null,null,null,null,null,null,null],"HeatSust":[238.05002225341866,null,null,null,null,null,null,null],"PowerSust":[0.10539271669868776,null,null,null,null,null,null,null]},{"Lat":[42.5,42.5,36.5,37.5,43.5,37.5,37.5,37.5,37.5,42.5],"Lon":[-8.5,-7.5,-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5,-0.5],"CAPEX":[7194.8959281423558,4888.9595953924454,null,null,null,null,null,null,null,7127.9008110770419],"HeatSust":[209.70173095348832,238.05002225341866,null,null,null,null,null,null,null,0],"PowerSust":[0.091729557904964037,0.10539271669868776,null,null,null,null,null,null,null,0]},{"Lat":[42.5,42.5,36.5,37.5,43.5,37.5,38.5,40.5,37.5,37.5,37.5,38.5,41.5,42.5,41.5],"Lon":[-8.5,-7.5,-5.5,-5.5,-5.5,-4.5,-4.5,-4.5,-3.5,-2.5,-1.5,-0.5,-0.5,-0.5,0.5],"CAPEX":[5678.8178592984777,3901.1047811787112,null,null,null,null,7615.7999290866028,7662.4406099062935,null,null,null,6503.1543664977225,7808.3514897274044,5625.56764113722,7459.3872703005336],"HeatSust":[209.70173095348832,238.05002225341866,null,null,null,null,0,121.55026319856707,null,null,null,0,0,0,0],"PowerSust":[0.091729557904964037,0.10539271669868776,null,null,null,null,0,0.0509556493042746,null,null,null,0,0,0,0]},{"Lat":[42.5,42.5,37.5,36.5,37.5,40.5,43.5,37.5,38.5,40.5,37.5,40.5,37.5,37.5,40.5,38.5,39.5,41.5,42.5,40.5,41.5],"Lon":[-8.5,-7.5,-6.5,-5.5,-5.5,-5.5,-5.5,-4.5,-4.5,-4.5,-3.5,-3.5,-2.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5],"CAPEX":[4984.7147569638882,3424.2856617356115,7065.8224944392359,null,null,7799.7364274804668,null,null,6684.9459224057873,6725.8858672529495,null,7831.3284941187912,null,null,7523.5358704395294,5708.295342562692,7833.9581232382234,6853.9625433969022,4937.9731366378646,7480.9375054762959,6547.6510649645952],"HeatSust":[209.70173095348832,238.05002225341866,0,null,null,111.45664227461478,null,null,0,121.55026319856707,null,0,null,null,0,0,0,0,0,124.1675102315527,0],"PowerSust":[0.091729557904964037,0.10539271669868776,0,null,null,0.045635976336069868,null,null,0,0.0509556493042746,null,0,null,null,0,0,0,0,0,0.050784404840660706,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[43.5,46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[6747.4118060916517,null,null,null,null,null,null],"HeatSust":[0,null,null,null,null,null,null],"PowerSust":[0,null,null,null,null,null,null]},{"Lat":[43.5,46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[4585.4251261657146,null,null,null,null,null,null],"HeatSust":[0,null,null,null,null,null,null],"PowerSust":[0,null,null,null,null,null,null]},{"Lat":[43.5,46.5,44.5,41.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,12.5,13.5,13.5],"CAPEX":[3420.5747406951505,null,null,7737.7530486165479,null,null,null,null],"HeatSust":[0,null,null,0,null,null,null,null],"PowerSust":[0,null,null,0,null,null,null,null]},{"Lat":[43.5,46.5,42.5,44.5,41.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5],"CAPEX":[2743.616406659502,null,7132.5147235795166,null,5993.8384687630978,null,null,null,null],"HeatSust":[0,null,0,null,0,null,null,null,null],"PowerSust":[0,null,0,null,0,null,null,null,null]},{"Lat":[39.5,45.5,43.5,46.5,42.5,44.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5],"Lon":[8.5,8.5,10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5],"CAPEX":[5904.2260304090032,5982.3492394516807,2145.244771656292,null,5179.93063107959,null,4386.9633580469908,null,null,7416.9397736734591,null,null,6448.949182493905],"HeatSust":[0,89.742885374182435,0,null,0,null,0,null,null,0,null,null,70.146815275442492],"PowerSust":[0,0.040497523805045836,0,null,0,null,0,null,null,0,null,null,0.028272457577980355]},{"Lat":[39.5,45.5,43.5,45.5,46.5,42.5,43.5,44.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5,41.5],"Lon":[8.5,8.5,10.5,10.5,10.5,11.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,15.5],"CAPEX":[4329.5617138154312,4384.0839437294626,1687.50949603198,7143.905764193486,null,3822.584844802584,6849.9083706390456,null,3264.5917252951413,null,null,5395.1530093377942,null,null,4714.58802360664,6492.0809018299924],"HeatSust":[0,89.742885374182435,0,68.825116586857391,null,0,0,null,0,null,null,0,null,null,70.146815275442492,134.1914067053257],"PowerSust":[0,0.040497523805045836,0,0.029773498619766983,null,0,0,null,0,null,null,0,null,null,0.028272457577980355,0.0601787401685285]},{"Lat":[44.5,39.5,40.5,44.5,45.5,39.5,40.5,43.5,44.5,45.5,46.5,42.5,43.5,44.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5,41.5,41.5],"Lon":[7.5,8.5,8.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,14.5,15.5],"CAPEX":[6541.1780784859611,3465.7203995567111,6488.143003158214,7362.120949147512,3505.618976547993,7091.7677332726853,7607.6560642207951,1424.6157391029881,7781.7354192278162,5635.97924803974,null,3089.7495715473974,5429.8444473564505,null,2650.7373369286584,null,null,4326.3873020412375,null,null,3786.6957365013695,7537.6448970338861,5132.47390068234],"HeatSust":[124.56394682022697,0,70.44204901842015,158.54199841160522,89.742885374182435,74.701925480418,126.90664630694967,0,120.48184308297493,68.825116586857391,null,0,0,null,0,null,null,0,null,null,70.146815275442492,0,134.1914067053257],"PowerSust":[0.052737591010295015,0,0.028894711799159371,0.068914251845437188,0.040497523805045836,0.03179668224197936,0.055558942052614468,0,0.050326975003538756,0.029773498619766983,null,0,0,null,0,null,null,0,null,null,0.028272457577980355,0,0.0601787401685285]},{"Lat":[44.5,39.5,40.5,44.5,45.5,39.5,40.5,45.5,43.5,44.5,45.5,46.5,42.5,43.5,44.5,45.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5,41.5,40.5,41.5],"Lon":[7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,14.5,15.5,15.5],"CAPEX":[5741.671542144788,3042.1168713650609,5695.118768456151,6462.273284162352,3077.1387774092309,6224.9644466272148,6677.7974551752623,7622.4675230594112,1250.4896747272903,6830.5996670591021,4947.1121673052621,null,2712.0997126887528,4766.17254072306,null,7297.2401255273626,2326.7464897801292,null,null,3797.5873083364268,null,null,3323.8604557397048,6616.3435211214655,7461.6327012362908,4505.1486112681441],"HeatSust":[124.56394682022697,0,70.44204901842015,158.54199841160522,89.742885374182435,74.701925480418,126.90664630694967,49.762722598735138,0,120.48184308297493,68.825116586857391,null,0,0,null,85.701631569066862,0,null,null,0,null,null,70.146815275442492,0,0,134.1914067053257],"PowerSust":[0.052737591010295015,0,0.028894711799159371,0.068914251845437188,0.040497523805045836,0.03179668224197936,0.055558942052614468,0.020000578326455964,0,0.050326975003538756,0.029773498619766983,null,0,0,null,0.034993987387498385,0,null,null,0,null,null,0.028272457577980355,0,0,0.0601787401685285]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":56.5,"Lon":10.5,"CAPEX":7636.7544437184642,"HeatSust":0,"PowerSust":0},{"Lat":[55.5,56.5,56.5,56.5,55.5],"Lon":[8.5,8.5,9.5,10.5,11.5],"CAPEX":[7760.1898217330627,7689.8538660150325,7817.4537015930273,6703.339236102127,7778.5360071188134],"HeatSust":[71.533758839181218,72.188362133021684,61.727197154397452,0,70.593242256303185],"PowerSust":[0.029027238332988013,0.029342635738602695,0.025594927925874256,0,0.028610188496733073]}]],[[{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,6715.3494195477933,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,5223.5744208038222,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,3847.8204613572912,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,50.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,6451.5007898527956,null,2884.5105701077855,null,null,null,null],"HeatSust":[null,null,124.92073161484262,null,0,null,null,null,null],"PowerSust":[null,null,0.05566652389944915,null,0,null,null,null,null]},{"Lat":[55.5,56.5,50.5,56.5,57.5,51.5,52.5,54.5,55.5,53.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-2.5,-0.5,0.5],"CAPEX":[null,null,5100.58735124536,null,2350.0334783902413,null,null,7185.3122647082992,null,7330.2833750579366,null],"HeatSust":[null,null,124.92073161484262,null,0,null,null,51.283985617766859,null,85.965739947359651,null],"PowerSust":[null,null,0.05566652389944915,null,0,null,null,0.021574651412428481,null,0.03714885965285708,null]},{"Lat":[55.5,56.5,50.5,55.5,56.5,57.5,51.5,52.5,54.5,55.5,51.5,54.5,55.5,51.5,53.5,52.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-3.5,-2.5,-2.5,-2.5,-0.5,-0.5,0.5,1.5],"CAPEX":[null,null,4477.1594491810165,7428.8164965542928,null,2062.7966681322837,null,null,6307.0753397450262,7275.2115068429484,7685.2402869591933,7161.8245197267443,null,7055.3634210364044,6434.3271113280916,null,6981.0778817936061],"HeatSust":[null,null,124.92073161484262,64.925680295024009,null,0,null,null,51.283985617766859,56.7656397983824,46.934375211968245,0,null,0,85.965739947359651,null,0],"PowerSust":[null,null,0.05566652389944915,0.026075259190025103,null,0,null,null,0.021574651412428481,0.02324893564570038,0.019768609096146663,0,null,0,0.03714885965285708,null,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":64.5,"Lon":-20.5,"CAPEX":6083.6256658849934,"HeatSust":293.63522216276573,"PowerSust":0.15365559259944336},{"Lat":[65.5,64.5,65.5,64.5],"Lon":[-22.5,-21.5,-21.5,-20.5],"CAPEX":[7827.0534367146975,5801.7500836725148,6525.9696208974283,4383.5016690855446],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-18.5,-17.5,-17.5,-16.5],"CAPEX":[6060.8939940247028,4535.2167211363685,5080.9131021156527,3465.3301758768403,7471.2018670557509,7615.198752590788,6527.8363944792345,7316.4432985860658,7413.51268993868,7439.45992249065],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,164.16318357228866,0,158.564059377303,0],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.077146998688386884,0,0.064832051018036269,0]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-14.5],"CAPEX":[4430.67941978394,3368.9229615755021,3748.6174411402926,2622.296590008204,5382.2368092222741,5509.3641280517868,5973.1825461414282,6752.2979818068989,4729.3812541469961,5273.1911535918334,5369.43683697434,5358.1790022363057,5962.2963491521259,7788.9554810169584,5996.8065876533719],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[3295.0916734511775,2546.8007478888276,2814.5953885421145,2018.4166148957077,3961.9097270040625,4053.9072115858303,4377.714488443673,4927.7142654135514,3502.0428276641546,3884.8292238234753,3955.5082499285568,3944.661881901874,4369.9763441733849,6630.9109552546815,5654.4966757906022,4394.3333574003091],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[2672.7778416882816,2084.8549027328236,2295.1554973643306,1668.9142431649682,3177.3740650025807,3267.3209019173505,3501.1086225898466,3952.2296631573258,2818.4846156996618,3115.9600914352782,3190.2433235124304,3162.5636791084339,3494.633973665349,5254.8763131227051,4495.0040920588808,3514.0473699220274],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[2346.0930566270176,1830.029991675877,2014.6262410064469,1464.928381597947,2789.0141544651083,2867.9670873500986,3073.1797090799846,3469.1617186828444,2473.9905741384978,2735.1066075231925,2800.31044612204,2776.0139929962911,3067.4964350536384,4612.5901821543139,3945.5946264610238,3084.5369961705969],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":46.5,"Lon":16.5,"CAPEX":6539.7845664851993,"HeatSust":159.16235427913463,"PowerSust":0.068016317898611386},{"Lat":46.5,"Lon":16.5,"CAPEX":5740.44835450146,"HeatSust":159.16235427913463,"PowerSust":0.068016317898611386}]],[[{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":48.5,"Lon":21.5,"CAPEX":7767.0254499113071,"HeatSust":81.569783989790835,"PowerSust":0.0344383876699136},{"Lat":48.5,"Lon":21.5,"CAPEX":6120.7700912164191,"HeatSust":81.569783989790835,"PowerSust":0.0344383876699136},{"Lat":[48.5,48.5,48.5,48.5],"Lon":[17.5,18.5,19.5,21.5],"CAPEX":[7343.9452281487465,7046.5985307794108,7799.5636211002156,5372.6486310372193],"HeatSust":[90.086224371055081,122.54842423034756,84.467964557659485,81.569783989790835],"PowerSust":[0.037889627313245258,0.051513765866612674,0.033717790760439008,0.0344383876699136]}]],[[{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[50.5,50.5,49.5],"Lon":[14.5,15.5,16.5],"CAPEX":[7816.495990018735,6701.3607364952577,null],"HeatSust":[77.8441879856747,100.30184872073551,null],"PowerSust":[0.032134544900304353,0.042519962462128,null]},{"Lat":[50.5,50.5,50.5,49.5],"Lon":[13.5,14.5,15.5,16.5],"CAPEX":[7811.6066498576092,6861.1115683869912,5882.2756042879746,null],"HeatSust":[100.5461188001249,77.8441879856747,100.30184872073551,null],"PowerSust":[0.040362923235730971,0.032134544900304353,0.042519962462128,null]}]],[[{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[43.5,44.5,44.5],"Lon":[20.5,21.5,22.5],"CAPEX":[7621.32190565313,6877.972685027793,7238.7267672767475],"HeatSust":[200.60006652959569,0,75.80585838379865],"PowerSust":[0.080906496208979439,0,0.031805513512506087]},{"Lat":[45.5,43.5,44.5,45.5,43.5,44.5,44.5],"Lon":[19.5,20.5,20.5,20.5,21.5,21.5,22.5],"CAPEX":[7352.9877221470588,6689.7929660618374,6975.1858874001482,7449.5247081369516,6997.1684888396749,6037.3008591770313,6353.9611645391533],"HeatSust":[190.52043158185771,200.60006652959569,196.66813253983307,144.928626945719,200.69211282320859,0,75.80585838379865],"PowerSust":[0.080186038065368045,0.080906496208979439,0.083545392313219613,0.059308109719445674,0.084765325809156689,0,0.031805513512506087]}]],[[{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null}]],[[{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5,47.5,45.5,43.5,45.5,46.5,47.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5,1.5,3.5,4.5,4.5,4.5,4.5,5.5,7.5],"CAPEX":[null,null,null,7742.3096847699908,7110.0809250229495,7305.1739693164991,6910.1818372699772,7661.9674480204412,6665.368781175649,6518.4599154329562,7025.19128718042],"HeatSust":[null,null,null,155.77205253388351,130.09217854947082,0,129.38846474224923,172.30228849294505,244.3241449219216,255.93544012557058,155.52131650814601],"PowerSust":[null,null,null,0.066606085759113837,0.0561085392250562,0,0.056411238613988855,0.07349683507449549,0.10711623972617214,0.11275458584830628,0.067446228214511308]},{"Lat":[48.5,47.5,43.5,45.5,48.5,47.5,48.5,45.5,47.5,46.5,47.5,43.5,44.5,45.5,47.5,43.5,45.5,46.5,47.5,49.5,46.5,47.5,48.5,49.5,45.5,48.5,48.5],"Lon":[-2.5,-1.5,-0.5,-0.5,-0.5,0.5,0.5,1.5,1.5,2.5,2.5,3.5,3.5,3.5,3.5,4.5,4.5,4.5,4.5,4.5,5.5,5.5,5.5,5.5,6.5,6.5,7.5],"CAPEX":[null,null,7383.8503314191485,7121.3111331349073,null,7393.9056698257536,6819.1853597676509,6996.9637646595856,6102.7643469710765,6487.8203379372426,7027.3197655083759,7228.7192195270163,7669.56309776082,5611.2421899587307,6758.4813675124351,5785.3361341086911,5455.8394101888516,6039.9799873624943,5266.8430263139044,7326.8543149700581,7488.6190829949255,5152.7783143263869,6480.1740011182092,7546.5992881658531,7192.568952149757,7133.9779354563289,5545.7525171390016],"HeatSust":[null,null,121.74900041869613,164.78312264991558,null,124.25959874963934,126.17941423324069,155.64737276480656,155.77205253388351,216.21722060085418,188.00084530248421,63.338271893013385,157.52602060023605,130.09217854947082,159.73580232983227,0,129.38846474224923,172.30228849294505,244.3241449219216,0,166.04452693631572,255.93544012557058,162.47136676993154,61.006292681040563,116.37550992360207,118.75065017339492,155.52131650814601],"PowerSust":[null,null,0.0514880989931345,0.070241635807015909,null,0.053856736555629794,0.053745074883084873,0.0658812043375488,0.066606085759113837,0.090830636688757654,0.082089085628184344,0.0268790710571605,0.066709308347935967,0.0561085392250562,0.06674370319674082,0,0.056411238613988855,0.07349683507449549,0.10711623972617214,0,0.07129235603123131,0.11275458584830628,0.068215606241721211,0.025577798434813042,0.047280828110033639,0.051488432644702528,0.067446228214511308]},{"Lat":[48.5,43.5,47.5,49.5,43.5,45.5,48.5,49.5,47.5,48.5,45.5,47.5,45.5,46.5,47.5,49.5,43.5,44.5,45.5,47.5,43.5,45.5,46.5,47.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,44.5,45.5,47.5,48.5,48.5],"Lon":[-2.5,-1.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,1.5,1.5,2.5,2.5,2.5,2.5,3.5,3.5,3.5,3.5,4.5,4.5,4.5,4.5,4.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.5,6.5,6.5,6.5,7.5],"CAPEX":[null,6922.8094729616887,null,7483.7830362479735,6481.3467559927212,6250.8968545530961,null,7804.6147021679653,6490.1730636827288,5985.6989140174692,6141.7480531676729,5356.8436692874939,7567.7963725368154,5694.8355415366786,6168.3937405523475,7593.7047558364484,6345.1768062122856,6732.1377970021349,4925.3986379202042,5932.4145697228669,5078.2136557643489,4788.9902253271257,5301.7332340522835,4623.0942436182422,6431.3171738999026,7076.7629642300344,7199.416024422012,7487.4952996590628,6573.3099699903923,4522.9712836676918,5688.1237911472654,6624.2034466765808,7283.5412697796364,6313.445066310016,7339.5919899886812,6262.0154355711056,4867.91355094938],"HeatSust":[null,102.98980953617722,null,89.915268594007884,121.74900041869613,164.78312264991558,null,71.40663068493123,124.25959874963934,126.17941423324069,155.64737276480656,155.77205253388351,96.809104962715324,216.21722060085418,188.00084530248421,134.01400287141215,63.338271893013385,157.52602060023605,130.09217854947082,159.73580232983227,0,129.38846474224923,172.30228849294505,244.3241449219216,0,0,0,111.15181288452771,166.04452693631572,255.93544012557058,162.47136676993154,61.006292681040563,148.3587196703208,116.37550992360207,131.85276875746791,118.75065017339492,155.52131650814601],"PowerSust":[null,0.043273542093039449,null,0.036374444170051964,0.0514880989931345,0.070241635807015909,null,0.029177569565562996,0.053856736555629794,0.053745074883084873,0.0658812043375488,0.066606085759113837,0.0402501632519034,0.090830636688757654,0.082089085628184344,0.056057138909439676,0.0268790710571605,0.066709308347935967,0.0561085392250562,0.06674370319674082,0,0.056411238613988855,0.07349683507449549,0.10711623972617214,0,0,0,0.046564464198719548,0.07129235603123131,0.11275458584830628,0.068215606241721211,0.025577798434813042,0.059469714335476674,0.047280828110033639,0.055329915861056893,0.051488432644702528,0.067446228214511308]}]]],"LCOE150":[[[{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,9903.7124594735578,null,null,null,null,9437.688491090481,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,47.013329815863635,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,0.021666414832391505,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,60.5,59.5,60.5,61.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[9990.8688467976244,9811.35465809712,10188.879197750945,null,9201.3896273097926,null,null,null,null,null,null,null,7622.4892377208771,null,11050.627577310323,null,null,null,7271.2996621068824,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,50.105589257523071,60.160559602871956,null,38.716356361222076,null,null,null,null,null,null,null,47.013329815863635,null,39.161647327308749,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.021606553428581449,0.02523026895908163,null,0.016815197658385215,null,null,null,null,null,null,null,0.021666414832391505,null,0.016524838114285418,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,59.5,60.5,61.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,64.5,65.5,66.5,78.5,66.5,67.5,78.5,68.5,69.5,69.5,69.5,79.5,80.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,11.5,13.5,13.5,13.5,13.5,14.5,15.5,15.5,19.5,19.5,20.5,21.5,21.5,22.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[7163.10981992388,9232.2857329332855,6998.0487120093012,10417.660193691714,7257.1051428883457,null,6576.1305030118128,null,9615.6488748821175,null,null,8615.556959506257,null,null,null,null,5486.1065925726371,null,7854.1363279825382,null,null,null,5240.9577287176489,null,8675.1763556069018,11224.36722613683,null,null,null,null,null,11436.647607280474,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,38.0320782168351,50.105589257523071,37.316850893623979,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,null,null,null,null,47.013329815863635,null,39.161647327308749,null,null,null,0,null,34.361702756004341,0,null,null,null,null,null,25.216618234515586,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,null,null,null,null,0.021666414832391505,null,0.016524838114285418,null,null,null,0,null,0.014140735524933673,0,null,null,null,null,null,0.010220786817510263,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,59.5,60.5,61.5,62.5,58.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,60.5,61.5,62.5,59.5,61.5,62.5,63.5,61.5,64.5,78.5,64.5,65.5,66.5,78.5,66.5,67.5,77.5,67.5,78.5,78.5,68.5,69.5,69.5,80.5,69.5,79.5,80.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,12.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,15.5,15.5,16.5,19.5,19.5,20.5,20.5,21.5,21.5,22.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[5216.5992785830094,6668.9569359793022,5098.4886689435707,7501.8433861541625,10200.804026824773,11397.242312597426,5280.5039380766484,null,4801.7279838153609,null,6938.2147850250112,null,null,6233.6135944236694,10014.015911959483,null,null,9857.2937268316364,null,null,4034.9258280431741,null,5700.3667613874559,11217.245650307375,null,null,null,3861.9642521428354,null,8510.4589711418612,11365.840502820605,6277.4514203966555,8066.634878798639,9425.8701042273024,null,null,null,9176.741101585716,null,null,8215.63403414263,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,38.0320782168351,50.105589257523071,37.316850893623979,24.815591290190557,57.027602712306368,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,30.820307012283966,null,null,55.627265236006771,null,null,47.013329815863635,null,39.161647327308749,0,null,null,null,0,null,24.74293952246223,0,34.361702756004341,0,0,null,null,null,28.308417161474551,null,null,25.216618234515586,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.010004087603401187,0.023370431146044736,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,0.012455966654527424,null,null,0.0227358524088195,null,null,0.021666414832391505,null,0.016524838114285418,0,null,null,null,0,null,0.0102700113824071,0,0.014140735524933673,0,0,null,null,null,0.011170105309658736,null,null,0.010220786817510263,null,null,null,null,null,null,null,null,null,null]},{"Lat":[59.5,60.5,61.5,59.5,60.5,61.5,62.5,58.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,63.5,60.5,61.5,64.5,79.5,78.5,64.5,65.5,66.5,78.5,66.5,67.5,77.5,78.5,79.5,67.5,78.5,79.5,78.5,79.5,77.5,78.5,79.5,78.5,79.5,68.5,69.5,69.5,80.5,69.5,79.5,80.5,69.5,80.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,5.5,5.5,6.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,16.5,16.5,17.5,17.5,17.5,18.5,18.5,19.5,19.5,20.5,20.5,21.5,21.5,22.5,23.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[9611.3530900368878,4181.9259121927407,9621.45990871329,5285.6635431783689,4062.2895852566921,5933.7732756505775,8006.6257447562339,8913.7487446723517,4202.9509138981812,null,3830.7149699527758,null,5493.2919635613007,null,null,4929.2477506850191,7851.9291972186675,null,null,7734.1499374606319,9317.7861488375329,null,null,3233.8304672275503,10573.753527678964,null,4531.2574329585868,10174.995419168074,8775.9403076435319,null,null,null,3097.4801164006662,null,6695.6523234228744,8889.14039396451,10604.585166044722,10912.277414248363,4980.830285377926,6345.5119075811463,10590.317803336919,7389.1881415854605,10982.504737333269,10370.64830708879,10380.111972407014,11400.789366505165,10633.960886252342,9924.9739109993025,null,null,null,7203.9685207025459,null,null,6459.3800145666273,null,11444.084968769715,null,null,null,null,null,null,null,null,null],"HeatSust":[76.1775428612708,48.887038921730223,92.431071791153983,38.0320782168351,50.105589257523071,37.316850893623979,24.815591290190557,57.027602712306368,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,30.820307012283966,null,null,55.627265236006771,36.964014719915106,null,null,47.013329815863635,59.620438179678068,null,39.161647327308749,34.1192380865561,0,null,null,null,0,null,24.74293952246223,0,0,0,34.361702756004341,0,26.625579592507872,0,0,0,0,0,0,0,null,null,null,28.308417161474551,null,null,25.216618234515586,null,27.787283043607953,null,null,null,null,null,null,null,null,null],"PowerSust":[0.031191620423547946,0.019489798560901245,0.037577226947096226,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.010004087603401187,0.023370431146044736,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,0.012455966654527424,null,null,0.0227358524088195,0.014942986213234413,null,null,0.021666414832391505,0.023522406887300014,null,0.016524838114285418,0.013586573886226727,0,null,null,null,0,null,0.0102700113824071,0,0,0,0.014140735524933673,0,0.010479915854331343,0,0,0,0,0,0,0,null,null,null,0.011170105309658736,null,null,0.010220786817510263,null,0.010717320041339471,null,null,null,null,null,null,null,null,null]},{"Lat":[59.5,60.5,61.5,58.5,59.5,60.5,61.5,62.5,58.5,59.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,60.5,61.5,62.5,59.5,60.5,61.5,62.5,63.5,60.5,61.5,64.5,79.5,65.5,78.5,79.5,64.5,65.5,66.5,78.5,66.5,67.5,77.5,78.5,79.5,67.5,78.5,79.5,78.5,79.5,77.5,78.5,79.5,78.5,79.5,68.5,69.5,80.5,69.5,80.5,69.5,79.5,79.5,80.5,69.5,79.5,80.5,80.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,5.5,5.5,6.5,6.5,6.5,6.5,6.5,7.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,16.5,16.5,17.5,17.5,17.5,18.5,18.5,19.5,19.5,19.5,20.5,20.5,21.5,21.5,22.5,22.5,23.5,23.5,23.5,24.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[8436.5892284870333,3670.7829558055164,8445.46072418393,11335.105554127051,4639.6143910278606,3565.7693809519733,5208.5078170243105,7028.0023927908969,7824.2507522376291,3689.2381411738406,null,3362.4993640498528,null,4821.865077119729,null,null,4326.7621206301519,6892.2138920029638,null,null,6788.8304011556829,8178.9040024047972,null,null,2838.5700775935638,9281.358647489953,null,3977.4168415504023,8931.3394221508952,11481.4765156666,7703.2861841335643,11546.9809840469,null,null,null,2718.8853786432205,null,5877.2649116428211,7802.65019874971,9308.4218367929,9578.50588037826,4372.03989291586,5569.9209993886352,9295.8983265845054,6486.0321432978144,9640.14955031041,9103.0783054581116,9111.3852583020853,10007.308634349405,9334.2070599931121,8711.8772150144978,null,null,11217.436249617303,null,6323.4513033466674,null,null,10348.950163512995,5669.8713847155186,null,10410.232484322047,10045.312358516463,11172.599907952872,null,null,null,null,null,null,null,null,null],"HeatSust":[76.1775428612708,48.887038921730223,92.431071791153983,30.832241123828183,38.0320782168351,50.105589257523071,37.316850893623979,24.815591290190557,57.027602712306368,60.160559602871956,null,38.716356361222076,null,42.04276957144203,null,null,33.101608930848919,30.820307012283966,null,null,55.627265236006771,36.964014719915106,null,null,47.013329815863635,59.620438179678068,null,39.161647327308749,34.1192380865561,43.964359195237058,0,28.303633504527209,null,null,null,0,null,24.74293952246223,0,0,0,34.361702756004341,0,26.625579592507872,0,0,0,0,0,0,0,null,null,26.624724656465187,null,28.308417161474551,null,null,0,25.216618234515586,null,0,27.787283043607953,25.795528137439781,null,null,null,null,null,null,null,null,null],"PowerSust":[0.031191620423547946,0.019489798560901245,0.037577226947096226,0.012436398489762345,0.015505049928864565,0.021606553428581449,0.014800434448335476,0.010004087603401187,0.023370431146044736,0.02523026895908163,null,0.016815197658385215,null,0.0167012576040563,null,null,0.014562461711005597,0.012455966654527424,null,null,0.0227358524088195,0.014942986213234413,null,null,0.021666414832391505,0.023522406887300014,null,0.016524838114285418,0.013586573886226727,0.017452318495714696,0,0.010999489571765551,null,null,null,0,null,0.0102700113824071,0,0,0,0.014140735524933673,0,0.010479915854331343,0,0,0,0,0,0,0,null,null,0.010401218057903743,null,0.011170105309658736,null,null,0,0.010220786817510263,null,0,0.010717320041339471,0.010051361367733443,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,61.5,62.5,63.5,56.5,58.5,60.5,61.5,62.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,57.5,65.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,16.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,9283.6702262115268,null,null,null,null,11520.823699932427,null,10564.05392406678,null,null,null,null,null,null,null,9646.2077461297649,11050.266886668009,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,41.637486937589472,null,null,null,null,41.420977103553071,null,74.777278033224889,null,null,null,null,null,null,null,60.478627497621559,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,0.017127555817574185,null,null,null,null,0.017135300272543185,null,0.030959201671045728,null,null,null,null,null,null,null,0.024497047822371533,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,56.5,57.5,60.5,62.5,63.5,55.5,57.5,58.5,59.5,60.5,61.5,62.5,63.5,56.5,58.5,60.5,61.5,62.5,64.5,65.5,58.5,60.5,61.5,64.5,65.5,66.5,57.5,59.5,65.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,15.5,16.5,16.5,16.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,10917.785028867325,10630.801512368062,null,null,null,null,11466.069488819903,null,null,null,7285.8330143004332,null,null,null,null,9006.3006707400418,null,8268.4633264190925,null,null,null,null,11468.688013817522,null,null,null,7577.0102891477954,9701.2827542539053,8647.11207874656,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,62.735944274125309,78.216163975130769,null,null,null,null,63.015881068272066,null,null,null,41.637486937589472,null,null,null,null,41.420977103553071,null,74.777278033224889,null,null,null,null,49.177924188507575,null,null,null,60.478627497621559,58.527017134204826,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,0.026179801069386104,0.032542491981156392,null,null,null,null,0.025804586990553772,null,null,null,0.017127555817574185,null,null,null,null,0.017135300272543185,null,0.030959201671045728,null,null,null,null,0.019982115115616424,null,null,null,0.024497047822371533,0.023888585402697431,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,56.5,57.5,58.5,60.5,62.5,63.5,55.5,57.5,58.5,59.5,60.5,61.5,62.5,63.5,56.5,58.5,60.5,61.5,62.5,64.5,65.5,56.5,57.5,58.5,60.5,61.5,64.5,65.5,66.5,57.5,59.5,61.5,65.5,66.5,59.5,60.5,62.5,63.5,64.5,65.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,65.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,15.5,16.5,16.5,16.5,16.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,9583.3403175000367,9331.4338459168866,11275.775552931867,null,null,null,null,10064.609783479566,null,null,null,6395.3097709748545,null,null,null,null,7905.4903628547645,null,7257.8364338854672,null,null,11214.625465998424,11084.993077214789,null,null,10066.908254837605,null,null,null,6650.8974117102571,8515.527087636252,11647.250465052261,7590.2042030580906,null,11511.760092199884,null,null,null,null,10594.388369808581,null,null,null,null,null,null,null,null,null,null,10682.839574590756,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,62.735944274125309,78.216163975130769,0,null,null,null,null,63.015881068272066,null,null,null,41.637486937589472,null,null,null,null,41.420977103553071,null,74.777278033224889,null,null,59.343705946449568,52.069453262636621,null,null,49.177924188507575,null,null,null,60.478627497621559,58.527017134204826,52.584533633468965,0,null,58.4990101341358,null,null,null,null,56.676560778614565,null,null,null,null,null,null,null,null,null,null,27.401645658296381,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,0.026179801069386104,0.032542491981156392,0,null,null,null,null,0.025804586990553772,null,null,null,0.017127555817574185,null,null,null,null,0.017135300272543185,null,0.030959201671045728,null,null,0.023940830338591821,0.02098648287383921,null,null,0.019982115115616424,null,null,null,0.024497047822371533,0.023888585402697431,0.020829065347340924,0,null,0.024088753130630226,null,null,null,null,0.02243815848254593,null,null,null,null,null,null,null,null,null,null,0.010986255210172713,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[48.5,48.5,51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[22.5,23.5,24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[9507.9700112049868,11416.303856197306,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[135.94694317911404,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.055313215426622327,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[48.5,48.5,49.5,51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,45.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,46.5,47.5,48.5,49.5,50.5,46.5,47.5,48.5,49.5,50.5,51.5,47.5,47.5,47.5,49.5,47.5,48.5,49.5,48.5],"Lon":[22.5,23.5,24.5,24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,32.5,32.5,33.5,33.5,33.5,33.5,33.5,33.5,34.5,35.5,36.5,36.5,37.5,37.5,37.5,38.5],"CAPEX":[6862.7592068588192,8201.6401635524453,10827.504359807333,null,null,null,null,null,null,null,null,null,null,null,null,null,10342.108271330471,null,null,null,null,null,null,null,null,null,null,null,10415.279386886412,null,null,null,10771.23442755571,11076.031626105503,null,null,8898.16922127958,10106.995981115226,null,null,null,null,9604.2788661656268,9064.4206559785616,9145.3172831667252,9359.5788309491818,10879.237132237646],"HeatSust":[135.94694317911404,0,50.896104187789376,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,65.834951729368541,null,null,null,0,0,null,null,56.435599999743268,0,null,null,null,null,0,0,0,0,0],"PowerSust":[0.055313215426622327,0,0.020758246458334163,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,0.028262034759660468,null,null,null,0,0,null,null,0.023993283026186706,0,null,null,null,null,0,0,0,0,0]},{"Lat":[48.5,48.5,49.5,48.5,49.5,51.5,48.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,45.5,48.5,49.5,45.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,51.5,46.5,47.5,48.5,49.5,50.5,51.5,46.5,47.5,48.5,49.5,50.5,51.5,46.5,47.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,48.5,49.5,48.5],"Lon":[22.5,23.5,23.5,24.5,24.5,24.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,31.5,31.5,32.5,32.5,32.5,32.5,32.5,32.5,33.5,33.5,33.5,33.5,33.5,33.5,34.5,34.5,35.5,35.5,35.5,35.5,36.5,36.5,36.5,37.5,37.5,37.5,38.5,38.5,39.5],"CAPEX":[5437.861424766661,6451.3104226267842,10694.29683497549,9686.5930488200029,8483.005261436605,null,9728.2364812520736,null,null,null,null,null,null,null,null,null,null,10389.21181681208,null,null,8111.972929079383,null,null,null,null,null,null,null,null,null,null,null,10443.297177975173,10844.874527084379,8157.18273611714,null,null,null,8440.283837076262,9489.1920292202049,8677.87796160958,null,null,6989.1221284879421,7925.79293985015,null,9369.9605196623743,null,null,9627.88409477886,9254.77943495803,11262.877810354939,null,10795.662167601209,7536.8168375066689,7119.3473706324812,7181.9981404270784,7346.9258806746029,8524.3399461053123,11408.286833541573,9875.7271035123267],"HeatSust":[135.94694317911404,0,0,70.815911728404373,50.896104187789376,null,55.218158178516752,null,null,null,null,null,null,null,null,null,null,71.217906251443,null,null,0,null,null,null,null,null,null,null,null,null,null,null,45.6071742626492,43.811838391262441,65.834951729368541,null,null,null,0,51.008307394938633,0,null,null,56.435599999743268,0,null,0,null,null,0,0,65.826409671242686,null,0,0,0,0,0,0,0,0],"PowerSust":[0.055313215426622327,0,0,0.028867984452880417,0.020758246458334163,null,0.02269726074798304,null,null,null,null,null,null,null,null,null,null,0.029089746050464042,null,null,0,null,null,null,null,null,null,null,null,null,null,null,0.018680549877809038,0.017772749360207743,0.028262034759660468,null,null,null,0,0.020378840042253456,0,null,null,0.023993283026186706,0,null,0,null,null,0,0,0.027226319447840954,null,0,0,0,0,0,0,0,0]},{"Lat":[48.5,48.5,49.5,48.5,49.5,51.5,48.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,45.5,48.5,49.5,45.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,51.5,46.5,47.5,48.5,49.5,50.5,51.5,46.5,47.5,48.5,49.5,50.5,51.5,46.5,47.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,48.5,49.5,48.5],"Lon":[22.5,23.5,23.5,24.5,24.5,24.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,31.5,31.5,32.5,32.5,32.5,32.5,32.5,32.5,33.5,33.5,33.5,33.5,33.5,33.5,34.5,34.5,34.5,35.5,35.5,35.5,35.5,36.5,36.5,36.5,37.5,37.5,37.5,38.5,38.5,39.5],"CAPEX":[4773.2096295315159,5662.7881122771632,9387.1683454978483,8502.63285625464,7446.1556186112612,null,8539.1863498369148,null,null,null,null,null,null,null,null,null,null,9119.37285885838,null,null,7120.4733396166266,null,null,null,null,null,null,null,null,null,null,null,9166.8475454225845,9519.3414249171383,7160.1573016460825,null,null,null,7408.65589248449,8329.3595096147856,7617.2096739356639,null,null,6134.8648742188125,6957.049513962007,null,8224.7012726518151,null,10566.190496622772,null,8451.0997032594951,8123.5983905249068,9886.25355103268,null,9476.144129173781,6615.6166725682579,6249.1731162386168,6304.1662899004423,6448.9354585925521,7482.438101646916,10013.88971081676,8668.6496817327716],"HeatSust":[135.94694317911404,0,0,70.815911728404373,50.896104187789376,null,55.218158178516752,null,null,null,null,null,null,null,null,null,null,71.217906251443,null,null,0,null,null,null,null,null,null,null,null,null,null,null,45.6071742626492,43.811838391262441,65.834951729368541,null,null,null,0,51.008307394938633,0,null,null,56.435599999743268,0,null,0,null,45.859397144678212,null,0,0,65.826409671242686,null,0,0,0,0,0,0,0,0],"PowerSust":[0.055313215426622327,0,0,0.028867984452880417,0.020758246458334163,null,0.02269726074798304,null,null,null,null,null,null,null,null,null,null,0.029089746050464042,null,null,0,null,null,null,null,null,null,null,null,null,null,null,0.018680549877809038,0.017772749360207743,0.028262034759660468,null,null,null,0,0.020378840042253456,0,null,null,0.023993283026186706,0,null,0,null,0.018882476725031197,null,0,0,0.027226319447840954,null,0,0,0,0,0,0,0,0]}]],[[{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[52.5,54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[15.5,17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[10775.601386835651,null,null,null,null,null,null],"HeatSust":[78.920273541151175,null,null,null,null,null,null],"PowerSust":[0.033513450281764667,null,null,null,null,null,null]},{"Lat":[52.5,51.5,52.5,50.5,51.5,52.5,54.5,50.5,51.5,52.5,53.5,50.5,52.5,53.5,49.5,52.5,53.5,50.5,53.5,50.5,50.5,51.5,53.5],"Lon":[14.5,15.5,15.5,16.5,16.5,16.5,17.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,20.5,20.5,20.5,21.5,21.5,22.5,23.5,23.5,23.5],"CAPEX":[8524.5242593247513,10206.285089983165,7752.0323771053654,11731.049000001771,9439.4999573829027,10363.141076403386,null,10936.09103308723,10978.135877545177,9883.76528734719,null,10927.892862383604,11274.327327519573,null,8617.91907746064,11057.104258378196,null,10645.210665445533,null,11064.944139114321,10411.09062378196,11093.837780229978,null],"HeatSust":[103.51153369341698,86.90367597185957,78.920273541151175,93.569003741645091,89.841815773377135,84.153828449252416,null,71.3908691718809,87.608955624861991,102.97905273162117,null,66.415401778944812,74.114095477815056,null,57.257712005849385,69.72144623714081,null,85.7387227387003,null,84.012954523264938,85.725874516288158,96.545852732711992,null],"PowerSust":[0.044108663319881412,0.036784396339524184,0.033513450281764667,0.03731700249101013,0.037497598725992842,0.033854875485683236,null,0.029049393202046032,0.035558072294488,0.042484858547240649,null,0.027004507585372255,0.029880559277050755,null,0.024171970022278142,0.028997863779848206,null,0.035963627808390658,null,0.034964230127189695,0.035030858028054626,0.040391775794545517,null]},{"Lat":[52.5,53.5,51.5,52.5,53.5,50.5,51.5,52.5,51.5,54.5,50.5,51.5,52.5,53.5,54.5,49.5,50.5,51.5,52.5,53.5,49.5,50.5,51.5,52.5,53.5,49.5,50.5,52.5,53.5,50.5,53.5,50.5,51.5,53.5],"Lon":[14.5,14.5,15.5,15.5,15.5,16.5,16.5,16.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5,23.5],"CAPEX":[6701.9765452541524,9386.72479332615,7995.1696347364486,6109.0672006643354,9881.99946362661,9185.8002517714958,7410.4046850031245,8134.8269121178319,11578.039990394609,null,8569.18995483461,8602.7423899914684,7755.1878774969982,null,11463.274104804386,11480.542216378106,8562.2603866347,10315.306154964357,8832.3880043813078,null,6772.5645453125908,10806.908331387769,10563.854742156338,8653.4702299924247,null,11314.70876334129,8334.7630271228445,10747.357352087061,null,8659.52440312795,9868.5300348104156,8162.7458640948016,8679.5678072299652,null],"HeatSust":[103.51153369341698,0,86.90367597185957,78.920273541151175,0,93.569003741645091,89.841815773377135,84.153828449252416,69.471531299905422,null,71.3908691718809,87.608955624861991,102.97905273162117,null,47.657598463415873,64.455328245147157,66.415401778944812,71.906553792269932,74.114095477815056,null,57.257712005849385,65.468529552681417,64.2836017013068,69.72144623714081,null,89.879452242877107,85.7387227387003,86.792197013789078,null,84.012954523264938,0,85.725874516288158,96.545852732711992,null],"PowerSust":[0.044108663319881412,0,0.036784396339524184,0.033513450281764667,0,0.03731700249101013,0.037497598725992842,0.033854875485683236,0.028715553019687236,null,0.029049393202046032,0.035558072294488,0.042484858547240649,null,0.019830010459699312,0.025572516177090398,0.027004507585372255,0.029030830587380298,0.029880559277050755,null,0.024171970022278142,0.02623027988627152,0.025834723694347542,0.028997863779848206,null,0.0368692442783376,0.035963627808390658,0.034932685458536894,null,0.034964230127189695,0,0.035030858028054626,0.040391775794545517,null]},{"Lat":[52.5,53.5,51.5,52.5,53.5,50.5,51.5,52.5,50.5,51.5,52.5,53.5,54.5,50.5,51.5,52.5,53.5,54.5,49.5,50.5,51.5,52.5,53.5,49.5,50.5,51.5,52.5,53.5,49.5,50.5,52.5,53.5,50.5,53.5,50.5,51.5,53.5],"Lon":[14.5,14.5,15.5,15.5,15.5,16.5,16.5,16.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5,23.5],"CAPEX":[5882.8161447814336,8239.4165046582057,7017.9465251635293,5362.3761460448395,8674.1553920403258,8063.0503044843863,6504.65545886914,7140.5339559860395,10471.461965946148,10162.89450142138,10594.371882470819,10746.582990068051,null,7521.8062423237325,7551.2576744355438,6807.2969434455854,null,10062.156069995748,10077.313557472735,7515.7236522986077,9054.5004413300867,7752.8344658177,null,5944.7764073349736,9486.0157116008013,9272.6697577433169,7595.7852185312977,null,9931.74937826643,7316.0325417143431,9433.74345130532,null,7601.099410132013,8662.332286906214,7165.040466912551,7618.6929753215518,null],"HeatSust":[103.51153369341698,0,86.90367597185957,78.920273541151175,0,93.569003741645091,89.841815773377135,84.153828449252416,69.6137749397759,69.471531299905422,48.812125600312456,46.600054692572847,null,71.3908691718809,87.608955624861991,102.97905273162117,null,47.657598463415873,64.455328245147157,66.415401778944812,71.906553792269932,74.114095477815056,null,57.257712005849385,65.468529552681417,64.2836017013068,69.72144623714081,null,89.879452242877107,85.7387227387003,86.792197013789078,null,84.012954523264938,0,85.725874516288158,96.545852732711992,null],"PowerSust":[0.044108663319881412,0,0.036784396339524184,0.033513450281764667,0,0.03731700249101013,0.037497598725992842,0.033854875485683236,0.028487197242952841,0.028715553019687236,0.019494833729269488,0.019127056502216331,null,0.029049393202046032,0.035558072294488,0.042484858547240649,null,0.019830010459699312,0.025572516177090398,0.027004507585372255,0.029030830587380298,0.029880559277050755,null,0.024171970022278142,0.02623027988627152,0.025834723694347542,0.028997863779848206,null,0.0368692442783376,0.035963627808390658,0.034932685458536894,null,0.034964230127189695,0,0.035030858028054626,0.040391775794545517,null]}]],[[{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[47.5,48.5],"Lon":[12.5,14.5],"CAPEX":[10284.361187914465,null],"HeatSust":[170.33404823371092,null],"PowerSust":[0.076233951987499007,null]},{"Lat":[47.5,47.5,48.5],"Lon":[12.5,13.5,14.5],"CAPEX":[7191.7180593791236,10552.290899723113,null],"HeatSust":[170.33404823371092,112.94185355179111,null],"PowerSust":[0.076233951987499007,0.050835096945801739,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5],"CAPEX":[9216.9583014402,5582.3584178869341,8110.761827051203,9338.38191092297,null],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5],"CAPEX":[6622.9079463201,4096.9891394557153,5822.69794237936,6671.5918908511749,null],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5,47.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5,16.5,16.5],"CAPEX":[4836.8399985517508,3060.0175755960972,4271.7012860567065,4868.9427822019979,null,9435.0580693373668,10077.435223107283],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null,129.12043074306817,73.726036297402587],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null,0.053663704505203053,0.030444201000930773]},{"Lat":[47.5,47.5,47.5,48.5,46.5,48.5,47.5,48.5],"Lon":[11.5,12.5,13.5,13.5,14.5,14.5,16.5,16.5],"CAPEX":[3882.1862437103887,2487.6018890078426,3417.7990547403524,10794.665311135526,3883.627584371683,null,7407.6423840610587,7903.5449693400878],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,58.307318636722435,119.01655357087456,null,129.12043074306817,73.726036297402587],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.024178138368931335,0.051906195797978651,null,0.053663704505203053,0.030444201000930773]},{"Lat":[47.5,47.5,47.5,48.5,46.5,48.5,47.5,48.5],"Lon":[11.5,12.5,13.5,13.5,14.5,14.5,16.5,16.5],"CAPEX":[3407.6794744559638,2183.5505474585593,3000.0527938408059,9475.26911517295,3408.9446448210251,null,6502.23078482425,6937.5208392163613],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,58.307318636722435,119.01655357087456,null,129.12043074306817,73.726036297402587],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.024178138368931335,0.051906195797978651,null,0.053663704505203053,0.030444201000930773]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":46.5,"Lon":19.5,"CAPEX":11652.184971154917,"HeatSust":169.73950811352361,"PowerSust":0.07168335892990145},{"Lat":[46.5,46.5,47.5,47.5],"Lon":[17.5,19.5,20.5,21.5],"CAPEX":[10577.589853892037,8272.3137529664564,11649.339230031166,10321.07845902718],"HeatSust":[0,169.73950811352361,147.73230732086634,146.95903846318478],"PowerSust":[0,0.07168335892990145,0.061860740015383643,0.0594795750555533]},{"Lat":[46.5,47.5,46.5,47.5,46.5,47.5,46.5,47.5,48.5,47.5],"Lon":[17.5,17.5,18.5,18.5,19.5,19.5,20.5,20.5,20.5,21.5],"CAPEX":[7614.3569438132472,9486.9397070347131,9591.8588797040939,8997.1614014137667,5994.4553868933,11545.490448421468,9895.7978646197844,8366.0627919140916,11235.422489252322,7434.1278767307913],"HeatSust":[0,117.48227606124362,176.75691468619951,119.41242943514806,169.73950811352361,96.357511431450845,138.70041697840574,147.73230732086634,57.116344559444244,146.95903846318478],"PowerSust":[0,0.048217323934071452,0.072328806938598583,0.049411064788034427,0.07168335892990145,0.040343776500777528,0.056508601166202738,0.061860740015383643,0.022893741501233755,0.0594795750555533]},{"Lat":[46.5,47.5,46.5,47.5,46.5,47.5,46.5,47.5,48.5,47.5],"Lon":[17.5,17.5,18.5,18.5,19.5,19.5,20.5,20.5,20.5,21.5],"CAPEX":[6024.4178637412151,7455.6616960924857,7538.0734080615848,7075.4808023225023,4762.1796856604151,9029.3693588760179,7773.6736217697135,6586.5343036483837,8801.4919917190837,5883.8601813927917],"HeatSust":[0,117.48227606124362,176.75691468619951,119.41242943514806,169.73950811352361,96.357511431450845,138.70041697840574,147.73230732086634,57.116344559444244,146.95903846318478],"PowerSust":[0,0.048217323934071452,0.072328806938598583,0.049411064788034427,0.07168335892990145,0.040343776500777528,0.056508601166202738,0.061860740015383643,0.022893741501233755,0.0594795750555533]},{"Lat":[46.5,47.5,46.5,47.5,46.5,47.5,46.5,47.5,48.5,47.5],"Lon":[17.5,17.5,18.5,18.5,19.5,19.5,20.5,20.5,20.5,21.5],"CAPEX":[5288.073217269447,6544.3808553552817,6616.7196566652028,6210.6682133151908,4180.1142319710807,7925.7394416286015,6823.5232364087933,5781.4840260963756,7725.7147704753743,5164.6954349974549],"HeatSust":[0,117.48227606124362,176.75691468619951,119.41242943514806,169.73950811352361,96.357511431450845,138.70041697840574,147.73230732086634,57.116344559444244,146.95903846318478],"PowerSust":[0,0.048217323934071452,0.072328806938598583,0.049411064788034427,0.07168335892990145,0.040343776500777528,0.056508601166202738,0.061860740015383643,0.022893741501233755,0.0594795750555533]}]],[[{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,47.5,46.5],"Lon":[27.5,28.5,29.5],"CAPEX":[null,10977.684801015939,null],"HeatSust":[null,0,null],"PowerSust":[null,0,null]},{"Lat":[47.5,46.5,47.5,46.5],"Lon":[27.5,28.5,28.5,29.5],"CAPEX":[null,10444.522478258947,8592.02458388144,null],"HeatSust":[null,0,0,null],"PowerSust":[null,0,0,null]},{"Lat":[47.5,46.5,47.5,46.5],"Lon":[27.5,28.5,28.5,29.5],"CAPEX":[null,9167.9230813100785,7541.8498702758343,null],"HeatSust":[null,0,0,null],"PowerSust":[null,0,0,null]}]],[[{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[46.5,47.5,47.5,45.5,47.5,44.5,44.5,44.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5],"CAPEX":[9457.7042202875255,9328.8538181064523,9609.214974760358,null,null,null,null,null],"HeatSust":[136.12083607775932,128.65854262906151,156.20925880646371,null,null,null,null,null],"PowerSust":[0.059654606553251832,0.056383711161739306,0.067574971902121125,null,null,null,null,null]},{"Lat":[45.5,46.5,46.5,47.5,44.5,45.5,47.5,44.5,45.5,46.5,44.5,46.5,47.5,44.5,44.5,46.5,44.5],"Lon":[21.5,21.5,22.5,22.5,23.5,23.5,23.5,24.5,24.5,24.5,25.5,25.5,25.5,26.5,27.5,27.5,28.5],"CAPEX":[11105.86287922705,6825.8710722345841,10031.265325192955,6735.2654347439675,11030.236499581544,11608.177973670377,6932.3348918607244,9595.6433925037527,null,11200.698817454118,10562.826405830048,10413.03536069678,null,null,null,8958.5111448620282,null],"HeatSust":[135.58166125525847,136.12083607775932,123.50435162973938,128.65854262906151,45.649227187013629,0,156.20925880646371,66.936010540986288,null,42.793832812575744,0,106.43102525886405,null,null,null,93.885872427104644,null],"PowerSust":[0.057122421516024285,0.059654606553251832,0.0522809649799578,0.056383711161739306,0.019157587919620446,0,0.067574971902121125,0.028911860840880266,null,0.017461934629654834,0,0.044403867956099373,null,null,null,0.03966350528841326,null]},{"Lat":[45.5,46.5,45.5,46.5,47.5,44.5,45.5,47.5,44.5,45.5,46.5,47.5,44.5,45.5,46.5,47.5,44.5,45.5,44.5,45.5,46.5,44.5],"Lon":[21.5,21.5,22.5,22.5,22.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,26.5,26.5,27.5,27.5,27.5,28.5],"CAPEX":[8690.673615031199,5390.7340809431107,10735.975369904396,7860.1503719528819,5320.0983200662413,8631.77663272468,9078.6312754468763,5473.1238666201625,7521.5335661362378,null,8771.19949023297,9540.7826879711265,8270.4337572311251,11568.486155484752,8154.5156158075379,null,null,10991.608465707031,null,10430.235703502627,7037.4548568763139,null],"HeatSust":[135.58166125525847,136.12083607775932,113.18215518289681,123.50435162973938,128.65854262906151,45.649227187013629,0,156.20925880646371,66.936010540986288,null,42.793832812575744,65.42348205026687,0,65.206217072182113,106.43102525886405,null,null,67.398032977386791,null,74.8783018629848,93.885872427104644,null],"PowerSust":[0.057122421516024285,0.059654606553251832,0.0469644605225425,0.0522809649799578,0.056383711161739306,0.019157587919620446,0,0.067574971902121125,0.028911860840880266,null,0.017461934629654834,0.026793083268461703,0,0.026810211155738842,0.044403867956099373,null,null,0.027056722683618067,null,0.030339190024202243,0.03966350528841326,null]},{"Lat":[45.5,46.5,45.5,46.5,47.5,44.5,45.5,47.5,44.5,45.5,46.5,47.5,44.5,45.5,46.5,47.5,44.5,45.5,44.5,45.5,46.5,44.5],"Lon":[21.5,21.5,22.5,22.5,22.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,26.5,26.5,27.5,27.5,27.5,28.5],"CAPEX":[7628.4413570105653,4731.8425048879417,9423.7526511150063,6899.430219772682,4669.8403191626539,7576.7431578222922,7968.9802372609165,4804.1620598838872,6602.2014248490286,null,7699.1248211365437,8374.6444129818028,7259.5660254641507,10154.508400116374,7157.8161746201285,null,null,9648.1405601107672,null,9155.3825317235769,6177.290053263313,null],"HeatSust":[135.58166125525847,136.12083607775932,113.18215518289681,123.50435162973938,128.65854262906151,45.649227187013629,0,156.20925880646371,66.936010540986288,null,42.793832812575744,65.42348205026687,0,65.206217072182113,106.43102525886405,null,null,67.398032977386791,null,74.8783018629848,93.885872427104644,null],"PowerSust":[0.057122421516024285,0.059654606553251832,0.0469644605225425,0.0522809649799578,0.056383711161739306,0.019157587919620446,0,0.067574971902121125,0.028911860840880266,null,0.017461934629654834,0.026793083268461703,0,0.026810211155738842,0.044403867956099373,null,null,0.027056722683618067,null,0.030339190024202243,0.03966350528841326,null]}]],[[{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,55.5,54.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5],"CAPEX":[10147.628222089636,null,null,null,null,null],"HeatSust":[120.69496566113145,null,null,null,null,null],"PowerSust":[0.048576552485773777,null,null,null,null,null]},{"Lat":[55.5,55.5,54.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,24.5,25.5,26.5],"CAPEX":[7312.2152552813659,null,null,null,null,null],"HeatSust":[120.69496566113145,null,null,null,null,null],"PowerSust":[0.048576552485773777,null,null,null,null,null]},{"Lat":[55.5,55.5,54.5,55.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,23.5,24.5,25.5,26.5],"CAPEX":[5788.0014744609452,null,null,10550.343549853071,null,null,null],"HeatSust":[120.69496566113145,null,null,60.313483331810509,null,null,null],"PowerSust":[0.048576552485773777,null,null,0.024250287187102048,null,null,null]},{"Lat":[55.5,55.5,54.5,55.5,54.5,54.5,55.5],"Lon":[21.5,22.5,23.5,23.5,24.5,25.5,26.5],"CAPEX":[5080.553220391248,null,null,9260.809993734867,null,null,null],"HeatSust":[120.69496566113145,null,null,60.313483331810509,null,null,null],"PowerSust":[0.048576552485773777,null,null,0.024250287187102048,null,null,null]}]],[[{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,56.5,57.5,56.5],"Lon":[22.5,23.5,24.5,27.5],"CAPEX":[null,10599.807827750961,null,null],"HeatSust":[null,49.794609298258443,null,null],"PowerSust":[null,0.020211053278707564,null,null]},{"Lat":[56.5,56.5,57.5,56.5],"Lon":[22.5,23.5,24.5,27.5],"CAPEX":[null,8307.5072837899279,null,null],"HeatSust":[null,49.794609298258443,null,null],"PowerSust":[null,0.020211053278707564,null,null]},{"Lat":[56.5,56.5,57.5,56.5,56.5],"Lon":[22.5,23.5,24.5,25.5,27.5],"CAPEX":[null,7292.108177635444,null,10335.253105301892,null],"HeatSust":[null,49.794609298258443,null,43.70780132681476,null],"PowerSust":[null,0.020211053278707564,null,0.017870154194403059,null]}]],[[{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5,59.5],"Lon":[24.5,26.5,26.5],"CAPEX":[null,null,9451.9836867456961],"HeatSust":[null,null,49.623597719434642],"PowerSust":[null,null,0.020665048650144294]},{"Lat":[58.5,59.5,57.5,59.5],"Lon":[24.5,25.5,26.5,26.5],"CAPEX":[null,11683.684597307802,null,7418.16331084629],"HeatSust":[null,34.286605580975305,null,49.623597719434642],"PowerSust":[null,0.01418698652024401,null,0.020665048650144294]},{"Lat":[58.5,59.5,57.5,59.5],"Lon":[24.5,25.5,26.5,26.5],"CAPEX":[null,10255.626517858847,null,6511.4657735670944],"HeatSust":[null,34.286605580975305,null,49.623597719434642],"PowerSust":[null,0.01418698652024401,null,0.020665048650144294]}]],[[{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[50.5,50.5],"Lon":[7.5,8.5],"CAPEX":[10674.198909229877,null],"HeatSust":[85.160392178883427,null],"PowerSust":[0.038451142758912836,null]},{"Lat":[50.5,50.5,49.5,50.5],"Lon":[6.5,7.5,8.5,8.5],"CAPEX":[10970.410908739848,7453.4401161755577,9627.1969157829244,null],"HeatSust":[86.695209314826442,85.160392178883427,133.14482427635787,null],"PowerSust":[0.035816225635009379,0.038451142758912836,0.056642008731078108,null]},{"Lat":[50.5,50.5,49.5,50.5],"Lon":[6.5,7.5,8.5,8.5],"CAPEX":[8427.3149318411633,5779.5402816429141,7416.2810368171477,null],"HeatSust":[86.695209314826442,85.160392178883427,133.14482427635787,null],"PowerSust":[0.035816225635009379,0.038451142758912836,0.056642008731078108,null]},{"Lat":[50.5,50.5,52.5,49.5,50.5,47.5,51.5],"Lon":[6.5,7.5,7.5,8.5,8.5,10.5,10.5],"CAPEX":[6076.2944778908823,4235.012326865859,9806.1129235760163,5374.7124580982154,null,8426.9352854575445,9382.6242768859775],"HeatSust":[86.695209314826442,85.160392178883427,0,133.14482427635787,null,131.08951546311761,0],"PowerSust":[0.035816225635009379,0.038451142758912836,0,0.056642008731078108,null,0.057943437064028276,0]},{"Lat":[49.5,50.5,51.5,49.5,50.5,52.5,53.5,48.5,49.5,50.5,51.5,52.5,53.5,49.5,52.5,47.5,48.5,49.5,51.5,52.5,48.5,52.5,53.5,48.5,50.5,52.5,53.5,52.5,51.5],"Lon":[6.5,6.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,13.5,14.5],"CAPEX":[9232.2688461288944,4452.6787439064356,10455.218738924465,10554.836668067981,3157.326447554572,7070.7170513224046,10133.757538633259,11510.625760710562,3959.4247952619012,null,11747.586591670532,11332.984419784849,10656.07408977695,8525.0960420171268,9886.8824103211427,6101.0712476249428,10657.030268125507,11343.973317879947,6773.0138445631746,9847.5123677094343,9303.7155410132127,10930.763347767417,9149.3618961108386,11032.839802934581,9708.19377366459,10508.618954715866,10576.595818672595,10099.293657789176,9933.9813978509446],"HeatSust":[107.40755367344758,86.695209314826442,101.10075133147673,77.842851286292813,85.160392178883427,0,0,150.70293915815816,133.14482427635787,null,99.751137997577686,98.639884499591588,0,0,64.788589621184457,131.08951546311761,103.20129976459971,0,0,97.7947279996018,92.978458662845071,89.570800445766437,81.542955371913578,0,109.50387903882454,90.3749945130452,86.495513703832245,77.1617948925391,80.94531498822731],"PowerSust":[0.044999227730391826,0.035816225635009379,0.042779495262267805,0.031323068727910429,0.038451142758912836,0,0,0.062283262212011234,0.056642008731078108,null,0.041450782476005685,0.041051331170865749,0,0,0.027789605889037148,0.057943437064028276,0.043269644910171018,0,0,0.039771849532480155,0.038887745792438311,0.036499484598581641,0.034377186271151945,0,0.045209179826616354,0.036385244325907611,0.0354169350829264,0.03285222134941089,0.033548610860872068]},{"Lat":[49.5,50.5,51.5,49.5,50.5,51.5,52.5,53.5,48.5,49.5,50.5,51.5,52.5,53.5,48.5,49.5,51.5,52.5,53.5,54.5,47.5,48.5,49.5,51.5,52.5,53.5,48.5,51.5,52.5,53.5,48.5,50.5,51.5,52.5,53.5,52.5,53.5,51.5],"Lon":[6.5,6.5,6.5,7.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,12.5,13.5,13.5,14.5],"CAPEX":[7250.3928836772338,3582.0455454791181,8188.8363043108693,8282.8791981672184,2564.5911975621366,9528.8973368608658,5580.4655860033918,7949.3649869161727,9006.3676029671915,3195.5463704583576,null,9185.9482699000473,8868.07134866916,8353.2458999090413,9897.2183979333367,6703.4016945005887,11319.079542109503,7747.3296795252509,11506.641808347147,9562.4021794216478,4826.8620965422542,8344.3920303885025,8874.134169780089,5349.0166206766144,7734.957624981399,10052.658436338845,7305.56178528512,11022.354434395338,8566.6313228353119,7185.5753227459963,8645.3555789825587,7618.8226948446681,9277.7880594332437,8247.92187219624,8292.1080759164415,7912.5638434302537,10815.081813368639,7793.3660005470956],"HeatSust":[107.40755367344758,86.695209314826442,101.10075133147673,77.842851286292813,85.160392178883427,0,0,0,150.70293915815816,133.14482427635787,null,99.751137997577686,98.639884499591588,0,118.08787946752166,0,101.78274683725695,64.788589621184457,58.126709108870315,69.0351944316705,131.08951546311761,103.20129976459971,0,0,97.7947279996018,74.243495099434739,92.978458662845071,0,89.570800445766437,81.542955371913578,0,109.50387903882454,91.714941298370448,90.3749945130452,86.495513703832245,77.1617948925391,0,80.94531498822731],"PowerSust":[0.044999227730391826,0.035816225635009379,0.042779495262267805,0.031323068727910429,0.038451142758912836,0,0,0,0.062283262212011234,0.056642008731078108,null,0.041450782476005685,0.041051331170865749,0,0.047973031550091152,0,0.04200129571430667,0.027789605889037148,0.023231066521822961,0.027674621565087376,0.057943437064028276,0.043269644910171018,0,0,0.039771849532480155,0.030225890892266769,0.038887745792438311,0,0.036499484598581641,0.034377186271151945,0,0.045209179826616354,0.037840352962308962,0.036385244325907611,0.0354169350829264,0.03285222134941089,0,0.033548610860872068]},{"Lat":[49.5,50.5,51.5,49.5,50.5,51.5,52.5,53.5,48.5,49.5,50.5,51.5,52.5,53.5,48.5,49.5,50.5,51.5,52.5,53.5,54.5,47.5,48.5,49.5,51.5,52.5,53.5,48.5,49.5,51.5,52.5,53.5,48.5,50.5,51.5,52.5,53.5,51.5,52.5,53.5,51.5],"Lon":[6.5,6.5,6.5,7.5,7.5,7.5,7.5,7.5,8.5,8.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,9.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,12.5,13.5,13.5,13.5,14.5],"CAPEX":[6364.2013701627147,3144.2239798957489,7187.941959015835,7270.4903013659514,2251.1297077675408,8364.2117689810766,4898.3837563539246,6977.74042777067,7905.5491141774291,2804.9653192000619,null,8063.1802308472279,7784.1563530936264,7332.2563141633191,8687.514166402103,5884.0671027546605,11139.502662360379,9935.5859312190223,6800.3992269906075,10100.223082740531,8393.62142558223,4236.89072595755,7324.4846237959309,7789.478135656349,4695.2240316483094,6789.5393677053307,8823.95528363115,6412.6271596111346,11494.991867198272,9675.1285508572564,7519.56034344116,6307.3062450698562,7588.6623944438406,6687.5992255147075,8143.7947470203408,7239.805693592134,7278.59116394802,11402.986723028114,6945.4373661912205,9493.19017594449,6840.8086809367605],"HeatSust":[107.40755367344758,86.695209314826442,101.10075133147673,77.842851286292813,85.160392178883427,0,0,0,150.70293915815816,133.14482427635787,null,99.751137997577686,98.639884499591588,0,118.08787946752166,0,77.609207396282784,101.78274683725695,64.788589621184457,58.126709108870315,69.0351944316705,131.08951546311761,103.20129976459971,0,0,97.7947279996018,74.243495099434739,92.978458662845071,0,0,89.570800445766437,81.542955371913578,0,109.50387903882454,91.714941298370448,90.3749945130452,86.495513703832245,86.349954790329548,77.1617948925391,0,80.94531498822731],"PowerSust":[0.044999227730391826,0.035816225635009379,0.042779495262267805,0.031323068727910429,0.038451142758912836,0,0,0,0.062283262212011234,0.056642008731078108,null,0.041450782476005685,0.041051331170865749,0,0.047973031550091152,0,0.031538723359407682,0.04200129571430667,0.027789605889037148,0.023231066521822961,0.027674621565087376,0.057943437064028276,0.043269644910171018,0,0,0.039771849532480155,0.030225890892266769,0.038887745792438311,0,0,0.036499484598581641,0.034377186271151945,0,0.045209179826616354,0.037840352962308962,0.036385244325907611,0.0354169350829264,0.034926209821381712,0.03285222134941089,0,0.033548610860872068]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[42.5,41.5],"Lon":[23.5,25.5],"CAPEX":[11608.537501382931,9937.0769675636948],"HeatSust":[112.52612965452607,0],"PowerSust":[0.046835472549953079,0]},{"Lat":[41.5,42.5,41.5,43.5,42.5,43.5,42.5],"Lon":[23.5,23.5,25.5,25.5,26.5,26.5,27.5],"CAPEX":[10787.200309658556,8337.3003267221266,7162.8744771084539,11183.299484489822,10610.689336601237,10374.534689697606,9932.2527027166216],"HeatSust":[0,112.52612965452607,0,100.82385902167488,0,112.03960418254539,86.216045722389],"PowerSust":[0,0.046835472549953079,0,0.041208125376613579,0,0.046304080327081491,0.036096246921925805]},{"Lat":[41.5,42.5,43.5,42.5,43.5,41.5,42.5,43.5,42.5,43.5,42.5,43.5],"Lon":[23.5,23.5,23.5,24.5,24.5,25.5,25.5,25.5,26.5,26.5,27.5,27.5],"CAPEX":[8445.8992068897587,6562.9876559017912,11206.261483846192,9354.2470701392049,11207.957888245131,5653.057556369703,9403.39004885627,8763.214309372368,8318.3944436773,8136.2874523318324,7792.8954633091125,9725.3679745603131],"HeatSust":[0,112.52612965452607,121.30783364161465,69.9621834666122,114.98354998913186,0,0,100.82385902167488,0,112.03960418254539,86.216045722389,93.695351874543377],"PowerSust":[0,0.046835472549953079,0.048603157416210033,0.028982579401098971,0.046247326786249737,0,0,0.041208125376613579,0,0.046304080327081491,0.036096246921925805,0.038905544758263792]},{"Lat":[41.5,42.5,43.5,42.5,43.5,41.5,42.5,43.5,42.5,43.5,42.5,43.5],"Lon":[23.5,23.5,23.5,24.5,24.5,25.5,25.5,25.5,26.5,26.5,27.5,27.5],"CAPEX":[7413.5849142401921,5760.8154071324325,9836.5572506360877,8210.9084260309828,9838.04630914275,4962.103050560474,8254.0448211895327,7692.11564249073,7301.6646360210825,7141.815979206056,6840.39565590726,8536.6684512194315],"HeatSust":[0,112.52612965452607,121.30783364161465,69.9621834666122,114.98354998913186,0,0,100.82385902167488,0,112.03960418254539,86.216045722389,93.695351874543377],"PowerSust":[0,0.046835472549953079,0.048603157416210033,0.028982579401098971,0.046247326786249737,0,0,0.041208125376613579,0,0.046304080327081491,0.036096246921925805,0.038905544758263792]}]],[[{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5,39.5],"Lon":[20.5,21.5,22.5,22.5,22.5],"CAPEX":[null,null,null,null,9934.9484917555565],"HeatSust":[null,null,null,null,228.59334161849839],"PowerSust":[null,null,null,null,0.10097806161142672]},{"Lat":[39.5,38.5,36.5,37.5,39.5],"Lon":[20.5,21.5,22.5,22.5,22.5],"CAPEX":[null,null,null,null,7087.5153048527482],"HeatSust":[null,null,null,null,228.59334161849839],"PowerSust":[null,null,null,null,0.10097806161142672]},{"Lat":[39.5,38.5,36.5,37.5,39.5,40.5,41.5],"Lon":[20.5,21.5,22.5,22.5,22.5,23.5,24.5],"CAPEX":[null,null,null,null,5161.7085289363167,10411.015035741935,11573.492473908937],"HeatSust":[null,null,null,null,228.59334161849839,0,0],"PowerSust":[null,null,null,null,0.10097806161142672,0,0]},{"Lat":[39.5,38.5,39.5,36.5,37.5,39.5,40.5,41.5,41.5],"Lon":[20.5,21.5,21.5,22.5,22.5,22.5,23.5,24.5,26.5],"CAPEX":[null,null,10439.146333799605,null,null,4114.2672556657189,8156.3231110663492,9054.28447791238,9641.829968012622],"HeatSust":[null,null,0,null,null,228.59334161849839,0,0,0],"PowerSust":[null,null,0,null,null,0.10097806161142672,0,0,0]},{"Lat":[39.5,38.5,39.5,36.5,37.5,38.5,39.5,40.5,41.5,41.5],"Lon":[20.5,21.5,21.5,22.5,22.5,22.5,22.5,23.5,24.5,26.5],"CAPEX":[null,null,9163.2040451856556,null,null,10469.559178864372,3611.3939928236578,7159.4027457187212,7947.6092681680657,8463.3410185876946],"HeatSust":[null,null,0,null,null,0,228.59334161849839,0,0,0],"PowerSust":[null,null,0,null,null,0,0.10097806161142672,0,0,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]}]],[[{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5,18.5],"CAPEX":[null,null,null,null,null,11209.431865397128],"HeatSust":[null,null,null,null,null,133.60721363814409],"PowerSust":[null,null,null,null,null,0.0562371934985082]},{"Lat":[45.5,44.5,45.5,43.5,45.5,45.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5,17.5,18.5],"CAPEX":[null,null,null,null,null,10839.828482007988,8770.7201587181444],"HeatSust":[null,null,null,null,null,120.73829503176549,133.60721363814409],"PowerSust":[null,null,null,null,null,0.048919737656883552,0.0562371934985082]},{"Lat":[45.5,44.5,45.5,43.5,45.5,45.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5,17.5,18.5],"CAPEX":[null,null,null,null,null,9514.9121412211662,7698.7040767255385],"HeatSust":[null,null,null,null,null,120.73829503176549,133.60721363814409],"PowerSust":[null,null,null,null,null,0.048919737656883552,0.0562371934985082]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":47.5,"Lon":8.5,"CAPEX":8597.794623133108,"HeatSust":169.87753041795551,"PowerSust":0.080780089298402052},{"Lat":[47.5,46.5,47.5],"Lon":[8.5,9.5,9.5],"CAPEX":[6066.0848131360763,11046.349319597779,9652.419258996626],"HeatSust":[169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[47.5,46.5,47.5],"Lon":[8.5,9.5,9.5],"CAPEX":[4734.4333583167208,8482.7061398624173,7435.1974323365821],"HeatSust":[169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[46.5,47.5,46.5,47.5],"Lon":[6.5,8.5,9.5,9.5],"CAPEX":[11109.303691262608,3507.6960772436464,6079.3244292932832,5386.1537890942209],"HeatSust":[112.77574841739151,169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.047458032175485478,0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[46.5,46.5,47.5,46.5,47.5,46.5,47.5],"Lon":[6.5,7.5,7.5,8.5,8.5,9.5,9.5],"CAPEX":[7986.4732381535641,10631.67565955188,9138.79622874106,10498.81249552764,2644.7361915271513,4452.2250681862279,3967.3688587152756],"HeatSust":[112.77574841739151,130.73931811291797,146.46527019518641,92.718848502459053,169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.047458032175485478,0.054186924557491682,0.061381246722722348,0.038312398527048382,0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[46.5,46.5,47.5,46.5,47.5,46.5,47.5],"Lon":[6.5,7.5,7.5,8.5,8.5,9.5,9.5],"CAPEX":[6290.3879449655351,8321.2377228034638,7178.7387810088549,8219.57857845825,2161.8554200392587,3558.2171286321272,3200.6475440754843],"HeatSust":[112.77574841739151,130.73931811291797,146.46527019518641,92.718848502459053,169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.047458032175485478,0.054186924557491682,0.061381246722722348,0.038312398527048382,0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[46.5,46.5,47.5,46.5,47.5,46.5,47.5],"Lon":[6.5,7.5,7.5,8.5,8.5,9.5,9.5],"CAPEX":[5521.5346561882734,7304.1603905547745,6301.3053111909976,7214.926706792904,1897.6189907283413,3123.3080315355119,2809.4429932577868],"HeatSust":[112.77574841739151,130.73931811291797,146.46527019518641,92.718848502459053,169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.047458032175485478,0.054186924557491682,0.061381246722722348,0.038312398527048382,0.080780089298402052,0.044228996035661605,0.059903832184067439]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":50.5,"Lon":5.5,"CAPEX":9965.1946257087657,"HeatSust":0,"PowerSust":0},{"Lat":[50.5,50.5,50.5],"Lon":[3.5,4.5,5.5],"CAPEX":[11193.96048265579,10608.749707637415,7819.0398448806673],"HeatSust":[0,0,0],"PowerSust":[0,0,0]},{"Lat":[50.5,50.5,50.5],"Lon":[3.5,4.5,5.5],"CAPEX":[9825.7597600881527,9312.0773602570152,6863.3444962927688],"HeatSust":[0,0,0],"PowerSust":[0,0,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[52.5,52.5],"Lon":[4.5,6.5],"CAPEX":[10987.124691396373,10129.839228775018],"HeatSust":[0,0],"PowerSust":[0,0]},{"Lat":[51.5,52.5,51.5,52.5,52.5],"Lon":[4.5,4.5,5.5,5.5,6.5],"CAPEX":[9674.01225884504,7900.7143863669262,11031.105755593388,9947.9744367350158,7298.2528686026762],"HeatSust":[85.51306062492732,0,90.7497560552032,0,0],"PowerSust":[0.036907359580420282,0,0.036398078059291308,0,0]},{"Lat":[51.5,52.5,51.5,52.5,52.5],"Lon":[4.5,4.5,5.5,5.5,6.5],"CAPEX":[7583.8355695006567,6224.9427785032112,8653.7653651954934,7813.4649436036489,5757.225579846965],"HeatSust":[85.51306062492732,0,90.7497560552032,0,0],"PowerSust":[0.036907359580420282,0,0.036398078059291308,0,0]},{"Lat":[51.5,52.5,51.5,52.5,52.5],"Lon":[4.5,4.5,5.5,5.5,6.5],"CAPEX":[6656.8884606465454,5464.0886357101663,7596.0442803357946,6858.4509967383374,5053.5389614658843],"HeatSust":[85.51306062492732,0,90.7497560552032,0,0],"PowerSust":[0.036907359580420282,0,0.036398078059291308,0,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[38.5,41.5,37.5,41.5],"Lon":[-8.5,-8.5,-7.5,-6.5],"CAPEX":[9670.022498867429,10647.679185088495,11679.699319305228,9453.3278512839224],"HeatSust":[0,111.05779867135188,0,147.44345754470169],"PowerSust":[0,0.046194859964748383,0,0.062002176552010214]},{"Lat":[38.5,40.5,41.5,37.5,38.5,39.5,40.5,41.5,41.5],"Lon":[-8.5,-8.5,-8.5,-7.5,-7.5,-7.5,-7.5,-7.5,-6.5],"CAPEX":[7584.3527258449085,11032.218885404563,8350.600213521544,9153.7080978113972,9199.0908901322782,10827.376422018684,11105.177727889979,9754.94682383127,7424.5379521950326],"HeatSust":[0,96.696733746653678,111.05779867135188,0,0,0,0,93.737039617472121,147.44345754470169],"PowerSust":[0,0.040949387968730828,0.046194859964748383,0,0,0,0,0.038829802323872335,0.062002176552010214]},{"Lat":[38.5,39.5,40.5,41.5,37.5,38.5,39.5,40.5,41.5,41.5],"Lon":[-8.5,-8.5,-8.5,-8.5,-7.5,-7.5,-7.5,-7.5,-7.5,-6.5],"CAPEX":[6657.3424066833295,10493.310573627914,9683.7873026843663,7329.9340012621469,8034.8806682341719,8074.7164721284134,9503.982055291106,9747.828627445746,8562.631975690203,6517.0612636125088],"HeatSust":[0,0,96.696733746653678,111.05779867135188,0,0,0,0,93.737039617472121,147.44345754470169],"PowerSust":[0,0,0.040949387968730828,0.046194859964748383,0,0,0,0,0.038829802323872335,0.062002176552010214]}]],[[{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[42.5,36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-7.5,-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[9374.9665406228123,null,null,null,null,null,null,null],"HeatSust":[238.05002225341866,null,null,null,null,null,null,null],"PowerSust":[0.10539271669868776,null,null,null,null,null,null,null]},{"Lat":[42.5,42.5,36.5,37.5,43.5,37.5,37.5,37.5,37.5,38.5,42.5],"Lon":[-8.5,-7.5,-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5,-0.5,-0.5],"CAPEX":[9982.5104476498054,6699.7048136478088,null,null,null,null,null,null,null,11445.504309898211,9887.3650865801719],"HeatSust":[209.70173095348832,238.05002225341866,null,null,null,null,null,null,null,0,0],"PowerSust":[0.091729557904964037,0.10539271669868776,null,null,null,null,null,null,null,0,0]},{"Lat":[42.5,42.5,37.5,38.5,36.5,37.5,40.5,43.5,37.5,38.5,40.5,37.5,40.5,37.5,38.5,42.5,37.5,40.5,38.5,39.5,41.5,42.5,40.5,41.5],"Lon":[-8.5,-7.5,-6.5,-6.5,-5.5,-5.5,-5.5,-5.5,-4.5,-4.5,-4.5,-3.5,-3.5,-2.5,-2.5,-2.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5],"CAPEX":[7194.8959281423558,4888.9595953924454,10259.509085418813,11452.369299907306,null,null,11340.001940626466,null,null,9699.55437812822,9762.3205222927263,null,11388.098021821035,null,11425.359871222585,11568.237459062,null,10950.73515994843,8224.2450176382481,11404.440345535862,9962.29397501381,7127.9008110770419,10858.068445457393,9499.9652494755246],"HeatSust":[209.70173095348832,238.05002225341866,0,0,null,null,111.45664227461478,null,null,0,121.55026319856707,null,0,null,0,0,null,0,0,0,0,0,124.1675102315527,0],"PowerSust":[0.091729557904964037,0.10539271669868776,0,0,null,null,0.045635976336069868,null,null,0,0.0509556493042746,null,0,null,0,0,null,0,0,0,0,0,0.050784404840660706,0]},{"Lat":[42.5,42.5,43.5,37.5,38.5,39.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,37.5,38.5,39.5,40.5,41.5,42.5,37.5,38.5,39.5,40.5,42.5,37.5,38.5,41.5,42.5,37.5,38.5,40.5,41.5,42.5,38.5,39.5,41.5,42.5,40.5,41.5,42.5,41.5],"Lon":[-8.5,-7.5,-7.5,-6.5,-6.5,-6.5,-5.5,-5.5,-5.5,-5.5,-5.5,-5.5,-5.5,-5.5,-4.5,-4.5,-4.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-3.5,-3.5,-2.5,-2.5,-2.5,-2.5,-1.5,-1.5,-1.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,0.5,1.5],"CAPEX":[5678.8178592984777,3901.1047811787112,9405.2182831487735,8049.7121557451537,8975.3387366834831,9776.6743061888628,null,null,9367.6443736488618,10929.56934073396,8885.8208908176985,10984.772208949515,10604.387452581346,null,null,7615.7999290866028,11048.336929400639,7662.4406099062935,9949.14916086861,9249.2515234877847,null,9884.1055080702336,11601.927566188473,8921.8120359453551,11323.11306401814,null,8952.6277527143557,10538.333666084698,9046.5682990418718,null,9689.9665222198328,8571.1604272714139,9874.3283169866972,9388.23164631459,6503.1543664977225,8924.8078311984154,7808.3514897274044,5625.56764113722,8522.63039746536,7459.3872703005336,9427.9630729523014,11376.00019494488],"HeatSust":[209.70173095348832,238.05002225341866,120.21963738190202,0,0,0,null,null,0,0,111.45664227461478,93.561413939067208,46.862528026347256,null,null,0,0,121.55026319856707,83.38281645705905,0,null,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,124.1675102315527,0,90.279405817365145,98.79881334542452],"PowerSust":[0.091729557904964037,0.10539271669868776,0.050159359572352347,0,0,0,null,null,0,0,0.045635976336069868,0.037986083698256026,0.019184050306765104,null,null,0,0,0.0509556493042746,0.034707692399630133,0,null,0,0,0,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0.050784404840660706,0,0.037348289502414138,0.040077042844987025]},{"Lat":[42.5,42.5,43.5,37.5,38.5,39.5,42.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,37.5,38.5,39.5,40.5,41.5,42.5,37.5,38.5,39.5,40.5,41.5,42.5,37.5,38.5,41.5,42.5,37.5,38.5,39.5,40.5,41.5,42.5,38.5,39.5,41.5,42.5,40.5,41.5,42.5,41.5],"Lon":[-8.5,-7.5,-7.5,-6.5,-6.5,-6.5,-6.5,-5.5,-5.5,-5.5,-5.5,-5.5,-5.5,-5.5,-5.5,-4.5,-4.5,-4.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-3.5,-3.5,-3.5,-2.5,-2.5,-2.5,-2.5,-1.5,-1.5,-1.5,-1.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,0.5,1.5],"CAPEX":[4984.7147569638882,3424.2856617356115,8255.6495964584046,7065.8224944392359,7878.3128034718447,8581.703779826732,10809.780019728852,null,null,8222.6682214959437,9593.684271949307,7799.7364274804668,9642.1398763794168,9308.2482891914533,null,null,6684.9459224057873,9697.9352915354411,6725.8858672529495,8733.0976041452232,8118.7461373687656,null,8676.0040216454763,10183.862377926311,7831.3284941187912,11689.960529408232,9939.12644910121,null,7858.3777078690318,9250.2680382904546,7940.836212289857,null,8505.5940011715938,10322.192382931067,7523.5358704395294,8667.4218642522846,8240.7391799956022,5708.295342562692,7833.9581232382234,6853.9625433969022,4937.9731366378646,7480.9375054762959,6547.6510649645952,8275.61436592042,9985.5493611430775],"HeatSust":[209.70173095348832,238.05002225341866,120.21963738190202,0,0,0,113.00131155981234,null,null,0,0,111.45664227461478,93.561413939067208,46.862528026347256,null,null,0,0,121.55026319856707,83.38281645705905,0,null,0,0,0,53.840825524359126,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,124.1675102315527,0,90.279405817365145,98.79881334542452],"PowerSust":[0.091729557904964037,0.10539271669868776,0.050159359572352347,0,0,0,0.046122293372931333,null,null,0,0,0.045635976336069868,0.037986083698256026,0.019184050306765104,null,null,0,0,0.0509556493042746,0.034707692399630133,0,null,0,0,0,0.021985533886665742,0,null,0,0,0,null,0,0,0,0,0,0,0,0,0,0.050784404840660706,0,0.037348289502414138,0.040077042844987025]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[53.5,54.5,53.5],"Lon":[-7.5,-7.5,-6.5],"CAPEX":[10379.634826034728,9404.2339797577333,11570.655513182299],"HeatSust":[89.322614714798576,111.15828309636834,0],"PowerSust":[0.036414706931581324,0.046018052925876164,0]},{"Lat":[53.5,54.5,53.5],"Lon":[-7.5,-7.5,-6.5],"CAPEX":[9110.9664319508829,8254.785601211468,10156.412604406074],"HeatSust":[89.322614714798576,111.15828309636834,0],"PowerSust":[0.036414706931581324,0.046018052925876164,0]}]],[[{"Lat":[43.5,46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[6747.4118060916517,null,null,null,null,null,null],"HeatSust":[0,null,null,null,null,null,null],"PowerSust":[0,null,null,null,null,null,null]},{"Lat":[43.5,46.5,44.5,41.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,12.5,13.5,13.5],"CAPEX":[4585.4251261657146,null,null,11093.15120495321,null,null,null,null],"HeatSust":[0,null,null,0,null,null,null,null],"PowerSust":[0,null,null,0,null,null,null,null]},{"Lat":[39.5,45.5,43.5,46.5,42.5,44.5,41.5,43.5,46.5,42.5,43.5,46.5],"Lon":[8.5,8.5,10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5],"CAPEX":[10700.23004269089,10858.391918929883,3420.5747406951505,null,9250.1036308859148,null,7737.7530486165479,null,null,null,null,11685.635894802452],"HeatSust":[0,89.742885374182435,0,null,0,null,0,null,null,null,null,70.146815275442492],"PowerSust":[0,0.040497523805045836,0,null,0,null,0,null,null,null,null,0.028272457577980355]},{"Lat":[39.5,45.5,43.5,46.5,42.5,44.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5],"Lon":[8.5,8.5,10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5],"CAPEX":[8222.484768075361,8341.2573869113421,2743.616406659502,null,7132.5147235795166,null,5993.8384687630978,null,null,10346.9966334115,null,null,8965.60223263103],"HeatSust":[0,89.742885374182435,0,null,0,null,0,null,null,0,null,null,70.146815275442492],"PowerSust":[0,0.040497523805045836,0,null,0,null,0,null,null,0,null,null,0.028272457577980355]},{"Lat":[44.5,39.5,40.5,45.5,43.5,45.5,46.5,42.5,43.5,44.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5,41.5],"Lon":[7.5,8.5,8.5,8.5,10.5,10.5,10.5,11.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,15.5],"CAPEX":[11582.413871521809,5904.2260304090032,11420.44743702469,5982.3492394516807,2145.244771656292,9910.45231333452,null,5179.93063107959,9489.5151084500321,null,4386.9633580469908,null,null,7416.9397736734591,null,null,6448.949182493905,8982.6874387409516],"HeatSust":[124.56394682022697,0,70.44204901842015,89.742885374182435,0,68.825116586857391,null,0,0,null,0,null,null,0,null,null,70.146815275442492,134.1914067053257],"PowerSust":[0.052737591010295015,0,0.028894711799159371,0.040497523805045836,0,0.029773498619766983,null,0,0,null,0,null,null,0,null,null,0.028272457577980355,0.0601787401685285]},{"Lat":[44.5,39.5,40.5,44.5,45.5,39.5,40.5,45.5,43.5,44.5,45.5,46.5,42.5,43.5,44.5,45.5,41.5,43.5,45.5,46.5,37.5,42.5,43.5,46.5,41.5,40.5,41.5],"Lon":[7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,14.5,15.5,15.5],"CAPEX":[8318.3101828132767,4329.5617138154312,8206.5964884721416,9385.6482786631186,4384.0839437294626,9016.88180752711,9701.5538728128868,11073.171475657024,1687.50949603198,9916.2484721189085,7143.905764193486,null,3822.584844802584,6849.9083706390456,null,10605.17424865771,3264.5917252951413,null,11706.859965584857,null,5395.1530093377942,null,null,4714.58802360664,9600.1765048762663,10841.314336166504,6492.0809018299924],"HeatSust":[124.56394682022697,0,70.44204901842015,158.54199841160522,89.742885374182435,74.701925480418,126.90664630694967,49.762722598735138,0,120.48184308297493,68.825116586857391,null,0,0,null,85.701631569066862,0,null,87.40539327074724,null,0,null,null,70.146815275442492,0,0,134.1914067053257],"PowerSust":[0.052737591010295015,0,0.028894711799159371,0.068914251845437188,0.040497523805045836,0.03179668224197936,0.055558942052614468,0.020000578326455964,0,0.050326975003538756,0.029773498619766983,null,0,0,null,0.034993987387498385,0,null,0.036412915446389471,null,0,null,null,0.028272457577980355,0,0,0.0601787401685285]},{"Lat":[44.5,39.5,40.5,44.5,45.5,39.5,40.5,45.5,43.5,44.5,45.5,46.5,42.5,43.5,44.5,45.5,41.5,42.5,43.5,45.5,46.5,37.5,41.5,42.5,43.5,46.5,41.5,40.5,41.5,39.5,40.5],"Lon":[7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,14.5,15.5,15.5,16.5,16.5],"CAPEX":[6541.1780784859611,3465.7203995567111,6488.143003158214,7362.120949147512,3505.618976547993,7091.7677332726853,7607.6560642207951,8683.86794678651,1424.6157391029881,7781.7354192278162,5635.97924803974,null,3089.7495715473974,5429.8444473564505,null,8313.353836453929,2650.7373369286584,10165.574858619682,null,9157.3683014883736,null,4326.3873020412375,9248.9218274080176,null,null,3786.6957365013695,7537.6448970338861,8500.637470601243,5132.47390068234,10753.822430987442,10558.840532021835],"HeatSust":[124.56394682022697,0,70.44204901842015,158.54199841160522,89.742885374182435,74.701925480418,126.90664630694967,49.762722598735138,0,120.48184308297493,68.825116586857391,null,0,0,null,85.701631569066862,0,0,null,87.40539327074724,null,0,167.46199799301809,null,null,70.146815275442492,0,0,134.1914067053257,64.549880302659929,0],"PowerSust":[0.052737591010295015,0,0.028894711799159371,0.068914251845437188,0.040497523805045836,0.03179668224197936,0.055558942052614468,0.020000578326455964,0,0.050326975003538756,0.029773498619766983,null,0,0,null,0.034993987387498385,0,0,null,0.036412915446389471,null,0,0.070272909706157932,null,null,0.028272457577980355,0,0,0.0601787401685285,0.026801087276206514,0]},{"Lat":[44.5,45.5,39.5,40.5,44.5,45.5,39.5,40.5,44.5,45.5,43.5,44.5,45.5,46.5,42.5,43.5,44.5,45.5,41.5,42.5,43.5,45.5,46.5,37.5,41.5,42.5,43.5,46.5,41.5,40.5,41.5,39.5,40.5],"Lon":[7.5,7.5,8.5,8.5,8.5,8.5,9.5,9.5,9.5,9.5,10.5,10.5,10.5,10.5,11.5,11.5,11.5,11.5,12.5,12.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,14.5,15.5,15.5,16.5,16.5],"CAPEX":[5741.671542144788,11328.784171991792,3042.1168713650609,5695.118768456151,6462.273284162352,3077.1387774092309,6224.9644466272148,6677.7974551752623,10550.507609508322,7622.4675230594112,1250.4896747272903,6830.5996670591021,4947.1121673052621,null,2712.0997126887528,4766.17254072306,null,7297.2401255273626,2326.7464897801292,8923.0703055234735,null,8038.0934973359617,null,3797.5873083364268,8118.4567389490876,null,null,3323.8604557397048,6616.3435211214655,7461.6327012362908,4505.1486112681441,9439.4183250199058,9268.2684179097032],"HeatSust":[124.56394682022697,92.233054193347087,0,70.44204901842015,158.54199841160522,89.742885374182435,74.701925480418,126.90664630694967,119.0532142639654,49.762722598735138,0,120.48184308297493,68.825116586857391,null,0,0,null,85.701631569066862,0,0,null,87.40539327074724,null,0,167.46199799301809,null,null,70.146815275442492,0,0,134.1914067053257,64.549880302659929,0],"PowerSust":[0.052737591010295015,0.03614106706062109,0,0.028894711799159371,0.068914251845437188,0.040497523805045836,0.03179668224197936,0.055558942052614468,0.049382706467076196,0.020000578326455964,0,0.050326975003538756,0.029773498619766983,null,0,0,null,0.034993987387498385,0,0,null,0.036412915446389471,null,0,0.070272909706157932,null,null,0.028272457577980355,0,0,0.0601787401685285,0.026801087276206514,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[55.5,56.5,56.5,56.5,55.5],"Lon":[8.5,8.5,9.5,10.5,11.5],"CAPEX":[11285.005753068986,11181.926265949382,11382.917319308093,9731.7688730755235,11312.097529550878],"HeatSust":[71.533758839181218,72.188362133021684,61.727197154397452,0,70.593242256303185],"PowerSust":[0.029027238332988013,0.029342635738602695,0.025594927925874256,0,0.028610188496733073]},{"Lat":[55.5,56.5,55.5,56.5,56.5,55.5],"Lon":[8.5,8.5,9.5,9.5,10.5,11.5],"CAPEX":[8840.767566416489,8760.6375888838011,10999.881516292093,8906.0052298529317,7636.7544437184642,8861.6683902947352],"HeatSust":[71.533758839181218,72.188362133021684,64.934548877794825,61.727197154397452,0,70.593242256303185],"PowerSust":[0.029027238332988013,0.029342635738602695,0.026225025611007442,0.025594927925874256,0,0.028610188496733073]},{"Lat":[55.5,56.5,55.5,56.5,56.5,57.5,55.5,55.5],"Lon":[8.5,8.5,9.5,9.5,10.5,10.5,11.5,12.5],"CAPEX":[7760.1898217330627,7689.8538660150325,9655.4024231178573,7817.4537015930273,6703.339236102127,10731.75046356687,7778.5360071188134,10493.312091630534],"HeatSust":[71.533758839181218,72.188362133021684,64.934548877794825,61.727197154397452,0,29.800945120691026,70.593242256303185,44.455300592721684],"PowerSust":[0.029027238332988013,0.029342635738602695,0.026225025611007442,0.025594927925874256,0,0.012239965521635445,0.028610188496733073,0.017781249658542251]}]],[[{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,9570.2209296547171,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,6715.3494195477933,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,5223.5744208038222,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,50.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,8925.03042972679,null,3847.8204613572912,null,null,null,null],"HeatSust":[null,null,124.92073161484262,null,0,null,null,null,null],"PowerSust":[null,null,0.05566652389944915,null,0,null,null,null,null]},{"Lat":[55.5,56.5,50.5,55.5,56.5,57.5,51.5,52.5,54.5,55.5,51.5,54.5,55.5,51.5,53.5,52.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-3.5,-2.5,-2.5,-2.5,-0.5,-0.5,0.5,1.5],"CAPEX":[null,null,6451.5007898527956,10787.045618693277,null,2884.5105701077855,null,null,9147.9596437711261,10574.708369574266,11190.230394834402,10417.913130111076,null,10250.040310804425,9346.553280430333,null,10151.593176817778],"HeatSust":[null,null,124.92073161484262,64.925680295024009,null,0,null,null,51.283985617766859,56.7656397983824,46.934375211968245,0,null,0,85.965739947359651,null,0],"PowerSust":[null,null,0.05566652389944915,0.026075259190025103,null,0,null,null,0.021574651412428481,0.02324893564570038,0.019768609096146663,0,null,0,0.03714885965285708,null,0]},{"Lat":[54.5,55.5,56.5,50.5,55.5,56.5,57.5,50.5,51.5,52.5,54.5,55.5,56.5,57.5,51.5,54.5,55.5,51.5,52.5,51.5,53.5,52.5,52.5],"Lon":[-6.5,-5.5,-5.5,-4.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-3.5,-3.5,-3.5,-3.5,-2.5,-2.5,-2.5,-1.5,-1.5,-0.5,-0.5,0.5,1.5],"CAPEX":[11575.472188056063,null,null,5100.58735124536,8463.2517307327435,null,2350.0334783902413,9399.3514453559674,null,null,7185.3122647082992,8288.257814053457,10852.138022315432,9501.7597611894544,8755.3815859999868,8159.0821081521362,null,11591.407559139208,11369.918440541232,8037.796695036247,7330.2833750579366,null,7953.1671690738494],"HeatSust":[66.0279074144805,null,null,124.92073161484262,64.925680295024009,null,0,109.54013098814653,null,null,51.283985617766859,56.7656397983824,24.384321213943938,67.863022372539973,46.934375211968245,0,null,0,0,0,85.965739947359651,null,0],"PowerSust":[0.02651018510076026,null,null,0.05566652389944915,0.026075259190025103,null,0,0.045601203355691317,null,null,0.021574651412428481,0.02324893564570038,0.0098603419390112055,0.027940380952441245,0.019768609096146663,0,null,0,0,0,0.03714885965285708,null,0]},{"Lat":[54.5,55.5,56.5,50.5,55.5,56.5,57.5,50.5,51.5,52.5,54.5,55.5,56.5,57.5,51.5,54.5,55.5,51.5,52.5,51.5,52.5,53.5,52.5,52.5],"Lon":[-6.5,-5.5,-5.5,-4.5,-4.5,-4.5,-4.5,-3.5,-3.5,-3.5,-3.5,-3.5,-3.5,-3.5,-2.5,-2.5,-2.5,-1.5,-1.5,-0.5,-0.5,-0.5,0.5,1.5],"CAPEX":[10160.64055305976,null,null,4477.1594491810165,7428.8164965542928,null,2062.7966681322837,8250.4998428218041,null,null,6307.0753397450262,7275.2115068429484,9525.7171271781426,8340.3911293217116,7685.2402869591933,7161.8245197267443,null,10174.628196503152,9980.2109594413087,7055.3634210364044,10808.394921851668,6434.3271113280916,null,6981.0778817936061],"HeatSust":[66.0279074144805,null,null,124.92073161484262,64.925680295024009,null,0,109.54013098814653,null,null,51.283985617766859,56.7656397983824,24.384321213943938,67.863022372539973,46.934375211968245,0,null,0,0,0,0,85.965739947359651,null,0],"PowerSust":[0.02651018510076026,null,null,0.05566652389944915,0.026075259190025103,null,0,0.045601203355691317,null,null,0.021574651412428481,0.02324893564570038,0.0098603419390112055,0.027940380952441245,0.019768609096146663,0,null,0,0,0,0,0.03714885965285708,null,0]}]],[[{"Lat":64.5,"Lon":-20.5,"CAPEX":9311.2464145071881,"HeatSust":293.63522216276573,"PowerSust":0.15365559259944336},{"Lat":[65.5,64.5,65.5,64.5],"Lon":[-22.5,-21.5,-21.5,-20.5],"CAPEX":[11233.624428730671,8202.4259597722685,9286.5974138426773,6083.6256658849934],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-17.5,-17.5,-16.5,-16.5,-14.5],"CAPEX":[7827.0534367146975,5801.7500836725148,6525.9696208974283,4383.5016690855446,9702.70901342663,9891.6391339247366,10839.368382505785,8450.1851639774814,9497.4800888768023,9623.7077173538582,9660.8409899166418,10819.820827576807,10884.815010503047],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,164.16318357228866,0,158.564059377303,0,124.43521521870916,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-14.5],"CAPEX":[6060.8939940247028,4535.2167211363685,5080.9131021156527,3465.3301758768403,7471.2018670557509,7615.198752590788,8326.98984847554,9405.928003140707,6527.8363944792345,7316.4432985860658,7413.51268993868,7439.45992249065,8312.2187687957176,10957.378459286567,8361.20402478111],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[4430.67941978394,3368.9229615755021,3748.6174411402926,2622.296590008204,5382.2368092222741,5509.3641280517868,5973.1825461414282,6752.2979818068989,4729.3812541469961,5273.1911535918334,5369.43683697434,5358.1790022363057,5962.2963491521259,9178.2586337624416,7788.9554810169584,5996.8065876533719],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[3295.0916734511775,2546.8007478888276,2814.5953885421145,2018.4166148957077,3961.9097270040625,4053.9072115858303,4377.714488443673,4927.7142654135514,3502.0428276641546,3884.8292238234753,3955.5082499285568,3944.661881901874,4369.9763441733849,6630.9109552546815,5654.4966757906022,4394.3333574003091],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[2672.7778416882816,2084.8549027328236,2295.1554973643306,1668.9142431649682,3177.3740650025807,3267.3209019173505,3501.1086225898466,3952.2296631573258,2818.4846156996618,3115.9600914352782,3190.2433235124304,3162.5636791084339,3494.633973665349,5254.8763131227051,4495.0040920588808,3514.0473699220274],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-15.5,-15.5,-14.5],"CAPEX":[2346.0930566270176,1830.029991675877,2014.6262410064469,1464.928381597947,2789.0141544651083,2867.9670873500986,3073.1797090799846,3469.1617186828444,2473.9905741384978,2735.1066075231925,2800.31044612204,2776.0139929962911,3067.4964350536384,4612.5901821543139,3945.5946264610238,3084.5369961705969],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,110.32733701296324,117.15661140704627,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.043417552603414358,0.04795869123507765,0.062215123404191351]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":46.5,"Lon":16.5,"CAPEX":11576.56245121159,"HeatSust":159.16235427913463,"PowerSust":0.068016317898611386},{"Lat":46.5,"Lon":16.5,"CAPEX":8314.36341328686,"HeatSust":159.16235427913463,"PowerSust":0.068016317898611386},{"Lat":46.5,"Lon":16.5,"CAPEX":6539.7845664851993,"HeatSust":159.16235427913463,"PowerSust":0.068016317898611386},{"Lat":[46.5,46.5],"Lon":[15.5,16.5],"CAPEX":[10322.456270904788,5740.44835450146],"HeatSust":[154.09018632235623,159.16235427913463],"PowerSust":[0.062523407062037822,0.068016317898611386]}]],[[{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,11155.283970758081,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,64.049929484789189,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0.025634725659536138,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":48.5,"Lon":21.5,"CAPEX":10796.92848398254,"HeatSust":81.569783989790835,"PowerSust":0.0344383876699136},{"Lat":[48.5,48.5,48.5,48.5],"Lon":[17.5,18.5,19.5,21.5],"CAPEX":[10686.103633014305,10247.848141040033,11343.496452918118,7767.0254499113071],"HeatSust":[90.086224371055081,122.54842423034756,84.467964557659485,81.569783989790835],"PowerSust":[0.037889627313245258,0.051513765866612674,0.033717790760439008,0.0344383876699136]},{"Lat":[48.5,48.5,48.5,48.5],"Lon":[17.5,18.5,19.5,21.5],"CAPEX":[8366.5624519551766,8027.8113262131492,8885.6240217878312,6120.7700912164191],"HeatSust":[90.086224371055081,122.54842423034756,84.467964557659485,81.569783989790835],"PowerSust":[0.037889627313245258,0.051513765866612674,0.033717790760439008,0.0344383876699136]},{"Lat":[48.5,48.5,48.5,48.5],"Lon":[17.5,18.5,19.5,21.5],"CAPEX":[7343.9452281487465,7046.5985307794108,7799.5636211002156,5372.6486310372193],"HeatSust":[90.086224371055081,122.54842423034756,84.467964557659485,81.569783989790835],"PowerSust":[0.037889627313245258,0.051513765866612674,0.033717790760439008,0.0344383876699136]}]],[[{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[50.5,50.5,50.5,49.5],"Lon":[13.5,14.5,15.5,16.5],"CAPEX":[11360.893698778034,9963.7320637886824,8524.6035209476067,null],"HeatSust":[100.5461188001249,77.8441879856747,100.30184872073551,null],"PowerSust":[0.040362923235730971,0.032134544900304353,0.042519962462128,null]},{"Lat":[50.5,50.5,50.5,49.5,49.5,49.5],"Lon":[13.5,14.5,15.5,16.5,17.5,18.5],"CAPEX":[8899.343997778833,7816.495990018735,6701.3607364952577,null,9830.0162381571972,9353.6019253998384],"HeatSust":[100.5461188001249,77.8441879856747,100.30184872073551,null,75.095842712958586,90.864806661992645],"PowerSust":[0.040362923235730971,0.032134544900304353,0.042519962462128,null,0.030709027698531316,0.037412423744456073]},{"Lat":[49.5,50.5,50.5,49.5,50.5,49.5,49.5,49.5],"Lon":[13.5,13.5,14.5,15.5,15.5,16.5,17.5,18.5],"CAPEX":[11378.23624096839,7811.6066498576092,6861.1115683869912,10868.971648550732,5882.2756042879746,null,8628.5259040848887,8210.3421351968045],"HeatSust":[88.146748193731057,100.5461188001249,77.8441879856747,76.6746178498659,100.30184872073551,null,75.095842712958586,90.864806661992645],"PowerSust":[0.035415428587393036,0.040362923235730971,0.032134544900304353,0.031153232295654417,0.042519962462128,null,0.030709027698531316,0.037412423744456073]}]],[[{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,44.5,43.5,44.5],"Lon":[16.5,17.5,18.5,18.5],"CAPEX":[null,11484.84323896529,null,11203.402196260993],"HeatSust":[null,101.76659889860568,null,114.68708194107802],"PowerSust":[null,0.042082886083116729,null,0.046371044833868023]}]],[[{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[41.5,41.5],"Lon":[20.5,21.5],"CAPEX":[null,9799.1495790566569],"HeatSust":[null,0],"PowerSust":[null,0]},{"Lat":[41.5,41.5,41.5],"Lon":[20.5,21.5,22.5],"CAPEX":[null,8601.4319745156045,10752.509402070684],"HeatSust":[null,0,0],"PowerSust":[null,0,0]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[45.5,43.5,44.5,45.5,43.5,44.5,44.5],"Lon":[19.5,20.5,20.5,20.5,21.5,21.5,22.5],"CAPEX":[10696.336303562774,9700.7002104198964,10140.427599586124,10825.475045148491,10173.290905189826,8749.94119760984,9218.1677144841451],"HeatSust":[190.52043158185771,200.60006652959569,196.66813253983307,144.928626945719,200.69211282320859,0,75.80585838379865],"PowerSust":[0.080186038065368045,0.080906496208979439,0.083545392313219613,0.059308109719445674,0.084765325809156689,0,0.031805513512506087]},{"Lat":[44.5,45.5,43.5,44.5,45.5,43.5,44.5,42.5,43.5,44.5],"Lon":[19.5,19.5,20.5,20.5,20.5,21.5,21.5,22.5,22.5,22.5],"CAPEX":[10393.257898906861,8376.8640798143169,7621.32190565313,7946.45473624272,8486.8434842238421,7971.49833366707,6877.972685027793,9549.59475445942,11733.142659893885,7238.7267672767475],"HeatSust":[179.53052777529331,190.52043158185771,200.60006652959569,196.66813253983307,144.928626945719,200.69211282320859,0,0,62.912874711655014,75.80585838379865],"PowerSust":[0.072475886055436575,0.080186038065368045,0.080906496208979439,0.083545392313219613,0.059308109719445674,0.084765325809156689,0,0,0.025181968828976879,0.031805513512506087]},{"Lat":[44.5,45.5,43.5,44.5,45.5,43.5,44.5,42.5,43.5,44.5],"Lon":[19.5,19.5,20.5,20.5,20.5,21.5,21.5,22.5,22.5,22.5],"CAPEX":[9122.9244017367455,7352.9877221470588,6689.7929660618374,6975.1858874001482,7449.5247081369516,6997.1684888396749,6037.3008591770313,8382.3794097631489,10299.039485228455,6353.9611645391533],"HeatSust":[179.53052777529331,190.52043158185771,200.60006652959569,196.66813253983307,144.928626945719,200.69211282320859,0,0,62.912874711655014,75.80585838379865],"PowerSust":[0.072475886055436575,0.080186038065368045,0.080906496208979439,0.083545392313219613,0.059308109719445674,0.084765325809156689,0,0,0.025181968828976879,0.031805513512506087]}]],[[{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[42.5,42.5],"Lon":[20.5,21.5],"CAPEX":[null,10285.85264623763],"HeatSust":[null,190.01511824426044],"PowerSust":[null,0.0765165168189448]},{"Lat":[42.5,42.5],"Lon":[20.5,21.5],"CAPEX":[null,9028.646937443873],"HeatSust":[null,190.01511824426044],"PowerSust":[null,0.0765165168189448]}]],[[{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5,47.5,46.5,45.5,43.5,45.5,46.5,47.5,47.5,48.5,48.5],"Lon":[-2.5,-1.5,-0.5,1.5,2.5,3.5,4.5,4.5,4.5,4.5,5.5,5.5,7.5],"CAPEX":[null,null,null,10761.607856825738,11467.690910960624,9862.08560027121,10137.404845217985,9577.7117109153769,10647.330641600427,9229.2395171771841,9020.24569896266,11454.314046203626,9741.2404615321466],"HeatSust":[null,null,null,155.77205253388351,216.21722060085418,130.09217854947082,0,129.38846474224923,172.30228849294505,244.3241449219216,255.93544012557058,162.47136676993154,155.52131650814601],"PowerSust":[null,null,null,0.066606085759113837,0.090830636688757654,0.0561085392250562,0,0.056411238613988855,0.07349683507449549,0.10711623972617214,0.11275458584830628,0.068215606241721211,0.067446228214511308]},{"Lat":[48.5,43.5,47.5,49.5,43.5,45.5,48.5,49.5,47.5,48.5,45.5,47.5,49.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,47.5,48.5,43.5,45.5,46.5,47.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,44.5,45.5,47.5,48.5,48.5],"Lon":[-2.5,-1.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,1.5,1.5,1.5,2.5,2.5,2.5,2.5,2.5,3.5,3.5,3.5,3.5,3.5,4.5,4.5,4.5,4.5,4.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.5,6.5,6.5,6.5,7.5],"CAPEX":[null,10051.045729784693,null,10865.253307290457,9402.6054039554911,9062.4312889257017,null,11347.958463214085,9427.5180151329023,8674.8029347599877,8903.5734092744933,7742.3096847699908,11537.277244276251,11013.843428156002,8238.4540805492288,8953.2573597240171,11733.899080156049,11051.529590585433,9203.0141016735342,9784.4787714156155,7110.0809250229495,8587.35954972583,11752.2771778955,7305.1739693164991,6910.1818372699772,7661.9674480204412,6665.368781175649,9340.5088782385828,10276.664352065045,10472.711667855148,10896.096425141408,9549.7831425527966,6518.4599154329562,8229.02944855259,9617.3632620968528,10584.508228036379,9150.3133801763142,10678.12714397446,9092.14832727541,7025.19128718042],"HeatSust":[null,102.98980953617722,null,89.915268594007884,121.74900041869613,164.78312264991558,null,71.40663068493123,124.25959874963934,126.17941423324069,155.64737276480656,155.77205253388351,104.68655677498715,96.809104962715324,216.21722060085418,188.00084530248421,105.16721509804816,134.01400287141215,63.338271893013385,157.52602060023605,130.09217854947082,159.73580232983227,113.1716482904077,0,129.38846474224923,172.30228849294505,244.3241449219216,0,0,0,111.15181288452771,166.04452693631572,255.93544012557058,162.47136676993154,61.006292681040563,148.3587196703208,116.37550992360207,131.85276875746791,118.75065017339492,155.52131650814601],"PowerSust":[null,0.043273542093039449,null,0.036374444170051964,0.0514880989931345,0.070241635807015909,null,0.029177569565562996,0.053856736555629794,0.053745074883084873,0.0658812043375488,0.066606085759113837,0.043921221146169531,0.0402501632519034,0.090830636688757654,0.082089085628184344,0.043663284105040771,0.056057138909439676,0.0268790710571605,0.066709308347935967,0.0561085392250562,0.06674370319674082,0.04693977403100065,0,0.056411238613988855,0.07349683507449549,0.10711623972617214,0,0,0,0.046564464198719548,0.07129235603123131,0.11275458584830628,0.068215606241721211,0.025577798434813042,0.059469714335476674,0.047280828110033639,0.055329915861056893,0.051488432644702528,0.067446228214511308]},{"Lat":[48.5,47.5,48.5,43.5,47.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,42.5,43.5,45.5,46.5,47.5,49.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,43.5,44.5,45.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,47.5,48.5,48.5],"Lon":[-3.5,-2.5,-2.5,-1.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.5,1.5,1.5,1.5,1.5,1.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,3.5,3.5,3.5,3.5,3.5,3.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.5,6.5,6.5,6.5,6.5,7.5],"CAPEX":[10936.282109464302,11198.385908110109,null,7886.7850997196647,null,8525.8721578775931,7383.8503314191485,10714.917236482343,7121.3111331349073,9602.19689825349,9557.7230913463718,null,8891.3784472213465,11102.466519625375,9881.6752472392145,10057.53058207745,9519.5703735694078,7393.9056698257536,6819.1853597676509,9556.151733178096,10565.713365638603,6996.9637646595856,9536.2358598781284,6102.7643469710765,9024.1511149134658,10291.277681177824,9357.1957501210563,10666.441638655851,8621.5840406628213,6487.8203379372426,7027.3197655083759,9179.1517824154253,8651.1000705584047,10840.175385966144,7228.7192195270163,7669.56309776082,5611.2421899587307,6758.4813675124351,9193.2856010807336,10570.219214297525,5785.3361341086911,9383.6940761212045,5455.8394101888516,6039.9799873624943,5266.8430263139044,9374.3699872639463,7326.8543149700581,8062.1760455094181,8201.90809090735,8530.1013402451226,7488.6190829949255,5152.7783143263869,6480.1740011182092,7546.5992881658531,9939.3966967472334,8297.74746568548,7192.568952149757,8361.6030414744437,7133.9779354563289,5545.7525171390016],"HeatSust":[120.76898385910249,116.3881999035753,null,102.98980953617722,null,89.915268594007884,121.74900041869613,137.68438252270536,164.78312264991558,68.918770937505755,106.52443364347715,null,71.40663068493123,136.3240755800305,136.05734941803718,90.978656196458928,83.71927180211641,124.25959874963934,126.17941423324069,90.868512528924285,125.87277164778016,155.64737276480656,125.47624725816479,155.77205253388351,104.68655677498715,115.05589527615508,0,116.56619868827667,96.809104962715324,216.21722060085418,188.00084530248421,105.16721509804816,134.01400287141215,0,63.338271893013385,157.52602060023605,130.09217854947082,159.73580232983227,113.1716482904077,103.18079005360715,0,104.84682807882504,129.38846474224923,172.30228849294505,244.3241449219216,93.146583023168247,0,0,0,111.15181288452771,166.04452693631572,255.93544012557058,162.47136676993154,61.006292681040563,0,148.3587196703208,116.37550992360207,131.85276875746791,118.75065017339492,155.52131650814601],"PowerSust":[0.0506602472552158,0.047365298648888644,null,0.043273542093039449,null,0.036374444170051964,0.0514880989931345,0.056649794608529695,0.070241635807015909,0.027874593028673875,0.042893985798859724,null,0.029177569565562996,0.055279903043954942,0.056469955433383894,0.037334789904647163,0.034626591974014367,0.053856736555629794,0.053745074883084873,0.037406883104988728,0.051139955796445556,0.0658812043375488,0.051666193771911478,0.066606085759113837,0.043921221146169531,0.046660730945597563,0,0.046905138776673752,0.0402501632519034,0.090830636688757654,0.082089085628184344,0.043663284105040771,0.056057138909439676,0,0.0268790710571605,0.066709308347935967,0.0561085392250562,0.06674370319674082,0.04693977403100065,0.041757473045503708,0,0.04316032119579092,0.056411238613988855,0.07349683507449549,0.10711623972617214,0.038409283422949719,0,0,0,0.046564464198719548,0.07129235603123131,0.11275458584830628,0.068215606241721211,0.025577798434813042,0,0.059469714335476674,0.047280828110033639,0.055329915861056893,0.051488432644702528,0.067446228214511308]},{"Lat":[48.5,48.5,47.5,48.5,43.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,42.5,43.5,45.5,46.5,47.5,49.5,50.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,43.5,44.5,45.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,43.5,44.5,45.5,47.5,48.5,48.5],"Lon":[-4.5,-3.5,-2.5,-2.5,-1.5,-1.5,-1.5,-1.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,-0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.5,3.5,3.5,3.5,3.5,3.5,3.5,4.5,4.5,4.5,4.5,4.5,4.5,4.5,5.5,5.5,5.5,5.5,5.5,5.5,5.5,6.5,6.5,6.5,6.5,6.5,7.5],"CAPEX":[10416.016594211311,9599.57656118613,9829.6442804433627,null,6922.8094729616887,null,10424.288262370412,7483.7830362479735,6481.3467559927212,9405.2683836100787,6250.8968545530961,8428.5521677058787,8389.5142469482544,null,7804.6147021679653,9745.4488011895428,8673.8708035483633,8828.2319231295569,8356.0248095278039,6490.1730636827288,5985.6989140174692,11428.202569587511,8388.1349506855549,9274.3012078319152,6141.7480531676729,8370.6533286304257,5356.8436692874939,7921.15900634611,10955.710870070765,9033.4088883275654,8213.4966986227919,9362.7177975857885,7567.7963725368154,5694.8355415366786,6168.3937405523475,8057.2144555222376,7593.7047558364484,9515.2166442572361,6345.1768062122856,6732.1377970021349,4925.3986379202042,5932.4145697228669,8069.62074433424,9278.256321529745,5078.2136557643489,8236.7562219814263,4788.9902253271257,5301.7332340522835,4623.0942436182422,8228.57178562978,6431.3171738999026,7076.7629642300344,7199.416024422012,7487.4952996590628,6573.3099699903923,4522.9712836676918,5688.1237911472654,6624.2034466765808,8724.5371514194867,7283.5412697796364,6313.445066310016,7339.5919899886812,6262.0154355711056,4867.91355094938],"HeatSust":[67.747938686808,120.76898385910249,116.3881999035753,null,102.98980953617722,null,78.656681417089928,89.915268594007884,121.74900041869613,137.68438252270536,164.78312264991558,68.918770937505755,106.52443364347715,null,71.40663068493123,136.3240755800305,136.05734941803718,90.978656196458928,83.71927180211641,124.25959874963934,126.17941423324069,75.405829353323412,90.868512528924285,125.87277164778016,155.64737276480656,125.47624725816479,155.77205253388351,104.68655677498715,0,115.05589527615508,0,116.56619868827667,96.809104962715324,216.21722060085418,188.00084530248421,105.16721509804816,134.01400287141215,0,63.338271893013385,157.52602060023605,130.09217854947082,159.73580232983227,113.1716482904077,103.18079005360715,0,104.84682807882504,129.38846474224923,172.30228849294505,244.3241449219216,93.146583023168247,0,0,0,111.15181288452771,166.04452693631572,255.93544012557058,162.47136676993154,61.006292681040563,0,148.3587196703208,116.37550992360207,131.85276875746791,118.75065017339492,155.52131650814601],"PowerSust":[0.027415824021999578,0.0506602472552158,0.047365298648888644,null,0.043273542093039449,null,0.0326311655568747,0.036374444170051964,0.0514880989931345,0.056649794608529695,0.070241635807015909,0.027874593028673875,0.042893985798859724,null,0.029177569565562996,0.055279903043954942,0.056469955433383894,0.037334789904647163,0.034626591974014367,0.053856736555629794,0.053745074883084873,0.030709488796899807,0.037406883104988728,0.051139955796445556,0.0658812043375488,0.051666193771911478,0.066606085759113837,0.043921221146169531,0,0.046660730945597563,0,0.046905138776673752,0.0402501632519034,0.090830636688757654,0.082089085628184344,0.043663284105040771,0.056057138909439676,0,0.0268790710571605,0.066709308347935967,0.0561085392250562,0.06674370319674082,0.04693977403100065,0.041757473045503708,0,0.04316032119579092,0.056411238613988855,0.07349683507449549,0.10711623972617214,0.038409283422949719,0,0,0,0.046564464198719548,0.07129235603123131,0.11275458584830628,0.068215606241721211,0.025577798434813042,0,0.059469714335476674,0.047280828110033639,0.055329915861056893,0.051488432644702528,0.067446228214511308]}]]],"LCOE50":[[[{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,61.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,3861.9642521428354,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,61.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[7.5,7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[null,3830.7149699527758,null,null,null,null,null,null,null,3233.8304672275503,null,null,null,null,3097.4801164006662,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,38.716356361222076,null,null,null,null,null,null,null,47.013329815863635,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,0.016815197658385215,null,null,null,null,null,null,null,0.021666414832391505,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[60.5,60.5,59.5,60.5,61.5,62.5,60.5,61.5,61.5,62.5,61.5,62.5,63.5,61.5,64.5,65.5,66.5,78.5,66.5,68.5,69.5,69.5,69.5,79.5,69.5,69.5,70.5,70.5,70.5,70.5,69.5,70.5,69.5,70.5],"Lon":[5.5,6.5,7.5,7.5,7.5,7.5,8.5,8.5,9.5,9.5,10.5,10.5,10.5,11.5,13.5,13.5,13.5,13.5,14.5,19.5,19.5,20.5,21.5,21.5,23.5,25.5,25.5,26.5,27.5,28.5,29.5,29.5,30.5,30.5],"CAPEX":[3670.7829558055164,3565.7693809519733,3689.2381411738406,null,3362.4993640498528,null,null,null,null,null,null,null,2838.5700775935638,null,null,null,null,2718.8853786432205,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[48.887038921730223,50.105589257523071,60.160559602871956,null,38.716356361222076,null,null,null,null,null,null,null,47.013329815863635,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[0.019489798560901245,0.021606553428581449,0.02523026895908163,null,0.016815197658385215,null,null,null,null,null,null,null,0.021666414832391505,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[58.5,60.5,62.5,63.5,55.5,58.5,59.5,60.5,62.5,63.5,56.5,58.5,61.5,64.5,65.5,58.5,60.5,64.5,65.5,66.5,66.5,60.5,62.5,63.5,64.5,66.5,67.5,63.5,64.5,65.5,66.5,67.5,68.5,63.5,64.5,66.5,67.5,64.5,65.5,67.5,68.5,65.5,66.5,67.5,68.5,66.5,67.5,66.5,67.5],"Lon":[11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5,13.5,13.5,14.5,14.5,14.5,14.5,14.5,15.5,15.5,15.5,15.5,15.5,16.5,17.5,17.5,17.5,17.5,17.5,17.5,18.5,18.5,18.5,18.5,18.5,18.5,19.5,19.5,19.5,19.5,20.5,20.5,20.5,20.5,21.5,21.5,21.5,21.5,22.5,22.5,23.5,23.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[53.5,52.5,53.5,52.5,53.5,54.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,51.5,52.5,53.5,54.5,55.5,53.5,53.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,30.5,31.5,32.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[51.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,50.5,51.5,48.5,49.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,50.5,47.5,48.5,49.5,47.5,48.5,49.5,47.5,48.5,51.5,47.5,47.5,47.5],"Lon":[24.5,25.5,25.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,28.5,28.5,29.5,29.5,29.5,29.5,30.5,30.5,30.5,30.5,31.5,31.5,31.5,32.5,32.5,32.5,33.5,33.5,33.5,34.5,35.5,36.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[54.5,53.5,53.5,53.5,53.5,53.5],"Lon":[17.5,18.5,19.5,20.5,21.5,23.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]}]],[[{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":48.5,"Lon":14.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[47.5,48.5],"Lon":[12.5,14.5],"CAPEX":[3060.0175755960972,null],"HeatSust":[170.33404823371092,null],"PowerSust":[0.076233951987499007,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5],"CAPEX":[3882.1862437103887,2487.6018890078426,3417.7990547403524,3883.627584371683,null],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null]},{"Lat":[47.5,47.5,47.5,46.5,48.5],"Lon":[11.5,12.5,13.5,14.5,14.5],"CAPEX":[3407.6794744559638,2183.5505474585593,3000.0527938408059,3408.9446448210251,null],"HeatSust":[109.53610574572916,170.33404823371092,112.94185355179111,119.01655357087456,null],"PowerSust":[0.043669005729263626,0.076233951987499007,0.050835096945801739,0.051906195797978651,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[47.5,46.5],"Lon":[27.5,29.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,47.5,44.5,44.5,44.5],"Lon":[24.5,25.5,26.5,27.5,28.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]}]],[[{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[55.5,54.5,54.5,54.5,55.5],"Lon":[22.5,23.5,24.5,25.5,26.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]}]],[[{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[56.5,57.5,56.5],"Lon":[22.5,24.5,27.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]}]],[[{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[58.5,57.5],"Lon":[24.5,26.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":50.5,"Lon":8.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":[50.5,50.5],"Lon":[7.5,8.5],"CAPEX":[3157.326447554572,null],"HeatSust":[85.160392178883427,null],"PowerSust":[0.038451142758912836,null]},{"Lat":[50.5,50.5,49.5,50.5],"Lon":[6.5,7.5,8.5,8.5],"CAPEX":[3582.0455454791181,2564.5911975621366,3195.5463704583576,null],"HeatSust":[86.695209314826442,85.160392178883427,133.14482427635787,null],"PowerSust":[0.035816225635009379,0.038451142758912836,0.056642008731078108,null]},{"Lat":[50.5,50.5,49.5,50.5],"Lon":[6.5,7.5,8.5,8.5],"CAPEX":[3144.2239798957489,2251.1297077675408,2804.9653192000619,null],"HeatSust":[86.695209314826442,85.160392178883427,133.14482427635787,null],"PowerSust":[0.035816225635009379,0.038451142758912836,0.056642008731078108,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5],"Lon":[20.5,21.5,22.5,22.5],"CAPEX":[null,null,null,null],"HeatSust":[null,null,null,null],"PowerSust":[null,null,null,null]},{"Lat":[39.5,38.5,36.5,37.5,39.5],"Lon":[20.5,21.5,22.5,22.5,22.5],"CAPEX":[null,null,null,null,3611.3939928236578],"HeatSust":[null,null,null,null,228.59334161849839],"PowerSust":[null,null,null,null,0.10097806161142672]}]],[[{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]}]],[[{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]},{"Lat":[45.5,44.5,45.5,43.5,45.5],"Lon":[14.5,15.5,15.5,16.5,16.5],"CAPEX":[null,null,null,null,null],"HeatSust":[null,null,null,null,null],"PowerSust":[null,null,null,null,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":47.5,"Lon":8.5,"CAPEX":3507.6960772436464,"HeatSust":169.87753041795551,"PowerSust":0.080780089298402052},{"Lat":47.5,"Lon":8.5,"CAPEX":2644.7361915271513,"HeatSust":169.87753041795551,"PowerSust":0.080780089298402052},{"Lat":[47.5,46.5,47.5],"Lon":[8.5,9.5,9.5],"CAPEX":[2161.8554200392587,3558.2171286321272,3200.6475440754843],"HeatSust":[169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.080780089298402052,0.044228996035661605,0.059903832184067439]},{"Lat":[47.5,46.5,47.5],"Lon":[8.5,9.5,9.5],"CAPEX":[1897.6189907283413,3123.3080315355119,2809.4429932577868],"HeatSust":[169.87753041795551,99.45974390278495,142.54615643065978],"PowerSust":[0.080780089298402052,0.044228996035661605,0.059903832184067439]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[42.5,36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-7.5,-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[3901.1047811787112,null,null,null,null,null,null,null],"HeatSust":[238.05002225341866,null,null,null,null,null,null,null],"PowerSust":[0.10539271669868776,null,null,null,null,null,null,null]},{"Lat":[42.5,36.5,37.5,43.5,37.5,37.5,37.5,37.5],"Lon":[-7.5,-5.5,-5.5,-5.5,-4.5,-3.5,-2.5,-1.5],"CAPEX":[3424.2856617356115,null,null,null,null,null,null,null],"HeatSust":[238.05002225341866,null,null,null,null,null,null,null],"PowerSust":[0.10539271669868776,null,null,null,null,null,null,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null]},{"Lat":[43.5,46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[3420.5747406951505,null,null,null,null,null,null],"HeatSust":[0,null,null,null,null,null,null],"PowerSust":[0,null,null,null,null,null,null]},{"Lat":[43.5,46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[2743.616406659502,null,null,null,null,null,null],"HeatSust":[0,null,null,null,null,null,null],"PowerSust":[0,null,null,null,null,null,null]},{"Lat":[43.5,46.5,44.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,12.5,12.5,13.5,13.5],"CAPEX":[2145.244771656292,null,null,null,null,null,null],"HeatSust":[0,null,null,null,null,null,null],"PowerSust":[0,null,null,null,null,null,null]},{"Lat":[43.5,46.5,42.5,44.5,41.5,43.5,46.5,42.5,43.5],"Lon":[10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5],"CAPEX":[1687.50949603198,null,3822.584844802584,null,3264.5917252951413,null,null,null,null],"HeatSust":[0,null,0,null,0,null,null,null,null],"PowerSust":[0,null,0,null,0,null,null,null,null]},{"Lat":[39.5,45.5,43.5,46.5,42.5,44.5,41.5,43.5,46.5,42.5,43.5,46.5],"Lon":[8.5,8.5,10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5],"CAPEX":[3465.7203995567111,3505.618976547993,1424.6157391029881,null,3089.7495715473974,null,2650.7373369286584,null,null,null,null,3786.6957365013695],"HeatSust":[0,89.742885374182435,0,null,0,null,0,null,null,null,null,70.146815275442492],"PowerSust":[0,0.040497523805045836,0,null,0,null,0,null,null,null,null,0.028272457577980355]},{"Lat":[39.5,45.5,43.5,46.5,42.5,44.5,41.5,43.5,46.5,37.5,42.5,43.5,46.5],"Lon":[8.5,8.5,10.5,10.5,11.5,11.5,12.5,12.5,12.5,13.5,13.5,13.5,13.5],"CAPEX":[3042.1168713650609,3077.1387774092309,1250.4896747272903,null,2712.0997126887528,null,2326.7464897801292,null,null,3797.5873083364268,null,null,3323.8604557397048],"HeatSust":[0,89.742885374182435,0,null,0,null,0,null,null,0,null,null,70.146815275442492],"PowerSust":[0,0.040497523805045836,0,null,0,null,0,null,null,0,null,null,0.028272457577980355]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,3847.8204613572912,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,2884.5105701077855,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,2350.0334783902413,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]},{"Lat":[55.5,56.5,56.5,57.5,51.5,52.5,55.5,52.5],"Lon":[-5.5,-5.5,-4.5,-4.5,-3.5,-3.5,-2.5,0.5],"CAPEX":[null,null,null,2062.7966681322837,null,null,null,null],"HeatSust":[null,null,null,0,null,null,null,null],"PowerSust":[null,null,null,0,null,null,null,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":64.5,"Lon":-20.5,"CAPEX":3465.3301758768403,"HeatSust":293.63522216276573,"PowerSust":0.15365559259944336},{"Lat":[64.5,65.5,64.5],"Lon":[-21.5,-21.5,-20.5],"CAPEX":[3368.9229615755021,3748.6174411402926,2622.296590008204],"HeatSust":[254.16430337715855,201.88526057110826,293.63522216276573],"PowerSust":[0.12101697807611003,0.092370138710358637,0.15365559259944336]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-18.5,-17.5],"CAPEX":[3295.0916734511775,2546.8007478888276,2814.5953885421145,2018.4166148957077,3502.0428276641546,3884.8292238234753],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,164.16318357228866,0],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.077146998688386884,0]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-17.5,-17.5,-16.5,-16.5,-14.5],"CAPEX":[2672.7778416882816,2084.8549027328236,2295.1554973643306,1668.9142431649682,3177.3740650025807,3267.3209019173505,3501.1086225898466,2818.4846156996618,3115.9600914352782,3190.2433235124304,3162.5636791084339,3494.633973665349,3514.0473699220274],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,164.16318357228866,0,158.564059377303,0,124.43521521870916,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.062215123404191351]},{"Lat":[65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,64.5,65.5,65.5],"Lon":[-22.5,-21.5,-21.5,-20.5,-20.5,-19.5,-19.5,-18.5,-18.5,-17.5,-17.5,-16.5,-16.5,-14.5],"CAPEX":[2346.0930566270176,1830.029991675877,2014.6262410064469,1464.928381597947,2789.0141544651083,2867.9670873500986,3073.1797090799846,3469.1617186828444,2473.9905741384978,2735.1066075231925,2800.31044612204,2776.0139929962911,3067.4964350536384,3084.5369961705969],"HeatSust":[197.42383748461498,254.16430337715855,201.88526057110826,293.63522216276573,150.93461110484992,191.61076740133495,141.61693094415654,122.8418253884563,164.16318357228866,0,158.564059377303,0,124.43521521870916,141.33136745128635],"PowerSust":[0.086130065215834523,0.12101697807611003,0.092370138710358637,0.15365559259944336,0.06882560908578271,0.077713946700087536,0.062417031504409227,0.047352538294562235,0.077146998688386884,0,0.064832051018036269,0,0.05447279233241311,0.062215123404191351]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]},{"Lat":[61.5,62.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,68.5,60.5,61.5,62.5,63.5,64.5,66.5,67.5,68.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,60.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,68.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,69.5,61.5,62.5,63.5,64.5,65.5,66.5,67.5,62.5],"Lon":[21.5,21.5,22.5,22.5,22.5,22.5,23.5,23.5,23.5,23.5,23.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,24.5,25.5,25.5,25.5,25.5,25.5,25.5,25.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,26.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,27.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,28.5,29.5,29.5,29.5,29.5,29.5,29.5,29.5,30.5],"CAPEX":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"HeatSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"PowerSust":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null]}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":49.5,"Lon":16.5,"CAPEX":null,"HeatSust":null,"PowerSust":null}]],[[{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[44.5,43.5],"Lon":[16.5,18.5],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":41.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null}]],[[{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]},{"Lat":[],"Lon":[],"CAPEX":[],"HeatSust":[],"PowerSust":[]}]],[[{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]},{"Lat":[],"Lon":[],"CAPEX":[null,null],"HeatSust":[null,null],"PowerSust":[null,null]}]],[[{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null},{"Lat":42.5,"Lon":20.5,"CAPEX":null,"HeatSust":null,"PowerSust":null}]],[[{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]},{"Lat":[48.5,47.5,48.5],"Lon":[-2.5,-1.5,-0.5],"CAPEX":[null,null,null],"HeatSust":[null,null,null],"PowerSust":[null,null,null]}]]]} diff --git a/data/hydro_capacities.csv b/data/hydro_capacities.csv new file mode 100644 index 00000000..1b39f731 --- /dev/null +++ b/data/hydro_capacities.csv @@ -0,0 +1,31 @@ +Country,p_nom_discharge[GW],p_nom_store[GW],E_store[TWh],InflowHourlyAvg[GWh] +AT,13.08,3.8,3.2,4.02 +BE,1.42,1.31,0,0.04 +BA,2.05,0.62,2.5,0.71 +BG,3.13,0.86,4,0.53 +HR,2,0.61,2.8,0.57 +CZ,2.21,0.68,1.5,0.24 +DK,0.01,0,0,0 +EE,0.01,0,0,0 +FI,3.2,0,5.5,1.59 +FR,25.37,6.99,9.8,7.82 +DE,11.26,6.8,0.3,1.93 +GB,4.43,2.74,0,0.46 +GR,3.24,0.7,2.3,0.26 +HU,0.06,0,0.1,0.02 +IE,0.53,0.29,0,0.08 +IT,21.88,7.55,7.9,5.19 +LV,1.58,0,1.8,0.3 +LT,0.88,0.76,0.2,0.05 +LU,1.13,1.29,0,0 +NL,0.04,0,0,0.01 +NO,30.51,1.35,84.4,14 +PL,2.35,1.4,1.6,0.23 +PT,5.72,1.03,2.6,1.37 +RO,6.55,0.09,12.1,1.95 +RS,2.14,0.61,0,1.18 +SK,2.52,0.92,2.2,0.49 +SI,1.25,0.18,2.2,0.36 +ES,18.55,2.75,18.4,2.61 +SE,16.41,0.1,33.8,7.8 +CH,13.3,4.03,8.4,4.29 diff --git a/doc/conf.py b/doc/conf.py index 739c7663..5c4b3b89 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -93,9 +93,9 @@ author = "Tom Brown (KIT, TUB, FIAS), Jonas Hoersch (KIT, FIAS), Fabian Hofmann # built documents. # # The short X.Y version. -version = "0.10" +version = "0.11" # The full version, including alpha/beta/rc tags. -release = "0.10.0" +release = "0.11.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/configtables/co2_budget.csv b/doc/configtables/co2_budget.csv index 21b42f05..8f11f9c6 100644 --- a/doc/configtables/co2_budget.csv +++ b/doc/configtables/co2_budget.csv @@ -1,2 +1,2 @@ ,Unit,Values,Description -co2_budget,--,Dictionary with planning horizons as keys.,CO2 budget as a fraction of 1990 emissions. Overwritten if ``CO2Lx`` or ``cb`` are set in ``{sector_opts}`` wildcard"doc/configtables/othertoplevel.csv +co2_budget,--,Dictionary with planning horizons as keys.,CO2 budget as a fraction of 1990 emissions. Overwritten if ``Co2Lx`` or ``cb`` are set in ``{sector_opts}`` wildcard"doc/configtables/othertoplevel.csv diff --git a/doc/configtables/costs.csv b/doc/configtables/costs.csv index 03933c18..38079e34 100644 --- a/doc/configtables/costs.csv +++ b/doc/configtables/costs.csv @@ -1,7 +1,6 @@ ,Unit,Values,Description year,--,YYYY; e.g. '2030',Year for which to retrieve cost assumptions of ``resources/costs.csv``. version,--,vX.X.X or //vX.X.X; e.g. 'v0.5.0',Version of ``technology-data`` repository to use. If this string is of the form // then costs are instead retrieved from ``github.com//`` at the tag. -rooftop_share,--,float,Share of rooftop PV when calculating capital cost of solar (joint rooftop and utility-scale PV). social_discountrate,p.u.,float,Social discount rate to compare costs in different investment periods. 0.02 corresponds to a social discount rate of 2%. fill_values,--,float,Default values if not specified for a technology in ``resources/costs.csv``. capital_cost,EUR/MW,Keys should be in the 'technology' column of ``resources/costs.csv``. Values can be any float.,"For the given technologies, assumptions about their capital investment costs are set to the corresponding value. Optional; overwrites cost assumptions from ``resources/costs.csv``." diff --git a/doc/configtables/electricity.csv b/doc/configtables/electricity.csv index 22a22d57..ee733660 100644 --- a/doc/configtables/electricity.csv +++ b/doc/configtables/electricity.csv @@ -2,10 +2,9 @@ voltages,kV,"Any subset of {220., 300., 380.}",Voltage levels to consider gaslimit_enable,bool,true or false,Add an overall absolute gas limit configured in ``electricity: gaslimit``. gaslimit,MWhth,float or false,Global gas usage limit -co2limit_enable,bool,true or false,Add an overall absolute carbon-dioxide emissions limit configured in ``electricity: co2limit``. +co2limit_enable,bool,true or false,Add an overall absolute carbon-dioxide emissions limit configured in ``electricity: co2limit`` in :mod:`prepare_network`. **Warning:** This option should currently only be used with electricity-only networks, not for sector-coupled networks.. co2limit,:math:`t_{CO_2-eq}/a`,float,Cap on total annual system carbon dioxide emissions co2base,:math:`t_{CO_2-eq}/a`,float,Reference value of total annual system carbon dioxide emissions if relative emission reduction target is specified in ``{opts}`` wildcard. -agg_p_nom_limits,file,path,Reference to ``.csv`` file specifying per carrier generator nominal capacity constraints for individual countries if ``'CCL'`` is in ``{opts}`` wildcard. Defaults to ``data/agg_p_nom_minmax.csv``. operational_reserve,,,Settings for reserve requirements following `GenX `_ ,,, -- activate,bool,true or false,Whether to take operational reserve requirements into account during optimisation @@ -28,14 +27,14 @@ everywhere_powerplants,--,"Any subset of {nuclear, oil, OCGT, CCGT, coal, lignit ,,, conventional_carriers,--,"Any subset of {nuclear, oil, OCGT, CCGT, coal, lignite, geothermal, biomass}","List of conventional power plants to include in the model from ``resources/powerplants.csv``. If an included carrier is also listed in ``extendable_carriers``, the capacity is taken as a lower bound." ,,, -renewable_carriers,--,"Any subset of {solar, onwind, offwind-ac, offwind-dc, hydro}",List of renewable generators to include in the model. +renewable_carriers,--,"Any subset of {solar, onwind, offwind-ac, offwind-dc, offwind-float, hydro}",List of renewable generators to include in the model. estimate_renewable_capacities,,, --- enable,,bool,Activate routine to estimate renewable capacities +-- enable,,bool,Activate routine to estimate renewable capacities in rule :mod:`add_electricity`. This option should not be used in combination with pathway planning ``foresight: myopic`` or ``foresight: perfect`` as renewable capacities are added differently in :mod:`add_existing_baseyear`. -- from_opsd,--,bool,Add renewable capacities from `OPSD database `_. The value is depreciated but still can be used. -- year,--,bool,Renewable capacities are based on existing capacities reported by IRENA (IRENASTAT) for the specified year -- expansion_limit,--,float or false,"Artificially limit maximum IRENA capacities to a factor. For example, an ``expansion_limit: 1.1`` means 110% of capacities . If false are chosen, the estimated renewable potentials determine by the workflow are used." -- technology_mapping,,,Mapping between PyPSA-Eur and powerplantmatching technology names --- -- Offshore,--,"Any subset of {offwind-ac, offwind-dc}","List of PyPSA-Eur carriers that is considered as (IRENA, OPSD) onshore technology." +-- -- Offshore,--,"Any subset of {offwind-ac, offwind-dc, offwind-float}","List of PyPSA-Eur carriers that is considered as (IRENA, OPSD) onshore technology." -- -- Offshore,--,{onwind},"List of PyPSA-Eur carriers that is considered as (IRENA, OPSD) offshore technology." -- -- PV,--,{solar},"List of PyPSA-Eur carriers that is considered as (IRENA, OPSD) PV technology." autarky,,, diff --git a/doc/configtables/enable.csv b/doc/configtables/enable.csv index 06397fdf..c74d0eff 100644 --- a/doc/configtables/enable.csv +++ b/doc/configtables/enable.csv @@ -2,11 +2,8 @@ enable,str or bool,"{auto, true, false}","Switch to include (true) or exclude (false) the retrieve_* rules of snakemake into the workflow; 'auto' sets true|false based on availability of an internet connection to prevent issues with snakemake failing due to lack of internet connection." prepare_links_p_nom,bool,"{true, false}","Switch to retrieve current HVDC projects from `Wikipedia `_" retrieve_databundle,bool,"{true, false}","Switch to retrieve databundle from zenodo via the rule :mod:`retrieve_databundle` or whether to keep a custom databundle located in the corresponding folder." -retrieve_sector_databundle,bool,"{true, false}","Switch to retrieve sector databundle from zenodo via the rule :mod:`retrieve_sector_databundle` or whether to keep a custom databundle located in the corresponding folder." retrieve_cost_data,bool,"{true, false}","Switch to retrieve technology cost data from `technology-data repository `_." build_cutout,bool,"{true, false}","Switch to enable the building of cutouts via the rule :mod:`build_cutout`." retrieve_cutout,bool,"{true, false}","Switch to enable the retrieval of cutouts from zenodo with :mod:`retrieve_cutout`." -build_natura_raster,bool,"{true, false}","Switch to enable the creation of the raster ``natura.tiff`` via the rule :mod:`build_natura_raster`." -retrieve_natura_raster,bool,"{true, false}","Switch to enable the retrieval of ``natura.tiff`` from zenodo with :mod:`retrieve_natura_raster`." custom_busmap,bool,"{true, false}","Switch to enable the use of custom busmaps in rule :mod:`cluster_network`. If activated the rule looks for provided busmaps at ``data/custom_busmap_elec_s{simpl}_{clusters}.csv`` which should have the same format as ``resources/busmap_elec_s{simpl}_{clusters}.csv``, i.e. the index should contain the buses of ``networks/elec_s{simpl}.nc``." drop_leap_day,bool,"{true, false}","Switch to drop February 29 from all time-dependent data in leap years" diff --git a/doc/configtables/industry.csv b/doc/configtables/industry.csv index d1b560ed..4187e118 100644 --- a/doc/configtables/industry.csv +++ b/doc/configtables/industry.csv @@ -16,6 +16,9 @@ petrochemical_process _emissions,MtCO2/a,float,The emission of petrochemical pro HVC_primary_fraction,--,float,The fraction of high value chemicals (HVC) produced via primary route HVC_mechanical_recycling _fraction,--,float,The fraction of high value chemicals (HVC) produced using mechanical recycling HVC_chemical_recycling _fraction,--,float,The fraction of high value chemicals (HVC) produced using chemical recycling +HVC_environment_sequestration_fraction,--,float,The fraction of high value chemicals (HVC) put into landfill resulting in additional carbon sequestration. The default value is 0. +waste_to_energy,--,bool,Switch to enable expansion of waste to energy CHPs for conversion of plastics. Default is false. +waste_to_energy_cc,--,bool,Switch to enable expansion of waste to energy CHPs for conversion of plastics with carbon capture. Default is false. ,,, sector_ratios_fraction_future,--,Dictionary with planning horizons as keys.,The fraction of total progress in fuel and process switching achieved in the industry sector. basic_chemicals_without_NH3_production_today,Mt/a,float,"The amount of basic chemicals produced without ammonia (= 86 Mtethylene-equiv - 17 MtNH3)." @@ -29,5 +32,6 @@ MWh_H2_per_tCl,MWhH2/tCl,float,"The energy amount of hydrogen needed to produce methanol_production _today,MtMeOH/a,float,"The amount of methanol produced. From `DECHEMA (2017) `_, page 62" MWh_elec_per_tMeOH,MWh/tMeOH,float,"The energy amount of electricity needed to produce a ton of methanol. From `DECHEMA (2017) `_, Table 14, page 65" MWh_CH4_per_tMeOH,MWhCH4/tMeOH,float,"The energy amount of methane needed to produce a ton of methanol. From `DECHEMA (2017) `_, Table 14, page 65" +MWh_MeOH_per_tMeOH,LHV,float,"The energy amount per ton of methanol. From `DECHEMA (2017) `_, page 74." hotmaps_locate_missing,--,"{true,false}",Locate industrial sites without valid locations based on city and countries. reference_year,year,YYYY,The year used as the baseline for industrial energy demand and production. Data extracted from `JRC-IDEES 2015 `_ diff --git a/doc/configtables/licenses.csv b/doc/configtables/licenses.csv index 37f46cd0..d1fa4aa8 100644 --- a/doc/configtables/licenses.csv +++ b/doc/configtables/licenses.csv @@ -5,10 +5,8 @@ "naturalearth/*",,,,,http://www.naturalearthdata.com/about/terms-of-use/ "NUTS_2013 _60M_SH/*","x","x",,"x",https://ec.europa.eu/eurostat/web/gisco/geodata/reference-data/administrative-units-statistical-units "cantons.csv","x",,"x",,https://en.wikipedia.org/wiki/Data_codes_for_Switzerland -"eia_hydro_annual_generation.csv","x",,,,https://www.eia.gov/about/copyrights_reuse.php -"GEBCO_2014_2D.nc","x",,,,https://www.gebco.net/data_and_products/gridded_bathymetry_data/documents/gebco_2014_historic.pdf +"gebco/GEBCO_2014_2D.nc","x",,,,https://www.gebco.net/data_and_products/gridded_bathymetry_data/documents/gebco_2014_historic.pdf "hydro_capacities.csv","x",,,, "je-e-21.03.02.xls","x","x",,,https://www.bfs.admin.ch/bfs/en/home/fso/swiss-federal-statistical-office/terms-of-use.html "nama_10r_3 gdp.tsv.gz","x",,,"x",https://ec.europa.eu/eurostat/about/policies/copyright "nama_10r_3 popgdp.tsv.gz","x",,,"x",https://ec.europa.eu/eurostat/about/policies/copyright -"time_series_60min _singleindex_filtered.csv","x",,,,https://data.open-power-system-data.org/time_series/2019-06-05/README.md diff --git a/doc/configtables/load.csv b/doc/configtables/load.csv index 34d73dc5..9ebfea32 100644 --- a/doc/configtables/load.csv +++ b/doc/configtables/load.csv @@ -4,4 +4,4 @@ time_shift_for_large_gaps,string,string,"Periods which are used for copying time manual_adjustments,bool,"{true, false}","Whether to adjust the load data manually according to the function in :func:`manual_adjustment`." scaling_factor,--,float,"Global correction factor for the load time series." fixed_year,--,Year or False,"To specify a fixed year for the load time series that deviates from the snapshots' year" -supplement_synthetic,bool,"{true, false}","Whether to supplement missing data for selected time period should be supplemented by synthetic data from https://zenodo.org/record/10820928." +supplement_synthetic,bool,"{true, false}","Whether to supplement missing data for selected time period should be supplemented by synthetic data from https://zenodo.org/records/10820928." diff --git a/doc/configtables/run.csv b/doc/configtables/run.csv index 44f06165..f11a8d96 100644 --- a/doc/configtables/run.csv +++ b/doc/configtables/run.csv @@ -5,5 +5,7 @@ scenarios,,, -- enable,bool,"{true, false}","Switch to select whether workflow should generate scenarios based on ``file``." -- file,str,,"Path to the scenario yaml file. The scenario file contains config overrides for each scenario. In order to be taken account, ``run: scenarios`` has to be set to ``true`` and ``run: name`` has to be a subset of top level keys given in the scenario file. In order to automatically create a `scenario.yaml` file based on a combination of settings, alter and use the ``config/create_scenarios.py`` script in the ``config`` directory." disable_progressbar,bool,"{true, false}","Switch to select whether progressbar should be disabled." -shared_resources,bool/str,,"Switch to select whether resources should be shared across runs. If a string is passed, this is used as a subdirectory name for shared resources. If set to 'base', only resources before creating the elec.nc file are shared." +shared_resources,,, +-- policy,bool/str,,"Boolean switch to select whether resources should be shared across runs. If a string is passed, this is used as a subdirectory name for shared resources. If set to 'base', only resources before creating the elec.nc file are shared." +-- exclude,str,"For the case shared_resources=base, specify additional files that should not be shared across runs." shared_cutouts,bool,"{true, false}","Switch to select whether cutouts should be shared across runs." diff --git a/doc/configtables/sector-opts.csv b/doc/configtables/sector-opts.csv index fc9e8c10..afe631fa 100644 --- a/doc/configtables/sector-opts.csv +++ b/doc/configtables/sector-opts.csv @@ -1,6 +1,6 @@ Trigger, Description, Definition, Status -``nH``, i.e. ``2H``-``6H``, "Resample the time-resolution by averaging over every ``n`` snapshots, ``prepare_network``: `average_every_nhours() `_ and its `caller `__)", In active use -``Co2L``, Add an overall absolute carbon-dioxide emissions limit configured in ``electricity: co2limit``. If a float is appended an overall emission limit relative to the emission level given in ``electricity: co2base`` is added (e.g. ``Co2L0.05`` limits emissisions to 5% of what is given in ``electricity: co2base``), ``prepare_network``: `add_co2limit() `_ and its `caller `__, In active use +``nH``, i.e. ``2h``-``6h``, "Resample the time-resolution by averaging over every ``n`` snapshots, ``prepare_network``: `average_every_nhours() `_ and its `caller `__)", In active use +``Co2L`` + ``n``, Add an overall absolute carbon-dioxide emissions limit of ``n`` times of the 1990 base emissions (e.g. ``Co2L0.05`` limits emissisions to 5% of what is calculated in the rule :mod:``prepare_sector_network`` in the function ``co2_emissions_year()``),:mod:``prepare_sector_network`` in the function ``co2_emissions_year()`` , In active use ``carrier+{c|p|m}factor``,"Alter the capital cost (``c``), installable potential (``p``) or marginal costs (``m``) of a carrier by a factor. Example: ``solar+c0.5`` reduces the capital cost of solar to 50\% of original values.", ``prepare_network``, In active use ``T``,Add land transport sector,,In active use ``H``,Add heating sector,,In active use diff --git a/doc/configtables/sector.csv b/doc/configtables/sector.csv index 58ccd9bf..059c4233 100644 --- a/doc/configtables/sector.csv +++ b/doc/configtables/sector.csv @@ -24,7 +24,6 @@ bev_dsm,--,"{true, false}",Add the option for battery electric vehicles (BEV) to bev_availability,--,float,The share for battery electric vehicles (BEV) that are able to do demand side management (DSM) bev_energy,--,float,The average size of battery electric vehicles (BEV) in MWh bev_charge_efficiency,--,float,Battery electric vehicles (BEV) charge and discharge efficiency -bev_plug_to_wheel _efficiency,km/kWh,float,The distance battery electric vehicles (BEV) can travel in km per kWh of energy charge in battery. Base value comes from `Tesla Model S `_ bev_charge_rate,MWh,float,The power consumption for one electric vehicle (EV) in MWh. Value derived from 3-phase charger with 11 kW. bev_avail_max,--,float,The maximum share plugged-in availability for passenger electric vehicles. bev_avail_mean,--,float,The average share plugged-in availability for passenger electric vehicles. @@ -32,14 +31,15 @@ v2g,--,"{true, false}",Allows feed-in to grid from EV battery land_transport_fuel_cell _share,--,Dictionary with planning horizons as keys.,The share of vehicles that uses fuel cells in a given year land_transport_electric _share,--,Dictionary with planning horizons as keys.,The share of vehicles that uses electric vehicles (EV) in a given year land_transport_ice _share,--,Dictionary with planning horizons as keys.,The share of vehicles that uses internal combustion engines (ICE) in a given year. What is not EV or FCEV is oil-fuelled ICE. -transport_fuel_cell _efficiency,--,float,The H2 conversion efficiencies of fuel cells in transport -transport_internal _combustion_efficiency,--,float,The oil conversion efficiencies of internal combustion engine (ICE) in transport +transport_electric_efficiency,MWh/100km,float,The conversion efficiencies of electric vehicles in transport +transport_fuel_cell_efficiency,MWh/100km,float,The H2 conversion efficiencies of fuel cells in transport +transport_ice_efficiency,MWh/100km,float,The oil conversion efficiencies of internal combustion engine (ICE) in transport agriculture_machinery _electric_share,--,float,The share for agricultural machinery that uses electricity agriculture_machinery _oil_share,--,float,The share for agricultural machinery that uses oil agriculture_machinery _fuel_efficiency,--,float,The efficiency of electric-powered machinery in the conversion of electricity to meet agricultural needs. agriculture_machinery _electric_efficiency,--,float,The efficiency of oil-powered machinery in the conversion of oil to meet agricultural needs. Mwh_MeOH_per_MWh_H2,LHV,float,"The energy amount of the produced methanol per energy amount of hydrogen. From `DECHEMA (2017) `_, page 64." -MWh_MeOH_per_tCO2,LHV,float,"The energy amount of the produced methanol per ton of CO2. From `DECHEMA (2017) `_, page 64." +MWh_MeOH_per_tCO2,LHV,float,"The energy amount of the produced methanol per ton of CO2. From `DECHEMA (2017) `_, page 66." MWh_MeOH_per_MWh_e,LHV,float,"The energy amount of the produced methanol per energy amount of electricity. From `DECHEMA (2017) `_, page 64." shipping_hydrogen _liquefaction,--,"{true, false}",Whether to include liquefaction costs for hydrogen demand in shipping. ,,, @@ -145,3 +145,11 @@ limit_max_growth,,, -- -- {carrier},GW,float,The historic maximum growth of a carrier -- max_relative_growth,,, -- -- {carrier},p.u.,float,The historic maximum relative growth of a carrier +,,, +enhanced_geothermal,,, +-- enable,--,"{true, false}",Add option to include Enhanced Geothermal Systems +-- flexible,--,"{true, false}",Add option for flexible operation (see Ricks et al. 2024) +-- max_hours,--,int,The maximum hours the reservoir can be charged under flexible operation +-- max_boost,--,float,The maximum boost in power output under flexible operation +-- var_cf,--,"{true, false}",Add option for variable capacity factor (see Ricks et al. 2024) +-- sustainability_factor,--,float,Share of sourced heat that is replenished by the earth's core (see details in `build_egs_potentials.py `_) diff --git a/doc/configtables/solving.csv b/doc/configtables/solving.csv index 4d245195..4cfb9065 100644 --- a/doc/configtables/solving.csv +++ b/doc/configtables/solving.csv @@ -4,7 +4,7 @@ options,,, -- load_shedding,bool/float,"{'true','false', float}","Add generators with very high marginal cost to simulate load shedding and avoid problem infeasibilities. If load shedding is a float, it denotes the marginal cost in EUR/kWh." -- noisy_costs,bool,"{'true','false'}","Add random noise to marginal cost of generators by :math:`\mathcal{U}(0.009,0,011)` and capital cost of lines and links by :math:`\mathcal{U}(0.09,0,11)`." -- skip_iterations,bool,"{'true','false'}","Skip iterating, do not update impedances of branches. Defaults to true." --- rolling_horizon,bool,"{'true','false'}","Whether to optimize the network in a rolling horizon manner, where the snapshot range is split into slices of size `horizon` which are solved consecutively." +-- rolling_horizon,bool,"{'true','false'}","Switch for rule :mod:`solve_operations_network` whether to optimize the network in a rolling horizon manner, where the snapshot range is split into slices of size `horizon` which are solved consecutively. This setting has currently no effect on sector-coupled networks." -- seed,--,int,Random seed for increased deterministic behaviour. -- custom_extra_functionality,--,str,Path to a Python file with custom extra functionality code to be injected into the solving rules of the workflow relative to ``rules`` directory. -- io_api,string,"{'lp','mps','direct'}",Passed to linopy and determines the API used to communicate with the solver. With the ``'lp'`` and ``'mps'`` options linopy passes a file to the solver; with the ``'direct'`` option (only supported for HIGHS and Gurobi) linopy uses an in-memory python API resulting in better performance. @@ -14,6 +14,18 @@ options,,, -- transmission_losses,int,[0-9],"Add piecewise linear approximation of transmission losses based on n tangents. Defaults to 0, which means losses are ignored." -- linearized_unit_commitment,bool,"{'true','false'}",Whether to optimise using the linearized unit commitment formulation. -- horizon,--,int,Number of snapshots to consider in each iteration. Defaults to 100. +-- post_discretization,,, +-- -- enable,bool,"{'true','false'}",Switch to enable post-discretization of the network. Disabled by default. +-- -- line_unit_size,MW,float,Discrete unit size of lines in MW. +-- -- line_threshold,,float,The threshold relative to the discrete line unit size beyond which to round up to the next unit. +-- -- link_unit_size,MW,float,Discrete unit size of links in MW by carrier (given in dictionary style). +-- -- -- {carrier},,, +-- -- link_threshold,,float,The threshold relative to the discrete link unit size beyond which to round up to the next unit by carrier (given in dictionary style). +-- -- -- {carrier},,, +agg_p_nom_limits,,,Configure per carrier generator nominal capacity constraints for individual countries if ``'CCL'`` is in ``{opts}`` wildcard. +-- agg_offwind,bool,"{'true','false'}",Aggregate together all the types of offwind when writing the constraint. Default is false. +-- include_existing,bool,"{'true','false'}",Take existing capacities into account when writing the constraint. Default is false. +-- file,file,path,Reference to ``.csv`` file specifying per carrier generator nominal capacity constraints for individual countries and planning horizons. Defaults to ``data/agg_p_nom_minmax.csv``. constraints ,,, -- CCL,bool,"{'true','false'}",Add minimum and maximum levels of generator nominal capacity per carrier for individual countries. These can be specified in the file linked at ``electricity: agg_p_nom_limits`` in the configuration. File defaults to ``data/agg_p_nom_minmax.csv``. -- EQ,bool/string,"{'false',`n(c| )``; i.e. ``0.5``-``0.7c``}",Require each country or node to on average produce a minimal share of its total consumption itself. Example: ``EQ0.5c`` demands each country to produce on average at least 50% of its consumption; ``EQ0.5`` demands each node to produce on average at least 50% of its consumption. diff --git a/doc/configuration.rst b/doc/configuration.rst index d531ee66..8695d4bb 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -31,7 +31,7 @@ Top-level configuration .. _run_cf: ``run`` -======= +============= It is common conduct to analyse energy system optimisation models for **multiple scenarios** for a variety of reasons, e.g. assessing their sensitivity towards changing the temporal and/or geographical resolution or investigating how @@ -174,7 +174,7 @@ Switches for some rules and optional features. :file: configtables/co2_budget.csv .. note:: - this parameter is over-ridden if ``CO2Lx`` or ``cb`` is set in + this parameter is over-ridden if ``Co2Lx`` or ``cb`` is set in sector_opts. .. _electricity_cf: @@ -265,7 +265,7 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia .. literalinclude:: ../config/config.default.yaml :language: yaml :start-at: offwind-dc: - :end-before: solar: + :end-before: offwind-float: .. csv-table:: :header-rows: 1 @@ -273,9 +273,25 @@ Define and specify the ``atlite.Cutout`` used for calculating renewable potentia :file: configtables/offwind-dc.csv .. note:: - both ``offwind-ac`` and ``offwind-dc`` have the same assumption on + Both ``offwind-ac`` and ``offwind-dc`` have the same assumption on ``capacity_per_sqkm`` and ``correction_factor``. +``offwind-float`` +--------------- + +.. literalinclude:: ../config/config.default.yaml + :language: yaml + :start-at: offwind-float: + :end-before: solar: + +.. csv-table:: + :header-rows: 1 + :widths: 22,7,22,33 + :file: configtables/offwind-float.csv + +.. note:: + ``offwind-ac``, ``offwind-dc`` , ``offwind-float`` have the same assumption on + ``capacity_per_sqkm`` and ``correction_factor``. ``solar`` --------------- @@ -534,9 +550,6 @@ The list of available biomass is given by the category in `ENSPRESO_BIOMASS `__. -.. csv-table:: - :header-rows: 1 - :file: configtables/licenses.csv - * BY: Attribute Source * NC: Non-Commercial Use Only * SA: Share Alike -Sector-Coupled Systems Databundle -================================= +.. csv-table:: + :header-rows: 1 + :file: configtables/licenses.csv .. csv-table:: :header-rows: 1 diff --git a/doc/preparation.rst b/doc/preparation.rst index feb10c60..06e8b19b 100644 --- a/doc/preparation.rst +++ b/doc/preparation.rst @@ -26,7 +26,6 @@ With these and the externally extracted ENTSO-E online map topology Then the process continues by calculating conventional power plant capacities, potentials, and per-unit availability time series for variable renewable energy carriers and hydro power plants with the following rules: - :mod:`build_powerplants` for today's thermal power plant capacities using `powerplantmatching `__ allocating these to the closest substation for each powerplant, -- :mod:`build_natura_raster` for rasterising NATURA2000 natural protection areas, - :mod:`build_ship_raster` for building shipping traffic density, - :mod:`build_renewable_profiles` for the hourly capacity factors and installation potentials constrained by land-use in each substation's Voronoi cell for PV, onshore and offshore wind, and - :mod:`build_hydro_profile` for the hourly per-unit hydro power availability time series. @@ -47,14 +46,6 @@ Rule ``prepare_links_p_nom`` .. automodule:: prepare_links_p_nom -.. _natura: - -Rule ``build_natura_raster`` -=============================== - -.. automodule:: build_natura_raster - - .. _base: Rule ``base_network`` diff --git a/doc/release_notes.rst b/doc/release_notes.rst index dbc857bc..8388946f 100644 --- a/doc/release_notes.rst +++ b/doc/release_notes.rst @@ -9,189 +9,379 @@ Release Notes Upcoming Release ================ -* Group existing capacities to the earlier grouping_year for consistency with optimized capacities. -* bugfix: installed heating capacities were 5% lower than existing heating capacities +* Set non-zero capital_cost for methanol stores to avoid unrealistic storage sizes -* Include gas and oil fields and saline aquifers in estimation of CO2 sequestration potential. +* Set p_nom = p_nom_min for generators with baseyear == grouping_year in add_existing_baseyear. This has no effect on the optimization but helps n.statistics to correctly report already installed capacities. -* bugfix: convert Strings to pathlib.Path objects as input to ConfigSettings +* Reverted outdated hotfix for doubled renewable capacity in myopic optimization. -* Allow the use of more solvers in clustering (Xpress, COPT, Gurobi, CPLEX, SCIP, MOSEK). +* Added Enhanced Geothermal Systems for generation of electricity and district heat. + Cost and available capacity assumptions based on `Aghahosseini et al. (2020) + `__. + See configuration ``sector: enhanced_geothermal`` for details; by default switched off. -* Enhanced support for choosing different weather years - (https://github.com/PyPSA/pypsa-eur/pull/204): +* Partially revert https://github.com/PyPSA/pypsa-eur/pull/967 to return to old grouping year logic (which was mostly correct) - - Processed energy statistics from eurostat (1990-2021) and IDEES (2000-2015) - are now initially stored for all available years and filtered by the year - given in ``energy: energy_totals_year:``. +* Bugfix: Correctly read in threshold capacity below which to remove components from previous planning horizons in :mod:`add_brownfield`. +PyPSA-Eur 0.11.0 (25th May 2024) +===================================== + +**New Features** + +* Introduced scenario management to support the simultaneous execution of + multiple scenarios with a single ``snakemake`` call. A ``scenarios.yaml`` file + allows customizable scenario names with configuration overrides. To enable, + set ``run: scenarios: true`` and define the list of scenario names under + ``run: name:`` in the configuration file. The scenario file's top-level keys + must match the defined scenario names. + (https://github.com/PyPSA/pypsa-eur/pull/724, + https://github.com/PyPSA/pypsa-eur/pull/975, + https://github.com/PyPSA/pypsa-eur/pull/989, + https://github.com/PyPSA/pypsa-eur/pull/993, + https://github.com/PyPSA/pypsa-eur/pull/1011) + + - A scenarios template file ``config/scenarios.template.yaml`` is included and + copied to ``config/scenarios.yaml`` on first use. + - The scenario file can be changed via ``run: scenarios: file:``. + - Activating scenario management with ``run: scenarios: enable: true`` + introduces a new wildcard ``{run}``. Configuration settings may now depend + on this wildcard. A new ``config_provider()`` function is used in the + ``Snakefile`` and ``.smk`` files to handle wildcard values. + - Scenario files can be programmatically created using + ``config/create_scenarios.py``. This script can be run with ``snakemake -j1 + create_scenarios``. + - The setting ``run: name: all`` will run all scenarios in + ``config/scenarios.yaml``. Otherwise, only the scenarios listed under ``run: + name:`` will run. + - The setting ``run: shared_resources:`` indicates whether resources should be + encapsulated by ``run: name:``. The special setting ``run: shared_resources: + base`` shares resources until ``add_electricity`` that do not contain + wildcards other than ``{"technology", "year", "scope"}``. + - Added new configuration options for all ``{opts}`` and ``{sector_opts}`` + wildcard values to create a unique configuration file (``config.yaml``) per + PyPSA network file using ``update_config_from_wildcards()``. This function + updates the ``snakemake.config`` object with settings from wildcards. + - The cost data was moved from ``data/costs_{year}.csv`` to + ``resources/costs_{year}.csv``. The ``retrieve_cost_data`` rule now calls a + Python script. + - Time clustering settings moved to ``clustering: temporal:`` from + ``snapshots:``, simplifying scenario management. + - Collection rules have a new wildcard ``run=config["run"]["name"]`` to + collect outputs across scenarios. + - Scenarios can be encapsulated in a directory using ``run: prefix:``. + - The ``{sector_opts}`` wildcard is no longer used by default. All scenario + definitions are now in ``config.yaml``. + - **Warning:** Scenario management with myopic or perfect foresight pathway + optimization requires the first investment period to be shared across all + scenarios. The ``wildcard_constraints`` for the ``add_existing_baseyear`` + rule do not accept wildcard-aware input functions. + +* Enhanced support for choosing different weather years. + (https://github.com/PyPSA/pypsa-eur/pull/204) + + - Processed energy statistics from Eurostat (1990-2021) and IDEES (2000-2015) + are stored for all available years and filtered by the year in ``energy: + energy_totals_year:``. - Added option to supplement electricity load data with synthetic time series - for years not contained in OPSD (from https://zenodo.org/records/10820928, - ``load: supplement_synthetic:``). - - - The total annual heat demand for years not contained in the energy - statistics by eurostat (1990-2021) or IDEES (2000-2015) are scaled based on - a regression between the total number of heating degree days and the total - annual heat demand between the years 2007-2021, assuming a similar building - stock. - + for years not in OPSD (from https://zenodo.org/records/10820928, ``load: + supplement_synthetic:``). + - Total annual heat demand for years not in Eurostat (1990-2021) or IDEES + (2000-2015) is scaled based on a regression between heating degree days and + heat demand for 2007-2021, assuming a similar building stock. - Added option to scale annual hydro-electricity generation data for years not - contained in the in EIA (1980-2021) based on a regression between annual - generation and total runoff per country for the years 1980-2021 - (``renewable: hydro: eia_approximate_missing:``) - - - Added option to normalize annual hydro generation data by the associated - installed capacity reported by EIA (1980-2021) in order to eliminate changes - in generation due to newly built capacity (``renewable: hydro: - eia_approximate_missing: eia_correct_by_capacity:``). - + in EIA (1980-2021) based on a regression between annual generation and total + runoff per country for 1980-2021 (``renewable: hydro: + eia_approximate_missing:``). + - Added option to normalize annual hydro generation data by the installed + capacity reported by EIA (1980-2021) to eliminate changes due to newly built + capacity (``renewable: hydro: eia_approximate_missing: + eia_correct_by_capacity:``). - Added option to make hydro generation data independent of weather year (``renewable: hydro: eia_approximate_missing: eia_norm_year:``). - - Added option to drop leap days (``enable: drop_leap_day:``). - - - Added option to make electric load data independent of weather year - (``load: fixed_year:``). - - - Include time series of Swiss number of passenger vehicles from the `Swiss - Federal Statistical Office - `__. - + - Added option to make electric load data independent of weather year (``load: + fixed_year:``). + - Include time series of Swiss passenger vehicles from the Swiss Federal + Statistical Office. - Updated hydro-electricity generation and capacity data from EIA. - - - The easiest way to sweep over multiple weather years is to use the new - scenario management. An example for the necessary `create_scenarios.py` - script can be found in this `Github gist + - The easiest way to use multiple weather years is with the new scenario + management. An example `create_scenarios.py` script is available in this + `Github gist `__. -* Removed rule ``copy_config``. Instead, a config file is created for each - network output of the ``solve_*`` rules, with the same content as ``n.meta``. +* New renewable technologies: + + - Solar PV with single-axis horizontal tracking (N-S axis), carrier: + ``solar-hsat``. (https://github.com/PyPSA/pypsa-eur/pull/1066) + - Floating offshore wind technology for water depths below 60m, carrier: + ``offwind-float``. (https://github.com/PyPSA/pypsa-eur/pull/773) + +* Added default values for power distribution losses, assuming uniform 3% losses + on distribution grid links. These are deducted from national load time series + to avoid double counting. Extensions for country-specific loss factors and + planning horizon developments are planned. + +* Added ``industry: HVC_environment_sequestration_fraction:`` to specify the + fraction of carbon in plastics that is permanently sequestered in landfills. + The default assumption is that all carbon in plastics is eventually released + to the atmosphere. (https://github.com/PyPSA/pypsa-eur/pull/1060) + +* Added options for building waste-to-energy plants with and without carbon + capture to consume non-recycled and non-sequestered plastics. Config settings: + ``industry: waste_to_energy:`` and ``industry: waste_to_energy_cc``. This + excludes municipal solid waste. (https://github.com/PyPSA/pypsa-eur/pull/1060) + +* Added option to post-discretize line and link capacities based on unit sizes + and rounding thresholds in the configuration under ``solving: options: + post_discretization:``. This is disabled by default. + (https://github.com/PyPSA/pypsa-eur/pull/1064) + +* Time aggregation for sector-coupled networks is now its own rule + :mod:`time_aggregation`. Time aggregation is constant over planning horizons + of the same network when using time step segmentation. + (https://github.com/PyPSA/pypsa-eur/pull/1065, + https://github.com/PyPSA/pypsa-eur/pull/1075) + +* Added config ``run: shared_resources: exclude:`` to specify files excluded + from shared resources with ``run: shared_resources: base``. The function + ``_helpers/get_run_path()`` now takes an additional keyword argument + ``exclude_from_shared`` with a list of files that should not be shared. + (https://github.com/PyPSA/pypsa-eur/pull/1050) + +* Added existing biomass boilers in :mod:`add_existing_baseyear`. + (https://github.com/PyPSA/pypsa-eur/pull/951) * Added new HVDC transmission projects from `TYNDP 2024 draft projects `__. + (https://github.com/PyPSA/pypsa-eur/pull/982) -* Upgrade to Snakemake v8.5+. This version is the new minimum version required. - To upgrade an existing environment, run ``conda install -c bioconda - snakemake-minimal">=8.5"`` and ``pip install snakemake-storage-plugin-http`` - (https://github.com/PyPSA/pypsa-eur/pull/825). +* Linearly interpolated missing investment periods in year-dependent + configuration options. (https://github.com/PyPSA/pypsa-eur/pull/943) -* Corrected a bug leading to power plants operating after their DateOut - (https://github.com/PyPSA/pypsa-eur/pull/958). Added additional grouping years - before 1980. +* Added shapes to the ``netCDF`` files for different stages of the network + object in `base_network`, `simplify_network`, and `cluster_network`. The + `build_bus_regions` rule is now integrated into the `base_network` rule. + (https://github.com/PyPSA/pypsa-eur/pull/1013, + https://github.com/PyPSA/pypsa-eur/pull/1051) -* Add decommissioning of existing renewables assets in `add_existing_baseyear`. +* Added config ``land_transport_demand_factor`` to model growth in land + transport demand for different time horizons. -* The Eurostat data was updated to the 2023 version in :mod:`build_energy_totals`. +* Allowed dictionary for ``aviation_demand_factor`` to specify changes in + aviation demand by investment period. -* The latest `Swiss energy totals - `__ - have been updated to the 2023 version. +* Allowed more solvers in clustering (Xpress, COPT, Gurobi, CPLEX, SCIP, MOSEK). + (https://github.com/PyPSA/pypsa-eur/pull/949) -* The JRC-IDEES data is only available until 2015. For energy totals years (``energy: energy_totals_year``) after - 2015, the data scaled using the ratio of Eurostat data reported for the energy - totals year and 2015. +* Added option to download cost data from custom fork of ``technology-data``. + (https://github.com/PyPSA/pypsa-eur/pull/970) -* The default energy totals year (``energy: energy_totals_year``) was updated to 2019. +* Added ``nodal_supply_energy`` to :mod:`make_summary`. + (https://github.com/PyPSA/pypsa-eur/pull/1046) -* Upgrade default techno-economic assumptions to ``technology-data`` v0.8.1. +**Breaking Changes** -* Add possibility to download cost data from custom fork of ``technology-data``. +* Upgraded to Snakemake v8.5+. This version is the new minimum requirement. To + upgrade an existing environment, run ``conda install -c bioconda + snakemake-minimal">=8.5"`` and ``pip install snakemake-storage-plugin-http``. + (https://github.com/PyPSA/pypsa-eur/pull/825) -* Linearly interpolate missing investment periods in year-dependent - configuration options. +* Removed exogenously set share of rooftop PV (``costs: rooftop_share:``). + Rooftop and utility-scale PV are now separate technologies with endogenous + shares. -* Added new scenario management that supports the simultaneous execution of - multiple scenarios with a single ``snakemake`` call. For this purpose, a - ``scenarios.yaml`` file is introduced which contains customizable scenario - names with configuration overrides. To enable it, set the ``run: scenarios: - true`` and define the list of scenario names to run under ``run: name:`` in - the configuration file. The latter must be a subset of toplevel keys in the - scenario file. +* Removed rule ``copy_config``. Instead, a config file is created for each + network output of the ``solve_*`` rules, with the same content as ``n.meta``. + (https://github.com/PyPSA/pypsa-eur/pull/965) - - To get started, a scenarios template file ``config/scenarios.template.yaml`` - is included in the repository, which is copied to ``config/scenarios.yaml`` - on first use. +* Moved switch ``run: shared_resources:`` to ``run: shared_resources: policy:``. - - The scenario file can be changed via ``run: scenarios: file:``. +**Changes** - - If scenario management is activated with ``run: scenarios: enable: true``, a - new wildcard ``{run}`` is introduced. This means that the configuration - settings may depend on the new ``{run}`` wildcard. Therefore, a new - ``config_provider()`` function is used in the ``Snakefile`` and ``.smk`` - files, which takes wildcard values into account. The calls to the ``config`` - object have been reduced in ``.smk`` files since there is no awareness of - wildcard values outside rule definitions. +* Updated, merged, and reduced data bundle: + (https://github.com/PyPSA/pypsa-eur/pull/1020, + https://github.com/PyPSA/pypsa-eur/pull/1027) - - The scenario files can also be programmatically created using the template - script ``config/create_scenarios.py``. This script can be run with - ``snakemake -j1 create_scenarios`` and creates the scenarios file referenced - under ``run: scenarios: file:``. + - Merged electricity-only and sector-coupled data bundles into one bundle. + This removed the ``retrieve_sector_databundle`` rule. + - Included rasterised ``natura.tiff`` in the data bundle and removed the + ``retrieve_natura_raster`` rule. + - Removed the ``build_natura_raster`` rule due to its infrequent use and + significant data bundle size increase. + - Removed outdated files from the data bundle (e.g., Eurostat energy + balances). + - Reduced the spatial scope of GEBCO bathymetry data to Europe to save space. + - Removed a separate data bundle for tutorials. + - Directly downloaded the `Hotmaps Industrial Database + `__ + from the source, removing ``Industrial_Database.csv`` from the data bundle. - - The setting ``run: name: all`` will run all scenarios in - ``config/scenarios.yaml``. Otherwise, it will run those passed as list in - ``run: name:`` as long as ``run: scenarios: enable: true``. +* Updated energy statistics: (https://github.com/PyPSA/pypsa-eur/pull/947, + https://github.com/PyPSA/pypsa-eur/pull/973, + https://github.com/PyPSA/pypsa-eur/pull/990, + https://github.com/PyPSA/pypsa-eur/pull/1025, + https://github.com/PyPSA/pypsa-eur/pull/1074) - - The setting ``run: shared_resources:`` indicates via a boolean whether the - resources should be encapsulated by the ``run: name:``. The special setting - ``run: shared_resources: base`` shares resources until ``add_electricity`` - that do not contain wildcards other than ``{"technology", "year", - "scope"}``. + - Updated Eurostat data to the 2023 version in :mod:`build_energy_totals`. + - Updated the latest Swiss energy totals to the 2023 version. + - Scaled JRC-IDEES data using the ratio of Eurostat data for energy totals + years after 2015 and 2015. + - Updated default energy totals year to 2019. + - Updated energy balances for residential demands (space, water, cooking) in + JRC-IDEES data with newer Eurostat values. - - Added new configuration options for all ``{opts}`` and ``{sector_opts}`` - wildcard values to create a unique configuration file (``config.yaml``) per - PyPSA network file. This is done with the help of a new function - ``update_config_from_wildcards()`` which parses configuration settings from - wildcards and updates the ``snakemake.config`` object. These updated - configuration settings are used in the scripts rather than directly parsed - values from ``snakemake.wildcards``. +* Improved documentation: (https://github.com/PyPSA/pypsa-eur/pull/1017, + https://github.com/PyPSA/pypsa-eur/pull/1014) - - The cost data was moved from ``data/costs_{year}.csv`` to - ``resources/costs_{year}.csv`` since it depends on configuration settings. - The ``retrieve_cost_data`` rule was changed to calling a Python script. + - Clarified that ``solving: rolling_horizon:`` only works for + :mod:`solve_operations_network`, not for networks with sector-coupling or + investment variables. + - Clarified suffix usage in `add_existing_baseyear`. + - Added documentation section for contributing documentation. - - Moved time clustering settings to ``clustering: temporal:`` from - ``snapshots:`` so that the latter is only used to define the - ``pandas.DatetimeIndex`` which simplifies the scenario management. +* Included gas and oil fields and saline aquifers for estimating carbon + sequestration potentials. (https://github.com/PyPSA/pypsa-eur/pull/1010, + https://github.com/PyPSA/pypsa-eur/pull/983) - - Collection rules get a new wildcard ``run=config["run"]["name"]`` so they - can collect outputs across different scenarios. +* Doubled solar rooftop potentials to roughly 1 TW for Europe based on recent + European Commission reports. - - It is further possible to encapsulate your scenarios in a directory using - the setting ``run: prefix:``. +* Consistently sourced data on existing renewable capacities from + ``powerplantmatching``. Removed ``retrieve_irena`` rule. Updated the dataset + to include 2023 values. (https://github.com/PyPSA/pypsa-eur/pull/1018) - - **Warning:** One caveat remains for the scenario management with myopic or - perfect foresight pathway optimisation. The first investment period must be - shared across all scenarios. The reason is that the ``wildcard_constraints`` - defined for the rule ``add_existing_baseyear`` do not accept wildcard-aware - input functions (cf. - `https://github.com/snakemake/snakemake/issues/2703`_). +* Added methanol consumption in industry as reported in the DECHEMA report + directly as methanol demand. (https://github.com/PyPSA/pypsa-eur/pull/1068) -* The outputs of the rule ``retrieve_gas_infrastructure_data`` no longer - marked as ``protected()`` as the download size is small. +* Adapted disabling of transmission expansion in myopic foresight optimizations + when the limit is reached to handle cost limits. + (https://github.com/PyPSA/pypsa-eur/pull/952, + https://github.com/PyPSA/pypsa-eur/pull/1076) -* Bugfix: allow modelling sector-coupled landlocked regions. (Fixed handling of offshore wind.) +* Improved the behavior of ``agg_p_nom_limits``: Moved configuration to + ``solving``; added the ability to aggregate all ``offwind`` types; added + option to consider existing capacities; added option to distinguish by + planning horizon. (https://github.com/PyPSA/pypsa-eur/pull/1023) -* Adapt the disabling of transmission expansion in myopic foresight optimisations when limit is already reached to also handle cost limits. +* Disabled ``electricity: everywhere_powerplants``` by default to save memory in + :mod:`simplify_network`. -* Fix duplicated years and grouping years reference in `add_land_use_constraint_m`. +* Moved non-essential example configuration files to ``config/examples``. -* Fix type error with `m` option in `cluster_network`. +* Outputs of the retrieve rules are no longer marked as ``protected()``. -* Fix error with `symbol` of `buses` in `simplify_network`. +* Improved carbon budget distribution plot. + (https://github.com/PyPSA/pypsa-eur/pull/1070) -* Fix index of existing capacities in `add_power_capacities_installed_before_baseyear` with `m` option. +* Moved all graphics to ``doc/img``. + (https://github.com/PyPSA/pypsa-eur/pull/1052) -* Fix custom busmap read in `cluster_network`. +* Connection costs calculated in :mod:`simplify_network` are no longer written + to file. (https://github.com/PyPSA/pypsa-eur/pull/1031) -* Data on existing renewable capacities is now consistently taken from powerplantmatching (instead of being retrieved separately); the dataset has also been updated to include 2023 values. +**Bugs and Compatibility** -* Added shapes to .nc file for different stages of the network object in `base_network`, `simplify_network`, and `cluster_network`; the `build_bus_regions` rule is now integrated into the `base_network` rule. +* Updated ``technology-data`` to version v0.9.0. -* Fix p_nom_min of renewables generators for myopic approach and add check of existing capacities in `add_land_use_constraint_m`. +* Bumped minimum ``powerplantmatching`` version to v0.5.15. + (https://github.com/PyPSA/pypsa-eur/pull/1057) -* Add documentation section for how to contribute documentation +* Bugfix: The configuration setting ``electricity: + estimate_renewable_capacities: enable:`` for rule :mod:`add_electricity` is + not compatible with ``foresight: myopic``. The logic now skips adding existing + renewable capacities in :mod:`add_electricity` if the foresight mode is + ``myopic``. (https://github.com/PyPSA/pypsa-eur/pull/1080) +* Bugfix: Ensure gas-fired power plants are correctly added as OCGT or CCGT in + :mod:`add_electricity`. Previously, they were always added as OCGT. + +* Bugfix: Fix distinction of temperature-dependent correction factors for the + energy demand of electric vehicles and ICEs fuel cell cars. + (https://github.com/PyPSA/pypsa-eur/pull/957) + +* Bugfix: Ensure all industry coal demands are considered when using + ``sector_ratios_fraction_future``. + (https://github.com/PyPSA/pypsa-eur/pull/1047) + +* Bugfix: Add existing heat pumps to low-voltage level. + (https://github.com/PyPSA/pypsa-eur/pull/948) + +* Fixed gas network retrofitting to hydrogen in :mod:`add_brownfield` for myopic + pathway studies. (https://github.com/PyPSA/pypsa-eur/pull/1036) + +* Bugfix: Consider decommissioning of existing renewable assets in + :mod:`add_existing_baseyear`. (https://github.com/PyPSA/pypsa-eur/pull/1001, + https://github.com/PyPSA/pypsa-eur/pull/959) + +* Bugfix: Adjust build year groups of existing capacities for consistency with + optimized capacities per planning horizon. The previous setup neglected some + existing heating capacities. (https://github.com/PyPSA/pypsa-eur/pull/1019) + +* Bugfix: Corrected a bug causing power plants to operate after their + ``DateOut``. Added additional grouping years before 1980. + (https://github.com/PyPSA/pypsa-eur/pull/958) + +* Bugfix: Allow modeling sector-coupled landlocked regions by handling the + absence of offshore wind. (https://github.com/PyPSA/pypsa-eur/pull/944) + +* Bugfix: Correct approximation of hydropower generation if Portugal or Spain + are not included. (https://github.com/PyPSA/pypsa-eur/pull/1054) + +* Bugfix: In :mod:`build_electricity_demand`, ensure load data is only added if + the country is included in the configuration. + (https://github.com/PyPSA/pypsa-eur/pull/1054) + +* Bugfix: Skip heat bus for CHPs in areas without central heating. + (https://github.com/PyPSA/pypsa-eur/pull/1021) + +* Bugfix: Avoid duplicated offshore regions. + +* Fixed type error with ``m`` option in :mod:`cluster_network`. + (https://github.com/PyPSA/pypsa-eur/pull/986) + +* Fixed error with ``symbol`` column of buses in :mod:`simplify_network`. + (https://github.com/PyPSA/pypsa-eur/pull/987) + +* Fixed index of existing capacities in + ``add_power_capacities_installed_before_baseyear`` with ``m`` option. + (https://github.com/PyPSA/pypsa-eur/pull/1002) + +* Fixed reading in custom busmaps in :mod:`cluster_network`. + (https://github.com/PyPSA/pypsa-eur/pull/1008) + +* Fixed ``p_nom_min`` of renewables generators for myopic approach and added + check of existing capacities in ``add_land_use_constraint_m``. + (https://github.com/PyPSA/pypsa-eur/pull/1022, + https://github.com/PyPSA/pypsa-eur/pull/1029) + +* Fixed duplicated years and grouping years reference in + ``add_land_use_constraint_m``. (https://github.com/PyPSA/pypsa-eur/pull/991, + https://github.com/PyPSA/pypsa-eur/pull/968) + +* Fixed filling of missing data in + ``build_industry_sector_ratios_intermediate``. + (https://github.com/PyPSA/pypsa-eur/pull/1004) + +* Fixed file name encoding in optional rule :mod:`build_biomass_transport_costs` + depending on the operating system. + (https://github.com/PyPSA/pypsa-eur/pull/769) + +* Technical fix for constraint function ``add_operational_reserve_margin``. + (https://github.com/PyPSA/pypsa-eur/pull/1071) + +* Technical fix for constraint function ``add_BAU_constraints``. + (https://github.com/PyPSA/pypsa-eur/pull/1024) + +* Fixed network clustering and simplification issues caused by adding TYNDP + links. (https://github.com/PyPSA/pypsa-eur/pull/1067) + +* Bugfix: Ensure correct indexing of weights in :mod:`cluster_network`. + (https://github.com/PyPSA/pypsa-eur/pull/988) + +* Bugfix: Only sanitize locations when there are buses with a location. + (https://github.com/PyPSA/pypsa-eur/pull/971) PyPSA-Eur 0.10.0 (19th February 2024) ===================================== @@ -634,7 +824,7 @@ PyPSA-Eur 0.9.0 (5th January 2024) * The minimum PyPSA version is now 0.26.1. -* Update to ``tsam>=0.2.3`` for performance improvents in temporal clustering. +* Update to ``tsam>=0.2.3`` for performance improvements in temporal clustering. * Pin ``snakemake`` version to below 8.0.0, as the new version is not yet supported. The next release will switch to the requirement ``snakemake>=8``. @@ -1514,7 +1704,7 @@ This release is known to work with `PyPSA-Eur **Gas Transmission Network** * New rule ``retrieve_gas_infrastructure_data`` that downloads and extracts the - SciGRID_gas `IGGIELGN `__ dataset from + 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. @@ -1674,7 +1864,7 @@ This release is known to work with `PyPSA-Eur PyPSA network. * Updated `data bundle - `__ + `__ that includes the hydrogan salt cavern storage potentials. * Updated and extended documentation in @@ -2034,7 +2224,7 @@ PyPSA-Eur-Sec codebase in Version 0.2.0 above. This model has `its own github repository `__ and is `archived -on Zenodo `__. +on Zenodo `__. @@ -2050,7 +2240,7 @@ European countries with one node per country. It includes demand and supply for electricity, space and water heating in buildings, and land transport. -It is `archived on Zenodo `__. +It is `archived on Zenodo `__. Release Process diff --git a/doc/retrieve.rst b/doc/retrieve.rst index 8d9c08da..6b339355 100644 --- a/doc/retrieve.rst +++ b/doc/retrieve.rst @@ -53,32 +53,6 @@ The :ref:`tutorial` uses a smaller cutout than required for the full model (30 M For details see :mod:`build_cutout` and read the `atlite documentation `__. -Rule ``retrieve_natura_raster`` -================================ - -.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4706686.svg - :target: https://doi.org/10.5281/zenodo.4706686 - -This rule, as a substitute for :mod:`build_natura_raster`, downloads an already rasterized version (`natura.tiff `__) of `Natura 2000 `__ natural protection areas to reduce computation times. The file is placed into the ``resources`` sub-directory. - -**Relevant Settings** - -.. code:: yaml - - enable: - build_natura_raster: - -.. seealso:: - Documentation of the configuration file ``config/config.yaml`` at - :ref:`toplevel_cf` - -**Outputs** - -- ``resources/natura.tiff``: Rasterized version of `Natura 2000 `__ natural protection areas to reduce computation times. - -.. seealso:: - For details see :mod:`build_natura_raster`. - Rule ``retrieve_electricity_demand`` ==================================== @@ -130,14 +104,3 @@ None. **Outputs** - ``data/shipdensity_global.zip`` - - -Rule ``retrieve_sector_databundle`` -==================================== - -.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5546516.svg - :target: https://doi.org/10.5281/zenodo.5546516 - -In addition to the databundle required for electricity-only studies, -another databundle is required for modelling sector-coupled systems. -The size of this data bundle is around 640 MB. diff --git a/doc/sector.rst b/doc/sector.rst index bdfc5386..e186ccf7 100644 --- a/doc/sector.rst +++ b/doc/sector.rst @@ -183,6 +183,11 @@ Rule ``cluster_gas_network`` .. automodule:: cluster_gas_network +Rule ``time_aggregation`` +============================================================================== + +.. automodule:: time_aggregation + Rule ``prepare_sector_network`` ============================================================================== diff --git a/doc/spatial_resolution.rst b/doc/spatial_resolution.rst index 20158ab6..76228ad8 100644 --- a/doc/spatial_resolution.rst +++ b/doc/spatial_resolution.rst @@ -15,11 +15,11 @@ The total number of nodes for Europe is set in the ``config/config.yaml`` file u Exemplary unsolved network clustered to 512 nodes: -.. image:: ../graphics/elec_s_512.png +.. image:: img/elec_s_512.png Exemplary unsolved network clustered to 37 nodes: -.. image:: ../graphics/elec_s_37.png +.. image:: img/elec_s_37.png The total number of nodes for Europe is set in the ``config/config.yaml`` file under `clusters `__. The number of nodes can vary between 37, the number of independent countries/synchronous areas, and several hundred. With 200-300 nodes, the model needs 100-150 GB RAM to solve with a commercial solver like Gurobi. Not all of the sectors are at the full nodal resolution, and some demand for some sectors is distributed to nodes using heuristics that need to be corrected. Some networks are copper-plated to reduce computational times. diff --git a/doc/supply_demand.rst b/doc/supply_demand.rst index cc598aaf..e5646fcb 100644 --- a/doc/supply_demand.rst +++ b/doc/supply_demand.rst @@ -18,7 +18,7 @@ management, carbon capture and usage/sequestration, and gas networks. The basic supply (left column) and demand (right column) options in the model are described in this figure: -.. image:: ../graphics/multisector_figure.png +.. image:: img/multisector_figure.png .. _Electricity supply and demand: @@ -72,11 +72,11 @@ For every country, heat demand is split between low and high population density Cooling is electrified and is included in the electricity demand. Cooling demand is assumed to remain at current levels. An example of regional distribution of the total heat demand for network 181 regions is depicted below. -.. image:: ../graphics/demand-map-heat.png +.. image:: img/demand-map-heat.png As below figure shows, the current total heat demand in Europe is similar to the total electricity demand but features much more pronounced seasonal variations. The current total building heating demand in Europe adds up to 3084 TWh/a of which 78% occurs in urban areas. -.. image:: ../graphics/Heat_and_el_demand_timeseries.png +.. image:: img/Heat_and_el_demand_timeseries.png In practice, in PyPSA-Eur-Sec, there are heat demand buses to which the corresponding heat demands are added. @@ -269,7 +269,7 @@ The existing European gas transmission network is represented based on the SciGR The following figure shows the unclustered European gas transmission network based on the SciGRID Gas IGGIELGN dataset. Pipelines are color-coded by estimated capacities. Markers indicate entry-points, sites of fossil resource extraction, and LNG terminals. -.. image:: ../graphics/gas_pipeline_figure.png +.. image:: img/gas_pipeline_figure.png .. _Biomass supply: @@ -374,7 +374,7 @@ Where process heat is required, our approach depends on the necessary temperatur The following figure shows the final consumption of energy and non-energy feedstocks in industry today in comparison to the scenario in 2050 assumed in `Neumann et al `__. -.. image:: ../graphics/fec_industry_today_tomorrow.png +.. image:: img/fec_industry_today_tomorrow.png The following figure shows the process emissions in industry today (top bar) and in 2050 without @@ -383,12 +383,12 @@ carbon capture (bottom bar) assumed in `Neumann et al `__, which is illustrated in the figure below. This open database includes georeferenced industrial sites of energy-intensive industry sectors in EU28, including cement, basic chemicals, glass, iron and steel, non-ferrous metals, non-metallic minerals, paper, and refineries subsectors. The use of this spatial dataset enables the calculation of regional and process-specific energy demands. This approach assumes that there will be no significant migration of energy-intensive industries. +Inside each country the industrial demand is then distributed using the `Hotmaps Industrial Database `__, which is illustrated in the figure below. This open database includes georeferenced industrial sites of energy-intensive industry sectors in EU28, including cement, basic chemicals, glass, iron and steel, non-ferrous metals, non-metallic minerals, paper, and refineries subsectors. The use of this spatial dataset enables the calculation of regional and process-specific energy demands. This approach assumes that there will be no significant migration of energy-intensive industries. -.. image:: ../graphics/hotmaps.png +.. image:: img/hotmaps.png .. _Iron and Steel: @@ -459,8 +459,7 @@ Statistics for the production of ammonia, which is commonly used as a fertilizer The Haber-Bosch process is not explicitly represented in the model, such that demand for ammonia enters the model as a demand for hydrogen ( 6.5 MWh :math:`_{H_2}` / t :math:`_{NH_3}` ) and electricity ( 1.17 MWh :math:`_{el}` /t :math:`_{NH_3}` ) (see `Wang et. al `__). Today, natural gas dominates in Europe as the source for the hydrogen used in the Haber-Bosch process, but the model can choose among the various hydrogen supply options described in the hydrogen section (see :ref:`Hydrogen supply`) -The total production and specific energy consumption of chlorine and methanol is taken from a `DECHEMA report `__. According to this source, the production of chlorine amounts to 9.58 MtCl/a, which is assumed to require electricity at 3.6 MWh :math:`_{el}`/t of chlorine and yield hydrogen at 0.937 MWh :math:`_{H_2}`/t of chlorine in the chloralkali process. The production of methanol adds up to 1.5 MtMeOH/a, requiring electricity at 0.167 MWh :math:`_{el}`/t of methanol and methane at 10.25 MWh :math:`_{CH_4}`/t of methanol. - +The total production and specific energy consumption of chlorine and methanol is taken from a `DECHEMA report `__. According to this source, the production of chlorine amounts to 9.58 MtCl/a, which is assumed to require electricity at 3.6 MWh :math:`_{el}`/t of chlorine and yield hydrogen at 0.937 MWh :math:`_{H_2}`/t of chlorine in the chloralkali process. The production of methanol adds up to 1.5 MtMeOH/a. Low-carbon methanol production (or methanolisation) by hydrogenation of :math:`CO_2` requires hydrogen at 6.299 MWh :math:`_{H_2}`/t of methanol, carbon dioxide at 1.373 t :math:`_{CO_2}`/t of methanol and electricity at 1.5 MWh :math:`_{el}`/t of methanol. The energy content of methanol is 5.528 MWh :math:`_{MeOH}`/t of methanol. These values are set exogenously in the config file. The production of ammonia, methanol, and chlorine production is deducted from the JRC IDEES basic chemicals, leaving the production totals of high-value chemicals. For this, we assume that the liquid hydrocarbon feedstock comes from synthetic or fossil- origin naphtha (14 MWh :math:`_{naphtha}`/t of HVC, similar to `Lechtenböhmer et al `__), ignoring the methanol-to-olefin route. Furthermore, we assume the following transformations of the energy-consuming processes in the production of plastics: the final energy consumption in steam processing is converted to methane since requires temperature above 500 °C (4.1 MWh :math:`_{CH_4}` /t of HVC, see `Rehfeldt et al. `__); and the remaining processes are electrified using the current efficiency of microwave for high-enthalpy heat processing, electric furnaces, electric process cooling and electric generic processes (2.85 MWh :math:`_{el}`/t of HVC). @@ -573,7 +572,7 @@ The `demand for aviation `__. +Shipping energy demand is covered by a combination of oil, hydrogen and methanol. Other fuel options, like ammonia, are currently not included in PyPSA-Eur-Sec. The share of shipping that is assumed to be supplied by hydrogen or methanol can be selected in the `config file `__. To estimate the `hydrogen demand `__, the average fuel efficiency of the fleet is used in combination with the efficiency of the fuel cell defined in the technology-data repository. The average fuel efficiency is set in the `config file `__. @@ -581,6 +580,8 @@ The consumed hydrogen comes from the general hydrogen bus where it can be produc The energy demand for liquefaction of the hydrogen used for shipping can be `included `__. If this option is selected, liquifaction will happen at the `node where the shipping demand occurs `__. +The consumed methanol comes from the general methanol bus where it is produced through methanolisation (see :ref:`Chemicals Industry`). + .. _Carbon dioxide capture, usage and sequestration (CCU/S): Carbon dioxide capture, usage and sequestration (CCU/S) diff --git a/doc/tutorial.rst b/doc/tutorial.rst index 4c10b573..4a07132b 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -32,10 +32,9 @@ configuration, execute .. code:: bash :class: full-width - snakemake -call results/test-elec/networks/elec_s_6_ec_lcopt_Co2L-24H.nc --configfile config/test/config.electricity.yaml + snakemake -call results/test-elec/networks/elec_s_6_ec_lcopt_.nc --configfile config/test/config.electricity.yaml -This configuration is set to download a reduced data set via the rules :mod:`retrieve_databundle`, -:mod:`retrieve_natura_raster`, :mod:`retrieve_cutout`. +This configuration is set to download a reduced cutout via the rule :mod:`retrieve_cutout`. For more information on the data dependencies of PyPSA-Eur, continue reading :ref:`data`. How to configure runs? @@ -115,9 +114,9 @@ clustered down to 6 buses and every 24 hours aggregated to one snapshot. The com .. code:: bash - snakemake -call results/test-elec/networks/elec_s_6_ec_lcopt_Co2L-24H.nc --configfile config/test/config.electricity.yaml + snakemake -call results/test-elec/networks/elec_s_6_ec_lcopt_.nc --configfile config/test/config.electricity.yaml -orders ``snakemake`` to run the rule :mod:`solve_network` that produces the solved network and stores it in ``results/networks`` with the name ``elec_s_6_ec_lcopt_Co2L-24H.nc``: +orders ``snakemake`` to run the rule :mod:`solve_network` that produces the solved network and stores it in ``results/networks`` with the name ``elec_s_6_ec_lcopt_.nc``: .. literalinclude:: ../rules/solve_electricity.smk :start-at: rule solve_network: @@ -133,30 +132,30 @@ This triggers a workflow of multiple preceding jobs that depend on each rule's i graph[bgcolor=white, margin=0]; node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; edge[penwidth=2, color=grey]; - 0[label = "solve_network", color = "0.24 0.6 0.85", style="rounded"]; - 1[label = "prepare_network\nll: vopt\nopts: Co2L-3H", color = "0.10 0.6 0.85", style="rounded"]; - 2[label = "add_extra_components", color = "0.33 0.6 0.85", style="rounded"]; - 3[label = "cluster_network\nclusters: 128", color = "0.59 0.6 0.85", style="rounded"]; - 4[label = "simplify_network\nsimpl: ", color = "0.18 0.6 0.85", style="rounded"]; - 5[label = "add_electricity", color = "0.48 0.6 0.85", style="rounded"]; - 6[label = "build_renewable_profiles\ntechnology: solar", color = "0.29 0.6 0.85", style="rounded"]; - 7[label = "base_network", color = "0.30 0.6 0.85", style="rounded"]; - 8[label = "build_shapes", color = "0.61 0.6 0.85", style="rounded"]; - 9[label = "retrieve_databundle", color = "0.06 0.6 0.85", style="rounded"]; - 10[label = "retrieve_natura_raster", color = "0.03 0.6 0.85", style="rounded"]; - 11[label = "retrieve_cutout\ncutout: europe-2013-sarah", color = "0.50 0.6 0.85", style="rounded"]; - 12[label = "build_renewable_profiles\ntechnology: onwind", color = "0.29 0.6 0.85", style="rounded"]; - 13[label = "retrieve_cutout\ncutout: europe-2013-era5", color = "0.50 0.6 0.85", style="rounded"]; - 14[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.29 0.6 0.85", style="rounded"]; - 15[label = "build_ship_raster", color = "0.16 0.6 0.85", style="rounded"]; - 16[label = "retrieve_ship_raster", color = "0.53 0.6 0.85", style="rounded"]; - 17[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.29 0.6 0.85", style="rounded"]; - 18[label = "build_hydro_profile", color = "0.47 0.6 0.85", style="rounded"]; - 19[label = "retrieve_cost_data\nyear: 2030", color = "0.21 0.6 0.85", style="rounded"]; - 20[label = "build_powerplants", color = "0.56 0.6 0.85", style="rounded"]; - 21[label = "build_electricity_demand", color = "0.54 0.6 0.85", style="rounded"]; - 22[label = "retrieve_electricity_demand", color = "0.34 0.6 0.85", style="rounded"]; - 23[label = "retrieve_synthetic_electricity_demand", color = "0.65 0.6 0.85", style="rounded"]; + 0[label = "solve_network", color = "0.21 0.6 0.85", style="rounded"]; + 1[label = "prepare_network\nll: copt\nopts: ", color = "0.51 0.6 0.85", style="rounded"]; + 2[label = "add_extra_components", color = "0.43 0.6 0.85", style="rounded"]; + 3[label = "cluster_network\nclusters: 6", color = "0.17 0.6 0.85", style="rounded"]; + 4[label = "simplify_network\nsimpl: ", color = "0.49 0.6 0.85", style="rounded"]; + 5[label = "add_electricity", color = "0.26 0.6 0.85", style="rounded"]; + 6[label = "build_renewable_profiles\ntechnology: solar", color = "0.02 0.6 0.85", style="rounded"]; + 7[label = "base_network", color = "0.35 0.6 0.85", style="rounded"]; + 8[label = "build_shapes", color = "0.62 0.6 0.85", style="rounded"]; + 9[label = "retrieve_databundle", color = "0.24 0.6 0.85", style="rounded"]; + 10[label = "retrieve_cutout\ncutout: be-03-2013-era5", color = "0.36 0.6 0.85", style="rounded"]; + 11[label = "build_renewable_profiles\ntechnology: solar-hsat", color = "0.02 0.6 0.85", style="rounded"]; + 12[label = "build_renewable_profiles\ntechnology: onwind", color = "0.02 0.6 0.85", style="rounded"]; + 13[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.02 0.6 0.85", style="rounded"]; + 14[label = "build_ship_raster", color = "0.08 0.6 0.85", style="rounded"]; + 15[label = "retrieve_ship_raster", color = "0.28 0.6 0.85", style="rounded"]; + 16[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.02 0.6 0.85", style="rounded"]; + 17[label = "build_renewable_profiles\ntechnology: offwind-float", color = "0.02 0.6 0.85", style="rounded"]; + 18[label = "build_line_rating", color = "0.07 0.6 0.85", style="rounded"]; + 19[label = "retrieve_cost_data\nyear: 2030", color = "0.47 0.6 0.85", style="rounded"]; + 20[label = "build_powerplants", color = "0.11 0.6 0.85", style="rounded"]; + 21[label = "build_electricity_demand", color = "0.05 0.6 0.85", style="rounded"]; + 22[label = "retrieve_electricity_demand", color = "0.58 0.6 0.85", style="rounded"]; + 23[label = "retrieve_synthetic_electricity_demand", color = "0.11 0.6 0.85", style="rounded"]; 1 -> 0 2 -> 1 19 -> 1 @@ -168,44 +167,50 @@ This triggers a workflow of multiple preceding jobs that depend on each rule's i 19 -> 4 7 -> 4 6 -> 5 + 11 -> 5 12 -> 5 - 14 -> 5 + 13 -> 5 + 16 -> 5 17 -> 5 - 18 -> 5 7 -> 5 + 18 -> 5 19 -> 5 20 -> 5 - 9 -> 5 21 -> 5 8 -> 5 7 -> 6 9 -> 6 - 10 -> 6 8 -> 6 - 11 -> 6 + 10 -> 6 8 -> 7 9 -> 8 + 7 -> 11 + 9 -> 11 + 8 -> 11 + 10 -> 11 7 -> 12 9 -> 12 - 10 -> 12 8 -> 12 - 13 -> 12 - 7 -> 14 - 9 -> 14 - 10 -> 14 + 10 -> 12 + 7 -> 13 + 9 -> 13 + 14 -> 13 + 8 -> 13 + 10 -> 13 15 -> 14 - 8 -> 14 - 13 -> 14 - 16 -> 15 - 13 -> 15 + 10 -> 14 + 7 -> 16 + 9 -> 16 + 14 -> 16 + 8 -> 16 + 10 -> 16 7 -> 17 9 -> 17 - 10 -> 17 - 15 -> 17 + 14 -> 17 8 -> 17 - 13 -> 17 - 8 -> 18 - 13 -> 18 + 10 -> 17 + 7 -> 18 + 10 -> 18 7 -> 20 22 -> 21 23 -> 21 @@ -223,8 +228,12 @@ In the terminal, this will show up as a list of jobs to be run: ------------------------------------- ------- add_electricity 1 add_extra_components 1 + base_network 1 + build_electricity_demand 1 build_line_rating 1 - build_renewable_profiles 4 + build_powerplants 1 + build_renewable_profiles 6 + build_shapes 1 build_ship_raster 1 cluster_network 1 prepare_network 1 @@ -232,12 +241,11 @@ In the terminal, this will show up as a list of jobs to be run: retrieve_cutout 1 retrieve_databundle 1 retrieve_electricity_demand 1 - retrieve_natura_raster 1 retrieve_ship_raster 1 retrieve_synthetic_electricity_demand 1 simplify_network 1 solve_network 1 - total 19 + total 24 ``snakemake`` then runs these jobs in the correct order. @@ -246,16 +254,15 @@ A job (here ``simplify_network``) will display its attributes and normally some .. code:: bash - [Mon Feb 19 17:06:17 2024] rule simplify_network: - input: resources/test/networks/elec.nc, data/costs_2030.csv, resources/test/regions_onshore.geojson, resources/test/regions_offshore.geojson - output: resources/test/networks/elec_s.nc, resources/test/regions_onshore_elec_s.geojson, resources/test/regions_offshore_elec_s.geojson, resources/test/busmap_elec_s.csv, resources/test/connection_costs_s.csv - log: logs/test-elec/simplify_network/elec_s.log + input: resources/test/networks/elec.nc, resources/test/costs_2030.csv, resources/test/regions_onshore.geojson, resources/test/regions_offshore.geojson + output: resources/test/networks/elec_s.nc, resources/test/regions_onshore_elec_s.geojson, resources/test/regions_offshore_elec_s.geojson, resources/test/busmap_elec_s.csv + log: logs/test/simplify_network/elec_s.log jobid: 4 - benchmark: benchmarks/test-elec/simplify_network/elec_s - reason: Missing output files: resources/test/regions_offshore_elec_s.geojson, resources/test/busmap_elec_s.csv, resources/test/regions_onshore_elec_s.geojson, resources/test/networks/elec_s.nc; Input files updated by another job: resources/test/regions_offshore.geojson, resources/test/networks/elec.nc, resources/test/regions_onshore.geojson, data/costs_2030.csv + benchmark: benchmarks/test/simplify_network/elec_s + reason: Forced execution wildcards: simpl= - resources: tmpdir=/tmp, mem_mb=12000, mem_mib=11445 + resources: tmpdir=, mem_mb=12000, mem_mib=11445 Once the whole worktree is finished, it should state so in the terminal. @@ -273,7 +280,7 @@ For example, you can explore the evolution of the PyPSA networks by running #. ``snakemake resources/networks/elec.nc -call --configfile config/test/config.electricity.yaml`` #. ``snakemake resources/networks/elec_s.nc -call --configfile config/test/config.electricity.yaml`` #. ``snakemake resources/networks/elec_s_6.nc -call --configfile config/test/config.electricity.yaml`` -#. ``snakemake resources/networks/elec_s_6_ec_lcopt_Co2L-24H.nc -call --configfile config/test/config.electricity.yaml`` +#. ``snakemake resources/networks/elec_s_6_ec_lcopt_.nc -call --configfile config/test/config.electricity.yaml`` To run all combinations of wildcard values provided in the ``config/config.yaml`` under ``scenario:``, you can use the collection rule ``solve_elec_networks``. @@ -311,6 +318,6 @@ Jupyter Notebooks). import pypsa - n = pypsa.Network("results/networks/elec_s_6_ec_lcopt_Co2L-24H.nc") + n = pypsa.Network("results/networks/elec_s_6_ec_lcopt_.nc") For inspiration, read the `examples section in the PyPSA documentation `__. diff --git a/doc/tutorial_sector.rst b/doc/tutorial_sector.rst index d6fafa69..450f1e69 100644 --- a/doc/tutorial_sector.rst +++ b/doc/tutorial_sector.rst @@ -71,12 +71,14 @@ which were already included in the electricity-only tutorial: add_electricity 1 add_extra_components 1 all 1 + base_network 1 build_ammonia_production 1 build_biomass_potentials 1 build_clustered_population_layouts 1 build_cop_profiles 1 build_daily_heat_demand 1 build_district_heat_share 1 + build_electricity_demand 1 build_energy_totals 1 build_gas_input_locations 1 build_gas_network 1 @@ -93,8 +95,10 @@ which were already included in the electricity-only tutorial: build_industry_sector_ratios_intermediate 1 build_population_layouts 1 build_population_weighted_energy_totals 2 - build_renewable_profiles 4 + build_powerplants 1 + build_renewable_profiles 6 build_salt_cavern_potentials 1 + build_shapes 1 build_ship_raster 1 build_shipping_demand 1 build_simplified_population_layouts 1 @@ -116,14 +120,14 @@ which were already included in the electricity-only tutorial: retrieve_databundle 1 retrieve_electricity_demand 1 retrieve_eurostat_data 1 + retrieve_eurostat_household_data 1 retrieve_gas_infrastructure_data 1 - retrieve_natura_raster 1 - retrieve_sector_databundle 1 retrieve_ship_raster 1 retrieve_synthetic_electricity_demand 1 simplify_network 1 solve_sector_network 1 - total 63 + time_aggregation 1 + total 69 This covers the retrieval of additional raw data from online resources and preprocessing data about the transport, industry, and heating sectors as well as @@ -142,252 +146,264 @@ successfully. graph[bgcolor=white, margin=0]; node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; edge[penwidth=2, color=grey]; - 0[label = "all", color = "0.66 0.6 0.85", style="rounded"]; - 1[label = "plot_summary", color = "0.20 0.6 0.85", style="rounded"]; - 2[label = "make_summary", color = "0.02 0.6 0.85", style="rounded"]; - 3[label = "solve_sector_network", color = "0.11 0.6 0.85", style="rounded"]; - 4[label = "prepare_sector_network\nsector_opts: CO2L0-24h-T-H-B-I-A-dist1", color = "0.22 0.6 0.85", style="rounded"]; - 5[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.26 0.6 0.85", style="rounded"]; - 6[label = "base_network", color = "0.53 0.6 0.85", style="rounded"]; - 7[label = "build_shapes", color = "0.04 0.6 0.85", style="rounded"]; - 8[label = "retrieve_databundle", color = "0.49 0.6 0.85", style="rounded"]; - 9[label = "retrieve_natura_raster", color = "0.46 0.6 0.85", style="rounded"]; - 10[label = "build_ship_raster", color = "0.29 0.6 0.85", style="rounded"]; - 11[label = "retrieve_ship_raster", color = "0.42 0.6 0.85", style="rounded"]; - 12[label = "retrieve_cutout\ncutout: be-03-2013-era5", color = "0.27 0.6 0.85", style="rounded"]; - 13[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.26 0.6 0.85", style="rounded"]; - 14[label = "cluster_gas_network", color = "0.48 0.6 0.85", style="rounded"]; - 15[label = "build_gas_network", color = "0.27 0.6 0.85", style="rounded"]; - 16[label = "retrieve_gas_infrastructure_data", color = "0.38 0.6 0.85", style="rounded"]; - 17[label = "cluster_network\nclusters: 5", color = "0.58 0.6 0.85", style="rounded"]; - 18[label = "simplify_network\nsimpl: ", color = "0.55 0.6 0.85", style="rounded"]; - 19[label = "add_electricity", color = "0.37 0.6 0.85", style="rounded"]; - 20[label = "build_renewable_profiles\ntechnology: solar", color = "0.26 0.6 0.85", style="rounded"]; - 21[label = "build_renewable_profiles\ntechnology: onwind", color = "0.26 0.6 0.85", style="rounded"]; - 22[label = "retrieve_cost_data\nyear: 2030", color = "0.14 0.6 0.85", style="rounded"]; - 23[label = "build_powerplants", color = "0.64 0.6 0.85", style="rounded"]; - 24[label = "build_electricity_demand", color = "0.61 0.6 0.85", style="rounded"]; - 25[label = "retrieve_electricity_demand", color = "0.08 0.6 0.85", style="rounded"]; - 26[label = "retrieve_synthetic_electricity_demand", color = "0.36 0.6 0.85", style="rounded"]; - 27[label = "build_gas_input_locations", color = "0.44 0.6 0.85", style="rounded"]; - 28[label = "prepare_network\nll: v1.5\nopts: ", color = "0.25 0.6 0.85", style="rounded"]; - 29[label = "add_extra_components", color = "0.39 0.6 0.85", style="rounded"]; - 30[label = "retrieve_eurostat_data", color = "0.20 0.6 0.85", style="rounded"]; - 31[label = "build_population_weighted_energy_totals\nkind: energy", color = "0.58 0.6 0.85", style="rounded"]; - 32[label = "build_energy_totals", color = "0.44 0.6 0.85", style="rounded"]; - 33[label = "retrieve_sector_databundle", color = "0.60 0.6 0.85", style="rounded"]; - 34[label = "build_clustered_population_layouts", color = "0.46 0.6 0.85", style="rounded"]; - 35[label = "build_population_layouts", color = "0.43 0.6 0.85", style="rounded"]; - 36[label = "build_population_weighted_energy_totals\nkind: heat", color = "0.58 0.6 0.85", style="rounded"]; - 37[label = "build_heat_totals", color = "0.11 0.6 0.85", style="rounded"]; - 38[label = "build_shipping_demand", color = "0.16 0.6 0.85", style="rounded"]; - 39[label = "build_transport_demand", color = "0.04 0.6 0.85", style="rounded"]; - 40[label = "build_temperature_profiles\nscope: total", color = "0.28 0.6 0.85", style="rounded"]; - 41[label = "build_biomass_potentials\nplanning_horizons: 2030", color = "0.07 0.6 0.85", style="rounded"]; - 42[label = "build_salt_cavern_potentials", color = "0.47 0.6 0.85", style="rounded"]; - 43[label = "build_simplified_population_layouts", color = "0.29 0.6 0.85", style="rounded"]; - 44[label = "build_industrial_energy_demand_per_node", color = "0.39 0.6 0.85", style="rounded"]; - 45[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2030", color = "0.57 0.6 0.85", style="rounded"]; - 46[label = "build_industry_sector_ratios", color = "0.55 0.6 0.85", style="rounded"]; - 47[label = "build_ammonia_production", color = "0.00 0.6 0.85", style="rounded"]; - 48[label = "build_industrial_energy_demand_per_country_today", color = "0.52 0.6 0.85", style="rounded"]; - 49[label = "build_industrial_production_per_country", color = "0.19 0.6 0.85", style="rounded"]; - 50[label = "build_industrial_production_per_node", color = "0.21 0.6 0.85", style="rounded"]; - 51[label = "build_industrial_distribution_key", color = "0.10 0.6 0.85", style="rounded"]; - 52[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2030", color = "0.63 0.6 0.85", style="rounded"]; - 53[label = "build_industrial_energy_demand_per_node_today", color = "0.18 0.6 0.85", style="rounded"]; - 54[label = "build_hourly_heat_demand", color = "0.13 0.6 0.85", style="rounded"]; - 55[label = "build_daily_heat_demand\nscope: total", color = "0.22 0.6 0.85", style="rounded"]; - 56[label = "build_district_heat_share\nplanning_horizons: 2030", color = "0.34 0.6 0.85", style="rounded"]; - 57[label = "build_temperature_profiles\nscope: rural", color = "0.28 0.6 0.85", style="rounded"]; - 58[label = "build_temperature_profiles\nscope: urban", color = "0.28 0.6 0.85", style="rounded"]; - 59[label = "build_cop_profiles", color = "0.65 0.6 0.85", style="rounded"]; - 60[label = "build_solar_thermal_profiles\nscope: total", color = "0.54 0.6 0.85", style="rounded"]; - 61[label = "build_solar_thermal_profiles\nscope: urban", color = "0.54 0.6 0.85", style="rounded"]; - 62[label = "build_solar_thermal_profiles\nscope: rural", color = "0.54 0.6 0.85", style="rounded"]; - 63[label = "plot_power_network_clustered", color = "0.15 0.6 0.85", style="rounded"]; - 64[label = "plot_power_network", color = "0.56 0.6 0.85", style="rounded"]; - 65[label = "plot_hydrogen_network", color = "0.60 0.6 0.85", style="rounded"]; - 66[label = "plot_gas_network", color = "0.53 0.6 0.85", style="rounded"]; + 0[label = "all", color = "0.28 0.6 0.85", style="rounded"]; + 1[label = "plot_summary", color = "0.60 0.6 0.85", style="rounded"]; + 2[label = "make_summary", color = "0.30 0.6 0.85", style="rounded"]; + 3[label = "solve_sector_network", color = "0.36 0.6 0.85", style="rounded"]; + 4[label = "prepare_sector_network\nsector_opts: ", color = "0.22 0.6 0.85", style="rounded"]; + 5[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.20 0.6 0.85", style="rounded"]; + 6[label = "base_network", color = "0.00 0.6 0.85", style="rounded"]; + 7[label = "build_shapes", color = "0.25 0.6 0.85", style="rounded"]; + 8[label = "retrieve_databundle", color = "0.06 0.6 0.85", style="rounded"]; + 9[label = "build_ship_raster", color = "0.06 0.6 0.85", style="rounded"]; + 10[label = "retrieve_ship_raster", color = "0.27 0.6 0.85", style="rounded"]; + 11[label = "retrieve_cutout\ncutout: be-03-2013-era5", color = "0.26 0.6 0.85", style="rounded"]; + 12[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.20 0.6 0.85", style="rounded"]; + 13[label = "build_renewable_profiles\ntechnology: offwind-float", color = "0.20 0.6 0.85", style="rounded"]; + 14[label = "cluster_gas_network", color = "0.37 0.6 0.85", style="rounded"]; + 15[label = "build_gas_network", color = "0.44 0.6 0.85", style="rounded"]; + 16[label = "retrieve_gas_infrastructure_data", color = "0.43 0.6 0.85", style="rounded"]; + 17[label = "cluster_network\nclusters: 5", color = "0.08 0.6 0.85", style="rounded"]; + 18[label = "simplify_network\nsimpl: ", color = "0.01 0.6 0.85", style="rounded"]; + 19[label = "add_electricity", color = "0.53 0.6 0.85", style="rounded"]; + 20[label = "build_renewable_profiles\ntechnology: solar", color = "0.20 0.6 0.85", style="rounded"]; + 21[label = "build_renewable_profiles\ntechnology: solar-hsat", color = "0.20 0.6 0.85", style="rounded"]; + 22[label = "build_renewable_profiles\ntechnology: onwind", color = "0.20 0.6 0.85", style="rounded"]; + 23[label = "retrieve_cost_data\nyear: 2030", color = "0.11 0.6 0.85", style="rounded"]; + 24[label = "build_powerplants", color = "0.62 0.6 0.85", style="rounded"]; + 25[label = "build_electricity_demand", color = "0.66 0.6 0.85", style="rounded"]; + 26[label = "retrieve_electricity_demand", color = "0.20 0.6 0.85", style="rounded"]; + 27[label = "retrieve_synthetic_electricity_demand", color = "0.52 0.6 0.85", style="rounded"]; + 28[label = "build_gas_input_locations", color = "0.21 0.6 0.85", style="rounded"]; + 29[label = "time_aggregation", color = "0.58 0.6 0.85", style="rounded"]; + 30[label = "prepare_network\nll: v1.5\nopts: ", color = "0.61 0.6 0.85", style="rounded"]; + 31[label = "add_extra_components", color = "0.59 0.6 0.85", style="rounded"]; + 32[label = "build_hourly_heat_demand", color = "0.48 0.6 0.85", style="rounded"]; + 33[label = "build_daily_heat_demand\nscope: total", color = "0.12 0.6 0.85", style="rounded"]; + 34[label = "build_population_layouts", color = "0.62 0.6 0.85", style="rounded"]; + 35[label = "build_solar_thermal_profiles\nscope: total", color = "0.23 0.6 0.85", style="rounded"]; + 36[label = "retrieve_eurostat_data", color = "0.45 0.6 0.85", style="rounded"]; + 37[label = "build_population_weighted_energy_totals\nkind: energy", color = "0.22 0.6 0.85", style="rounded"]; + 38[label = "build_energy_totals", color = "0.65 0.6 0.85", style="rounded"]; + 39[label = "retrieve_eurostat_household_data", color = "0.36 0.6 0.85", style="rounded"]; + 40[label = "build_clustered_population_layouts", color = "0.02 0.6 0.85", style="rounded"]; + 41[label = "build_population_weighted_energy_totals\nkind: heat", color = "0.22 0.6 0.85", style="rounded"]; + 42[label = "build_heat_totals", color = "0.53 0.6 0.85", style="rounded"]; + 43[label = "build_shipping_demand", color = "0.17 0.6 0.85", style="rounded"]; + 44[label = "build_transport_demand", color = "0.49 0.6 0.85", style="rounded"]; + 45[label = "build_temperature_profiles\nscope: total", color = "0.32 0.6 0.85", style="rounded"]; + 46[label = "build_biomass_potentials\nplanning_horizons: 2030", color = "0.34 0.6 0.85", style="rounded"]; + 47[label = "build_salt_cavern_potentials", color = "0.55 0.6 0.85", style="rounded"]; + 48[label = "build_simplified_population_layouts", color = "0.46 0.6 0.85", style="rounded"]; + 49[label = "build_industrial_energy_demand_per_node", color = "0.14 0.6 0.85", style="rounded"]; + 50[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2030", color = "0.27 0.6 0.85", style="rounded"]; + 51[label = "build_industry_sector_ratios", color = "0.11 0.6 0.85", style="rounded"]; + 52[label = "build_ammonia_production", color = "0.25 0.6 0.85", style="rounded"]; + 53[label = "build_industrial_energy_demand_per_country_today", color = "0.44 0.6 0.85", style="rounded"]; + 54[label = "build_industrial_production_per_country", color = "0.18 0.6 0.85", style="rounded"]; + 55[label = "build_industrial_production_per_node", color = "0.41 0.6 0.85", style="rounded"]; + 56[label = "build_industrial_distribution_key", color = "0.04 0.6 0.85", style="rounded"]; + 57[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2030", color = "0.09 0.6 0.85", style="rounded"]; + 58[label = "build_industrial_energy_demand_per_node_today", color = "0.46 0.6 0.85", style="rounded"]; + 59[label = "build_district_heat_share\nplanning_horizons: 2030", color = "0.39 0.6 0.85", style="rounded"]; + 60[label = "build_temperature_profiles\nscope: rural", color = "0.32 0.6 0.85", style="rounded"]; + 61[label = "build_temperature_profiles\nscope: urban", color = "0.32 0.6 0.85", style="rounded"]; + 62[label = "build_cop_profiles", color = "0.55 0.6 0.85", style="rounded"]; + 63[label = "build_solar_thermal_profiles\nscope: urban", color = "0.23 0.6 0.85", style="rounded"]; + 64[label = "build_solar_thermal_profiles\nscope: rural", color = "0.23 0.6 0.85", style="rounded"]; + 65[label = "plot_power_network_clustered", color = "0.41 0.6 0.85", style="rounded"]; + 66[label = "plot_power_network", color = "0.40 0.6 0.85", style="rounded"]; + 67[label = "plot_hydrogen_network", color = "0.42 0.6 0.85", style="rounded"]; + 68[label = "plot_gas_network", color = "0.32 0.6 0.85", style="rounded"]; 1 -> 0 2 -> 1 - 30 -> 1 - 33 -> 1 + 36 -> 1 + 8 -> 1 3 -> 2 - 22 -> 2 - 63 -> 2 - 64 -> 2 + 23 -> 2 65 -> 2 66 -> 2 + 67 -> 2 + 68 -> 2 4 -> 3 5 -> 4 + 12 -> 4 13 -> 4 14 -> 4 - 27 -> 4 28 -> 4 + 29 -> 4 30 -> 4 - 31 -> 4 36 -> 4 - 38 -> 4 - 39 -> 4 - 32 -> 4 - 33 -> 4 + 37 -> 4 41 -> 4 - 22 -> 4 - 42 -> 4 - 18 -> 4 - 17 -> 4 - 34 -> 4 43 -> 4 44 -> 4 - 54 -> 4 - 56 -> 4 + 38 -> 4 + 8 -> 4 + 46 -> 4 + 23 -> 4 + 47 -> 4 + 18 -> 4 + 17 -> 4 40 -> 4 - 57 -> 4 - 58 -> 4 + 48 -> 4 + 49 -> 4 + 32 -> 4 59 -> 4 + 45 -> 4 60 -> 4 61 -> 4 62 -> 4 + 35 -> 4 + 63 -> 4 + 64 -> 4 6 -> 5 8 -> 5 9 -> 5 - 10 -> 5 7 -> 5 - 12 -> 5 + 11 -> 5 7 -> 6 8 -> 7 - 11 -> 10 - 12 -> 10 + 10 -> 9 + 11 -> 9 + 6 -> 12 + 8 -> 12 + 9 -> 12 + 7 -> 12 + 11 -> 12 6 -> 13 8 -> 13 9 -> 13 - 10 -> 13 7 -> 13 - 12 -> 13 + 11 -> 13 15 -> 14 17 -> 14 16 -> 15 18 -> 17 - 22 -> 17 + 23 -> 17 19 -> 18 - 22 -> 18 + 23 -> 18 6 -> 18 20 -> 19 21 -> 19 + 22 -> 19 5 -> 19 + 12 -> 19 13 -> 19 6 -> 19 - 22 -> 19 23 -> 19 - 8 -> 19 24 -> 19 + 25 -> 19 7 -> 19 6 -> 20 8 -> 20 - 9 -> 20 7 -> 20 - 12 -> 20 + 11 -> 20 6 -> 21 8 -> 21 - 9 -> 21 7 -> 21 - 12 -> 21 - 6 -> 23 - 25 -> 24 - 26 -> 24 - 16 -> 27 - 17 -> 27 - 29 -> 28 - 22 -> 28 - 17 -> 29 - 22 -> 29 - 32 -> 31 - 34 -> 31 - 7 -> 32 + 11 -> 21 + 6 -> 22 + 8 -> 22 + 7 -> 22 + 11 -> 22 + 6 -> 24 + 26 -> 25 + 27 -> 25 + 16 -> 28 + 17 -> 28 + 30 -> 29 + 32 -> 29 + 35 -> 29 + 31 -> 30 + 23 -> 30 + 17 -> 31 + 23 -> 31 33 -> 32 - 30 -> 32 - 35 -> 34 - 17 -> 34 - 12 -> 34 - 7 -> 35 - 12 -> 35 - 37 -> 36 - 34 -> 36 - 32 -> 37 + 34 -> 33 + 17 -> 33 + 11 -> 33 + 7 -> 34 + 11 -> 34 + 34 -> 35 + 17 -> 35 + 11 -> 35 + 38 -> 37 + 40 -> 37 7 -> 38 - 17 -> 38 - 32 -> 38 - 34 -> 39 - 31 -> 39 - 32 -> 39 - 33 -> 39 - 40 -> 39 - 35 -> 40 + 8 -> 38 + 36 -> 38 + 39 -> 38 + 34 -> 40 17 -> 40 - 12 -> 40 - 33 -> 41 - 17 -> 41 - 8 -> 41 - 7 -> 41 - 33 -> 42 - 17 -> 42 - 35 -> 43 - 18 -> 43 - 12 -> 43 + 11 -> 40 + 42 -> 41 + 40 -> 41 + 38 -> 42 + 7 -> 43 + 17 -> 43 + 38 -> 43 + 40 -> 44 + 37 -> 44 + 38 -> 44 + 8 -> 44 45 -> 44 - 50 -> 44 - 53 -> 44 - 46 -> 45 - 48 -> 45 - 49 -> 45 - 47 -> 46 - 33 -> 46 - 33 -> 47 - 33 -> 48 - 49 -> 48 - 47 -> 49 - 33 -> 49 - 30 -> 49 + 34 -> 45 + 17 -> 45 + 11 -> 45 + 8 -> 46 + 17 -> 46 + 7 -> 46 + 8 -> 47 + 17 -> 47 + 34 -> 48 + 18 -> 48 + 11 -> 48 + 50 -> 49 + 55 -> 49 + 58 -> 49 51 -> 50 - 52 -> 50 - 17 -> 51 - 34 -> 51 - 33 -> 51 - 49 -> 52 - 51 -> 53 - 48 -> 53 - 55 -> 54 - 35 -> 55 - 17 -> 55 - 12 -> 55 - 32 -> 56 - 34 -> 56 - 35 -> 57 - 17 -> 57 - 12 -> 57 - 35 -> 58 - 17 -> 58 - 12 -> 58 + 53 -> 50 + 54 -> 50 + 52 -> 51 + 8 -> 51 + 8 -> 52 + 8 -> 53 + 54 -> 53 + 52 -> 54 + 8 -> 54 + 36 -> 54 + 56 -> 55 + 57 -> 55 + 17 -> 56 + 40 -> 56 + 54 -> 57 + 56 -> 58 + 53 -> 58 + 38 -> 59 40 -> 59 - 57 -> 59 - 58 -> 59 - 35 -> 60 + 34 -> 60 17 -> 60 - 12 -> 60 - 35 -> 61 + 11 -> 60 + 34 -> 61 17 -> 61 - 12 -> 61 - 35 -> 62 - 17 -> 62 - 12 -> 62 + 11 -> 61 + 45 -> 62 + 60 -> 62 + 61 -> 62 + 34 -> 63 17 -> 63 - 3 -> 64 + 11 -> 63 + 34 -> 64 17 -> 64 - 3 -> 65 + 11 -> 64 17 -> 65 3 -> 66 17 -> 66 + 3 -> 67 + 17 -> 67 + 3 -> 68 + 17 -> 68 } | @@ -447,412 +463,430 @@ workflow: graph[bgcolor=white, margin=0]; node[shape=box, style=rounded, fontname=sans, fontsize=10, penwidth=2]; edge[penwidth=2, color=grey]; - 0[label = "all", color = "0.20 0.6 0.85", style="rounded"]; - 1[label = "plot_summary", color = "0.55 0.6 0.85", style="rounded"]; - 2[label = "make_summary", color = "0.21 0.6 0.85", style="rounded"]; - 3[label = "solve_sector_network_myopic", color = "0.50 0.6 0.85", style="rounded"]; - 4[label = "add_existing_baseyear", color = "0.38 0.6 0.85", style="rounded"]; - 5[label = "prepare_sector_network\nsector_opts: 24h-T-H-B-I-A-dist1", color = "0.53 0.6 0.85", style="rounded"]; - 6[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.54 0.6 0.85", style="rounded"]; - 7[label = "base_network", color = "0.12 0.6 0.85", style="rounded"]; - 8[label = "build_shapes", color = "0.21 0.6 0.85", style="rounded"]; - 9[label = "retrieve_databundle", color = "0.41 0.6 0.85", style="rounded"]; - 10[label = "retrieve_natura_raster", color = "0.38 0.6 0.85", style="rounded"]; - 11[label = "build_ship_raster", color = "0.05 0.6 0.85", style="rounded"]; - 12[label = "retrieve_ship_raster", color = "0.25 0.6 0.85", style="rounded"]; - 13[label = "retrieve_cutout\ncutout: be-03-2013-era5", color = "0.23 0.6 0.85", style="rounded"]; - 14[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.54 0.6 0.85", style="rounded"]; - 15[label = "cluster_gas_network", color = "0.16 0.6 0.85", style="rounded"]; - 16[label = "build_gas_network", color = "0.26 0.6 0.85", style="rounded"]; - 17[label = "retrieve_gas_infrastructure_data", color = "0.04 0.6 0.85", style="rounded"]; - 18[label = "cluster_network\nclusters: 5", color = "0.10 0.6 0.85", style="rounded"]; - 19[label = "simplify_network\nsimpl: ", color = "0.02 0.6 0.85", style="rounded"]; - 20[label = "add_electricity", color = "0.56 0.6 0.85", style="rounded"]; - 21[label = "build_renewable_profiles\ntechnology: solar", color = "0.54 0.6 0.85", style="rounded"]; - 22[label = "build_renewable_profiles\ntechnology: onwind", color = "0.54 0.6 0.85", style="rounded"]; - 23[label = "retrieve_cost_data\nyear: 2030", color = "0.16 0.6 0.85", style="rounded"]; - 24[label = "build_powerplants", color = "0.63 0.6 0.85", style="rounded"]; - 25[label = "build_electricity_demand", color = "0.57 0.6 0.85", style="rounded"]; - 26[label = "retrieve_electricity_demand", color = "0.27 0.6 0.85", style="rounded"]; - 27[label = "retrieve_synthetic_electricity_demand", color = "0.58 0.6 0.85", style="rounded"]; - 28[label = "build_gas_input_locations", color = "0.28 0.6 0.85", style="rounded"]; - 29[label = "prepare_network\nll: v1.5\nopts: ", color = "0.14 0.6 0.85", style="rounded"]; - 30[label = "add_extra_components", color = "0.14 0.6 0.85", style="rounded"]; - 31[label = "retrieve_eurostat_data", color = "0.58 0.6 0.85", style="rounded"]; - 32[label = "build_population_weighted_energy_totals\nkind: energy", color = "0.36 0.6 0.85", style="rounded"]; - 33[label = "build_energy_totals", color = "0.65 0.6 0.85", style="rounded"]; - 34[label = "retrieve_sector_databundle", color = "0.46 0.6 0.85", style="rounded"]; - 35[label = "build_clustered_population_layouts", color = "0.52 0.6 0.85", style="rounded"]; - 36[label = "build_population_layouts", color = "0.13 0.6 0.85", style="rounded"]; - 37[label = "build_population_weighted_energy_totals\nkind: heat", color = "0.36 0.6 0.85", style="rounded"]; - 38[label = "build_heat_totals", color = "0.31 0.6 0.85", style="rounded"]; - 39[label = "build_shipping_demand", color = "0.01 0.6 0.85", style="rounded"]; - 40[label = "build_transport_demand", color = "0.51 0.6 0.85", style="rounded"]; - 41[label = "build_temperature_profiles\nscope: total", color = "0.00 0.6 0.85", style="rounded"]; - 42[label = "build_biomass_potentials\nplanning_horizons: 2030", color = "0.18 0.6 0.85", style="rounded"]; - 43[label = "build_salt_cavern_potentials", color = "0.25 0.6 0.85", style="rounded"]; - 44[label = "build_simplified_population_layouts", color = "0.27 0.6 0.85", style="rounded"]; - 45[label = "build_industrial_energy_demand_per_node", color = "0.30 0.6 0.85", style="rounded"]; - 46[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2030", color = "0.41 0.6 0.85", style="rounded"]; - 47[label = "build_industry_sector_ratios", color = "0.03 0.6 0.85", style="rounded"]; - 48[label = "build_ammonia_production", color = "0.37 0.6 0.85", style="rounded"]; - 49[label = "build_industrial_energy_demand_per_country_today", color = "0.10 0.6 0.85", style="rounded"]; - 50[label = "build_industrial_production_per_country", color = "0.03 0.6 0.85", style="rounded"]; - 51[label = "build_industrial_production_per_node", color = "0.63 0.6 0.85", style="rounded"]; - 52[label = "build_industrial_distribution_key", color = "0.17 0.6 0.85", style="rounded"]; - 53[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2030", color = "0.06 0.6 0.85", style="rounded"]; - 54[label = "build_industrial_energy_demand_per_node_today", color = "0.08 0.6 0.85", style="rounded"]; - 55[label = "build_hourly_heat_demand", color = "0.08 0.6 0.85", style="rounded"]; - 56[label = "build_daily_heat_demand\nscope: total", color = "0.60 0.6 0.85", style="rounded"]; - 57[label = "build_district_heat_share\nplanning_horizons: 2030", color = "0.32 0.6 0.85", style="rounded"]; - 58[label = "build_temperature_profiles\nscope: rural", color = "0.00 0.6 0.85", style="rounded"]; - 59[label = "build_temperature_profiles\nscope: urban", color = "0.00 0.6 0.85", style="rounded"]; - 60[label = "build_cop_profiles", color = "0.11 0.6 0.85", style="rounded"]; - 61[label = "build_solar_thermal_profiles\nscope: total", color = "0.01 0.6 0.85", style="rounded"]; - 62[label = "build_solar_thermal_profiles\nscope: urban", color = "0.01 0.6 0.85", style="rounded"]; - 63[label = "build_solar_thermal_profiles\nscope: rural", color = "0.01 0.6 0.85", style="rounded"]; - 64[label = "build_existing_heating_distribution", color = "0.40 0.6 0.85", style="rounded"]; - 65[label = "solve_sector_network_myopic", color = "0.50 0.6 0.85", style="rounded"]; - 66[label = "add_brownfield", color = "0.45 0.6 0.85", style="rounded"]; - 67[label = "prepare_sector_network\nsector_opts: 24h-T-H-B-I-A-dist1", color = "0.53 0.6 0.85", style="rounded"]; - 68[label = "build_biomass_potentials\nplanning_horizons: 2040", color = "0.18 0.6 0.85", style="rounded"]; - 69[label = "retrieve_cost_data\nyear: 2040", color = "0.16 0.6 0.85", style="rounded"]; - 70[label = "build_industrial_energy_demand_per_node", color = "0.30 0.6 0.85", style="rounded"]; - 71[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2040", color = "0.41 0.6 0.85", style="rounded"]; - 72[label = "build_industrial_production_per_node", color = "0.63 0.6 0.85", style="rounded"]; - 73[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2040", color = "0.06 0.6 0.85", style="rounded"]; - 74[label = "build_district_heat_share\nplanning_horizons: 2040", color = "0.32 0.6 0.85", style="rounded"]; - 75[label = "solve_sector_network_myopic", color = "0.50 0.6 0.85", style="rounded"]; - 76[label = "add_brownfield", color = "0.45 0.6 0.85", style="rounded"]; - 77[label = "prepare_sector_network\nsector_opts: 24h-T-H-B-I-A-dist1", color = "0.53 0.6 0.85", style="rounded"]; - 78[label = "build_biomass_potentials\nplanning_horizons: 2050", color = "0.18 0.6 0.85", style="rounded"]; - 79[label = "retrieve_cost_data\nyear: 2050", color = "0.16 0.6 0.85", style="rounded"]; - 80[label = "build_industrial_energy_demand_per_node", color = "0.30 0.6 0.85", style="rounded"]; - 81[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2050", color = "0.41 0.6 0.85", style="rounded"]; - 82[label = "build_industrial_production_per_node", color = "0.63 0.6 0.85", style="rounded"]; - 83[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2050", color = "0.06 0.6 0.85", style="rounded"]; - 84[label = "build_district_heat_share\nplanning_horizons: 2050", color = "0.32 0.6 0.85", style="rounded"]; - 85[label = "plot_power_network_clustered", color = "0.09 0.6 0.85", style="rounded"]; - 86[label = "plot_power_network", color = "0.43 0.6 0.85", style="rounded"]; - 87[label = "plot_power_network", color = "0.43 0.6 0.85", style="rounded"]; - 88[label = "plot_power_network", color = "0.43 0.6 0.85", style="rounded"]; - 89[label = "plot_hydrogen_network", color = "0.33 0.6 0.85", style="rounded"]; - 90[label = "plot_hydrogen_network", color = "0.33 0.6 0.85", style="rounded"]; - 91[label = "plot_hydrogen_network", color = "0.33 0.6 0.85", style="rounded"]; + 0[label = "all", color = "0.65 0.6 0.85", style="rounded"]; + 1[label = "plot_summary", color = "0.14 0.6 0.85", style="rounded"]; + 2[label = "make_summary", color = "0.38 0.6 0.85", style="rounded"]; + 3[label = "solve_sector_network_myopic", color = "0.19 0.6 0.85", style="rounded"]; + 4[label = "add_existing_baseyear", color = "0.32 0.6 0.85", style="rounded"]; + 5[label = "prepare_sector_network\nsector_opts: ", color = "0.36 0.6 0.85", style="rounded"]; + 6[label = "build_renewable_profiles\ntechnology: offwind-ac", color = "0.57 0.6 0.85", style="rounded"]; + 7[label = "base_network", color = "0.24 0.6 0.85", style="rounded"]; + 8[label = "build_shapes", color = "0.51 0.6 0.85", style="rounded"]; + 9[label = "retrieve_databundle", color = "0.31 0.6 0.85", style="rounded"]; + 10[label = "build_ship_raster", color = "0.23 0.6 0.85", style="rounded"]; + 11[label = "retrieve_ship_raster", color = "0.58 0.6 0.85", style="rounded"]; + 12[label = "retrieve_cutout\ncutout: be-03-2013-era5", color = "0.21 0.6 0.85", style="rounded"]; + 13[label = "build_renewable_profiles\ntechnology: offwind-dc", color = "0.57 0.6 0.85", style="rounded"]; + 14[label = "build_renewable_profiles\ntechnology: offwind-float", color = "0.57 0.6 0.85", style="rounded"]; + 15[label = "cluster_gas_network", color = "0.06 0.6 0.85", style="rounded"]; + 16[label = "build_gas_network", color = "0.29 0.6 0.85", style="rounded"]; + 17[label = "retrieve_gas_infrastructure_data", color = "0.18 0.6 0.85", style="rounded"]; + 18[label = "cluster_network\nclusters: 5", color = "0.59 0.6 0.85", style="rounded"]; + 19[label = "simplify_network\nsimpl: ", color = "0.41 0.6 0.85", style="rounded"]; + 20[label = "add_electricity", color = "0.25 0.6 0.85", style="rounded"]; + 21[label = "build_renewable_profiles\ntechnology: solar", color = "0.57 0.6 0.85", style="rounded"]; + 22[label = "build_renewable_profiles\ntechnology: solar-hsat", color = "0.57 0.6 0.85", style="rounded"]; + 23[label = "build_renewable_profiles\ntechnology: onwind", color = "0.57 0.6 0.85", style="rounded"]; + 24[label = "retrieve_cost_data\nyear: 2030", color = "0.41 0.6 0.85", style="rounded"]; + 25[label = "build_powerplants", color = "0.36 0.6 0.85", style="rounded"]; + 26[label = "build_electricity_demand", color = "0.12 0.6 0.85", style="rounded"]; + 27[label = "retrieve_electricity_demand", color = "0.23 0.6 0.85", style="rounded"]; + 28[label = "retrieve_synthetic_electricity_demand", color = "0.35 0.6 0.85", style="rounded"]; + 29[label = "build_gas_input_locations", color = "0.10 0.6 0.85", style="rounded"]; + 30[label = "time_aggregation", color = "0.60 0.6 0.85", style="rounded"]; + 31[label = "prepare_network\nll: v1.5\nopts: ", color = "0.37 0.6 0.85", style="rounded"]; + 32[label = "add_extra_components", color = "0.10 0.6 0.85", style="rounded"]; + 33[label = "build_hourly_heat_demand", color = "0.11 0.6 0.85", style="rounded"]; + 34[label = "build_daily_heat_demand\nscope: total", color = "0.39 0.6 0.85", style="rounded"]; + 35[label = "build_population_layouts", color = "0.40 0.6 0.85", style="rounded"]; + 36[label = "build_solar_thermal_profiles\nscope: total", color = "0.20 0.6 0.85", style="rounded"]; + 37[label = "retrieve_eurostat_data", color = "0.45 0.6 0.85", style="rounded"]; + 38[label = "build_population_weighted_energy_totals\nkind: energy", color = "0.60 0.6 0.85", style="rounded"]; + 39[label = "build_energy_totals", color = "0.48 0.6 0.85", style="rounded"]; + 40[label = "retrieve_eurostat_household_data", color = "0.08 0.6 0.85", style="rounded"]; + 41[label = "build_clustered_population_layouts", color = "0.07 0.6 0.85", style="rounded"]; + 42[label = "build_population_weighted_energy_totals\nkind: heat", color = "0.60 0.6 0.85", style="rounded"]; + 43[label = "build_heat_totals", color = "0.52 0.6 0.85", style="rounded"]; + 44[label = "build_shipping_demand", color = "0.50 0.6 0.85", style="rounded"]; + 45[label = "build_transport_demand", color = "0.49 0.6 0.85", style="rounded"]; + 46[label = "build_temperature_profiles\nscope: total", color = "0.63 0.6 0.85", style="rounded"]; + 47[label = "build_biomass_potentials\nplanning_horizons: 2030", color = "0.56 0.6 0.85", style="rounded"]; + 48[label = "build_salt_cavern_potentials", color = "0.43 0.6 0.85", style="rounded"]; + 49[label = "build_simplified_population_layouts", color = "0.58 0.6 0.85", style="rounded"]; + 50[label = "build_industrial_energy_demand_per_node", color = "0.27 0.6 0.85", style="rounded"]; + 51[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2030", color = "0.26 0.6 0.85", style="rounded"]; + 52[label = "build_industry_sector_ratios", color = "0.46 0.6 0.85", style="rounded"]; + 53[label = "build_ammonia_production", color = "0.17 0.6 0.85", style="rounded"]; + 54[label = "build_industrial_energy_demand_per_country_today", color = "0.02 0.6 0.85", style="rounded"]; + 55[label = "build_industrial_production_per_country", color = "0.30 0.6 0.85", style="rounded"]; + 56[label = "build_industrial_production_per_node", color = "0.30 0.6 0.85", style="rounded"]; + 57[label = "build_industrial_distribution_key", color = "0.05 0.6 0.85", style="rounded"]; + 58[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2030", color = "0.01 0.6 0.85", style="rounded"]; + 59[label = "build_industrial_energy_demand_per_node_today", color = "0.14 0.6 0.85", style="rounded"]; + 60[label = "build_district_heat_share\nplanning_horizons: 2030", color = "0.56 0.6 0.85", style="rounded"]; + 61[label = "build_temperature_profiles\nscope: rural", color = "0.63 0.6 0.85", style="rounded"]; + 62[label = "build_temperature_profiles\nscope: urban", color = "0.63 0.6 0.85", style="rounded"]; + 63[label = "build_cop_profiles", color = "0.64 0.6 0.85", style="rounded"]; + 64[label = "build_solar_thermal_profiles\nscope: urban", color = "0.20 0.6 0.85", style="rounded"]; + 65[label = "build_solar_thermal_profiles\nscope: rural", color = "0.20 0.6 0.85", style="rounded"]; + 66[label = "build_existing_heating_distribution", color = "0.21 0.6 0.85", style="rounded"]; + 67[label = "solve_sector_network_myopic", color = "0.19 0.6 0.85", style="rounded"]; + 68[label = "add_brownfield", color = "0.27 0.6 0.85", style="rounded"]; + 69[label = "prepare_sector_network\nsector_opts: ", color = "0.36 0.6 0.85", style="rounded"]; + 70[label = "build_biomass_potentials\nplanning_horizons: 2040", color = "0.56 0.6 0.85", style="rounded"]; + 71[label = "retrieve_cost_data\nyear: 2040", color = "0.41 0.6 0.85", style="rounded"]; + 72[label = "build_industrial_energy_demand_per_node", color = "0.27 0.6 0.85", style="rounded"]; + 73[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2040", color = "0.26 0.6 0.85", style="rounded"]; + 74[label = "build_industrial_production_per_node", color = "0.30 0.6 0.85", style="rounded"]; + 75[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2040", color = "0.01 0.6 0.85", style="rounded"]; + 76[label = "build_district_heat_share\nplanning_horizons: 2040", color = "0.56 0.6 0.85", style="rounded"]; + 77[label = "solve_sector_network_myopic", color = "0.19 0.6 0.85", style="rounded"]; + 78[label = "add_brownfield", color = "0.27 0.6 0.85", style="rounded"]; + 79[label = "prepare_sector_network\nsector_opts: ", color = "0.36 0.6 0.85", style="rounded"]; + 80[label = "build_biomass_potentials\nplanning_horizons: 2050", color = "0.56 0.6 0.85", style="rounded"]; + 81[label = "retrieve_cost_data\nyear: 2050", color = "0.41 0.6 0.85", style="rounded"]; + 82[label = "build_industrial_energy_demand_per_node", color = "0.27 0.6 0.85", style="rounded"]; + 83[label = "build_industry_sector_ratios_intermediate\nplanning_horizons: 2050", color = "0.26 0.6 0.85", style="rounded"]; + 84[label = "build_industrial_production_per_node", color = "0.30 0.6 0.85", style="rounded"]; + 85[label = "build_industrial_production_per_country_tomorrow\nplanning_horizons: 2050", color = "0.01 0.6 0.85", style="rounded"]; + 86[label = "build_district_heat_share\nplanning_horizons: 2050", color = "0.56 0.6 0.85", style="rounded"]; + 87[label = "plot_power_network_clustered", color = "0.03 0.6 0.85", style="rounded"]; + 88[label = "plot_power_network", color = "0.16 0.6 0.85", style="rounded"]; + 89[label = "plot_power_network", color = "0.16 0.6 0.85", style="rounded"]; + 90[label = "plot_power_network", color = "0.16 0.6 0.85", style="rounded"]; + 91[label = "plot_hydrogen_network", color = "0.54 0.6 0.85", style="rounded"]; + 92[label = "plot_hydrogen_network", color = "0.54 0.6 0.85", style="rounded"]; + 93[label = "plot_hydrogen_network", color = "0.54 0.6 0.85", style="rounded"]; 1 -> 0 2 -> 1 - 31 -> 1 - 34 -> 1 + 37 -> 1 + 9 -> 1 3 -> 2 - 65 -> 2 - 75 -> 2 - 23 -> 2 - 85 -> 2 - 86 -> 2 + 67 -> 2 + 77 -> 2 + 24 -> 2 87 -> 2 88 -> 2 89 -> 2 90 -> 2 91 -> 2 + 92 -> 2 + 93 -> 2 4 -> 3 - 23 -> 3 + 24 -> 3 5 -> 4 - 24 -> 4 + 25 -> 4 19 -> 4 18 -> 4 - 35 -> 4 - 23 -> 4 - 60 -> 4 - 64 -> 4 + 41 -> 4 + 24 -> 4 + 63 -> 4 + 66 -> 4 6 -> 5 + 13 -> 5 14 -> 5 15 -> 5 - 28 -> 5 29 -> 5 + 30 -> 5 31 -> 5 - 32 -> 5 37 -> 5 - 39 -> 5 - 40 -> 5 - 33 -> 5 - 34 -> 5 + 38 -> 5 42 -> 5 - 23 -> 5 - 43 -> 5 - 19 -> 5 - 18 -> 5 - 35 -> 5 44 -> 5 45 -> 5 - 55 -> 5 - 57 -> 5 + 39 -> 5 + 9 -> 5 + 47 -> 5 + 24 -> 5 + 48 -> 5 + 19 -> 5 + 18 -> 5 41 -> 5 - 58 -> 5 - 59 -> 5 + 49 -> 5 + 50 -> 5 + 33 -> 5 60 -> 5 + 46 -> 5 61 -> 5 62 -> 5 63 -> 5 + 36 -> 5 + 64 -> 5 + 65 -> 5 7 -> 6 9 -> 6 10 -> 6 - 11 -> 6 8 -> 6 - 13 -> 6 + 12 -> 6 8 -> 7 9 -> 8 - 12 -> 11 - 13 -> 11 + 11 -> 10 + 12 -> 10 + 7 -> 13 + 9 -> 13 + 10 -> 13 + 8 -> 13 + 12 -> 13 7 -> 14 9 -> 14 10 -> 14 - 11 -> 14 8 -> 14 - 13 -> 14 + 12 -> 14 16 -> 15 18 -> 15 17 -> 16 19 -> 18 - 23 -> 18 + 24 -> 18 20 -> 19 - 23 -> 19 + 24 -> 19 7 -> 19 21 -> 20 22 -> 20 + 23 -> 20 6 -> 20 + 13 -> 20 14 -> 20 7 -> 20 - 23 -> 20 24 -> 20 - 9 -> 20 25 -> 20 + 26 -> 20 8 -> 20 7 -> 21 9 -> 21 - 10 -> 21 8 -> 21 - 13 -> 21 + 12 -> 21 7 -> 22 9 -> 22 - 10 -> 22 8 -> 22 - 13 -> 22 - 7 -> 24 - 26 -> 25 - 27 -> 25 - 17 -> 28 - 18 -> 28 - 30 -> 29 - 23 -> 29 - 18 -> 30 - 23 -> 30 - 33 -> 32 - 35 -> 32 - 8 -> 33 + 12 -> 22 + 7 -> 23 + 9 -> 23 + 8 -> 23 + 12 -> 23 + 7 -> 25 + 27 -> 26 + 28 -> 26 + 17 -> 29 + 18 -> 29 + 31 -> 30 + 33 -> 30 + 36 -> 30 + 32 -> 31 + 24 -> 31 + 18 -> 32 + 24 -> 32 34 -> 33 - 31 -> 33 - 36 -> 35 - 18 -> 35 - 13 -> 35 - 8 -> 36 - 13 -> 36 - 38 -> 37 - 35 -> 37 - 33 -> 38 + 35 -> 34 + 18 -> 34 + 12 -> 34 + 8 -> 35 + 12 -> 35 + 35 -> 36 + 18 -> 36 + 12 -> 36 + 39 -> 38 + 41 -> 38 8 -> 39 - 18 -> 39 - 33 -> 39 - 35 -> 40 - 32 -> 40 - 33 -> 40 - 34 -> 40 - 41 -> 40 - 36 -> 41 + 9 -> 39 + 37 -> 39 + 40 -> 39 + 35 -> 41 18 -> 41 - 13 -> 41 - 34 -> 42 - 18 -> 42 - 9 -> 42 - 8 -> 42 - 34 -> 43 - 18 -> 43 - 36 -> 44 - 19 -> 44 - 13 -> 44 + 12 -> 41 + 43 -> 42 + 41 -> 42 + 39 -> 43 + 8 -> 44 + 18 -> 44 + 39 -> 44 + 41 -> 45 + 38 -> 45 + 39 -> 45 + 9 -> 45 46 -> 45 - 51 -> 45 - 54 -> 45 - 47 -> 46 - 49 -> 46 - 50 -> 46 - 48 -> 47 - 34 -> 47 - 34 -> 48 - 34 -> 49 - 50 -> 49 - 48 -> 50 - 34 -> 50 - 31 -> 50 + 35 -> 46 + 18 -> 46 + 12 -> 46 + 9 -> 47 + 18 -> 47 + 8 -> 47 + 9 -> 48 + 18 -> 48 + 35 -> 49 + 19 -> 49 + 12 -> 49 + 51 -> 50 + 56 -> 50 + 59 -> 50 52 -> 51 - 53 -> 51 - 18 -> 52 - 35 -> 52 - 34 -> 52 - 50 -> 53 - 52 -> 54 - 49 -> 54 - 56 -> 55 - 36 -> 56 - 18 -> 56 - 13 -> 56 - 33 -> 57 - 35 -> 57 - 36 -> 58 - 18 -> 58 - 13 -> 58 - 36 -> 59 - 18 -> 59 - 13 -> 59 + 54 -> 51 + 55 -> 51 + 53 -> 52 + 9 -> 52 + 9 -> 53 + 9 -> 54 + 55 -> 54 + 53 -> 55 + 9 -> 55 + 37 -> 55 + 57 -> 56 + 58 -> 56 + 18 -> 57 + 41 -> 57 + 55 -> 58 + 57 -> 59 + 54 -> 59 + 39 -> 60 41 -> 60 - 58 -> 60 - 59 -> 60 - 36 -> 61 + 35 -> 61 18 -> 61 - 13 -> 61 - 36 -> 62 + 12 -> 61 + 35 -> 62 18 -> 62 - 13 -> 62 - 36 -> 63 - 18 -> 63 - 13 -> 63 + 12 -> 62 + 46 -> 63 + 61 -> 63 + 62 -> 63 35 -> 64 - 32 -> 64 - 57 -> 64 - 66 -> 65 - 69 -> 65 - 21 -> 66 - 22 -> 66 - 6 -> 66 - 14 -> 66 - 19 -> 66 - 18 -> 66 - 67 -> 66 - 3 -> 66 - 69 -> 66 + 18 -> 64 + 12 -> 64 + 35 -> 65 + 18 -> 65 + 12 -> 65 + 41 -> 66 + 38 -> 66 60 -> 66 - 6 -> 67 - 14 -> 67 - 15 -> 67 - 28 -> 67 - 29 -> 67 - 31 -> 67 - 32 -> 67 - 37 -> 67 - 39 -> 67 - 40 -> 67 - 33 -> 67 - 34 -> 67 68 -> 67 - 69 -> 67 - 43 -> 67 - 19 -> 67 - 18 -> 67 - 35 -> 67 - 44 -> 67 - 70 -> 67 - 55 -> 67 - 74 -> 67 - 41 -> 67 - 58 -> 67 - 59 -> 67 - 60 -> 67 - 61 -> 67 - 62 -> 67 - 63 -> 67 - 34 -> 68 + 71 -> 67 + 21 -> 68 + 22 -> 68 + 23 -> 68 + 6 -> 68 + 13 -> 68 + 14 -> 68 + 19 -> 68 18 -> 68 - 9 -> 68 - 8 -> 68 - 71 -> 70 - 72 -> 70 - 54 -> 70 - 47 -> 71 - 49 -> 71 - 50 -> 71 - 52 -> 72 + 69 -> 68 + 3 -> 68 + 71 -> 68 + 63 -> 68 + 6 -> 69 + 13 -> 69 + 14 -> 69 + 15 -> 69 + 29 -> 69 + 30 -> 69 + 31 -> 69 + 37 -> 69 + 38 -> 69 + 42 -> 69 + 44 -> 69 + 45 -> 69 + 39 -> 69 + 9 -> 69 + 70 -> 69 + 71 -> 69 + 48 -> 69 + 19 -> 69 + 18 -> 69 + 41 -> 69 + 49 -> 69 + 72 -> 69 + 33 -> 69 + 76 -> 69 + 46 -> 69 + 61 -> 69 + 62 -> 69 + 63 -> 69 + 36 -> 69 + 64 -> 69 + 65 -> 69 + 9 -> 70 + 18 -> 70 + 8 -> 70 73 -> 72 - 50 -> 73 - 33 -> 74 - 35 -> 74 - 76 -> 75 - 79 -> 75 - 21 -> 76 - 22 -> 76 - 6 -> 76 - 14 -> 76 - 19 -> 76 - 18 -> 76 - 77 -> 76 - 65 -> 76 - 79 -> 76 - 60 -> 76 - 6 -> 77 - 14 -> 77 - 15 -> 77 - 28 -> 77 - 29 -> 77 - 31 -> 77 - 32 -> 77 - 37 -> 77 - 39 -> 77 - 40 -> 77 - 33 -> 77 - 34 -> 77 + 74 -> 72 + 59 -> 72 + 52 -> 73 + 54 -> 73 + 55 -> 73 + 57 -> 74 + 75 -> 74 + 55 -> 75 + 39 -> 76 + 41 -> 76 78 -> 77 - 79 -> 77 - 43 -> 77 - 19 -> 77 - 18 -> 77 - 35 -> 77 - 44 -> 77 - 80 -> 77 - 55 -> 77 - 84 -> 77 - 41 -> 77 - 58 -> 77 - 59 -> 77 - 60 -> 77 - 61 -> 77 - 62 -> 77 - 63 -> 77 - 34 -> 78 + 81 -> 77 + 21 -> 78 + 22 -> 78 + 23 -> 78 + 6 -> 78 + 13 -> 78 + 14 -> 78 + 19 -> 78 18 -> 78 - 9 -> 78 - 8 -> 78 - 81 -> 80 - 82 -> 80 - 54 -> 80 - 47 -> 81 - 49 -> 81 - 50 -> 81 - 52 -> 82 + 79 -> 78 + 67 -> 78 + 81 -> 78 + 63 -> 78 + 6 -> 79 + 13 -> 79 + 14 -> 79 + 15 -> 79 + 29 -> 79 + 30 -> 79 + 31 -> 79 + 37 -> 79 + 38 -> 79 + 42 -> 79 + 44 -> 79 + 45 -> 79 + 39 -> 79 + 9 -> 79 + 80 -> 79 + 81 -> 79 + 48 -> 79 + 19 -> 79 + 18 -> 79 + 41 -> 79 + 49 -> 79 + 82 -> 79 + 33 -> 79 + 86 -> 79 + 46 -> 79 + 61 -> 79 + 62 -> 79 + 63 -> 79 + 36 -> 79 + 64 -> 79 + 65 -> 79 + 9 -> 80 + 18 -> 80 + 8 -> 80 83 -> 82 - 50 -> 83 - 33 -> 84 - 35 -> 84 - 18 -> 85 - 3 -> 86 - 18 -> 86 - 65 -> 87 + 84 -> 82 + 59 -> 82 + 52 -> 83 + 54 -> 83 + 55 -> 83 + 57 -> 84 + 85 -> 84 + 55 -> 85 + 39 -> 86 + 41 -> 86 18 -> 87 - 75 -> 88 + 3 -> 88 18 -> 88 - 3 -> 89 + 67 -> 89 18 -> 89 - 65 -> 90 + 77 -> 90 18 -> 90 - 75 -> 91 + 3 -> 91 18 -> 91 + 67 -> 92 + 18 -> 92 + 77 -> 93 + 18 -> 93 } | diff --git a/doc/validation.rst b/doc/validation.rst index afe7a7f3..b32a786d 100644 --- a/doc/validation.rst +++ b/doc/validation.rst @@ -29,11 +29,11 @@ Results By the time of writing the comparison with the historical data shows partially accurate, partially improvable results. The following figures show the comparison of the dispatch of the different carriers. -.. image:: ../graphics/validation_seasonal_operation_area_elec_s_37_ec_lv1.0_Ept.png +.. image:: img/validation_seasonal_operation_area_elec_s_37_ec_lv1.0_Ept.png :width: 100% :align: center -.. image:: ../graphics/validation_production_bar_elec_s_37_ec_lv1.0_Ept.png +.. image:: img/validation_production_bar_elec_s_37_ec_lv1.0_Ept.png :width: 100% :align: center diff --git a/doc/wildcards.rst b/doc/wildcards.rst index 1fd1646f..f8e60e20 100644 --- a/doc/wildcards.rst +++ b/doc/wildcards.rst @@ -35,8 +35,8 @@ The ``{technology}`` wildcard The ``{technology}`` wildcard specifies for which renewable energy technology to produce availability time series and potentials using the rule :mod:`build_renewable_profiles`. -It can take the values ``onwind``, ``offwind-ac``, ``offwind-dc``, and ``solar`` but **not** ``hydro`` -(since hydroelectric plant profiles are created by a different rule). +It can take the values ``onwind``, ``offwind-ac``, ``offwind-dc``, ``offwind-float``, and ``solar`` but **not** ``hydro`` +(since hydroelectric plant profiles are created by a different rule)`` .. _simpl: @@ -101,7 +101,7 @@ The ``{opts}`` wildcard The ``{opts}`` wildcard is used for electricity-only studies. It triggers optional constraints, which are activated in either :mod:`prepare_network` or the :mod:`solve_network` step. It may hold multiple triggers separated by ``-``, -i.e. ``Co2L-3H`` contains the ``Co2L`` trigger and the ``3H`` switch. There are +i.e. ``Co2L-3h`` contains the ``Co2L`` trigger and the ``3h`` switch. There are currently: @@ -121,7 +121,7 @@ The ``{sector_opts}`` wildcard # Co2Lx specifies the CO2 target in x% of the 1990 values; default will give default (5%); # Co2L0p25 will give 25% CO2 emissions; Co2Lm0p05 will give 5% negative emissions - # xH is the temporal resolution; 3H is 3-hourly, i.e. one snapshot every 3 hours + # xH is the temporal resolution; 3h is 3-hourly, i.e. one snapshot every 3 hours # single letters are sectors: T for land transport, H for building heating, # B for biomass supply, I for industry, shipping and aviation, # A for agriculture, forestry and fishing diff --git a/envs/environment.fixed.yaml b/envs/environment.fixed.yaml index 260c17fd..67fff66f 100644 --- a/envs/environment.fixed.yaml +++ b/envs/environment.fixed.yaml @@ -4,469 +4,465 @@ name: pypsa-eur channels: -- bioconda -- http://conda.anaconda.org/gurobi - conda-forge +- bioconda +- gurobi +- defaults dependencies: -- _libgcc_mutex=0.1=conda_forge -- _openmp_mutex=4.5=2_gnu -- affine=2.4.0=pyhd8ed1ab_0 -- alsa-lib=1.2.11=hd590300_1 -- ampl-mp=3.1.0=h2cc385e_1006 -- amply=0.1.6=pyhd8ed1ab_0 -- appdirs=1.4.4=pyh9f0ad1d_0 -- argparse-dataclass=2.0.0=pyhd8ed1ab_0 -- asttokens=2.4.1=pyhd8ed1ab_0 -- atk-1.0=2.38.0=h04ea711_2 -- atlite=0.2.12=pyhd8ed1ab_0 -- attr=2.5.1=h166bdaf_1 -- attrs=23.2.0=pyh71513ae_0 -- aws-c-auth=0.7.18=he0b1f16_0 -- aws-c-cal=0.6.11=heb1d5e4_0 -- aws-c-common=0.9.15=hd590300_0 -- aws-c-compression=0.2.18=hce8ee76_3 -- aws-c-event-stream=0.4.2=h01f5eca_8 -- aws-c-http=0.8.1=hdb68c23_10 -- aws-c-io=0.14.7=hbfbeace_6 -- aws-c-mqtt=0.10.4=h50844eb_0 -- aws-c-s3=0.5.7=h6be9164_2 -- aws-c-sdkutils=0.1.15=hce8ee76_3 -- aws-checksums=0.1.18=hce8ee76_3 -- aws-crt-cpp=0.26.8=h2150271_2 -- aws-sdk-cpp=1.11.267=hddb5a97_7 -- azure-core-cpp=1.11.1=h91d86a7_1 -- azure-identity-cpp=1.6.0=hf1915f5_1 -- azure-storage-blobs-cpp=12.10.0=h00ab1b0_1 -- azure-storage-common-cpp=12.5.0=h94269e2_4 -- beautifulsoup4=4.12.3=pyha770c72_0 -- blosc=1.21.5=hc2324a3_1 -- bokeh=3.4.1=pyhd8ed1ab_0 -- bottleneck=1.3.8=py311h1f0f07a_0 -- branca=0.7.2=pyhd8ed1ab_0 -- brotli=1.1.0=hd590300_1 -- brotli-bin=1.1.0=hd590300_1 -- brotli-python=1.1.0=py311hb755f60_1 -- bzip2=1.0.8=hd590300_5 -- c-ares=1.28.1=hd590300_0 -- c-blosc2=2.14.4=hb4ffafa_1 -- ca-certificates=2024.2.2=hbcca054_0 -- cads-api-client=1.0.0=pyhd8ed1ab_0 -- cairo=1.18.0=h3faef2a_0 -- cartopy=0.23.0=py311h320fe9a_0 -- cdsapi=0.7.0=pyhd8ed1ab_0 -- certifi=2024.2.2=pyhd8ed1ab_0 -- cffi=1.16.0=py311hb3a22ac_0 -- cfgv=3.3.1=pyhd8ed1ab_0 -- cfitsio=4.4.0=hbdc6101_1 -- cftime=1.6.3=py311h1f0f07a_0 -- charset-normalizer=3.3.2=pyhd8ed1ab_0 -- click=8.1.7=unix_pyh707e725_0 -- click-plugins=1.1.1=py_0 -- cligj=0.7.2=pyhd8ed1ab_1 -- cloudpickle=3.0.0=pyhd8ed1ab_0 -- coin-or-cbc=2.10.10=h9002f0b_0 -- coin-or-cgl=0.60.7=h516709c_0 -- coin-or-clp=1.17.8=h1ee7a9c_0 -- coin-or-osi=0.108.10=haf5fa05_0 -- coin-or-utils=2.11.11=hee58242_0 -- coincbc=2.10.10=0_metapackage -- colorama=0.4.6=pyhd8ed1ab_0 -- conda-inject=1.3.1=pyhd8ed1ab_0 -- configargparse=1.7=pyhd8ed1ab_0 -- connection_pool=0.0.3=pyhd3deb0d_0 -- contourpy=1.2.1=py311h9547e67_0 -- country_converter=1.2=pyhd8ed1ab_0 -- cppad=20240000.4=h59595ed_0 -- cycler=0.12.1=pyhd8ed1ab_0 -- cytoolz=0.12.3=py311h459d7ec_0 -- dask=2024.4.2=pyhd8ed1ab_0 -- dask-core=2024.4.2=pyhd8ed1ab_0 -- dask-expr=1.0.14=pyhd8ed1ab_0 -- datrie=0.8.2=py311h459d7ec_7 -- dbus=1.13.6=h5008d03_3 -- decorator=5.1.1=pyhd8ed1ab_0 -- deprecation=2.1.0=pyh9f0ad1d_0 -- descartes=1.1.0=py_4 -- distlib=0.3.8=pyhd8ed1ab_0 -- distributed=2024.4.2=pyhd8ed1ab_0 -- distro=1.9.0=pyhd8ed1ab_0 -- docutils=0.21.2=pyhd8ed1ab_0 -- dpath=2.1.6=pyha770c72_0 -- entsoe-py=0.6.7=pyhd8ed1ab_0 -- et_xmlfile=1.1.0=pyhd8ed1ab_0 -- exceptiongroup=1.2.0=pyhd8ed1ab_2 -- executing=2.0.1=pyhd8ed1ab_0 -- expat=2.6.2=h59595ed_0 -- filelock=3.14.0=pyhd8ed1ab_0 -- fiona=1.9.6=py311hf8e0aa6_0 -- fmt=10.2.1=h00ab1b0_0 -- folium=0.16.0=pyhd8ed1ab_0 -- font-ttf-dejavu-sans-mono=2.37=hab24e00_0 -- font-ttf-inconsolata=3.000=h77eed37_0 -- font-ttf-source-code-pro=2.038=h77eed37_0 -- font-ttf-ubuntu=0.83=h77eed37_2 -- fontconfig=2.14.2=h14ed4e7_0 -- fonts-conda-ecosystem=1=0 -- fonts-conda-forge=1=0 -- fonttools=4.51.0=py311h459d7ec_0 -- freetype=2.12.1=h267a509_2 -- freexl=2.0.0=h743c826_0 -- fribidi=1.0.10=h36c2ea0_0 -- fsspec=2024.3.1=pyhca7485f_0 -- gdal=3.8.5=py311hd032c08_2 -- gdk-pixbuf=2.42.11=hb9ae30d_0 -- geographiclib=2.0=pyhd8ed1ab_0 -- geojson-rewind=1.1.0=pyhd8ed1ab_0 -- geopandas=0.14.4=pyhd8ed1ab_0 -- geopandas-base=0.14.4=pyha770c72_0 -- geopy=2.4.1=pyhd8ed1ab_1 -- geos=3.12.1=h59595ed_0 -- geotiff=1.7.1=h6cf1f90_16 -- gettext=0.22.5=h59595ed_2 -- gettext-tools=0.22.5=h59595ed_2 -- gflags=2.2.2=he1b5a44_1004 -- giflib=5.2.2=hd590300_0 -- gitdb=4.0.11=pyhd8ed1ab_0 -- gitpython=3.1.43=pyhd8ed1ab_0 -- glib=2.80.0=hf2295e7_6 -- glib-tools=2.80.0=hde27a5a_6 -- glog=0.7.0=hed5481d_0 -- glpk=5.0=h445213a_0 -- gmp=6.3.0=h59595ed_1 -- graphite2=1.3.13=h59595ed_1003 -- graphviz=9.0.0=h78e8752_1 -- gst-plugins-base=1.24.1=hfa15dee_2 -- gstreamer=1.24.1=h98fc4e7_2 -- gtk2=2.24.33=h280cfa0_4 -- gts=0.7.6=h977cf35_4 -- harfbuzz=8.4.0=h3d44ed6_0 -- hdf4=4.2.15=h2a13503_7 -- hdf5=1.14.3=nompi_h4f84152_101 -- humanfriendly=10.0=pyhd8ed1ab_6 -- icu=73.2=h59595ed_0 -- identify=2.5.36=pyhd8ed1ab_0 -- idna=3.7=pyhd8ed1ab_0 -- immutables=0.20=py311h459d7ec_1 -- importlib-metadata=7.1.0=pyha770c72_0 -- importlib_metadata=7.1.0=hd8ed1ab_0 -- importlib_resources=6.4.0=pyhd8ed1ab_0 -- iniconfig=2.0.0=pyhd8ed1ab_0 -- ipopt=3.14.16=hf967516_0 -- ipython=8.22.2=pyh707e725_0 -- jedi=0.19.1=pyhd8ed1ab_0 -- jinja2=3.1.3=pyhd8ed1ab_0 -- joblib=1.4.2=pyhd8ed1ab_0 -- json-c=0.17=h7ab15ed_0 -- jsonschema=4.22.0=pyhd8ed1ab_0 -- jsonschema-specifications=2023.12.1=pyhd8ed1ab_0 -- jupyter_core=5.7.2=py311h38be061_0 -- kealib=1.5.3=h2f55d51_0 -- keyutils=1.6.1=h166bdaf_0 -- kiwisolver=1.4.5=py311h9547e67_1 -- krb5=1.21.2=h659d440_0 -- lame=3.100=h166bdaf_1003 -- lcms2=2.16=hb7c19ff_0 -- ld_impl_linux-64=2.40=h55db66e_0 -- lerc=4.0.0=h27087fc_0 -- libabseil=20240116.2=cxx17_h59595ed_0 -- libaec=1.1.3=h59595ed_0 -- libarchive=3.7.2=h2aa1ff5_1 -- libarrow=15.0.2=hefa796f_6_cpu -- libarrow-acero=15.0.2=hbabe93e_6_cpu -- libarrow-dataset=15.0.2=hbabe93e_6_cpu -- libarrow-flight=15.0.2=hc4f8a93_6_cpu -- libarrow-flight-sql=15.0.2=he4f5ca8_6_cpu -- libarrow-gandiva=15.0.2=hc1954e9_6_cpu -- libarrow-substrait=15.0.2=he4f5ca8_6_cpu -- libasprintf=0.22.5=h661eb56_2 -- libasprintf-devel=0.22.5=h661eb56_2 -- libblas=3.9.0=22_linux64_openblas -- libboost-headers=1.84.0=ha770c72_2 -- libbrotlicommon=1.1.0=hd590300_1 -- libbrotlidec=1.1.0=hd590300_1 -- libbrotlienc=1.1.0=hd590300_1 -- libcap=2.69=h0f662aa_0 -- libcblas=3.9.0=22_linux64_openblas -- libclang-cpp15=15.0.7=default_h127d8a8_5 -- libclang13=18.1.4=default_h5d6823c_0 -- libcrc32c=1.1.2=h9c3ff4c_0 -- libcups=2.3.3=h4637d8d_4 -- libcurl=8.7.1=hca28451_0 -- libdeflate=1.20=hd590300_0 -- libedit=3.1.20191231=he28a2e2_2 -- libev=4.33=hd590300_2 -- libevent=2.1.12=hf998b51_1 -- libexpat=2.6.2=h59595ed_0 -- libffi=3.4.2=h7f98852_5 -- libflac=1.4.3=h59595ed_0 -- libgcc-ng=13.2.0=h77fa898_6 -- libgcrypt=1.10.3=hd590300_0 -- libgd=2.3.3=h119a65a_9 -- libgdal=3.8.5=hf9625ee_2 -- libgettextpo=0.22.5=h59595ed_2 -- libgettextpo-devel=0.22.5=h59595ed_2 -- libgfortran-ng=13.2.0=h69a702a_6 -- libgfortran5=13.2.0=h43f5ff8_6 -- libglib=2.80.0=hf2295e7_6 -- libgomp=13.2.0=h77fa898_6 -- libgoogle-cloud=2.23.0=h9be4e54_1 -- libgoogle-cloud-storage=2.23.0=hc7a4891_1 -- libgpg-error=1.49=h4f305b6_0 -- libgrpc=1.62.2=h15f2491_0 -- libhwloc=2.9.3=default_h554bfaf_1009 -- libiconv=1.17=hd590300_2 -- libjpeg-turbo=3.0.0=hd590300_1 -- libkml=1.3.0=h01aab08_1018 -- liblapack=3.9.0=22_linux64_openblas -- liblapacke=3.9.0=22_linux64_openblas -- libllvm15=15.0.7=hb3ce162_4 -- libllvm16=16.0.6=hb3ce162_3 -- libllvm18=18.1.4=h2448989_0 -- libnetcdf=4.9.2=nompi_h9612171_113 -- libnghttp2=1.58.0=h47da74e_1 -- libnl=3.9.0=hd590300_0 -- libnsl=2.0.1=hd590300_0 -- libogg=1.3.4=h7f98852_1 -- libopenblas=0.3.27=pthreads_h413a1c8_0 -- libopus=1.3.1=h7f98852_1 -- libparquet=15.0.2=hacf5a1f_6_cpu -- libpng=1.6.43=h2797004_0 -- libpq=16.2=h33b98f1_1 -- libprotobuf=4.25.3=h08a7969_0 -- libre2-11=2023.09.01=h5a48ba9_2 -- librsvg=2.58.0=hadf69e7_1 -- librttopo=1.1.0=h8917695_15 -- libscotch=7.0.4=h91e35bf_1 -- libsndfile=1.2.2=hc60ed4a_1 -- libspatialindex=1.9.3=h9c3ff4c_4 -- libspatialite=5.1.0=h6f065fc_5 -- libspral=2024.01.18=h6aa6db2_0 -- libsqlite=3.45.3=h2797004_0 -- libssh2=1.11.0=h0841786_0 -- libstdcxx-ng=13.2.0=hc0a3c3a_6 -- libsystemd0=255=h3516f8a_1 -- libthrift=0.19.0=hb90f79a_1 -- libtiff=4.6.0=h1dd3fc0_3 -- libutf8proc=2.8.0=h166bdaf_0 -- libuuid=2.38.1=h0b41bf4_0 -- libvorbis=1.3.7=h9c3ff4c_0 -- libwebp=1.4.0=h2c329e2_0 -- libwebp-base=1.4.0=hd590300_0 -- libxcb=1.15=h0b41bf4_0 -- libxcrypt=4.4.36=hd590300_1 -- libxkbcommon=1.7.0=h662e7e4_0 -- libxml2=2.12.6=h232c23b_2 -- libxslt=1.1.39=h76b75d6_0 -- libzip=1.10.1=h2629f0a_3 -- libzlib=1.2.13=hd590300_5 -- linopy=0.3.8=pyhd8ed1ab_0 -- locket=1.0.0=pyhd8ed1ab_0 -- lxml=5.2.1=py311hc0a218f_0 -- lz4=4.3.3=py311h38e4bf4_0 -- lz4-c=1.9.4=hcb278e6_0 -- lzo=2.10=hd590300_1001 -- mapclassify=2.6.1=pyhd8ed1ab_0 -- markupsafe=2.1.5=py311h459d7ec_0 -- matplotlib=3.8.4=py311h38be061_0 -- matplotlib-base=3.8.4=py311h54ef318_0 -- matplotlib-inline=0.1.7=pyhd8ed1ab_0 -- memory_profiler=0.61.0=pyhd8ed1ab_0 -- metis=5.1.0=h59595ed_1007 -- minizip=4.0.5=h0ab5242_0 -- mpfr=4.2.1=h9458935_1 -- mpg123=1.32.6=h59595ed_0 -- msgpack-python=1.0.7=py311h9547e67_0 -- multiurl=0.3.1=pyhd8ed1ab_0 -- mumps-include=5.6.2=ha770c72_4 -- mumps-seq=5.6.2=hfef103a_4 -- munkres=1.1.4=pyh9f0ad1d_0 -- mysql-common=8.3.0=hf1915f5_4 -- mysql-libs=8.3.0=hca2cd23_4 -- nbformat=5.10.4=pyhd8ed1ab_0 -- ncurses=6.4.20240210=h59595ed_0 -- netcdf4=1.6.5=nompi_py311he8ad708_100 -- networkx=3.3=pyhd8ed1ab_1 -- nodeenv=1.8.0=pyhd8ed1ab_0 -- nomkl=1.0=h5ca1d4c_0 -- nspr=4.35=h27087fc_0 -- nss=3.98=h1d7d5a4_0 -- numexpr=2.9.0=py311h039bad6_100 -- numpy=1.26.4=py311h64a7726_0 -- openjdk=22.0.1=hb622114_0 -- openjpeg=2.5.2=h488ebb8_0 -- openpyxl=3.1.2=py311h459d7ec_1 -- openssl=3.3.0=hd590300_0 -- orc=2.0.0=h17fec99_1 -- packaging=24.0=pyhd8ed1ab_0 -- pandas=2.2.2=py311h320fe9a_0 -- pango=1.52.2=ha41ecd1_0 -- parso=0.8.4=pyhd8ed1ab_0 -- partd=1.4.1=pyhd8ed1ab_0 -- patsy=0.5.6=pyhd8ed1ab_0 -- pcre2=10.43=hcad00b1_0 -- pexpect=4.9.0=pyhd8ed1ab_0 -- pickleshare=0.7.5=py_1003 -- pillow=10.3.0=py311h18e6fac_0 -- pip=24.0=pyhd8ed1ab_0 -- pixman=0.43.2=h59595ed_0 -- pkgutil-resolve-name=1.3.10=pyhd8ed1ab_1 -- plac=1.4.3=pyhd8ed1ab_0 -- platformdirs=4.2.1=pyhd8ed1ab_0 -- pluggy=1.5.0=pyhd8ed1ab_0 -- ply=3.11=pyhd8ed1ab_2 -- poppler=24.04.0=hb6cd0d7_0 -- poppler-data=0.4.12=hd8ed1ab_0 -- postgresql=16.2=h82ecc9d_1 -- powerplantmatching=0.5.14=pyhd8ed1ab_0 -- pre-commit=3.7.0=pyha770c72_0 -- progressbar2=4.4.2=pyhd8ed1ab_0 -- proj=9.4.0=h1d62c97_1 -- prompt-toolkit=3.0.42=pyha770c72_0 -- psutil=5.9.8=py311h459d7ec_0 -- pthread-stubs=0.4=h36c2ea0_1001 -- ptyprocess=0.7.0=pyhd3deb0d_0 -- pulp=2.8.0=py311h38be061_0 -- pulseaudio-client=17.0=hb77b528_0 -- pure_eval=0.2.2=pyhd8ed1ab_0 -- py-cpuinfo=9.0.0=pyhd8ed1ab_0 -- pyarrow=15.0.2=py311hd5e4297_6_cpu -- pyarrow-hotfix=0.6=pyhd8ed1ab_0 -- pycountry=22.3.5=pyhd8ed1ab_0 -- pycparser=2.22=pyhd8ed1ab_0 -- pygments=2.17.2=pyhd8ed1ab_0 -- pyomo=6.6.1=py311hb755f60_0 -- pyparsing=3.1.2=pyhd8ed1ab_0 -- pyproj=3.6.1=py311hb3a3e68_6 -- pypsa=0.27.1=pyhd8ed1ab_0 -- pyqt=5.15.9=py311hf0fb5b6_5 -- pyqt5-sip=12.12.2=py311hb755f60_5 -- pyscipopt=5.0.1=py311hb755f60_0 -- pyshp=2.3.1=pyhd8ed1ab_0 -- pysocks=1.7.1=pyha2e5f31_6 -- pytables=3.9.2=py311h3e8b7c9_2 -- pytest=8.2.0=pyhd8ed1ab_0 -- python=3.11.9=hb806964_0_cpython -- python-dateutil=2.9.0=pyhd8ed1ab_0 -- python-fastjsonschema=2.19.1=pyhd8ed1ab_0 -- python-tzdata=2024.1=pyhd8ed1ab_0 -- python-utils=3.8.2=pyhd8ed1ab_0 -- python_abi=3.11=4_cp311 -- pytz=2024.1=pyhd8ed1ab_0 -- pyxlsb=1.0.10=pyhd8ed1ab_0 -- pyyaml=6.0.1=py311h459d7ec_1 -- qt-main=5.15.8=hc9dc06e_21 -- rasterio=1.3.10=py311h375a7ea_0 -- rdma-core=51.0=hd3aeb46_0 -- re2=2023.09.01=h7f4b329_2 -- readline=8.2=h8228510_1 -- referencing=0.35.1=pyhd8ed1ab_0 -- requests=2.31.0=pyhd8ed1ab_0 -- reretry=0.11.8=pyhd8ed1ab_0 -- rioxarray=0.15.5=pyhd8ed1ab_0 -- rpds-py=0.18.0=py311h46250e7_0 -- rtree=1.2.0=py311h3bb2b0f_0 -- s2n=1.4.12=h06160fa_0 -- scikit-learn=1.4.2=py311hc009520_0 -- scip=9.0.0=hded5f35_4 -- scipy=1.13.0=py311h64a7726_0 -- scotch=7.0.4=h23d43cc_1 -- seaborn=0.13.2=hd8ed1ab_2 -- seaborn-base=0.13.2=pyhd8ed1ab_2 -- setuptools=69.5.1=pyhd8ed1ab_0 -- setuptools-scm=8.0.4=pyhd8ed1ab_1 -- setuptools_scm=8.0.4=hd8ed1ab_1 -- shapely=2.0.4=py311h2032efe_0 -- sip=6.7.12=py311hb755f60_0 -- six=1.16.0=pyh6c4a22f_0 -- smart_open=7.0.4=pyhd8ed1ab_0 -- smmap=5.0.0=pyhd8ed1ab_0 -- snakemake-interface-common=1.17.2=pyhdfd78af_0 -- snakemake-interface-executor-plugins=9.1.1=pyhdfd78af_0 -- snakemake-interface-report-plugins=1.0.0=pyhdfd78af_0 -- snakemake-interface-storage-plugins=3.2.2=pyhdfd78af_0 -- snakemake-minimal=8.11.1=pyhdfd78af_0 -- snappy=1.2.0=hdb0a2a9_1 -- snuggs=1.4.7=py_0 -- sortedcontainers=2.4.0=pyhd8ed1ab_0 -- soupsieve=2.5=pyhd8ed1ab_1 -- spdlog=1.13.0=hd2e6256_0 -- sqlite=3.45.3=h2c6b66d_0 -- stack_data=0.6.2=pyhd8ed1ab_0 -- statsmodels=0.14.1=py311h1f0f07a_0 -- stopit=1.1.2=py_0 -- tabula-py=2.7.0=py311h38be061_1 -- tabulate=0.9.0=pyhd8ed1ab_1 -- tbb=2021.11.0=h00ab1b0_1 -- tblib=3.0.0=pyhd8ed1ab_0 -- threadpoolctl=3.5.0=pyhc1e730c_0 -- throttler=1.2.2=pyhd8ed1ab_0 -- tiledb=2.22.0=h27f064a_3 -- tk=8.6.13=noxft_h4845f30_101 -- toml=0.10.2=pyhd8ed1ab_0 -- tomli=2.0.1=pyhd8ed1ab_0 -- toolz=0.12.1=pyhd8ed1ab_0 -- toposort=1.10=pyhd8ed1ab_0 -- tornado=6.4=py311h459d7ec_0 -- tqdm=4.66.2=pyhd8ed1ab_0 -- traitlets=5.14.3=pyhd8ed1ab_0 -- typing-extensions=4.11.0=hd8ed1ab_0 -- typing_extensions=4.11.0=pyha770c72_0 -- tzcode=2024a=h3f72095_0 -- tzdata=2024a=h0c530f3_0 -- ucx=1.15.0=ha691c75_8 -- ukkonen=1.0.1=py311h9547e67_4 -- unidecode=1.3.8=pyhd8ed1ab_0 -- unixodbc=2.3.12=h661eb56_0 -- uriparser=0.9.7=h59595ed_1 -- urllib3=2.2.1=pyhd8ed1ab_0 -- validators=0.28.1=pyhd8ed1ab_0 -- virtualenv=20.26.1=pyhd8ed1ab_0 -- wcwidth=0.2.13=pyhd8ed1ab_0 -- wheel=0.43.0=pyhd8ed1ab_1 -- wrapt=1.16.0=py311h459d7ec_0 -- xarray=2024.3.0=pyhd8ed1ab_0 -- xcb-util=0.4.0=hd590300_1 -- xcb-util-image=0.4.0=h8ee46fc_1 -- xcb-util-keysyms=0.4.0=h8ee46fc_1 -- xcb-util-renderutil=0.3.9=hd590300_1 -- xcb-util-wm=0.4.1=h8ee46fc_1 -- xerces-c=3.2.5=hac6953d_0 -- xkeyboard-config=2.41=hd590300_0 -- xlrd=2.0.1=pyhd8ed1ab_3 -- xorg-fixesproto=5.0=h7f98852_1002 -- xorg-inputproto=2.3.2=h7f98852_1002 -- xorg-kbproto=1.0.7=h7f98852_1002 -- xorg-libice=1.1.1=hd590300_0 -- xorg-libsm=1.2.4=h7391055_0 -- xorg-libx11=1.8.9=h8ee46fc_0 -- xorg-libxau=1.0.11=hd590300_0 -- xorg-libxdmcp=1.1.3=h7f98852_0 -- xorg-libxext=1.3.4=h0b41bf4_2 -- xorg-libxfixes=5.0.3=h7f98852_1004 -- xorg-libxi=1.7.10=h7f98852_0 -- xorg-libxrender=0.9.11=hd590300_0 -- xorg-libxt=1.3.0=hd590300_1 -- xorg-libxtst=1.2.3=h7f98852_1002 -- xorg-recordproto=1.14.2=h7f98852_1002 -- xorg-renderproto=0.11.1=h7f98852_1002 -- xorg-xextproto=7.3.0=h0b41bf4_1003 -- xorg-xf86vidmodeproto=2.3.1=h7f98852_1002 -- xorg-xproto=7.0.31=h7f98852_1007 -- xyzservices=2024.4.0=pyhd8ed1ab_0 -- xz=5.2.6=h166bdaf_0 -- yaml=0.2.5=h7f98852_2 -- yte=1.5.4=pyha770c72_0 -- zict=3.0.0=pyhd8ed1ab_0 -- zipp=3.17.0=pyhd8ed1ab_0 -- zlib=1.2.13=hd590300_5 -- zlib-ng=2.0.7=h0b41bf4_0 -- zstd=1.5.5=hfc55251_0 +- _libgcc_mutex=0.1 +- _openmp_mutex=4.5 +- affine=2.4.0 +- alsa-lib=1.2.11 +- ampl-mp=3.1.0 +- amply=0.1.6 +- appdirs=1.4.4 +- argparse-dataclass=2.0.0 +- asttokens=2.4.1 +- atk-1.0=2.38.0 +- atlite=0.2.12 +- attr=2.5.1 +- attrs=23.2.0 +- aws-c-auth=0.7.22 +- aws-c-cal=0.6.14 +- aws-c-common=0.9.19 +- aws-c-compression=0.2.18 +- aws-c-event-stream=0.4.2 +- aws-c-http=0.8.1 +- aws-c-io=0.14.8 +- aws-c-mqtt=0.10.4 +- aws-c-s3=0.5.9 +- aws-c-sdkutils=0.1.16 +- aws-checksums=0.1.18 +- aws-crt-cpp=0.26.9 +- aws-sdk-cpp=1.11.329 +- azure-core-cpp=1.11.1 +- azure-identity-cpp=1.6.0 +- azure-storage-blobs-cpp=12.10.0 +- azure-storage-common-cpp=12.5.0 +- beautifulsoup4=4.12.3 +- blosc=1.21.5 +- bokeh=3.4.1 +- bottleneck=1.3.8 +- branca=0.7.2 +- brotli=1.1.0 +- brotli-bin=1.1.0 +- brotli-python=1.1.0 +- bzip2=1.0.8 +- c-ares=1.28.1 +- c-blosc2=2.14.4 +- ca-certificates=2024.2.2 +- cads-api-client=1.0.3 +- cairo=1.18.0 +- cartopy=0.23.0 +- cdsapi=0.7.0 +- certifi=2024.2.2 +- cffi=1.16.0 +- cfgv=3.3.1 +- cfitsio=4.4.0 +- cftime=1.6.3 +- charset-normalizer=3.3.2 +- click=8.1.7 +- click-plugins=1.1.1 +- cligj=0.7.2 +- cloudpickle=3.0.0 +- coin-or-cbc=2.10.10 +- coin-or-cgl=0.60.7 +- coin-or-clp=1.17.8 +- coin-or-osi=0.108.10 +- coin-or-utils=2.11.11 +- coincbc=2.10.10 +- colorama=0.4.6 +- conda-inject=1.3.1 +- configargparse=1.7 +- connection_pool=0.0.3 +- contourpy=1.2.1 +- country_converter=1.2 +- cppad=20240000.4 +- cycler=0.12.1 +- cytoolz=0.12.3 +- dask=2024.5.1 +- dask-core=2024.5.1 +- dask-expr=1.1.1 +- datrie=0.8.2 +- dbus=1.13.6 +- decorator=5.1.1 +- deprecation=2.1.0 +- descartes=1.1.0 +- distlib=0.3.8 +- distributed=2024.5.1 +- distro=1.9.0 +- docutils=0.21.2 +- dpath=2.1.6 +- entsoe-py=0.6.7 +- et_xmlfile=1.1.0 +- exceptiongroup=1.2.0 +- executing=2.0.1 +- expat=2.6.2 +- filelock=3.14.0 +- fiona=1.9.6 +- fmt=10.2.1 +- folium=0.16.0 +- font-ttf-dejavu-sans-mono=2.37 +- font-ttf-inconsolata=3.000 +- font-ttf-source-code-pro=2.038 +- font-ttf-ubuntu=0.83 +- fontconfig=2.14.2 +- fonts-conda-ecosystem=1 +- fonts-conda-forge=1 +- fonttools=4.52.1 +- freetype=2.12.1 +- freexl=2.0.0 +- fribidi=1.0.10 +- fsspec=2024.5.0 +- gdal=3.8.5 +- gdk-pixbuf=2.42.12 +- geographiclib=2.0 +- geojson-rewind=1.1.0 +- geopandas=0.14.4 +- geopandas-base=0.14.4 +- geopy=2.4.1 +- geos=3.12.1 +- geotiff=1.7.3 +- gettext=0.22.5 +- gettext-tools=0.22.5 +- gflags=2.2.2 +- giflib=5.2.2 +- gitdb=4.0.11 +- gitpython=3.1.43 +- glib=2.80.2 +- glib-tools=2.80.2 +- glog=0.7.0 +- glpk=5.0 +- gmp=6.3.0 +- graphite2=1.3.13 +- graphviz=11.0.0 +- gst-plugins-base=1.24.3 +- gstreamer=1.24.3 +- gtk2=2.24.33 +- gts=0.7.6 +- gurobi=11.0.2 +- harfbuzz=8.5.0 +- hdf4=4.2.15 +- hdf5=1.14.3 +- humanfriendly=10.0 +- icu=73.2 +- identify=2.5.36 +- idna=3.7 +- immutables=0.20 +- importlib-metadata=7.1.0 +- importlib_metadata=7.1.0 +- importlib_resources=6.4.0 +- iniconfig=2.0.0 +- ipopt=3.14.16 +- ipython=8.24.0 +- jedi=0.19.1 +- jinja2=3.1.4 +- joblib=1.4.2 +- json-c=0.17 +- jsonschema=4.22.0 +- jsonschema-specifications=2023.12.1 +- jupyter_core=5.7.2 +- kealib=1.5.3 +- keyutils=1.6.1 +- kiwisolver=1.4.5 +- krb5=1.21.2 +- lame=3.100 +- lcms2=2.16 +- ld_impl_linux-64=2.40 +- lerc=4.0.0 +- libabseil=20240116.2 +- libaec=1.1.3 +- libarchive=3.7.4 +- libarrow=16.1.0 +- libarrow-acero=16.1.0 +- libarrow-dataset=16.1.0 +- libarrow-substrait=16.1.0 +- libasprintf=0.22.5 +- libasprintf-devel=0.22.5 +- libblas=3.9.0 +- libboost-headers=1.85.0 +- libbrotlicommon=1.1.0 +- libbrotlidec=1.1.0 +- libbrotlienc=1.1.0 +- libcap=2.69 +- libcblas=3.9.0 +- libclang-cpp15=15.0.7 +- libclang13=18.1.5 +- libcrc32c=1.1.2 +- libcups=2.3.3 +- libcurl=8.8.0 +- libdeflate=1.20 +- libedit=3.1.20191231 +- libev=4.33 +- libevent=2.1.12 +- libexpat=2.6.2 +- libffi=3.4.2 +- libflac=1.4.3 +- libgcc-ng=13.2.0 +- libgcrypt=1.10.3 +- libgd=2.3.3 +- libgdal=3.8.5 +- libgettextpo=0.22.5 +- libgettextpo-devel=0.22.5 +- libgfortran-ng=13.2.0 +- libgfortran5=13.2.0 +- libglib=2.80.2 +- libgomp=13.2.0 +- libgoogle-cloud=2.24.0 +- libgoogle-cloud-storage=2.24.0 +- libgpg-error=1.49 +- libgrpc=1.62.2 +- libhwloc=2.9.3 +- libiconv=1.17 +- libjpeg-turbo=3.0.0 +- libkml=1.3.0 +- liblapack=3.9.0 +- liblapacke=3.9.0 +- libllvm15=15.0.7 +- libllvm18=18.1.6 +- libnetcdf=4.9.2 +- libnghttp2=1.58.0 +- libnsl=2.0.1 +- libogg=1.3.4 +- libopenblas=0.3.27 +- libopus=1.3.1 +- libparquet=16.1.0 +- libpng=1.6.43 +- libpq=16.3 +- libprotobuf=4.25.3 +- libre2-11=2023.09.01 +- librsvg=2.58.0 +- librttopo=1.1.0 +- libscotch=7.0.4 +- libsndfile=1.2.2 +- libspatialindex=1.9.3 +- libspatialite=5.1.0 +- libspral=2024.01.18 +- libsqlite=3.45.3 +- libssh2=1.11.0 +- libstdcxx-ng=13.2.0 +- libsystemd0=255 +- libthrift=0.19.0 +- libtiff=4.6.0 +- libutf8proc=2.8.0 +- libuuid=2.38.1 +- libvorbis=1.3.7 +- libwebp=1.4.0 +- libwebp-base=1.4.0 +- libxcb=1.15 +- libxcrypt=4.4.36 +- libxkbcommon=1.7.0 +- libxml2=2.12.7 +- libxslt=1.1.39 +- libzip=1.10.1 +- libzlib=1.2.13 +- linopy=0.3.9 +- locket=1.0.0 +- lxml=5.2.2 +- lz4=4.3.3 +- lz4-c=1.9.4 +- lzo=2.10 +- mapclassify=2.6.1 +- markupsafe=2.1.5 +- matplotlib=3.8.4 +- matplotlib-base=3.8.4 +- matplotlib-inline=0.1.7 +- memory_profiler=0.61.0 +- metis=5.1.0 +- minizip=4.0.5 +- mpfr=4.2.1 +- mpg123=1.32.6 +- msgpack-python=1.0.8 +- multiurl=0.3.1 +- mumps-include=5.7.1 +- mumps-seq=5.7.1 +- munkres=1.1.4 +- mysql-common=8.3.0 +- mysql-libs=8.3.0 +- nbformat=5.10.4 +- ncurses=6.5 +- netcdf4=1.6.5 +- networkx=3.3 +- nodeenv=1.8.0 +- nomkl=1.0 +- nspr=4.35 +- nss=3.100 +- numexpr=2.9.0 +- numpy=1.26.4 +- openjdk=22.0.1 +- openjpeg=2.5.2 +- openpyxl=3.1.2 +- openssl=3.3.0 +- orc=2.0.1 +- packaging=24.0 +- pandas=2.2.2 +- pango=1.52.2 +- parso=0.8.4 +- partd=1.4.2 +- patsy=0.5.6 +- pcre2=10.43 +- pexpect=4.9.0 +- pickleshare=0.7.5 +- pillow=10.3.0 +- pip=24.0 +- pixman=0.43.2 +- pkgutil-resolve-name=1.3.10 +- plac=1.4.3 +- platformdirs=4.2.2 +- pluggy=1.5.0 +- ply=3.11 +- poppler=24.04.0 +- poppler-data=0.4.12 +- postgresql=16.3 +- powerplantmatching=0.5.15 +- pre-commit=3.7.1 +- progressbar2=4.4.2 +- proj=9.4.0 +- prompt-toolkit=3.0.42 +- psutil=5.9.8 +- pthread-stubs=0.4 +- ptyprocess=0.7.0 +- pulp=2.8.0 +- pulseaudio-client=17.0 +- pure_eval=0.2.2 +- py-cpuinfo=9.0.0 +- pyarrow=16.1.0 +- pyarrow-core=16.1.0 +- pyarrow-hotfix=0.6 +- pycountry=22.3.5 +- pycparser=2.22 +- pygments=2.18.0 +- pyomo=6.6.1 +- pyparsing=3.1.2 +- pyproj=3.6.1 +- pypsa=0.28.0 +- pyqt=5.15.9 +- pyqt5-sip=12.12.2 +- pyscipopt=5.0.1 +- pyshp=2.3.1 +- pysocks=1.7.1 +- pytables=3.9.2 +- pytest=8.2.1 +- python=3.11.9 +- python-dateutil=2.9.0 +- python-fastjsonschema=2.19.1 +- python-tzdata=2024.1 +- python-utils=3.8.2 +- python_abi=3.11 +- pytz=2024.1 +- pyxlsb=1.0.10 +- pyyaml=6.0.1 +- qt-main=5.15.8 +- rasterio=1.3.10 +- re2=2023.09.01 +- readline=8.2 +- referencing=0.35.1 +- requests=2.32.2 +- reretry=0.11.8 +- rioxarray=0.15.5 +- rpds-py=0.18.1 +- rtree=1.2.0 +- s2n=1.4.15 +- scikit-learn=1.5.0 +- scip=9.0.1 +- scipy=1.13.1 +- scotch=7.0.4 +- seaborn=0.13.2 +- seaborn-base=0.13.2 +- setuptools=70.0.0 +- setuptools-scm=8.1.0 +- setuptools_scm=8.1.0 +- shapely=2.0.4 +- sip=6.7.12 +- six=1.16.0 +- smart_open=7.0.4 +- smmap=5.0.0 +- snakemake-interface-common=1.17.2 +- snakemake-interface-executor-plugins=9.1.1 +- snakemake-interface-report-plugins=1.0.0 +- snakemake-interface-storage-plugins=3.2.2 +- snakemake-minimal=8.11.6 +- snappy=1.2.0 +- snuggs=1.4.7 +- sortedcontainers=2.4.0 +- soupsieve=2.5 +- spdlog=1.13.0 +- sqlite=3.45.3 +- stack_data=0.6.2 +- statsmodels=0.14.2 +- stopit=1.1.2 +- tabula-py=2.7.0 +- tabulate=0.9.0 +- tbb=2021.11.0 +- tblib=3.0.0 +- threadpoolctl=3.5.0 +- throttler=1.2.2 +- tiledb=2.23.0 +- tk=8.6.13 +- toml=0.10.2 +- tomli=2.0.1 +- toolz=0.12.1 +- toposort=1.10 +- tornado=6.4 +- tqdm=4.66.4 +- traitlets=5.14.3 +- typing-extensions=4.11.0 +- typing_extensions=4.11.0 +- tzcode=2024a +- tzdata=2024a +- ukkonen=1.0.1 +- unidecode=1.3.8 +- unixodbc=2.3.12 +- uriparser=0.9.8 +- urllib3=2.2.1 +- validators=0.28.2 +- virtualenv=20.26.2 +- wcwidth=0.2.13 +- wheel=0.43.0 +- wrapt=1.16.0 +- xarray=2024.5.0 +- xcb-util=0.4.0 +- xcb-util-image=0.4.0 +- xcb-util-keysyms=0.4.0 +- xcb-util-renderutil=0.3.9 +- xcb-util-wm=0.4.1 +- xerces-c=3.2.5 +- xkeyboard-config=2.41 +- xlrd=2.0.1 +- xorg-fixesproto=5.0 +- xorg-inputproto=2.3.2 +- xorg-kbproto=1.0.7 +- xorg-libice=1.1.1 +- xorg-libsm=1.2.4 +- xorg-libx11=1.8.9 +- xorg-libxau=1.0.11 +- xorg-libxdmcp=1.1.3 +- xorg-libxext=1.3.4 +- xorg-libxfixes=5.0.3 +- xorg-libxi=1.7.10 +- xorg-libxrender=0.9.11 +- xorg-libxt=1.3.0 +- xorg-libxtst=1.2.3 +- xorg-recordproto=1.14.2 +- xorg-renderproto=0.11.1 +- xorg-xextproto=7.3.0 +- xorg-xf86vidmodeproto=2.3.1 +- xorg-xproto=7.0.31 +- xyzservices=2024.4.0 +- xz=5.2.6 +- yaml=0.2.5 +- yte=1.5.4 +- zict=3.0.0 +- zipp=3.17.0 +- zlib=1.2.13 +- zlib-ng=2.0.7 +- zstd=1.5.6 - pip: - highspy==1.5.3 - oauthlib==3.2.2 - requests-oauthlib==1.3.1 - snakemake-executor-plugin-cluster-generic==1.0.9 - - snakemake-executor-plugin-slurm==0.4.5 + - snakemake-executor-plugin-slurm==0.5.1 - snakemake-executor-plugin-slurm-jobstep==0.2.1 - snakemake-storage-plugin-http==0.2.3 - tsam==2.3.1 diff --git a/envs/environment.yaml b/envs/environment.yaml index cbb1a364..e57c8761 100644 --- a/envs/environment.yaml +++ b/envs/environment.yaml @@ -1,6 +1,6 @@ # SPDX-FileCopyrightText: : 2017-2024 The PyPSA-Eur Authors # -# SPDX-License-Identifier: MIT +# SPDX-License-Identifier: CC0-1.0 name: pypsa-eur channels: @@ -11,7 +11,7 @@ dependencies: - pip - atlite>=0.2.9 -- pypsa>=0.26.1 +- pypsa>=0.28 - linopy - dask @@ -20,15 +20,15 @@ dependencies: - openpyxl!=3.1.1 - pycountry - seaborn -- snakemake-minimal>=8.11 +- snakemake-minimal>=8.14 - memory_profiler - yaml - pytables - lxml -- powerplantmatching>=0.5.13 +- powerplantmatching>=0.5.15 - numpy - pandas>=2.1 -- geopandas>=0.11.0 +- geopandas>=0.11.0, <1 - xarray>=2023.11.0 - rioxarray - netcdf4 diff --git a/graphics/elec_s_37.png b/graphics/elec_s_37.png deleted file mode 100644 index 23607334..00000000 Binary files a/graphics/elec_s_37.png and /dev/null differ diff --git a/graphics/elec_s_512.png b/graphics/elec_s_512.png deleted file mode 100644 index f9409a84..00000000 Binary files a/graphics/elec_s_512.png and /dev/null differ diff --git a/rules/build_electricity.smk b/rules/build_electricity.smk index c8d19d50..eff0d9e0 100644 --- a/rules/build_electricity.smk +++ b/rules/build_electricity.smk @@ -58,7 +58,7 @@ rule build_powerplants: logs("build_powerplants.log"), threads: 1 resources: - mem_mb=5000, + mem_mb=7000, conda: "../envs/environment.yaml" script: @@ -111,7 +111,7 @@ rule build_shapes: nuts3=ancient("data/bundle/NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp"), nuts3pop=ancient("data/bundle/nama_10r_3popgdp.tsv.gz"), nuts3gdp=ancient("data/bundle/nama_10r_3gdp.tsv.gz"), - ch_cantons=ancient("data/bundle/ch_cantons.csv"), + ch_cantons=ancient("data/ch_cantons.csv"), ch_popgdp=ancient("data/bundle/je-e-21.03.02.xls"), output: country_shapes=resources("country_shapes.geojson"), @@ -153,27 +153,6 @@ if config["enable"].get("build_cutout", False): "../scripts/build_cutout.py" -if config["enable"].get("build_natura_raster", False): - - rule build_natura_raster: - input: - natura=ancient("data/bundle/natura/Natura2000_end2015.shp"), - cutout=lambda w: "cutouts/" - + CDIR - + config_provider("atlite", "default_cutout")(w) - + ".nc", - output: - resources("natura.tiff"), - resources: - mem_mb=5000, - log: - logs("build_natura_raster.log"), - conda: - "../envs/environment.yaml" - script: - "../scripts/build_natura_raster.py" - - rule build_ship_raster: input: ship_density="data/shipdensity_global.zip", @@ -201,7 +180,7 @@ rule determine_availability_matrix_MD_UA: wdpa="data/WDPA.gpkg", wdpa_marine="data/WDPA_WDOECM_marine.gpkg", gebco=lambda w: ( - "data/bundle/GEBCO_2014_2D.nc" + "data/bundle/gebco/GEBCO_2014_2D.nc" if config_provider("renewable", w.technology)(w).get("max_depth") else [] ), @@ -214,7 +193,7 @@ rule determine_availability_matrix_MD_UA: offshore_shapes=resources("offshore_shapes.geojson"), regions=lambda w: ( resources("regions_onshore.geojson") - if w.technology in ("onwind", "solar") + if w.technology in ("onwind", "solar", "solar-hsat") else resources("regions_offshore.geojson") ), cutout=lambda w: "cutouts/" @@ -257,7 +236,7 @@ rule build_renewable_profiles: base_network=resources("networks/base.nc"), corine=ancient("data/bundle/corine/g250_clc06_V18_5.tif"), natura=lambda w: ( - resources("natura.tiff") + "data/bundle/natura/natura.tiff" if config_provider("renewable", w.technology, "natura")(w) else [] ), @@ -268,8 +247,11 @@ rule build_renewable_profiles: ), gebco=ancient( lambda w: ( - "data/bundle/GEBCO_2014_2D.nc" - if config_provider("renewable", w.technology)(w).get("max_depth") + "data/bundle/gebco/GEBCO_2014_2D.nc" + if ( + config_provider("renewable", w.technology)(w).get("max_depth") + or config_provider("renewable", w.technology)(w).get("min_depth") + ) else [] ) ), @@ -282,7 +264,7 @@ rule build_renewable_profiles: offshore_shapes=resources("offshore_shapes.geojson"), regions=lambda w: ( resources("regions_onshore.geojson") - if w.technology in ("onwind", "solar") + if w.technology in ("onwind", "solar", "solar-hsat") else resources("regions_offshore.geojson") ), cutout=lambda w: "cutouts/" @@ -403,6 +385,7 @@ rule add_electricity: electricity=config_provider("electricity"), conventional=config_provider("conventional"), costs=config_provider("costs"), + foresight=config_provider("foresight"), drop_leap_day=config_provider("enable", "drop_leap_day"), input: unpack(input_profile_tech), @@ -414,11 +397,11 @@ rule add_electricity: else resources("networks/base.nc") ), tech_costs=lambda w: resources( - f"costs_{config_provider('costs', 'year') (w)}.csv" + f"costs_{config_provider('costs', 'year')(w)}.csv" ), regions=resources("regions_onshore.geojson"), powerplants=resources("powerplants.csv"), - hydro_capacities=ancient("data/bundle/hydro_capacities.csv"), + hydro_capacities=ancient("data/hydro_capacities.csv"), geth_hydro_capacities="data/geth2015_hydro_capacities.csv", unit_commitment="data/unit_commitment.csv", fuel_price=lambda w: ( @@ -459,7 +442,7 @@ rule simplify_network: input: network=resources("networks/elec.nc"), tech_costs=lambda w: resources( - f"costs_{config_provider('costs', 'year') (w)}.csv" + f"costs_{config_provider('costs', 'year')(w)}.csv" ), regions_onshore=resources("regions_onshore.geojson"), regions_offshore=resources("regions_offshore.geojson"), @@ -507,7 +490,7 @@ rule cluster_network: else [] ), tech_costs=lambda w: resources( - f"costs_{config_provider('costs', 'year') (w)}.csv" + f"costs_{config_provider('costs', 'year')(w)}.csv" ), output: network=resources("networks/elec_s{simpl}_{clusters}.nc"), @@ -536,7 +519,7 @@ rule add_extra_components: input: network=resources("networks/elec_s{simpl}_{clusters}.nc"), tech_costs=lambda w: resources( - f"costs_{config_provider('costs', 'year') (w)}.csv" + f"costs_{config_provider('costs', 'year')(w)}.csv" ), output: resources("networks/elec_s{simpl}_{clusters}_ec.nc"), @@ -571,7 +554,7 @@ rule prepare_network: input: resources("networks/elec_s{simpl}_{clusters}_ec.nc"), tech_costs=lambda w: resources( - f"costs_{config_provider('costs', 'year') (w)}.csv" + f"costs_{config_provider('costs', 'year')(w)}.csv" ), co2_price=lambda w: resources("co2_price.csv") if "Ept" in w.opts else [], output: diff --git a/rules/build_sector.smk b/rules/build_sector.smk index e1575a78..6614b163 100644 --- a/rules/build_sector.smk +++ b/rules/build_sector.smk @@ -287,12 +287,13 @@ rule build_energy_totals: energy=config_provider("energy"), input: nuts3_shapes=resources("nuts3_shapes.geojson"), - co2="data/bundle-sector/eea/UNFCCC_v23.csv", + co2="data/bundle/eea/UNFCCC_v23.csv", swiss="data/switzerland-new_format-all_years.csv", swiss_transport="data/gr-e-11.03.02.01.01-cc.csv", - idees="data/bundle-sector/jrc-idees-2015", + idees="data/bundle/jrc-idees-2015", district_heat_share="data/district_heat_share.csv", - eurostat="data/eurostat/eurostat-energy_balances-april_2023_edition", + eurostat="data/eurostat/Balances-April2023", + eurostat_households="data/eurostat/eurostat-household_energy_balances-february_2024.csv", output: energy_name=resources("energy_totals.csv"), co2_name=resources("co2_totals.csv"), @@ -338,10 +339,10 @@ rule build_biomass_potentials: "https://zenodo.org/records/10356004/files/ENSPRESO_BIOMASS.xlsx", keep_local=True, ), - nuts2="data/bundle-sector/nuts/NUTS_RG_10M_2013_4326_LEVL_2.geojson", # https://gisco-services.ec.europa.eu/distribution/v2/nuts/download/#nuts21 + nuts2="data/bundle/nuts/NUTS_RG_10M_2013_4326_LEVL_2.geojson", # https://gisco-services.ec.europa.eu/distribution/v2/nuts/download/#nuts21 regions_onshore=resources("regions_onshore_elec_s{simpl}_{clusters}.geojson"), nuts3_population=ancient("data/bundle/nama_10r_3popgdp.tsv.gz"), - swiss_cantons=ancient("data/bundle/ch_cantons.csv"), + swiss_cantons=ancient("data/ch_cantons.csv"), swiss_population=ancient("data/bundle/je-e-21.03.02.xls"), country_shapes=resources("country_shapes.geojson"), output: @@ -416,7 +417,7 @@ rule build_sequestration_potentials: rule build_salt_cavern_potentials: input: - salt_caverns="data/bundle-sector/h2_salt_caverns_GWh_per_sqkm.geojson", + salt_caverns="data/bundle/h2_salt_caverns_GWh_per_sqkm.geojson", regions_onshore=resources("regions_onshore_elec_s{simpl}_{clusters}.geojson"), regions_offshore=resources("regions_offshore_elec_s{simpl}_{clusters}.geojson"), output: @@ -436,7 +437,7 @@ rule build_salt_cavern_potentials: rule build_ammonia_production: input: - usgs="data/bundle-sector/myb1-2017-nitro.xls", + usgs="data/bundle/myb1-2017-nitro.xls", output: ammonia_production=resources("ammonia_production.csv"), threads: 1 @@ -458,7 +459,7 @@ rule build_industry_sector_ratios: ammonia=config_provider("sector", "ammonia", default=False), input: ammonia_production=resources("ammonia_production.csv"), - idees="data/bundle-sector/jrc-idees-2015", + idees="data/bundle/jrc-idees-2015", output: industry_sector_ratios=resources("industry_sector_ratios.csv"), threads: 1 @@ -508,8 +509,8 @@ rule build_industrial_production_per_country: countries=config_provider("countries"), input: ammonia_production=resources("ammonia_production.csv"), - jrc="data/bundle-sector/jrc-idees-2015", - eurostat="data/eurostat/eurostat-energy_balances-april_2023_edition", + jrc="data/bundle/jrc-idees-2015", + eurostat="data/eurostat/Balances-April2023", output: industrial_production_per_country=resources( "industrial_production_per_country.csv" @@ -564,7 +565,10 @@ rule build_industrial_distribution_key: input: regions_onshore=resources("regions_onshore_elec_s{simpl}_{clusters}.geojson"), clustered_pop_layout=resources("pop_layout_elec_s{simpl}_{clusters}.csv"), - hotmaps_industrial_database="data/bundle-sector/Industrial_Database.csv", + hotmaps_industrial_database=storage( + "https://gitlab.com/hotmaps/industrial_sites/industrial_sites_Industrial_Database/-/raw/master/data/Industrial_Database.csv", + keep_local=True, + ), output: industrial_distribution_key=resources( "industrial_distribution_key_elec_s{simpl}_{clusters}.csv" @@ -652,7 +656,7 @@ rule build_industrial_energy_demand_per_country_today: countries=config_provider("countries"), industry=config_provider("industry"), input: - jrc="data/bundle-sector/jrc-idees-2015", + jrc="data/bundle/jrc-idees-2015", industrial_production_per_country=resources( "industrial_production_per_country.csv" ), @@ -704,7 +708,7 @@ rule build_retro_cost: countries=config_provider("countries"), input: building_stock="data/retro/data_building_stock.csv", - data_tabula="data/bundle-sector/retro/tabula-calculator-calcsetbuilding.csv", + data_tabula="data/bundle/retro/tabula-calculator-calcsetbuilding.csv", air_temperature=resources("temp_air_total_elec_s{simpl}_{clusters}.nc"), u_values_PL="data/retro/u_values_poland.csv", tax_w="data/retro/electricity_taxes_eu.csv", @@ -780,8 +784,8 @@ rule build_transport_demand: "pop_weighted_energy_totals_s{simpl}_{clusters}.csv" ), transport_data=resources("transport_data.csv"), - traffic_data_KFZ="data/bundle-sector/emobility/KFZ__count", - traffic_data_Pkw="data/bundle-sector/emobility/Pkw__count", + traffic_data_KFZ="data/bundle/emobility/KFZ__count", + traffic_data_Pkw="data/bundle/emobility/Pkw__count", temp_air_total=resources("temp_air_total_elec_s{simpl}_{clusters}.nc"), output: transport_demand=resources("transport_demand_s{simpl}_{clusters}.csv"), @@ -856,18 +860,79 @@ rule build_existing_heating_distribution: "../scripts/build_existing_heating_distribution.py" +rule time_aggregation: + params: + time_resolution=config_provider("clustering", "temporal", "resolution_sector"), + drop_leap_day=config_provider("enable", "drop_leap_day"), + solver_name=config_provider("solving", "solver", "name"), + input: + network=resources("networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc"), + hourly_heat_demand_total=lambda w: ( + resources("hourly_heat_demand_total_elec_s{simpl}_{clusters}.nc") + if config_provider("sector", "heating")(w) + else [] + ), + solar_thermal_total=lambda w: ( + resources("solar_thermal_total_elec_s{simpl}_{clusters}.nc") + if config_provider("sector", "solar_thermal")(w) + else [] + ), + output: + snapshot_weightings=resources( + "snapshot_weightings_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.csv" + ), + threads: 1 + resources: + mem_mb=5000, + log: + logs("time_aggregation_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.log"), + benchmark: + benchmarks("time_aggregation_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}") + conda: + "../envs/environment.yaml" + script: + "../scripts/time_aggregation.py" + + def input_profile_offwind(w): return { f"profile_{tech}": resources(f"profile_{tech}.nc") - for tech in ["offwind-ac", "offwind-dc"] + for tech in ["offwind-ac", "offwind-dc", "offwind-float"] if (tech in config_provider("electricity", "renewable_carriers")(w)) } +rule build_egs_potentials: + params: + snapshots=config_provider("snapshots"), + sector=config_provider("sector"), + costs=config_provider("costs"), + input: + egs_cost="data/egs_costs.json", + regions=resources("regions_onshore_elec_s{simpl}_{clusters}.geojson"), + air_temperature=( + resources("temp_air_total_elec_s{simpl}_{clusters}.nc") + if config_provider("sector", "enhanced_geothermal", "var_cf") + else [] + ), + output: + egs_potentials=resources("egs_potentials_s{simpl}_{clusters}.csv"), + egs_overlap=resources("egs_overlap_s{simpl}_{clusters}.csv"), + egs_capacity_factors=resources("egs_capacity_factors_s{simpl}_{clusters}.csv"), + threads: 1 + resources: + mem_mb=2000, + log: + logs("build_egs_potentials_s{simpl}_{clusters}.log"), + conda: + "../envs/environment.yaml" + script: + "../scripts/build_egs_potentials.py" + + rule prepare_sector_network: params: time_resolution=config_provider("clustering", "temporal", "resolution_sector"), - drop_leap_day=config_provider("enable", "drop_leap_day"), co2_budget=config_provider("co2_budget"), conventional_carriers=config_provider( "existing_capacities", "conventional_carriers" @@ -888,6 +953,9 @@ rule prepare_sector_network: unpack(input_profile_offwind), **rules.cluster_gas_network.output, **rules.build_gas_input_locations.output, + snapshot_weightings=resources( + "snapshot_weightings_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.csv" + ), retro_cost=lambda w: ( resources("retro_cost_elec_s{simpl}_{clusters}.csv") if config_provider("sector", "retrofitting", "retro_endogen")(w) @@ -912,7 +980,7 @@ rule prepare_sector_network: else [] ), network=resources("networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc"), - eurostat="data/eurostat/eurostat-energy_balances-april_2023_edition", + eurostat="data/eurostat/Balances-April2023", pop_weighted_energy_totals=resources( "pop_weighted_energy_totals_s{simpl}_{clusters}.csv" ), @@ -925,7 +993,7 @@ rule prepare_sector_network: avail_profile=resources("avail_profile_s{simpl}_{clusters}.csv"), dsm_profile=resources("dsm_profile_s{simpl}_{clusters}.csv"), co2_totals_name=resources("co2_totals.csv"), - co2="data/bundle-sector/eea/UNFCCC_v23.csv", + co2="data/bundle/eea/UNFCCC_v23.csv", biomass_potentials=lambda w: ( resources( "biomass_potentials_s{simpl}_{clusters}_" @@ -982,6 +1050,21 @@ rule prepare_sector_network: if config_provider("sector", "solar_thermal")(w) else [] ), + egs_potentials=lambda w: ( + resources("egs_potentials_s{simpl}_{clusters}.csv") + if config_provider("sector", "enhanced_geothermal", "enable")(w) + else [] + ), + egs_overlap=lambda w: ( + resources("egs_overlap_s{simpl}_{clusters}.csv") + if config_provider("sector", "enhanced_geothermal", "enable")(w) + else [] + ), + egs_capacity_factors=lambda w: ( + resources("egs_capacity_factors_s{simpl}_{clusters}.csv") + if config_provider("sector", "enhanced_geothermal", "enable")(w) + else [] + ), output: RESULTS + "prenetworks/elec_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc", diff --git a/rules/postprocess.smk b/rules/postprocess.smk index e7df2e66..edeff1ef 100644 --- a/rules/postprocess.smk +++ b/rules/postprocess.smk @@ -199,6 +199,7 @@ rule make_summary: energy=RESULTS + "csvs/energy.csv", supply=RESULTS + "csvs/supply.csv", supply_energy=RESULTS + "csvs/supply_energy.csv", + nodal_supply_energy=RESULTS + "csvs/nodal_supply_energy.csv", prices=RESULTS + "csvs/prices.csv", weighted_prices=RESULTS + "csvs/weighted_prices.csv", market_values=RESULTS + "csvs/market_values.csv", @@ -229,12 +230,12 @@ rule plot_summary: costs=RESULTS + "csvs/costs.csv", energy=RESULTS + "csvs/energy.csv", balances=RESULTS + "csvs/supply_energy.csv", - eurostat="data/eurostat/eurostat-energy_balances-april_2023_edition", - co2="data/bundle-sector/eea/UNFCCC_v23.csv", + eurostat="data/eurostat/Balances-April2023", + co2="data/bundle/eea/UNFCCC_v23.csv", output: - costs=RESULTS + "graphs/costs.pdf", - energy=RESULTS + "graphs/energy.pdf", - balances=RESULTS + "graphs/balances-energy.pdf", + costs=RESULTS + "graphs/costs.svg", + energy=RESULTS + "graphs/energy.svg", + balances=RESULTS + "graphs/balances-energy.svg", threads: 2 resources: mem_mb=10000, diff --git a/rules/retrieve.smk b/rules/retrieve.smk index d0345f36..10ad9684 100644 --- a/rules/retrieve.smk +++ b/rules/retrieve.smk @@ -14,23 +14,27 @@ if config["enable"]["retrieve"] is False: if config["enable"]["retrieve"] and config["enable"].get("retrieve_databundle", True): datafiles = [ - "ch_cantons.csv", "je-e-21.03.02.xls", "eez/World_EEZ_v8_2014.shp", - "hydro_capacities.csv", "naturalearth/ne_10m_admin_0_countries.shp", "NUTS_2013_60M_SH/data/NUTS_RG_60M_2013.shp", "nama_10r_3popgdp.tsv.gz", "nama_10r_3gdp.tsv.gz", "corine/g250_clc06_V18_5.tif", + "eea/UNFCCC_v23.csv", + "nuts/NUTS_RG_10M_2013_4326_LEVL_2.geojson", + "myb1-2017-nitro.xls", + "emobility/KFZ__count", + "emobility/Pkw__count", + "h2_salt_caverns_GWh_per_sqkm.geojson", + "natura/natura.tiff", + "gebco/GEBCO_2014_2D.nc", ] - if not config.get("tutorial", False): - datafiles.extend(["natura/Natura2000_end2015.shp", "GEBCO_2014_2D.nc"]) - rule retrieve_databundle: output: - protected(expand("data/bundle/{file}", file=datafiles)), + expand("data/bundle/{file}", file=datafiles), + directory("data/bundle/jrc-idees-2015"), log: "logs/retrieve_databundle.log", resources: @@ -41,13 +45,31 @@ if config["enable"]["retrieve"] and config["enable"].get("retrieve_databundle", script: "../scripts/retrieve_databundle.py" + rule retrieve_eurostat_data: + output: + directory("data/eurostat/Balances-April2023"), + log: + "logs/retrieve_eurostat_data.log", + retries: 2 + script: + "../scripts/retrieve_eurostat_data.py" + + rule retrieve_eurostat_household_data: + output: + "data/eurostat/eurostat-household_energy_balances-february_2024.csv", + log: + "logs/retrieve_eurostat_household_data.log", + retries: 2 + script: + "../scripts/retrieve_eurostat_household_data.py" + if config["enable"]["retrieve"] and config["enable"].get("retrieve_cutout", True): rule retrieve_cutout: input: storage( - "https://zenodo.org/record/6382570/files/{cutout}.nc", + "https://zenodo.org/records/6382570/files/{cutout}.nc", ), output: protected("cutouts/" + CDIR + "{cutout}.nc"), @@ -79,64 +101,6 @@ if config["enable"]["retrieve"] and config["enable"].get("retrieve_cost_data", T "../scripts/retrieve_cost_data.py" -if config["enable"]["retrieve"] and config["enable"].get( - "retrieve_natura_raster", True -): - - rule retrieve_natura_raster: - input: - storage( - "https://zenodo.org/record/4706686/files/natura.tiff", - keep_local=True, - ), - output: - resources("natura.tiff"), - log: - logs("retrieve_natura_raster.log"), - resources: - mem_mb=5000, - retries: 2 - run: - copyfile(input[0], output[0]) - validate_checksum(output[0], input[0]) - - -if config["enable"]["retrieve"] and config["enable"].get( - "retrieve_sector_databundle", True -): - datafiles = [ - "eea/UNFCCC_v23.csv", - "switzerland-sfoe/switzerland-new_format.csv", - "nuts/NUTS_RG_10M_2013_4326_LEVL_2.geojson", - "myb1-2017-nitro.xls", - "Industrial_Database.csv", - "emobility/KFZ__count", - "emobility/Pkw__count", - "h2_salt_caverns_GWh_per_sqkm.geojson", - ] - - rule retrieve_sector_databundle: - output: - protected(expand("data/bundle-sector/{files}", files=datafiles)), - protected(directory("data/bundle-sector/jrc-idees-2015")), - log: - "logs/retrieve_sector_databundle.log", - retries: 2 - conda: - "../envs/retrieve.yaml" - script: - "../scripts/retrieve_sector_databundle.py" - - rule retrieve_eurostat_data: - output: - directory("data/eurostat/eurostat-energy_balances-april_2023_edition"), - log: - "logs/retrieve_eurostat_data.log", - retries: 2 - script: - "../scripts/retrieve_eurostat_data.py" - - if config["enable"]["retrieve"]: datafiles = [ "IGGIELGN_LNGs.geojson", @@ -199,11 +163,11 @@ if config["enable"]["retrieve"]: rule retrieve_ship_raster: input: storage( - "https://zenodo.org/record/6953563/files/shipdensity_global.zip", + "https://zenodo.org/records/10973944/files/shipdensity_global.zip", keep_local=True, ), output: - protected("data/shipdensity_global.zip"), + "data/shipdensity_global.zip", log: "logs/retrieve_ship_raster.log", resources: @@ -221,7 +185,7 @@ if config["enable"]["retrieve"]: rule download_copernicus_land_cover: input: storage( - "https://zenodo.org/record/3939050/files/PROBAV_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif", + "https://zenodo.org/records/3939050/files/PROBAV_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif", ), output: "data/Copernicus_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif", @@ -285,7 +249,7 @@ if config["enable"]["retrieve"]: zip="data/WDPA_shp.zip", folder=directory("data/WDPA"), output: - gpkg=protected("data/WDPA.gpkg"), + gpkg="data/WDPA.gpkg", run: shell("cp {input} {params.zip}") shell("unzip -o {params.zip} -d {params.folder}") @@ -294,7 +258,7 @@ if config["enable"]["retrieve"]: layer_path = ( f"/vsizip/{params.folder}/WDPA_{bYYYY}_Public_shp_{i}.zip" ) - print(f"Adding layer {i + 1} of 3 to combined output file.") + print(f"Adding layer {i+1} of 3 to combined output file.") shell("ogr2ogr -f gpkg -update -append {output.gpkg} {layer_path}") rule download_wdpa_marine: @@ -310,14 +274,14 @@ if config["enable"]["retrieve"]: zip="data/WDPA_WDOECM_marine.zip", folder=directory("data/WDPA_WDOECM_marine"), output: - gpkg=protected("data/WDPA_WDOECM_marine.gpkg"), + gpkg="data/WDPA_WDOECM_marine.gpkg", run: shell("cp {input} {params.zip}") shell("unzip -o {params.zip} -d {params.folder}") for i in range(3): # vsizip is special driver for directly working with zipped shapefiles in ogr2ogr layer_path = f"/vsizip/{params.folder}/WDPA_WDOECM_{bYYYY}_Public_marine_shp_{i}.zip" - print(f"Adding layer {i + 1} of 3 to combined output file.") + print(f"Adding layer {i+1} of 3 to combined output file.") shell("ogr2ogr -f gpkg -update -append {output.gpkg} {layer_path}") diff --git a/rules/solve_myopic.smk b/rules/solve_myopic.smk index 6220af2a..21fb7169 100644 --- a/rules/solve_myopic.smk +++ b/rules/solve_myopic.smk @@ -65,7 +65,7 @@ rule add_brownfield: H2_retrofit_capacity_per_CH4=config_provider( "sector", "H2_retrofit_capacity_per_CH4" ), - threshold_capacity=config_provider("existing_capacities", " threshold_capacity"), + threshold_capacity=config_provider("existing_capacities", "threshold_capacity"), snapshots=config_provider("snapshots"), drop_leap_day=config_provider("enable", "drop_leap_day"), carriers=config_provider("electricity", "renewable_carriers"), diff --git a/scripts/_helpers.py b/scripts/_helpers.py index dfedcaea..a3b77c1c 100644 --- a/scripts/_helpers.py +++ b/scripts/_helpers.py @@ -67,7 +67,7 @@ def get_rdir(run): return RDIR -def get_run_path(fn, dir, rdir, shared_resources): +def get_run_path(fn, dir, rdir, shared_resources, exclude_from_shared): """ Dynamically provide paths based on shared resources and filename. @@ -87,6 +87,8 @@ def get_run_path(fn, dir, rdir, shared_resources): - If string is "base", special handling for shared "base" resources (see notes). - If random string other than "base", this folder is used instead of the `rdir` keyword. - If boolean, directly specifies if the resource is shared. + exclude_from_shared: list + List of filenames to exclude from shared resources. Only relevant if shared_resources is "base". Returns ------- @@ -104,10 +106,12 @@ def get_run_path(fn, dir, rdir, shared_resources): existing_wildcards = set(re.findall(pattern, fn)) irrelevant_wildcards = {"technology", "year", "scope", "kind"} no_relevant_wildcards = not existing_wildcards - irrelevant_wildcards - no_elec_rule = not fn.startswith("networks/elec") and not fn.startswith( - "add_electricity" + not_shared_rule = ( + not fn.startswith("networks/elec") + and not fn.startswith("add_electricity") + and not any(fn.startswith(ex) for ex in exclude_from_shared) ) - is_shared = no_relevant_wildcards and no_elec_rule + is_shared = no_relevant_wildcards and not_shared_rule rdir = "" if is_shared else rdir elif isinstance(shared_resources, str): rdir = shared_resources + "/" @@ -121,7 +125,7 @@ def get_run_path(fn, dir, rdir, shared_resources): return f"{dir}{rdir}{fn}" -def path_provider(dir, rdir, shared_resources): +def path_provider(dir, rdir, shared_resources, exclude_from_shared): """ Returns a partial function that dynamically provides paths based on shared resources and the filename. @@ -132,7 +136,13 @@ def path_provider(dir, rdir, shared_resources): A partial function that takes a filename as input and returns the path to the file based on the shared_resources parameter. """ - return partial(get_run_path, dir=dir, rdir=rdir, shared_resources=shared_resources) + return partial( + get_run_path, + dir=dir, + rdir=rdir, + shared_resources=shared_resources, + exclude_from_shared=exclude_from_shared, + ) def get_opt(opts, expr, flags=None): @@ -396,7 +406,7 @@ def mock_snakemake( from snakemake.api import Workflow from snakemake.common import SNAKEFILE_CHOICES from snakemake.script import Snakemake - from snakemake.settings import ( + from snakemake.settings.types import ( ConfigSettings, DAGSettings, ResourceSettings, @@ -707,7 +717,7 @@ def update_config_from_wildcards(config, w, inplace=True): def get_checksum_from_zenodo(file_url): parts = file_url.split("/") - record_id = parts[parts.index("record") + 1] + record_id = parts[parts.index("records") + 1] filename = parts[-1] response = requests.get(f"https://zenodo.org/api/records/{record_id}", timeout=30) @@ -746,7 +756,7 @@ def validate_checksum(file_path, zenodo_url=None, checksum=None): >>> validate_checksum("/path/to/file", checksum="md5:abc123...") >>> validate_checksum( ... "/path/to/file", - ... zenodo_url="https://zenodo.org/record/12345/files/example.txt", + ... zenodo_url="https://zenodo.org/records/12345/files/example.txt", ... ) If the checksum is invalid, an AssertionError will be raised. diff --git a/scripts/add_brownfield.py b/scripts/add_brownfield.py index 16b4e087..672f9e62 100644 --- a/scripts/add_brownfield.py +++ b/scripts/add_brownfield.py @@ -86,43 +86,39 @@ def add_brownfield(n, n_p, year): for tattr in n.component_attrs[c.name].index[selection]: n.import_series_from_dataframe(c.pnl[tattr], c.name, tattr) - # deal with gas network - pipe_carrier = ["gas pipeline"] - if snakemake.params.H2_retrofit: - # drop capacities of previous year to avoid duplicating - to_drop = n.links.carrier.isin(pipe_carrier) & (n.links.build_year != year) - n.mremove("Link", n.links.loc[to_drop].index) + # deal with gas network + pipe_carrier = ["gas pipeline"] + if snakemake.params.H2_retrofit: + # drop capacities of previous year to avoid duplicating + to_drop = n.links.carrier.isin(pipe_carrier) & (n.links.build_year != year) + n.mremove("Link", n.links.loc[to_drop].index) - # subtract the already retrofitted from today's gas grid capacity - h2_retrofitted_fixed_i = n.links[ - (n.links.carrier == "H2 pipeline retrofitted") - & (n.links.build_year != year) - ].index - gas_pipes_i = n.links[n.links.carrier.isin(pipe_carrier)].index - CH4_per_H2 = 1 / snakemake.params.H2_retrofit_capacity_per_CH4 - fr = "H2 pipeline retrofitted" - to = "gas pipeline" - # today's pipe capacity - pipe_capacity = n.links.loc[gas_pipes_i, "p_nom"] - # already retrofitted capacity from gas -> H2 - already_retrofitted = ( - n.links.loc[h2_retrofitted_fixed_i, "p_nom"] - .rename(lambda x: x.split("-2")[0].replace(fr, to)) - .groupby(level=0) - .sum() - ) - remaining_capacity = ( - pipe_capacity - - CH4_per_H2 - * already_retrofitted.reindex(index=pipe_capacity.index).fillna(0) - ) - n.links.loc[gas_pipes_i, "p_nom"] = remaining_capacity - else: - new_pipes = n.links.carrier.isin(pipe_carrier) & ( - n.links.build_year == year - ) - n.links.loc[new_pipes, "p_nom"] = 0.0 - n.links.loc[new_pipes, "p_nom_min"] = 0.0 + # subtract the already retrofitted from today's gas grid capacity + h2_retrofitted_fixed_i = n.links[ + (n.links.carrier == "H2 pipeline retrofitted") + & (n.links.build_year != year) + ].index + gas_pipes_i = n.links[n.links.carrier.isin(pipe_carrier)].index + CH4_per_H2 = 1 / snakemake.params.H2_retrofit_capacity_per_CH4 + fr = "H2 pipeline retrofitted" + to = "gas pipeline" + # today's pipe capacity + pipe_capacity = n.links.loc[gas_pipes_i, "p_nom"] + # already retrofitted capacity from gas -> H2 + already_retrofitted = ( + n.links.loc[h2_retrofitted_fixed_i, "p_nom"] + .rename(lambda x: x.split("-2")[0].replace(fr, to) + f"-{year}") + .groupby(level=0) + .sum() + ) + remaining_capacity = pipe_capacity - CH4_per_H2 * already_retrofitted.reindex( + index=pipe_capacity.index + ).fillna(0) + n.links.loc[gas_pipes_i, "p_nom"] = remaining_capacity + else: + new_pipes = n.links.carrier.isin(pipe_carrier) & (n.links.build_year == year) + n.links.loc[new_pipes, "p_nom"] = 0.0 + n.links.loc[new_pipes, "p_nom_min"] = 0.0 def disable_grid_expansion_if_limit_hit(n): @@ -136,22 +132,20 @@ def disable_grid_expansion_if_limit_hit(n): minimum and extendable is turned off; the corresponding global constraint is then dropped. """ - cols = {"cost": "capital_cost", "volume": "length"} - for limit_type in ["cost", "volume"]: - glcs = n.global_constraints.query( - f"type == 'transmission_expansion_{limit_type}_limit'" - ) + types = {"expansion_cost": "capital_cost", "volume_expansion": "length"} + for limit_type in types: + glcs = n.global_constraints.query(f"type == 'transmission_{limit_type}_limit'") for name, glc in glcs.iterrows(): total_expansion = ( ( n.lines.query("s_nom_extendable") - .eval(f"s_nom_min * {cols[limit_type]}") + .eval(f"s_nom_min * {types[limit_type]}") .sum() ) + ( n.links.query("carrier == 'DC' and p_nom_extendable") - .eval(f"p_nom_min * {cols[limit_type]}") + .eval(f"p_nom_min * {types[limit_type]}") .sum() ) ).sum() @@ -201,6 +195,7 @@ def adjust_renewable_profiles(n, input_profiles, params, year): for carrier in params["carriers"]: if carrier == "hydro": continue + with xr.open_dataset(getattr(input_profiles, "profile_" + carrier)) as ds: if ds.indexes["bus"].empty or "year" not in ds.indexes: continue diff --git a/scripts/add_electricity.py b/scripts/add_electricity.py index 7e60203f..49d0bdf7 100755 --- a/scripts/add_electricity.py +++ b/scripts/add_electricity.py @@ -46,7 +46,7 @@ Inputs ------ - ``resources/costs.csv``: The database of cost assumptions for all included technologies for specific years from various sources; e.g. discount rate, lifetime, investment (CAPEX), fixed operation and maintenance (FOM), variable operation and maintenance (VOM), fuel costs, efficiency, carbon-dioxide intensity. -- ``data/bundle/hydro_capacities.csv``: Hydropower plant store/discharge power capacities, energy storage capacity, and average hourly inflow by country. +- ``data/hydro_capacities.csv``: Hydropower plant store/discharge power capacities, energy storage capacity, and average hourly inflow by country. .. image:: img/hydrocapacities.png :scale: 34 % @@ -230,10 +230,9 @@ def load_costs(tech_costs, config, max_hours, Nyears=1.0): costs.at["OCGT", "co2_emissions"] = costs.at["gas", "co2_emissions"] costs.at["CCGT", "co2_emissions"] = costs.at["gas", "co2_emissions"] - costs.at["solar", "capital_cost"] = ( - config["rooftop_share"] * costs.at["solar-rooftop", "capital_cost"] - + (1 - config["rooftop_share"]) * costs.at["solar-utility", "capital_cost"] - ) + costs.at["solar", "capital_cost"] = costs.at["solar-utility", "capital_cost"] + + costs = costs.rename({"solar-utility single-axis tracking": "solar-hsat"}) def costs_for_storage(store, link1, link2=None, max_hours=1.0): capital_cost = link1["capital_cost"] + max_hours * store["capital_cost"] @@ -271,7 +270,6 @@ def load_powerplants(ppl_fn): "bioenergy": "biomass", "ccgt, thermal": "CCGT", "hard coal": "coal", - "natural gas": "OCGT", } return ( pd.read_csv(ppl_fn, index_col=0, dtype={"bus": "str"}) @@ -450,8 +448,6 @@ def attach_conventional_generators( fuel_price=None, ): carriers = list(set(conventional_carriers) | set(extendable_carriers["Generator"])) - add_missing_carriers(n, carriers) - add_co2_emissions(n, costs, carriers) # Replace carrier "natural gas" with the respective technology (OCGT or # CCGT) to align with PyPSA names of "carriers" and avoid filtering "natural @@ -467,6 +463,11 @@ def attach_conventional_generators( ) ppl["efficiency"] = ppl.efficiency.fillna(ppl.efficiency_r) + # reduce carriers to those in power plant dataset + carriers = list(set(carriers) & set(ppl.carrier.unique())) + add_missing_carriers(n, carriers) + add_co2_emissions(n, costs, carriers) + if unit_commitment is not None: committable_attrs = ppl.carrier.isin(unit_commitment).to_frame("committable") for attr in unit_commitment.index: @@ -883,15 +884,22 @@ if __name__ == "__main__": estimate_renewable_caps = params.electricity["estimate_renewable_capacities"] if estimate_renewable_caps["enable"]: - tech_map = estimate_renewable_caps["technology_mapping"] - expansion_limit = estimate_renewable_caps["expansion_limit"] - year = estimate_renewable_caps["year"] + if params.foresight != "overnight": + logger.info( + "Skipping renewable capacity estimation because they are added later " + "in rule `add_existing_baseyear` with foresight mode 'myopic'." + ) + else: + tech_map = estimate_renewable_caps["technology_mapping"] + expansion_limit = estimate_renewable_caps["expansion_limit"] + year = estimate_renewable_caps["year"] - if estimate_renewable_caps["from_opsd"]: - attach_OPSD_renewables(n, tech_map) - estimate_renewable_capacities( - n, year, tech_map, expansion_limit, params.countries - ) + if estimate_renewable_caps["from_opsd"]: + attach_OPSD_renewables(n, tech_map) + + estimate_renewable_capacities( + n, year, tech_map, expansion_limit, params.countries + ) update_p_nom_max(n) diff --git a/scripts/add_existing_baseyear.py b/scripts/add_existing_baseyear.py index 77000ade..d5333675 100644 --- a/scripts/add_existing_baseyear.py +++ b/scripts/add_existing_baseyear.py @@ -61,9 +61,9 @@ def add_existing_renewables(df_agg, costs): Append existing renewables to the df_agg pd.DataFrame with the conventional power plants. """ - tech_map = {"solar": "PV", "onwind": "Onshore", "offwind": "Offshore"} + tech_map = {"solar": "PV", "onwind": "Onshore", "offwind-ac": "Offshore"} - countries = snakemake.config["countries"] + countries = snakemake.config["countries"] # noqa: F841 irena = pm.data.IRENASTAT().powerplant.convert_country_to_alpha2() irena = irena.query("Country in @countries") irena = irena.groupby(["Technology", "Country", "Year"]).Capacity.sum() @@ -109,12 +109,13 @@ def add_existing_renewables(df_agg, costs): name = f"{node}-{carrier}-{year}" capacity = nodal_df.loc[node, year] if capacity > 0.0: + cost_key = carrier.split("-")[0] df_agg.at[name, "Fueltype"] = carrier df_agg.at[name, "Capacity"] = capacity df_agg.at[name, "DateIn"] = year - df_agg.at[name, "lifetime"] = costs.at[carrier, "lifetime"] + df_agg.at[name, "lifetime"] = costs.at[cost_key, "lifetime"] df_agg.at[name, "DateOut"] = ( - year + costs.at[carrier, "lifetime"] - 1 + year + costs.at[cost_key, "lifetime"] - 1 ) df_agg.at[name, "cluster_bus"] = node @@ -163,7 +164,7 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas technology_to_drop = ["Pv", "Storage Technologies"] - # drop unused fueltyps and technologies + # drop unused fueltypes and technologies df_agg.drop(df_agg.index[df_agg.Fueltype.isin(fueltype_to_drop)], inplace=True) df_agg.drop(df_agg.index[df_agg.Technology.isin(technology_to_drop)], inplace=True) df_agg.Fueltype = df_agg.Fueltype.map(rename_fuel) @@ -200,19 +201,19 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas phased_out = df_agg[df_agg["DateOut"] < baseyear].index df_agg.drop(phased_out, inplace=True) - older_assets = (df_agg.DateIn < min(grouping_years)).sum() - if older_assets: + newer_assets = (df_agg.DateIn > max(grouping_years)).sum() + if newer_assets: logger.warning( - f"There are {older_assets} assets with build year " - f"before first power grouping year {min(grouping_years)}. " + f"There are {newer_assets} assets with build year " + f"after last power grouping year {max(grouping_years)}. " "These assets are dropped and not considered." "Consider to redefine the grouping years to keep them." ) - to_drop = df_agg[df_agg.DateIn < min(grouping_years)].index + to_drop = df_agg[df_agg.DateIn > max(grouping_years)].index df_agg.drop(to_drop, inplace=True) df_agg["grouping_year"] = np.take( - grouping_years[::-1], np.digitize(df_agg.DateIn, grouping_years[::-1]) + grouping_years, np.digitize(df_agg.DateIn, grouping_years, right=True) ) # calculate (adjusted) remaining lifetime before phase-out (+1 because assuming @@ -252,8 +253,10 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas ] suffix = "-ac" if generator == "offwind" else "" name_suffix = f" {generator}{suffix}-{grouping_year}" + name_suffix_by = f" {generator}{suffix}-{baseyear}" asset_i = capacity.index + name_suffix - if generator in ["solar", "onwind", "offwind"]: + if generator in ["solar", "onwind", "offwind-ac"]: + cost_key = generator.split("-")[0] # to consider electricity grid connection costs or a split between # solar utility and rooftop as well, rather take cost assumptions # from existing network than from the cost database @@ -269,9 +272,9 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas # this is for the year 2020 if not already_build.empty: - n.generators.loc[already_build, "p_nom_min"] = capacity.loc[ - already_build.str.replace(name_suffix, "") - ].values + n.generators.loc[already_build, "p_nom"] = n.generators.loc[ + already_build, "p_nom_min" + ] = capacity.loc[already_build.str.replace(name_suffix, "")].values new_capacity = capacity.loc[new_build.str.replace(name_suffix, "")] if "m" in snakemake.wildcards.clusters: @@ -281,21 +284,13 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas # for offshore the splitting only includes coastal regions inv_ind = [ - i - for i in inv_ind - if (i + name_suffix) - in n.generators.index.str.replace( - str(baseyear), str(grouping_year) - ) + i for i in inv_ind if (i + name_suffix_by) in n.generators.index ] p_max_pu = n.generators_t.p_max_pu[ - [i + name_suffix for i in inv_ind] - ] - p_max_pu.columns = [ - i + name_suffix.replace(str(grouping_year), str(baseyear)) - for i in inv_ind + [i + name_suffix_by for i in inv_ind] ] + p_max_pu.columns = [i + name_suffix for i in inv_ind] n.madd( "Generator", @@ -306,16 +301,14 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas / len(inv_ind), # split among regions in a country marginal_cost=marginal_cost, capital_cost=capital_cost, - efficiency=costs.at[generator, "efficiency"], + efficiency=costs.at[cost_key, "efficiency"], p_max_pu=p_max_pu, build_year=grouping_year, - lifetime=costs.at[generator, "lifetime"], + lifetime=costs.at[cost_key, "lifetime"], ) else: - p_max_pu = n.generators_t.p_max_pu[ - capacity.index + f" {generator}{suffix}-{baseyear}" - ] + p_max_pu = n.generators_t.p_max_pu[capacity.index + name_suffix_by] if not new_build.empty: n.madd( @@ -327,10 +320,10 @@ def add_power_capacities_installed_before_baseyear(n, grouping_years, costs, bas p_nom=new_capacity, marginal_cost=marginal_cost, capital_cost=capital_cost, - efficiency=costs.at[generator, "efficiency"], + efficiency=costs.at[cost_key, "efficiency"], p_max_pu=p_max_pu.rename(columns=n.generators.bus), build_year=grouping_year, - lifetime=costs.at[generator, "lifetime"], + lifetime=costs.at[cost_key, "lifetime"], ) else: @@ -441,7 +434,7 @@ def add_heating_capacities_installed_before_baseyear( linear decommissioning of heating capacities from 2020 to 2045 is currently assumed heating capacities split between residential and services proportional to heating load in both 50% capacities - in rural busess 50% in urban buses + in rural buses 50% in urban buses """ logger.debug(f"Adding heating capacities installed before {baseyear}") @@ -449,8 +442,6 @@ def add_heating_capacities_installed_before_baseyear( snakemake.input.existing_heating_distribution, header=[0, 1], index_col=0 ) - techs = existing_heating.columns.get_level_values(1).unique() - for name in existing_heating.columns.get_level_values(0).unique(): name_type = "central" if name == "urban central" else "decentral" @@ -473,6 +464,11 @@ def add_heating_capacities_installed_before_baseyear( else: efficiency = costs.at[costs_name, "efficiency"] + too_large_grouping_years = [gy for gy in grouping_years if gy >= int(baseyear)] + if too_large_grouping_years: + logger.warning( + f"Grouping years >= baseyear are ignored. Dropping {too_large_grouping_years}." + ) valid_grouping_years = pd.Series( [ int(grouping_year) @@ -482,12 +478,12 @@ def add_heating_capacities_installed_before_baseyear( ] ) + assert valid_grouping_years.is_monotonic_increasing + # get number of years of each interval - _years = ( - valid_grouping_years.diff() - .shift(-1) - .fillna(baseyear - valid_grouping_years.iloc[-1]) - ) + _years = valid_grouping_years.diff() + # Fill NA from .diff() with value for the first interval + _years[0] = valid_grouping_years[0] - baseyear + default_lifetime # Installation is assumed to be linear for the past ratios = _years / _years.sum() @@ -605,13 +601,13 @@ if __name__ == "__main__": snakemake = mock_snakemake( "add_existing_baseyear", - configfiles="config/test/config.myopic.yaml", + configfiles="config/config.yaml", simpl="", - clusters="37", - ll="v1.0", + clusters="20", + ll="v1.5", opts="", - sector_opts="8760-T-H-B-I-A-dist1", - planning_horizons=2020, + sector_opts="none", + planning_horizons=2030, ) configure_logging(snakemake) diff --git a/scripts/add_extra_components.py b/scripts/add_extra_components.py index eb14436e..90e7eaec 100644 --- a/scripts/add_extra_components.py +++ b/scripts/add_extra_components.py @@ -246,7 +246,8 @@ if __name__ == "__main__": attach_hydrogen_pipelines(n, costs, extendable_carriers) sanitize_carriers(n, snakemake.config) - sanitize_locations(n) + if "location" in n.buses: + sanitize_locations(n) n.meta = dict(snakemake.config, **dict(wildcards=dict(snakemake.wildcards))) n.export_to_netcdf(snakemake.output[0]) diff --git a/scripts/base_network.py b/scripts/base_network.py index 432813cf..df3bc2b2 100644 --- a/scripts/base_network.py +++ b/scripts/base_network.py @@ -272,14 +272,15 @@ def _add_links_from_tyndp(buses, links, links_tyndp, europe_shape): if links_tyndp.empty: return buses, links - tree = spatial.KDTree(buses[["x", "y"]]) + tree_buses = buses.query("carrier=='AC'") + tree = spatial.KDTree(tree_buses[["x", "y"]]) _, ind0 = tree.query(links_tyndp[["x1", "y1"]]) - ind0_b = ind0 < len(buses) - links_tyndp.loc[ind0_b, "bus0"] = buses.index[ind0[ind0_b]] + ind0_b = ind0 < len(tree_buses) + links_tyndp.loc[ind0_b, "bus0"] = tree_buses.index[ind0[ind0_b]] _, ind1 = tree.query(links_tyndp[["x2", "y2"]]) - ind1_b = ind1 < len(buses) - links_tyndp.loc[ind1_b, "bus1"] = buses.index[ind1[ind1_b]] + ind1_b = ind1 < len(tree_buses) + links_tyndp.loc[ind1_b, "bus1"] = tree_buses.index[ind1[ind1_b]] links_tyndp_located_b = ( links_tyndp["bus0"].notnull() & links_tyndp["bus1"].notnull() @@ -569,7 +570,7 @@ def _set_countries_and_substations(n, config, country_shapes, offshore_shapes): buses["substation_lv"] = ( lv_b & onshore_b & (~buses["under_construction"]) & has_connections_b ) - buses["substation_off"] = (offshore_b | (hv_b & onshore_b)) & ( + buses["substation_off"] = ((hv_b & offshore_b) | (hv_b & onshore_b)) & ( ~buses["under_construction"] ) @@ -895,7 +896,7 @@ def build_bus_shapes(n, country_shapes, offshore_shapes, countries): shapes = pd.concat(onshore_regions, ignore_index=True) - return onshore_regions, offshore_regions, shapes + return onshore_regions, offshore_regions, shapes, offshore_shapes def append_bus_shapes(n, shapes, type): @@ -949,7 +950,7 @@ if __name__ == "__main__": snakemake.config, ) - onshore_regions, offshore_regions, shapes = build_bus_shapes( + onshore_regions, offshore_regions, shapes, offshore_shapes = build_bus_shapes( n, snakemake.input.country_shapes, snakemake.input.offshore_shapes, diff --git a/scripts/build_ammonia_production.py b/scripts/build_ammonia_production.py index 84d547da..37692f2f 100644 --- a/scripts/build_ammonia_production.py +++ b/scripts/build_ammonia_production.py @@ -4,6 +4,21 @@ # SPDX-License-Identifier: MIT """ Build historical annual ammonia production per country in ktonNH3/a. + +Inputs +------- + +- ``data/bundle-sector/myb1-2017-nitro.xls`` + +Outputs +------- + +- ``resources/ammonia_production.csv`` + +Description +------- + +This functions takes data from the `Minerals Yearbook `_ (June 2024) published by the US Geological Survey (USGS) and the National Minerals Information Center and extracts the annual ammonia production per country in ktonN/a. The data is converted to ktonNH3/a. """ import country_converter as coco diff --git a/scripts/build_biomass_potentials.py b/scripts/build_biomass_potentials.py index 79e2c203..883734eb 100644 --- a/scripts/build_biomass_potentials.py +++ b/scripts/build_biomass_potentials.py @@ -12,12 +12,11 @@ import logging import geopandas as gpd import numpy as np import pandas as pd +from _helpers import configure_logging, set_scenario_config logger = logging.getLogger(__name__) AVAILABLE_BIOMASS_YEARS = [2010, 2020, 2030, 2040, 2050] -from _helpers import configure_logging, set_scenario_config - def build_nuts_population_data(year=2013): pop = pd.read_csv( diff --git a/scripts/build_biomass_transport_costs.py b/scripts/build_biomass_transport_costs.py index 9c825c47..085a0f00 100644 --- a/scripts/build_biomass_transport_costs.py +++ b/scripts/build_biomass_transport_costs.py @@ -17,20 +17,27 @@ assuming as an approximation energy content of wood pellets @author: bw0928 """ +import platform + import pandas as pd import tabula as tbl ENERGY_CONTENT = 4.8 # unit MWh/t (wood pellets) +system = platform.system() +encoding = "cp1252" if system == "Windows" else None def get_countries(): - pandas_options = dict(skiprows=range(6), header=None, index_col=0) + pandas_options = dict( + skiprows=range(6), header=None, index_col=0, encoding=encoding + ) return tbl.read_pdf( str(snakemake.input.transport_cost_data), pages="145", multiple_tables=False, pandas_options=pandas_options, + encoding=encoding, )[0].index @@ -41,6 +48,7 @@ def get_cost_per_tkm(page, countries): sep=" |,", engine="python", index_col=False, + encoding=encoding, ) sc = tbl.read_pdf( @@ -48,6 +56,7 @@ def get_cost_per_tkm(page, countries): pages=page, multiple_tables=False, pandas_options=pandas_options, + encoding=encoding, )[0] sc.index = countries sc.columns = sc.columns.str.replace("€", "EUR") diff --git a/scripts/build_cop_profiles.py b/scripts/build_cop_profiles.py index 16e44c18..2a47198b 100644 --- a/scripts/build_cop_profiles.py +++ b/scripts/build_cop_profiles.py @@ -6,11 +6,40 @@ Build coefficient of performance (COP) time series for air- or ground-sourced heat pumps. -The COP is a function of the temperature difference between source and -sink. +The COP is approximated as a quatratic function of the temperature difference between source and +sink, based on Staffell et al. 2012. -The quadratic regression used is based on Staffell et al. (2012) -https://doi.org/10.1039/C2EE22653G. +This rule is executed in ``build_sector.smk``. + +Relevant Settings +----------------- + +.. code:: yaml + heat_pump_sink_T: + + +Inputs: +------- +- ``resources//temp_soil_total_elec_s_.nc``: Soil temperature (total) time series. +- ``resources//temp_soil_rural_elec_s_.nc``: Soil temperature (rural) time series. +- ``resources//temp_soil_urban_elec_s_.nc``: Soil temperature (urban) time series. +- ``resources//temp_air_total_elec_s_.nc``: Ambient air temperature (total) time series. +- ``resources//temp_air_rural_elec_s_.nc``: Ambient air temperature (rural) time series. +- ``resources//temp_air_urban_elec_s_.nc``: Ambient air temperature (urban) time series. + +Outputs: +-------- +- ``resources/cop_soil_total_elec_s_.nc``: COP (ground-sourced) time series (total). +- ``resources/cop_soil_rural_elec_s_.nc``: COP (ground-sourced) time series (rural). +- ``resources/cop_soil_urban_elec_s_.nc``: COP (ground-sourced) time series (urban). +- ``resources/cop_air_total_elec_s_.nc``: COP (air-sourced) time series (total). +- ``resources/cop_air_rural_elec_s_.nc``: COP (air-sourced) time series (rural). +- ``resources/cop_air_urban_elec_s_.nc``: COP (air-sourced) time series (urban). + + +References +---------- +[1] Staffell et al., Energy & Environmental Science 11 (2012): A review of domestic heat pumps, https://doi.org/10.1039/C2EE22653G. """ import xarray as xr diff --git a/scripts/build_daily_heat_demand.py b/scripts/build_daily_heat_demand.py index 54c5c386..97d1368e 100644 --- a/scripts/build_daily_heat_demand.py +++ b/scripts/build_daily_heat_demand.py @@ -3,13 +3,50 @@ # # SPDX-License-Identifier: MIT """ -Build heat demand time series using heating degree day (HDD) approximation. +This rule builds heat demand time series using heating degree day (HDD) +approximation. + +Snapshots are resampled to daily time resolution and ``Atlite.convert.heat_demand`` is used to convert ambient temperature from the default weather cutout to heat demand time series for the respective cutout. + +Heat demand is distributed by population to clustered onshore regions. + +The rule is executed in ``build_sector.smk``. + +.. seealso:: + `Atlite.Cutout.heat_demand `_ + +Relevant Settings +----------------- + +.. code:: yaml + + snapshots: + drop_leap_day: + +Inputs +------ + +- ``resources//pop_layout_.nc``: Population layout (spatial population distribution). +- ``resources//regions_onshore_elec_s_.geojson``: Onshore region shapes. +- ``cutout``: Weather data cutout, as specified in config + +Outputs +------- + +- ``resources/daily_heat_demand__elec_s_.nc``: + +Relevant settings +----------------- + +.. code:: yaml + + atlite: + default_cutout``: """ import atlite import geopandas as gpd import numpy as np -import pandas as pd import xarray as xr from _helpers import get_snapshots, set_scenario_config from dask.distributed import Client, LocalCluster diff --git a/scripts/build_district_heat_share.py b/scripts/build_district_heat_share.py index 178f2c0d..d62d2ab0 100644 --- a/scripts/build_district_heat_share.py +++ b/scripts/build_district_heat_share.py @@ -4,6 +4,29 @@ # SPDX-License-Identifier: MIT """ Build district heat shares at each node, depending on investment year. + +Inputs: +------- +- `resources//pop_layout.csv`: Population layout for each node: Total, urban and rural population. +- `resources//district_heat_share.csv`: Historical district heat share at each country. Output of `scripts/build_energy_totals.py`. + +Outputs: +-------- +- `resources//district_heat_share.csv`: District heat share at each node, potential for each investment year. + +Relevant settings: +------------------ +.. code:: yaml + sector: + district_heating: + energy: + energy_totals_year: + +Notes: +------ +- The district heat share is calculated as the share of urban population at each node, multiplied by the share of district heating in the respective country. +- The `sector.district_heating.potential` setting defines the max. district heating share. +- The max. share of district heating is increased by a progress factor, depending on the investment year (See `sector.district_heating.progress` setting). """ import logging diff --git a/scripts/build_egs_potentials.py b/scripts/build_egs_potentials.py new file mode 100644 index 00000000..65ebab3a --- /dev/null +++ b/scripts/build_egs_potentials.py @@ -0,0 +1,249 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2023 @LukasFranken, The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +This rule extracts potential and cost for electricity generation through +enhanced geothermal systems. + +For this, we use data from "From hot rock to useful energy..." by Aghahosseini, Breyer (2020) +'https://doi.org/10.1016/j.apenergy.2020.115769' +Note that we input data used here is not the same as in the paper, but was passed on by the authors. + +The data provides a lon-lat gridded map of Europe (1° x 1°), with each grid cell assigned +a heat potential (in GWh) and a cost (in EUR/MW). + +This scripts overlays that map with the network's regions, and builds a csv with CAPEX, OPEX and p_nom_max +""" + +import logging + +logger = logging.getLogger(__name__) + +import json + +import geopandas as gpd +import numpy as np +import pandas as pd +import xarray as xr +from shapely.geometry import Polygon + + +def prepare_egs_data(egs_file): + """ + Processes the original .json file EGS data to a more human-readable format. + """ + with open(egs_file) as f: + jsondata = json.load(f) + + def point_to_square(p, lon_extent=1.0, lat_extent=1.0): + try: + x, y = p.coords.xy[0][0], p.coords.xy[1][0] + except IndexError: + return p + + return Polygon( + [ + [x - lon_extent / 2, y - lat_extent / 2], + [x - lon_extent / 2, y + lat_extent / 2], + [x + lon_extent / 2, y + lat_extent / 2], + [x + lon_extent / 2, y - lat_extent / 2], + ] + ) + + years = [2015, 2020, 2025, 2030, 2035, 2040, 2045, 2050] + lcoes = ["LCOE50", "LCOE100", "LCOE150"] + + egs_data = dict() + + for year in years: + df = pd.DataFrame(columns=["Lon", "Lat", "CAPEX", "HeatSust", "PowerSust"]) + + for lcoe in lcoes: + for country_data in jsondata[lcoe]: + try: + country_df = pd.DataFrame( + columns=df.columns, + index=range(len(country_data[0][years.index(year)]["Lon"])), + ) + except TypeError: + country_df = pd.DataFrame(columns=df.columns, index=range(0)) + + for col in df.columns: + country_df[col] = country_data[0][years.index(year)][col] + + if country_df.dropna().empty: + continue + elif df.empty: + df = country_df.dropna() + else: + df = pd.concat((df, country_df.dropna()), ignore_index=True) + + gdf = gpd.GeoDataFrame( + df.drop(columns=["Lon", "Lat"]), geometry=gpd.points_from_xy(df.Lon, df.Lat) + ).reset_index(drop=True) + + gdf["geometry"] = gdf.geometry.apply(lambda geom: point_to_square(geom)) + egs_data[year] = gdf + + return egs_data + + +def prepare_capex(prepared_data): + """ + The source paper provides only data for year and regions where LCOE < + 100Euro/MWh. However, this implementations starts with the costs for 2020 + for all regions and then adjusts the costs according to the user's chosen + setting in the config file. + + As such, for regions where cost data is available only from, say, + 2035, we need to reverse-engineer the costs for 2020. This is done + in the following (unfortunately verbose) function. + """ + + default_year = 2020 + + # obtains all available CAPEX data + capex_df = pd.DataFrame(columns=prepared_data.keys()) + + for year in capex_df.columns: + + year_data = prepared_data[year].groupby("geometry").mean().reset_index() + + for g in year_data.geometry: + + if not g in year_data.geometry.tolist(): + # weird but apparently necessary + continue + + capex_df.loc[g, year] = year_data.loc[ + year_data.geometry == g, "CAPEX" + ].values[0] + + capex_df = capex_df.loc[:, default_year:] + + # fill up missing values assuming cost reduction factors similar to existing values + for sooner, later in zip(capex_df.columns[::-1][1:], capex_df.columns[::-1]): + + missing_mask = capex_df[sooner].isna() + cr_factor = ( + capex_df.loc[~missing_mask, later] / capex_df.loc[~missing_mask, sooner] + ) + + capex_df.loc[missing_mask, sooner] = ( + capex_df.loc[missing_mask, later] / cr_factor.mean() + ) + + # harmonice capacity and CAPEX + p_nom_max = prepared_data[2050].groupby("geometry")["PowerSust"].mean() + p_nom_max = p_nom_max.loc[p_nom_max > 0] + + capex_df = capex_df.loc[p_nom_max.index] + + data = ( + pd.concat((capex_df[default_year], p_nom_max), axis=1) + .reset_index() + .rename(columns={2020: "CAPEX"}) + ) + return gpd.GeoDataFrame(data, geometry=data.geometry) + + +def get_capacity_factors(network_regions_file, air_temperatures_file): + """ + Performance of EGS is higher for lower temperatures, due to more efficient + air cooling Data from Ricks et al.: The Role of Flexible Geothermal Power + in Decarbonized Elec Systems. + """ + + # these values are taken from the paper's + # Supplementary Figure 20 from https://zenodo.org/records/7093330 + # and relate deviations of the ambient temperature from the year-average + # ambient temperature to EGS capacity factors. + delta_T = [-15, -10, -5, 0, 5, 10, 15, 20] + cf = [1.17, 1.13, 1.07, 1, 0.925, 0.84, 0.75, 0.65] + + x = np.linspace(-15, 20, 200) + y = np.interp(x, delta_T, cf) + + upper_x = np.linspace(20, 25, 50) + m_upper = (y[-1] - y[-2]) / (x[-1] - x[-2]) + upper_y = upper_x * m_upper - x[-1] * m_upper + y[-1] + + lower_x = np.linspace(-20, -15, 50) + m_lower = (y[1] - y[0]) / (x[1] - x[0]) + lower_y = lower_x * m_lower - x[0] * m_lower + y[0] + + x = np.hstack((lower_x, x, upper_x)) + y = np.hstack((lower_y, y, upper_y)) + + network_regions = gpd.read_file(network_regions_file).set_crs(epsg=4326) + index = network_regions["name"] + + air_temp = xr.open_dataset(air_temperatures_file) + + snapshots = pd.date_range(freq="h", **snakemake.params.snapshots) + capacity_factors = pd.DataFrame(index=snapshots) + + # bespoke computation of capacity factors for each bus. + # Considering the respective temperatures, we compute + # the deviation from the average temperature and relate it + # to capacity factors based on the data from above. + for bus in index: + temp = air_temp.sel(name=bus).to_dataframe()["temperature"] + capacity_factors[bus] = np.interp((temp - temp.mean()).values, x, y) + + return capacity_factors + + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "build_egs_potentials", + simpl="", + clusters=37, + ) + + egs_config = snakemake.params["sector"]["enhanced_geothermal"] + costs_config = snakemake.params["costs"] + + egs_data = prepare_egs_data(snakemake.input.egs_cost) + egs_data = prepare_capex(egs_data) + + egs_regions = egs_data.geometry + + network_regions = ( + gpd.read_file(snakemake.input.regions) + .set_index("name", drop=True) + .set_crs(epsg=4326) + ) + + overlap_matrix = pd.DataFrame( + index=network_regions.index, + columns=egs_data.index, + ) + + for name, polygon in network_regions.geometry.items(): + overlap_matrix.loc[name] = ( + egs_regions.intersection(polygon).area + ) / egs_regions.area + + overlap_matrix.to_csv(snakemake.output["egs_overlap"]) + + # the share of heat that is replenished from the earth's core. + # we are not constraining ourselves to the sustainable share, but + # inversely apply it to our underlying data, which refers to the + # sustainable heat. Source: Relative magnitude of sustainable heat vs + # nonsustainable heat in the paper "From hot rock to useful energy..." + sustainability_factor = egs_config["sustainability_factor"] + egs_data["p_nom_max"] = egs_data["PowerSust"] / sustainability_factor + + egs_data[["p_nom_max", "CAPEX"]].to_csv(snakemake.output["egs_potentials"]) + + capacity_factors = get_capacity_factors( + snakemake.input["regions"], + snakemake.input["air_temperature"], + ) + + capacity_factors.to_csv(snakemake.output["egs_capacity_factors"]) diff --git a/scripts/build_electricity_demand.py b/scripts/build_electricity_demand.py index 7615bbc6..622fdafa 100755 --- a/scripts/build_electricity_demand.py +++ b/scripts/build_electricity_demand.py @@ -129,7 +129,7 @@ def copy_timeslice(load, cntry, start, stop, delta, fn_load=None): load.loc[start:stop, cntry] = load.loc[ start - delta : stop - delta, cntry ].values - elif fn_load is not None: + elif fn_load is not None and cntry in load: duration = pd.date_range(freq="h", start=start - delta, end=stop - delta) load_raw = load_timeseries(fn_load, duration, [cntry]) load.loc[start:stop, cntry] = load_raw.loc[ @@ -312,7 +312,7 @@ if __name__ == "__main__": fn = snakemake.input.synthetic synthetic_load = pd.read_csv(fn, index_col=0, parse_dates=True) # "UA" does not appear in synthetic load data - countries = list(set(countries) - set(["UA"])) + countries = list(set(countries) - set(["UA", "MD"])) synthetic_load = synthetic_load.loc[snapshots, countries] load = load.combine_first(synthetic_load) diff --git a/scripts/build_energy_totals.py b/scripts/build_energy_totals.py index b56d3294..a476ec65 100644 --- a/scripts/build_energy_totals.py +++ b/scripts/build_energy_totals.py @@ -3,13 +3,45 @@ # # SPDX-License-Identifier: MIT """ -Build total energy demands per country using JRC IDEES, eurostat, and EEA data. +Build total energy demands and carbon emissions per country using JRC IDEES, +eurostat, and EEA data. + +- Country-specific data is read in :func:`build_eurostat`, :func:`build_idees` and `build_swiss`. +- :func:`build_energy_totals` then combines energy data from Eurostat, Swiss, and IDEES data and :func:`rescale_idees_from_eurostat` rescales IDEES data to match Eurostat data. +- :func:`build_district_heat_share` calculates the share of district heating for each country from IDEES data. +- Historical CO2 emissions are calculated in :func:`build_eea_co2` and :func:`build_eurostat_co2` and combined in :func:`build_co2_totals`. + +Relevant Settings +----------------- + +.. code:: yaml + countries: + energy: + +Inputs +------ + +- `resources//nuts3_shapes.gejson`: NUTS3 shapes. +- `data/bundle/eea_UNFCCC_v23.csv`: CO2 emissions data from EEA. +- `data/switzerland-new_format-all_years.csv`: Swiss energy data. +- `data/gr-e-11.03.02.01.01-cc.csv`: Swiss transport data +- `data/bundle/jrc-idees`: JRC IDEES data. +- `data/district_heat_share.csv`: District heating shares. +- `data/eurostat/Balances-April2023`: Eurostat energy balances. +- `data/eurostat/eurostat-household_energy_balances-february_2024.csv`: Eurostat household energy balances. + +Outputs +------- +- `resources//energy_totals.csv`: Energy totals per country, sector and year. +- `resources//co2_totals.csv`: CO2 emissions per country, sector and year. +- `resources//transport_data.csv`: Transport data per country and year. +- `resources//district_heat_share.csv`: District heating share per by country and year. """ import logging import multiprocessing as mp -import os from functools import partial +from typing import List import country_converter as coco import geopandas as gpd @@ -23,16 +55,54 @@ logger = logging.getLogger(__name__) idx = pd.IndexSlice -def cartesian(s1, s2): +def cartesian(s1: pd.Series, s2: pd.Series) -> pd.DataFrame: """ - Cartesian product of two pd.Series. + Compute the Cartesian product of two pandas Series. + + Parameters + ---------- + s1: pd.Series + The first pandas Series + s2: pd.Series: + The second pandas Series. + + Returns + ---------- + pd.DataFrame + A DataFrame representing the Cartesian product of s1 and s2. + + Examples + -------- + >>> s1 = pd.Series([1, 2, 3], index=["a", "b", "c"]) + >>> s2 = pd.Series([4, 5, 6], index=["d", "e", "f"]) + >>> cartesian(s1, s2) + d e f + a 4 5 6 + b 8 10 12 + c 12 15 18 """ return pd.DataFrame(np.outer(s1, s2), index=s1.index, columns=s2.index) -def reverse(dictionary): +def reverse(dictionary: dict) -> dict: """ - Reverses a keys and values of a dictionary. + Reverses the keys and values of a dictionary. + + Parameters + ---------- + dictionary : dict + The dictionary to be reversed. + + Returns + ------- + dict + A new dictionary with the keys and values reversed. + + Examples + -------- + >>> d = {"a": 1, "b": 2, "c": 3} + >>> reverse(d) + {1: 'a', 2: 'b', 3: 'c'} """ return {v: k for k, v in dictionary.items()} @@ -69,7 +139,28 @@ to_ipcc = { } -def eurostat_per_country(input_eurostat, country): +def eurostat_per_country(input_eurostat: str, country: str) -> pd.DataFrame: + """ + Read energy balance data for a specific country from Eurostat. + + Parameters + ---------- + input_eurostat : str + Path to the directory containing Eurostat data files. + country : str + Country code for the specific country. + + Returns + ------- + pd.DataFrame + Concatenated energy balance data for the specified country. + + Notes + ----- + - The function reads `/.-Energy-balance-sheets-April-2023-edition.xlsb` + - It removes the "Cover" sheet from the data and concatenates all the remaining sheets into a single DataFrame. + """ + filename = ( f"{input_eurostat}/{country}-Energy-balance-sheets-April-2023-edition.xlsb" ) @@ -84,10 +175,38 @@ def eurostat_per_country(input_eurostat, country): return pd.concat(sheet) -def build_eurostat(input_eurostat, countries, nprocesses=1, disable_progressbar=False): +def build_eurostat( + input_eurostat: str, + countries: List[str], + nprocesses: int = 1, + disable_progressbar: bool = False, +) -> pd.DataFrame: """ Return multi-index for all countries' energy data in TWh/a. + + Parameters: + ----------- + input_eurostat : str + Path to the Eurostat database. + countries : List[str] + List of countries for which energy data is to be retrieved. + nprocesses : int, optional + Number of processes to use for parallel execution, by default 1. + disable_progressbar : bool, optional + Whether to disable the progress bar, by default False. + + Returns: + -------- + pd.DataFrame + Multi-index DataFrame containing energy data for all countries in TWh/a. + + Notes: + ------ + - The function first renames the countries in the input list using the `idees_rename` mapping and removes "CH". + - It then reads country-wise data using :func:`eurostat_per_country` into a single DataFrame. + - The data is reordered, converted to TWh/a, and missing values are filled. """ + countries = {idees_rename.get(country, country) for country in countries} - {"CH"} func = partial(eurostat_per_country, input_eurostat) @@ -125,7 +244,6 @@ def build_eurostat(input_eurostat, countries, nprocesses=1, disable_progressbar= df = pd.concat([temp, df.loc[~int_avia]]) # Fill in missing data on "Domestic aviation" for each country. - domestic_avia = df.index.get_level_values(4) == "Domestic aviation" for country in countries: slicer = idx[country, :, :, :, "Domestic aviation"] # For the Total and Fossil energy columns, fill in zeros with @@ -142,6 +260,7 @@ def build_eurostat(input_eurostat, countries, nprocesses=1, disable_progressbar= "Domestic navigation": "Domestic Navigation", "International maritime bunkers": "Bunkers", "UK": "GB", + "EL": "GR", } columns_rename = {"Total": "Total all products"} df.rename(index=index_rename, columns=columns_rename, inplace=True) @@ -153,9 +272,20 @@ def build_eurostat(input_eurostat, countries, nprocesses=1, disable_progressbar= return df -def build_swiss(): +def build_swiss() -> pd.DataFrame: """ Return a pd.DataFrame of Swiss energy data in TWh/a. + + Returns + -------- + pd.DataFrame + Swiss energy data in TWh/a. + + Notes + ----- + - Reads Swiss energy data from `data/switzerland-new_format-all_years.csv`. + - Reshapes and renames data. + - Converts energy units from PJ/a to TWh/a. """ fn = snakemake.input.swiss @@ -175,7 +305,29 @@ def build_swiss(): return df -def idees_per_country(ct, base_dir): +def idees_per_country(ct: str, base_dir: str) -> pd.DataFrame: + """ + Calculate energy totals per country using JRC-IDEES data. + + Parameters + ---------- + ct : str + The country code. + base_dir : str + The base directory where the JRC-IDEES data files are located. + + Returns + ------- + pd.DataFrame + A DataFrame containing the energy totals per country. Columns are energy uses. + + Notes + ----- + - Retrieves JRC-IDEES data for the specified country from `base_dir` for residential, tertiary, and transport sectors. + - Calculates energy totals for each sector, stores them in a dictionary and returns them as data frame. + - Assertions ensure indices of JRC-IDEES data are as expected. + """ + ct_idees = idees_rename.get(ct, ct) fn_residential = f"{base_dir}/JRC-IDEES-2015_Residential_{ct_idees}.xlsx" fn_tertiary = f"{base_dir}/JRC-IDEES-2015_Tertiary_{ct_idees}.xlsx" @@ -373,7 +525,27 @@ def idees_per_country(ct, base_dir): return pd.DataFrame(ct_totals) -def build_idees(countries): +def build_idees(countries: List[str]) -> pd.DataFrame: + """ + Build energy totals from IDEES database for the given list of countries + using :func:`idees_per_country`. + + Parameters + ---------- + countries : List[str] + List of country names for which energy totals need to be built. + + Returns + ------- + pd.DataFrame + Energy totals for the given countries. + + Notes + ----- + - Retrieves energy totals per country and year using :func:`idees_per_country`. + - Returns a DataFrame with columns: country, year, and energy totals for different categories. + """ + nprocesses = snakemake.threads disable_progress = snakemake.config["run"].get("disable_progressbar", False) @@ -395,17 +567,51 @@ def build_idees(countries): names=["country", "year"], ) + # efficiency kgoe/100km -> ktoe/100km so that after conversion TWh/100km + totals.loc[:, "passenger car efficiency"] /= 1e6 # convert ktoe to TWh exclude = totals.columns.str.fullmatch("passenger cars") totals.loc[:, ~exclude] *= 11.63 / 1e3 - # convert TWh/100km to kWh/km - totals.loc[:, "passenger car efficiency"] *= 10 - return totals -def build_energy_totals(countries, eurostat, swiss, idees): +def build_energy_totals( + countries: List[str], + eurostat: pd.DataFrame, + swiss: pd.DataFrame, + idees: pd.DataFrame, +) -> pd.DataFrame: + """ + Combine energy totals for the specified countries from Eurostat, Swiss, and + IDEES data. + + Parameters + ---------- + countries : List[str] + List of country codes for which energy totals are to be calculated. + eurostat : pd.DataFrame + Eurostat energy balances dataframe. + swiss : pd.DataFrame + Swiss energy data dataframe. + idees : pd.DataFrame + IDEES energy data dataframe. + + Returns + ------- + pd.DataFrame + Energy totals dataframe for the given countries. + + Notes + ----- + - Missing values are filled based on Eurostat energy balances and average values in EU28. + - The function also performs specific calculations for Norway and splits road, rail, and aviation traffic for non-IDEES data. + + References + ---------- + - `Norway heating data `_ + """ + eurostat_fuels = {"electricity": "Electricity", "total": "Total all products"} eurostat_countries = eurostat.index.levels[0] eurostat_years = eurostat.index.levels[1] @@ -593,7 +799,30 @@ def build_energy_totals(countries, eurostat, swiss, idees): return df -def build_district_heat_share(countries, idees): +def build_district_heat_share(countries: List[str], idees: pd.DataFrame) -> pd.Series: + """ + Calculate the share of district heating for each country. + + Parameters + ---------- + countries : List[str] + List of country codes for which to calculate district heating share. + idees : pd.DataFrame + IDEES energy data dataframe. + + Returns + ------- + pd.Series + Series with the district heating share for each country. + + Notes + ----- + - The function calculates the district heating share as the sum of residential and services derived heat, divided by the sum of residential and services thermal uses. + - The district heating share is then reindexed to match the provided list of countries. + - Missing district heating shares are filled from `data/district_heat_share.csv`. + - The function makes a conservative assumption and takes the minimum district heating share from both the IDEES data and `data/district_heat_share.csv`. + """ + # district heating share district_heat = idees[["derived heat residential", "derived heat services"]].sum( axis=1 @@ -627,9 +856,37 @@ def build_district_heat_share(countries, idees): return district_heat_share -def build_eea_co2(input_co2, year=1990, emissions_scope="CO2"): - # https://www.eea.europa.eu/data-and-maps/data/national-emissions-reported-to-the-unfccc-and-to-the-eu-greenhouse-gas-monitoring-mechanism-16 - # downloaded 201228 (modified by EEA last on 201221) +def build_eea_co2( + input_co2: str, year: int = 1990, emissions_scope: str = "CO2" +) -> pd.DataFrame: + """ + Calculate CO2 emissions for a given year based on EEA data in Mt. + + Parameters + ---------- + input_co2 : str + Path to the input CSV file with CO2 data. + year : int, optional + Year for which to calculate emissions, by default 1990. + emissions_scope : str, optional + Scope of the emissions to consider, by default "CO2". + + Returns + ------- + pd.DataFrame + DataFrame with CO2 emissions for the given year. + + Notes + ----- + - The function reads the `input_co2` data and for a specific `year` and `emission scope` + - It calculates "industrial non-elec" and "agriculture" emissions from that data + - It drops unneeded columns and converts the emissions to Mt. + + References + --------- + - `EEA CO2 data `_ (downloaded 201228, modified by EEA last on 201221) + """ + df = pd.read_csv(input_co2, encoding="latin-1", low_memory=False) df.replace(dict(Year="1985-1987"), 1986, inplace=True) @@ -675,11 +932,43 @@ def build_eea_co2(input_co2, year=1990, emissions_scope="CO2"): ] emissions.drop(columns=to_drop, inplace=True) - # convert from Gg to Mt + # convert from Gt to Mt return emissions / 1e3 -def build_eurostat_co2(eurostat, year=1990): +def build_eurostat_co2(eurostat: pd.DataFrame, year: int = 1990) -> pd.Series: + """ + Calculate CO2 emissions for a given year based on Eurostat fuel consumption + data and fuel-specific emissions. + + Parameters + ---------- + eurostat : pd.DataFrame + DataFrame with Eurostat data. + year : int, optional + Year for which to calculate emissions, by default 1990. + + Returns + ------- + pd.Series + Series with CO2 emissions for the given year. + + Notes + ----- + - The function hard-sets fuel-specific emissions: + - solid fuels: 0.36 tCO2_equi/MW_th (approximates coal) + - oil: 0.285 tCO2_equi/MW_th (average of distillate and residue) + - natural gas: 0.2 tCO2_equi/MW_th + - It then multiplies the Eurostat fuel consumption data for `year` by the specific emissions and sums the result. + + References + ---------- + - Oil values from `EIA `_ + - Distillate oil (No. 2) 0.276 + - Residual oil (No. 6) 0.298 + - `EIA Electricity Annual `_ + """ + eurostat_year = eurostat.xs(year, level="year") specific_emissions = pd.Series(index=eurostat.columns, dtype=float) @@ -689,15 +978,34 @@ def build_eurostat_co2(eurostat, year=1990): specific_emissions["Oil (total)"] = 0.285 # Average of distillate and residue specific_emissions["Gas"] = 0.2 # For natural gas - # oil values from https://www.eia.gov/tools/faqs/faq.cfm?id=74&t=11 - # Distillate oil (No. 2) 0.276 - # Residual oil (No. 6) 0.298 - # https://www.eia.gov/electricity/annual/html/epa_a_03.html - return eurostat_year.multiply(specific_emissions).sum(axis=1) -def build_co2_totals(countries, eea_co2, eurostat_co2): +def build_co2_totals( + countries: List[str], eea_co2: pd.DataFrame, eurostat_co2: pd.DataFrame +) -> pd.DataFrame: + """ + Combine CO2 emissions data from EEA and Eurostat for a list of countries. + + Parameters + ---------- + countries : List[str] + List of country codes for which CO2 totals need to be built. + eea_co2 : pd.DataFrame + DataFrame with EEA CO2 emissions data. + eurostat_co2 : pd.DataFrame + DataFrame with Eurostat CO2 emissions data. + + Returns + ------- + pd.DataFrame + Combined CO2 emissions data for the given countries. + + Notes + ----- + - The function combines the CO2 emissions from EEA and Eurostat into a single DataFrame for the given countries. + """ + co2 = eea_co2.reindex(countries) for ct in pd.Index(countries).intersection(["BA", "RS", "AL", "ME", "MK"]): @@ -724,9 +1032,38 @@ def build_co2_totals(countries, eea_co2, eurostat_co2): return co2 -def build_transport_data(countries, population, idees): - # first collect number of cars +def build_transport_data( + countries: List[str], population: pd.DataFrame, idees: pd.DataFrame +) -> pd.DataFrame: + """ + Build transport data for a set of countries based on IDEES data. + Parameters + ---------- + countries : List[str] + List of country codes. + population : pd.DataFrame + DataFrame with population data. + idees : pd.DataFrame + DataFrame with IDEES data. + + Returns + ------- + pd.DataFrame + DataFrame with transport data. + + Notes + ----- + - The function first collects the number of passenger cars. + - For Switzerland, it reads the data from `data/gr-e-11.03.02.01.01-cc.csv`. + - It fills missing data on the number of cars and fuel efficiency with average data. + + References + ---------- + - Swiss transport data: `BFS `_ + """ + + # first collect number of cars transport_data = pd.DataFrame(idees["passenger cars"]) countries_without_ch = set(countries) - {"CH"} @@ -737,7 +1074,6 @@ def build_transport_data(countries, population, idees): transport_data = transport_data.reindex(index=new_index) - # https://www.bfs.admin.ch/bfs/en/home/statistics/mobility-transport/transport-infrastructure-vehicles/vehicles/road-vehicles-stock-level-motorisation.html if "CH" in countries: fn = snakemake.input.swiss_transport swiss_cars = pd.read_csv(fn, index_col=0).loc[2000:2015, ["passenger cars"]] @@ -768,9 +1104,8 @@ def build_transport_data(countries, population, idees): transport_data = transport_data.combine_first(fill_values) - # collect average fuel efficiency in kWh/km - - transport_data["average fuel efficiency"] = idees["passenger car efficiency"] + # collect average fuel efficiency in MWh/100km, taking passengar car efficiency in TWh/100km + transport_data["average fuel efficiency"] = idees["passenger car efficiency"] * 1e6 missing = transport_data.index[transport_data["average fuel efficiency"].isna()] if not missing.empty: @@ -785,16 +1120,38 @@ def build_transport_data(countries, population, idees): def rescale_idees_from_eurostat( - idees_countries, - energy, - eurostat, -): + idees_countries: List[str], energy: pd.DataFrame, eurostat: pd.DataFrame +) -> pd.DataFrame: """ - Takes JRC IDEES data from 2015 and rescales it by the ratio of the eurostat - data and the 2015 eurostat data. + Takes JRC IDEES data from 2015 and rescales it by the ratio of the Eurostat + data and the 2015 Eurostat data. + Missing data: ['passenger car efficiency', 'passenger cars'] - missing data: ['passenger car efficiency', 'passenger cars'] + Parameters + ---------- + idees_countries : List[str] + List of IDEES country codes. + energy : pd.DataFrame + DataFrame with JRC IDEES data. + eurostat : pd.DataFrame + DataFrame with Eurostat data. + + Returns + ------- + pd.DataFrame + DataFrame with rescaled IDEES data. + + Notes + ----- + - The function first reads in the Eurostat data for 2015 and calculates the ratio of that data with other Eurostat data. + - This ratio is mapped to the IDEES data. + + References + ---------- + - JRC IDEES data: `JRC IDEES `_ + - Eurostat data: `Eurostat `_ """ + main_cols = ["Total all products", "Electricity"] # read in the eurostat data for 2015 eurostat_2015 = eurostat.xs(2015, level="year")[main_cols] @@ -854,6 +1211,7 @@ def rescale_idees_from_eurostat( "total passenger cars", "total other road passenger", "total light duty road freight", + "total heavy duty road freight", ], "elec": [ "electricity road", @@ -891,6 +1249,7 @@ def rescale_idees_from_eurostat( navigation = [ "total domestic navigation", ] + # international navigation is already read in from the eurostat data directly for country in idees_countries: filling_years = [(2015, slice(2016, 2021)), (2000, slice(1990, 1999))] @@ -940,9 +1299,83 @@ def rescale_idees_from_eurostat( energy.loc[slicer_source, navigation].squeeze(axis=0), ).values + # set the total of agriculture/road to the sum of all agriculture/road categories (corresponding to the IDEES data) + rows = idx[country, :] + cols = [ + "total agriculture electricity", + "total agriculture heat", + "total agriculture machinery", + ] + energy.loc[rows, "total agriculture"] = energy.loc[rows, cols].sum(axis=1) + + cols = [ + "total passenger cars", + "total other road passenger", + "total light duty road freight", + "total heavy duty road freight", + ] + energy.loc[rows, "total road"] = energy.loc[rows, cols].sum(axis=1) + return energy +def update_residential_from_eurostat(energy: pd.DataFrame) -> pd.DataFrame: + """ + Updates energy balances for residential from disaggregated data from + Eurostat by mutating input data DataFrame. + + Parameters + ---------- + energy : pd.DataFrame + DataFrame with energy data. + + Returns + ------- + pd.DataFrame + DataFrame with updated energy balances. + + Notes + ----- + - The function first reads in the Eurostat data for households and maps the energy types to the corresponding Eurostat codes. + - For each energy type, it selects the corresponding data, converts units, and drops unnecessary data. + """ + eurostat_households = pd.read_csv(snakemake.input.eurostat_households) + + # Column mapping for energy type + nrg_type = { + "total residential": ("FC_OTH_HH_E", "TOTAL"), + "total residential space": ("FC_OTH_HH_E_SH", "TOTAL"), + "total residential water": ("FC_OTH_HH_E_WH", "TOTAL"), + "total residential cooking": ("FC_OTH_HH_E_CK", "TOTAL"), + "electricity residential": ("FC_OTH_HH_E", "E7000"), + "electricity residential space": ("FC_OTH_HH_E_SH", "E7000"), + "electricity residential water": ("FC_OTH_HH_E_WH", "E7000"), + "electricity residential cooking": ("FC_OTH_HH_E_CK", "E7000"), + } + + for nrg_name, (code, siec) in nrg_type.items(): + + # Select energy balance type, rename columns and countries to match IDEES data, + # convert TJ to TWh, and drop XK data already since included in RS data + col_to_rename = {"geo": "country", "TIME_PERIOD": "year", "OBS_VALUE": nrg_name} + idx_to_rename = {v: k for k, v in idees_rename.items()} + drop_geo = ["EU27_2020", "EA20", "XK"] + nrg_data = eurostat_households.query( + "nrg_bal == @code and siec == @siec and geo not in @drop_geo and OBS_VALUE > 0" + ).copy() + nrg_data.rename(columns=col_to_rename, inplace=True) + nrg_data = nrg_data.set_index(["country", "year"])[nrg_name] / 3.6e3 + nrg_data.rename(index=idx_to_rename, inplace=True) + + # update energy balance from household-specific eurostat data + idx = nrg_data.index.intersection(energy.index) + energy.loc[idx, nrg_name] = nrg_data[idx] + + logger.info( + "Updated energy balances for residential using disaggregate final energy consumption data in Households from Eurostat" + ) + + if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake @@ -976,6 +1409,8 @@ if __name__ == "__main__": logger.info("Extrapolate IDEES data based on eurostat for years 2015-2021.") energy = rescale_idees_from_eurostat(idees_countries, energy, eurostat) + update_residential_from_eurostat(energy) + energy.to_csv(snakemake.output.energy_name) # use rescaled idees data to calculate district heat share diff --git a/scripts/build_existing_heating_distribution.py b/scripts/build_existing_heating_distribution.py index eb2361c2..d37fcfee 100644 --- a/scripts/build_existing_heating_distribution.py +++ b/scripts/build_existing_heating_distribution.py @@ -5,6 +5,38 @@ """ Builds table of existing heat generation capacities for initial planning horizon. + +Existing heat generation capacities are distributed to nodes based on population. +Within the nodes, the capacities are distributed to sectors (residential and services) based on sectoral consumption and urban/rural based population distribution. + +Inputs: +------- +- Existing heating generators: `data/existing_heating_raw.csv` per country +- Population layout: `resources/{run_name}/pop_layout_s_.csv`. Output of `scripts/build_clustered_population_layout.py` +- Population layout with energy demands: `resources//pop_weighted_energy_totals_s_.csv` +- District heating share: `resources//district_heat_share_elec_s__.csv` + +Outputs: +-------- +- Existing heat generation capacities distributed to nodes: `resources/{run_name}/existing_heating_distribution_elec_s{simpl}_{clusters}_{planning_horizons}.csv` + +Relevant settings: +------------------ +.. code:: yaml + scenario: + planning_horizons + sector: + existing_capacities: + +Notes: +------ +- Data for Albania, Montenegro and Macedonia is not included in input database and assumed 0. +- Coal and oil boilers are assimilated to oil boilers. +- All ground-source heat pumps are assumed in rural areas and all air-source heat pumps are assumed to be in urban areas. + +References: +----------- +- "Mapping and analyses of the current and future (2020 - 2030) heating/cooling fuel deployment (fossil/renewables)" (https://energy.ec.europa.eu/publications/mapping-and-analyses-current-and-future-2020-2030-heatingcooling-fuel-deployment-fossilrenewables-1_en) """ import country_converter as coco import numpy as np @@ -55,7 +87,6 @@ def build_existing_heating(): nodal_heating = nodal_heating.multiply(pop_layout.fraction, axis=0) district_heat_info = pd.read_csv(snakemake.input.district_heat_share, index_col=0) - dist_fraction = district_heat_info["district fraction of node"] urban_fraction = district_heat_info["urban fraction"] energy_layout = pd.read_csv( diff --git a/scripts/build_heat_totals.py b/scripts/build_heat_totals.py index 9bee63e5..7a43c9ca 100644 --- a/scripts/build_heat_totals.py +++ b/scripts/build_heat_totals.py @@ -4,6 +4,17 @@ # SPDX-License-Identifier: MIT """ Approximate heat demand for all weather years. + +:func:`approximate_heat_demand` approximates annual heat demand based on energy totals and heating degree days (HDD) using a regression of heat demand on HDDs. + +Inputs +------ +- `resources//energy_totals.csv`: Energy consumption by sector (columns), country and year. Output of :func:`scripts.build_energy_totals.py`. +- `data/era5-annual-HDD-per-country.csv`: Number of heating degree days by year (columns) and country (index). + +Outputs +------- +- `resources//heat_totals.csv`: Approximated annual heat demand for each country. """ from itertools import product @@ -14,7 +25,30 @@ from numpy.polynomial import Polynomial idx = pd.IndexSlice -def approximate_heat_demand(energy_totals, hdd): +def approximate_heat_demand(energy_totals: pd.DataFrame, hdd: pd.DataFrame): + """ + Approximate heat demand for a set of countries based on energy totals and + heating degree days (HDD). A polynomial regression of heat demand on HDDs + is performed on the data from 2007 to 2021. Then, for 2022 and 2023, the + heat demand is estimated from known HDDs based on the regression. + + Parameters + ---------- + energy_totals : pd.DataFrame + DataFrame with energy consumption by sector (columns), country and year. Output of :func:`scripts.build_energy_totals.py`. + hdd : pd.DataFrame + DataFrame with number of heating degree days by year (columns) and country (index). + + Returns + ------- + pd.DataFrame + DataFrame with approximated heat demand for each country. + + Notes + ----- + - Missing data is filled forward for GB in 2020 and backward for CH from 2007 to 2009. + - If only one year of heating data is available for a country, a point (0, 0) is added to make the polynomial fit work. + """ countries = hdd.columns.intersection(energy_totals.index.levels[0]) diff --git a/scripts/build_hourly_heat_demand.py b/scripts/build_hourly_heat_demand.py index 1fb4f5a4..0dcf3524 100644 --- a/scripts/build_hourly_heat_demand.py +++ b/scripts/build_hourly_heat_demand.py @@ -3,7 +3,31 @@ # # SPDX-License-Identifier: MIT """ -Build hourly heat demand time series from daily ones. +Build hourly heat demand time series from daily heat demand. + +Water and space heating demand profiles are generated using intraday profiles from BDEW. Different profiles are used for the residential and services sectors as well as weekdays and weekend. + +The daily heat demand is multiplied by the intraday profile to obtain the hourly heat demand time series. The rule is executed in ``build_sector.smk``. + + +Relevant Settings +----------------- + +.. code:: yaml + + snapshots: + drop_leap_day: + +Inputs +------ + +- ``data/heat_load_profile_BDEW.csv``: Intraday heat profile for water and space heating demand for the residential and services sectors for weekends and weekdays. +- ``resources/daily_heat_demand__elec_s_.nc``: Daily heat demand per cluster. + +Outputs +------- + +- ``resources/hourly_heat_demand__elec_s_.nc``: """ from itertools import product diff --git a/scripts/build_hydro_profile.py b/scripts/build_hydro_profile.py index cd51ce90..6a0315c7 100644 --- a/scripts/build_hydro_profile.py +++ b/scripts/build_hydro_profile.py @@ -139,7 +139,10 @@ def approximate_missing_eia_stats(eia_stats, runoff_fn, countries): runoff.index = runoff.index.astype(int) # fix outliers; exceptional floods in 1977-1979 in ES & PT - runoff.loc[1978, ["ES", "PT"]] = runoff.loc[1979, ["ES", "PT"]] + if "ES" in runoff: + runoff.loc[1978, "ES"] = runoff.loc[1979, "ES"] + if "PT" in runoff: + runoff.loc[1978, "PT"] = runoff.loc[1979, "PT"] runoff_eia = runoff.loc[eia_stats.index] diff --git a/scripts/build_industrial_distribution_key.py b/scripts/build_industrial_distribution_key.py index 7cba0af5..bfbba35e 100644 --- a/scripts/build_industrial_distribution_key.py +++ b/scripts/build_industrial_distribution_key.py @@ -4,6 +4,36 @@ # SPDX-License-Identifier: MIT """ Build spatial distribution of industries from Hotmaps database. + +Inputs +------- + +- ``resources/regions_onshore_elec_s{simpl}_{clusters}.geojson`` +- ``resources/pop_layout_elec_s{simpl}_{clusters}.csv`` + +Outputs +------- + +- ``resources/industrial_distribution_key_elec_s{simpl}_{clusters}.csv`` + +Description +------- + +This rule uses the `Hotmaps database `. After removing entries without valid locations, it assigns each industrial site to a bus region based on its location. +Then, it calculates the nodal distribution key for each sector based on the emissions of the industrial sites in each region. This leads to a distribution key of 1 if there is only one bus per country and <1 if there are multiple buses per country. The sum over buses of one country is 1. + +The following subcategories of industry are considered: +- Iron and steel +- Cement +- Refineries +- Paper and printing +- Chemical industry +- Glass +- Non-ferrous metals +- Non-metallic mineral products +- Other non-classified +Furthermore, the population distribution is added +- Population """ import logging diff --git a/scripts/build_industrial_energy_demand_per_country_today.py b/scripts/build_industrial_energy_demand_per_country_today.py index 8129177a..9c8f2e98 100644 --- a/scripts/build_industrial_energy_demand_per_country_today.py +++ b/scripts/build_industrial_energy_demand_per_country_today.py @@ -4,6 +4,60 @@ # SPDX-License-Identifier: MIT """ Build industrial energy demand per country. + +Inputs +------- + +- ``data/bundle/jrc-idees-2015`` +- ``industrial_production_per_country.csv`` + +Outputs +------- + +- ``resources/industrial_energy_demand_per_country_today.csv`` + +Description +------- + +This rule uses the industrial_production_per_country.csv file and the JRC-IDEES data to derive an energy demand per country and sector. If the country is not in the EU28, an average energy demand depending on the production volume is derived. +For each country and each subcategory of + +- Alumina production +- Aluminium - primary production +- Aluminium - secondary production +- Ammonia +- Cement +- Ceramics & other NMM +- Chlorine +- Electric arc +- Food, beverages and tobacco +- Glass production +- HVC +- Integrated steelworks +- Machinery Equipment +- Methanol +- Other Industrial Sectors +- Other chemicals +- Other non-ferrous metals +- Paper production +- Pharmaceutical products etc. +- Printing and media reproduction +- Pulp production +- Textiles and leather +- Transport Equipment +- Wood and wood products + +the output file contains the energy demand in TWh/a for the following carriers + +- biomass +- electricity +- gas +- heat +- hydrogen +- liquid +- other +- solid +- waste """ import multiprocessing as mp diff --git a/scripts/build_industrial_energy_demand_per_node.py b/scripts/build_industrial_energy_demand_per_node.py index ce72ea7a..eb022dae 100644 --- a/scripts/build_industrial_energy_demand_per_node.py +++ b/scripts/build_industrial_energy_demand_per_node.py @@ -4,6 +4,36 @@ # SPDX-License-Identifier: MIT """ Build industrial energy demand per model region. + +Inputs +------ + +- ``resources/industrial_energy_demand_today_elec_s{simpl}_{clusters}.csv`` +- ``resources/industry_sector_ratios_{planning_horizons}.csv`` +- ``resources/industrial_production_elec_s{simpl}_{clusters}_{planning_horizons}.csv`` + +Outputs +------- + +- ``resources/industrial_energy_demand_elec_s{simpl}_{clusters}_{planning_horizons}.csv`` + +Description +------- +This rule aggregates the energy demand of the industrial sectors per model region. +For each bus, the following carriers are considered: +- electricity +- coal +- coke +- solid biomass +- methane +- hydrogen +- low-temperature heat +- naphtha +- ammonia +- process emission +- process emission from feedstock + +which can later be used as values for the industry load. """ import pandas as pd diff --git a/scripts/build_industrial_energy_demand_per_node_today.py b/scripts/build_industrial_energy_demand_per_node_today.py index 8b2b70a0..7a1ee7ac 100644 --- a/scripts/build_industrial_energy_demand_per_node_today.py +++ b/scripts/build_industrial_energy_demand_per_node_today.py @@ -4,6 +4,25 @@ # SPDX-License-Identifier: MIT """ Build industrial energy demand per model region. + +Inputs +------- + +- ``resources/industrial_distribution_key_elec_s{simpl}_{clusters}.csv`` +- ``resources/industrial_energy_demand_per_country_today.csv`` + +Outputs +------- + +- ``resources/industrial_energy_demand_per_node_today_elec_s{simpl}_{clusters}.csv`` + +Description +------- + +This rule maps the industrial energy demand per country `industrial_energy_demand_per_country_today.csv` to each bus region. +The energy demand per country is multiplied by the mapping value from the file ``industrial_distribution_key_elec_s{simpl}_{clusters}.csv`` between 0 and 1 to get the industrial energy demand per bus. + +The unit of the energy demand is TWh/a. """ from itertools import product diff --git a/scripts/build_industrial_production_per_country.py b/scripts/build_industrial_production_per_country.py index 5c14b065..45806205 100644 --- a/scripts/build_industrial_production_per_country.py +++ b/scripts/build_industrial_production_per_country.py @@ -3,7 +3,62 @@ # # SPDX-License-Identifier: MIT """ -Build industrial production per country. +This rule builds the historical industrial production per country. + +Relevant Settings +----------------- + +.. code:: yaml + + countries: +.. + +Inputs +------- +- ``resources/ammonia_production.csv`` +- ``data/bundle-sector/jrc-idees-2015`` +- ``data/eurostat`` + +Outputs +------- + +- ``resources/industrial_production_per_country.csv`` + +Description +------- + +The industrial production is taken from the `JRC-IDEES `. +This dataset provides detailed information about the consumption of energy for various processes. +If the country is not part of the EU28, the energy consumption in the industrial sectors is taken from the `Eurostat ` dataset. The industrial production is calculated for the year specified in the config["industry"]["reference_year"]. + +The ammonia production is provided by the rule `build_ammonia_production `. Since Switzerland is not part of the EU28 nor reported by eurostat, the energy consumption in the industrial sectors is taken from the `BFE dataset. +After the industrial production is calculated, the basic chemicals are separated into ammonia, chlorine, methanol and HVC. The production of these chemicals is assumed to be proportional to the production of basic chemicals without ammonia. + +The following subcategories [kton/a] are considered: +- Electric arc +- Integrated steelworks +- Other chemicals +- Pharmaceutical products etc. +- Cement +- Ceramics & other NMM +- Glass production +- Pulp production +- Paper production +- Printing and media reproduction +- Food, beverages and tobacco +- Alumina production +- Aluminium - primary production +- Aluminium - secondary production +- Other non-ferrous metals +- Transport Equipment +- Machinery Equipment +- Textiles and leather +- Wood and wood products +- Other Industrial Sectors +- Ammonia +- HVC +- Chlorine +- Methanol """ import logging diff --git a/scripts/build_industrial_production_per_country_tomorrow.py b/scripts/build_industrial_production_per_country_tomorrow.py index a8b6c312..9bcb7e5a 100644 --- a/scripts/build_industrial_production_per_country_tomorrow.py +++ b/scripts/build_industrial_production_per_country_tomorrow.py @@ -4,6 +4,59 @@ # SPDX-License-Identifier: MIT """ Build future industrial production per country. + +Relevant Settings +----------------- + +.. code:: yaml + + industry: + St_primary_fraction: + DRI_fraction: + Al_primary_fraction: + HVC_primary_fraction: + HVC_mechanical_recycling_fraction: + HVC_chemical_recycling_fraction: +.. seealso:: + Documentation of the configuration file ``config/config.yaml`` at + :ref:`industry` + +Inputs +------- + +- ``resources/industrial_production_per_country.csv`` + +Outputs +------- + +- ``resources/industrial_production_per_country_tomorrow_{planning_horizons}.csv`` + +Description +------- + +This rule uses the ``industrial_production_per_country.csv`` file and the expected recycling rates to calculate the future production of the industrial sectors. + +**St_primary_fraction** +The fraction of steel that is coming from primary production. This is more energy intensive than recycling steel (secondary production). + +**DRI_fraction** +The fraction of primary steel that is produced in DRI plants. + +**Al_primary_fraction** +The fraction of aluminium that is coming from primary production. This is more energy intensive than recycling aluminium (secondary production). + +**HVC_primary_fraction** +The fraction of high value chemicals that are coming from primary production (crude oil or Fischer Tropsch). + +**HVC_mechanical_recycling_fraction** +The fraction of high value chemicals that are coming from mechanical recycling. + +**HVC_chemical_recycling_fraction** +The fraction of high value chemicals that are coming from chemical recycling. + +If not already present, the information is added as new column in the output file. + +The unit of the production is kt/a. """ import pandas as pd diff --git a/scripts/build_industrial_production_per_node.py b/scripts/build_industrial_production_per_node.py index 1eeecbae..d3edfa45 100644 --- a/scripts/build_industrial_production_per_node.py +++ b/scripts/build_industrial_production_per_node.py @@ -4,6 +4,25 @@ # SPDX-License-Identifier: MIT """ Build industrial production per model region. + +Inputs +------- + +- ``resources/industrial_distribution_key_elec_s{simpl}_{clusters}.csv`` +- ``resources/industrial_production_per_country_tomorrow_{planning_horizons}.csv`` + +Outputs +------- + +- ``resources/industrial_production_per_node_elec_s{simpl}_{clusters}_{planning_horizons}.csv`` + +Description +------- + +This rule maps the industrial production per country from a certain time horizon to each bus region. +The mapping file provides a value between 0 and 1 for each bus and industry subcategory, indicating the share of the country's production of that sector in that bus. +The industrial production per country is multiplied by the mapping value to get the industrial production per bus. +The unit of the production is kt/a. """ from itertools import product diff --git a/scripts/build_industry_sector_ratios.py b/scripts/build_industry_sector_ratios.py index 52e83f60..b7a62d91 100644 --- a/scripts/build_industry_sector_ratios.py +++ b/scripts/build_industry_sector_ratios.py @@ -3,7 +3,49 @@ # # SPDX-License-Identifier: MIT """ -Build specific energy consumption by carrier and industries. +Build best case specific energy consumption by carrier and category. + +Relevant Settings +----------------- + +.. code:: yaml + + industry: + ammonia: +.. + +Inputs +------- +- ``resources/ammonia_production.csv`` +- ``data/bundle-sector/jrc-idees-2015`` + +Outputs +------- + +- ``resources/industry_sector_ratios.csv`` + +Description +------- + +This script uses the `JRC-IDEES ` data to calculate an EU28 average specific energy consumption by carrier and industries. +The industries are according to the rule `industrial_production_per_country `. + +The following carriers are considered: +- elec +- coal +- coke +- biomass +- methane +- hydrogen +- heat +- naphtha +- process emission +- process emission from feedstock +- (ammonia) + +If the `config["industry"]["ammonia"] ` is set to true the ammonia demand is not converted to hydrogen and electricity but is considered as a separate carrier. + +The unit of the specific energy consumption is MWh/t material and tCO2/t material for process emissions. """ import pandas as pd @@ -68,6 +110,7 @@ index = [ "heat", "naphtha", "ammonia", + "methanol", "process emission", "process emission from feedstock", ] @@ -313,7 +356,7 @@ def chemicals_industry(): df.loc["methane", sector] += s_fec["Natural gas"] # LPG and other feedstock materials are assimilated to naphtha - # since they will be produced through Fischer-Tropsh process + # since they will be produced through Fischer-Tropsch process sel = [ "Solids", "Refinery gas", @@ -456,8 +499,7 @@ def chemicals_industry(): sector = "Methanol" df[sector] = 0.0 - df.loc["methane", sector] = params["MWh_CH4_per_tMeOH"] - df.loc["elec", sector] = params["MWh_elec_per_tMeOH"] + df.loc["methanol", sector] = params["MWh_MeOH_per_tMeOH"] # Other chemicals diff --git a/scripts/build_industry_sector_ratios_intermediate.py b/scripts/build_industry_sector_ratios_intermediate.py index 14e09505..5fe042ab 100644 --- a/scripts/build_industry_sector_ratios_intermediate.py +++ b/scripts/build_industry_sector_ratios_intermediate.py @@ -6,6 +6,77 @@ Build specific energy consumption by carrier and industries and by country, that interpolates between the current average energy consumption (from 2015-2020) and the ideal future best-in-class consumption. + +Relevant Settings +----------------- + +.. code:: yaml + + industry: + sector_ratios_fraction_future: + ammonia: + +Inputs +------ + +- ``resources/industry_sector_ratios.csv`` +- ``resources/industrial_energy_demand_per_country_today.csv`` +- ``resources/industrial_production_per_country.csv`` + +Outputs +------- + +- ``resources/industry_sector_ratios_{planning_horizons}.csv`` + +Description +------- + +The config["industry"]["sector_ratios_fraction_future"] parameter determines the progress towards the future best-in-class consumption. +For each bus, the following industry subcategories + +- Electric arc +- DRI + Electric arc +- Integrated steelworks +- HVC +- HVC (mechanical recycling) +- HVC (chemical recycling) +- Ammonia +- Chlorine +- Methanol +- Other chemicals +- Pharmaceutical products etc. +- Cement +- Ceramics & other NMM +- Glass production +- Pulp production +- Paper production +- Printing and media reproduction +- Food, beverages and tobacco +- Alumina production +- Aluminium - primary production +- Aluminium - secondary production +- Other non-ferrous metals +- Transport Equipment +- Machinery Equipment +- Textiles and leather +- Wood and wood products +- Other Industrial Sectors + +with the following carriers are considered: + +- elec +- coal +- coke +- biomass +- methane +- hydrogen +- heat +- naphtha +- process emission +- process emission from feedstock +- (ammonia) + +Unit of the output file is MWh/t. """ import pandas as pd @@ -51,11 +122,14 @@ def build_industry_sector_ratios_intermediate(): intermediate_sector_ratios = {} for ct, group in today_sector_ratios.T.groupby(level=0): - today_sector_ratios_ct = ( - group.droplevel(0) - .T.reindex_like(future_sector_ratios) - .fillna(future_sector_ratios) - ) + today_sector_ratios_ct = group.droplevel(0).T.reindex_like(future_sector_ratios) + missing_mask = today_sector_ratios_ct.isna().all() + today_sector_ratios_ct.loc[:, missing_mask] = future_sector_ratios.loc[ + :, missing_mask + ] + today_sector_ratios_ct.loc[:, ~missing_mask] = today_sector_ratios_ct.loc[ + :, ~missing_mask + ].fillna(0) intermediate_sector_ratios[ct] = ( today_sector_ratios_ct * (1 - fraction_future) + future_sector_ratios * fraction_future diff --git a/scripts/build_line_rating.py b/scripts/build_line_rating.py index f9c71ea3..f4b01fe0 100755 --- a/scripts/build_line_rating.py +++ b/scripts/build_line_rating.py @@ -55,7 +55,6 @@ import re import atlite import geopandas as gpd import numpy as np -import pandas as pd import pypsa import xarray as xr from _helpers import configure_logging, get_snapshots, set_scenario_config diff --git a/scripts/build_natura_raster.py b/scripts/build_natura_raster.py deleted file mode 100644 index 35fb0dbd..00000000 --- a/scripts/build_natura_raster.py +++ /dev/null @@ -1,118 +0,0 @@ -# -*- coding: utf-8 -*- -# SPDX-FileCopyrightText: : 2017-2024 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: MIT -""" -Rasters the vector data of the `Natura 2000. - -`_ natural protection areas onto all -cutout regions. - -Relevant Settings ------------------ - -.. code:: yaml - - renewable: - {technology}: - cutout: - -.. seealso:: - Documentation of the configuration file ``config/config.yaml`` at - :ref:`renewable_cf` - -Inputs ------- - -- ``data/bundle/natura/Natura2000_end2015.shp``: `Natura 2000 `_ natural protection areas. - - .. image:: img/natura.png - :scale: 33 % - -Outputs -------- - -- ``resources/natura.tiff``: Rasterized version of `Natura 2000 `_ natural protection areas to reduce computation times. - - .. image:: img/natura.png - :scale: 33 % - -Description ------------ -""" - -import logging - -import atlite -import geopandas as gpd -import rasterio as rio -from _helpers import configure_logging, set_scenario_config -from rasterio.features import geometry_mask -from rasterio.warp import transform_bounds - -logger = logging.getLogger(__name__) - - -def determine_cutout_xXyY(cutout_name): - """ - Determine the full extent of a cutout. - - Since the coordinates of the cutout data are given as the - center of the grid cells, the extent of the cutout is - calculated by adding/subtracting half of the grid cell size. - - - Parameters - ---------- - cutout_name : str - Path to the cutout. - - Returns - ------- - A list of extent coordinates in the order [x, X, y, Y]. - """ - cutout = atlite.Cutout(cutout_name) - assert cutout.crs.to_epsg() == 4326 - x, X, y, Y = cutout.extent - dx, dy = cutout.dx, cutout.dy - return [x - dx / 2.0, X + dx / 2.0, y - dy / 2.0, Y + dy / 2.0] - - -def get_transform_and_shape(bounds, res): - left, bottom = [(b // res) * res for b in bounds[:2]] - right, top = [(b // res + 1) * res for b in bounds[2:]] - shape = int((top - bottom) // res), int((right - left) / res) - transform = rio.Affine(res, 0, left, 0, -res, top) - return transform, shape - - -if __name__ == "__main__": - if "snakemake" not in globals(): - from _helpers import mock_snakemake - - snakemake = mock_snakemake("build_natura_raster") - configure_logging(snakemake) - set_scenario_config(snakemake) - - x, X, y, Y = determine_cutout_xXyY(snakemake.input.cutout) - bounds = transform_bounds(4326, 3035, x, y, X, Y) - transform, out_shape = get_transform_and_shape(bounds, res=100) - - # adjusted boundaries - shapes = gpd.read_file(snakemake.input.natura).to_crs(3035) - raster = ~geometry_mask(shapes.geometry, out_shape, transform) - raster = raster.astype(rio.uint8) - - with rio.open( - snakemake.output[0], - "w", - driver="GTiff", - dtype=rio.uint8, - count=1, - transform=transform, - crs=3035, - compress="lzw", - width=raster.shape[1], - height=raster.shape[0], - ) as dst: - dst.write(raster, indexes=1) diff --git a/scripts/build_powerplants.py b/scripts/build_powerplants.py index 66a01624..4e2bb88f 100755 --- a/scripts/build_powerplants.py +++ b/scripts/build_powerplants.py @@ -148,7 +148,11 @@ def add_everywhere_powerplants(ppl, substations, everywhere_powerplants): def replace_natural_gas_technology(df): - mapping = {"Steam Turbine": "CCGT", "Combustion Engine": "OCGT"} + mapping = { + "Steam Turbine": "CCGT", + "Combustion Engine": "OCGT", + "Not Found": "CCGT", + } tech = df.Technology.replace(mapping).fillna("CCGT") return df.Technology.mask(df.Fueltype == "Natural Gas", tech) diff --git a/scripts/build_renewable_profiles.py b/scripts/build_renewable_profiles.py index f1eb5e15..0aef89bc 100644 --- a/scripts/build_renewable_profiles.py +++ b/scripts/build_renewable_profiles.py @@ -26,7 +26,7 @@ Relevant settings renewable: {technology}: - cutout: corine: luisa: grid_codes: distance: natura: max_depth: + cutout: corine: luisa: grid_codes: distance: natura: max_depth: min_depth: max_shore_distance: min_shore_distance: capacity_per_sqkm: correction_factor: min_p_max_pu: clip_p_max_pu: resource: @@ -52,7 +52,7 @@ Inputs CORINE land cover, see `Annex 1 of the technical documentation `_. -- ``data/bundle/GEBCO_2014_2D.nc``: A `bathymetric +- ``data/bundle/gebco/GEBCO_2014_2D.nc``: A `bathymetric `_ data set with a global terrain model for ocean and land at 15 arc-second intervals by the `General Bathymetric Chart of the Oceans (GEBCO) @@ -284,6 +284,12 @@ if __name__ == "__main__": func = functools.partial(np.greater, -params["max_depth"]) excluder.add_raster(snakemake.input.gebco, codes=func, crs=4326, nodata=-1000) + if params.get("min_depth"): + func = functools.partial(np.greater, -params["min_depth"]) + excluder.add_raster( + snakemake.input.gebco, codes=func, crs=4326, nodata=-1000, invert=True + ) + if "min_shore_distance" in params: buffer = params["min_shore_distance"] excluder.add_geometry(snakemake.input.country_shapes, buffer=buffer) diff --git a/scripts/build_shapes.py b/scripts/build_shapes.py index fd64411a..85afdaea 100644 --- a/scripts/build_shapes.py +++ b/scripts/build_shapes.py @@ -38,7 +38,7 @@ Inputs - ``data/bundle/nama_10r_3popgdp.tsv.gz``: Average annual population by NUTS3 region (`eurostat `__) - ``data/bundle/nama_10r_3gdp.tsv.gz``: Gross domestic product (GDP) by NUTS 3 regions (`eurostat `__) -- ``data/bundle/ch_cantons.csv``: Mapping between Swiss Cantons and NUTS3 regions +- ``data/ch_cantons.csv``: Mapping between Swiss Cantons and NUTS3 regions - ``data/bundle/je-e-21.03.02.xls``: Population and GDP data per Canton (`BFS - Swiss Federal Statistical Office `_ ) Outputs diff --git a/scripts/build_ship_raster.py b/scripts/build_ship_raster.py index 47d725d8..12befe99 100644 --- a/scripts/build_ship_raster.py +++ b/scripts/build_ship_raster.py @@ -45,12 +45,38 @@ import logging import zipfile from pathlib import Path +import atlite import rioxarray from _helpers import configure_logging, set_scenario_config -from build_natura_raster import determine_cutout_xXyY logger = logging.getLogger(__name__) + +def determine_cutout_xXyY(cutout_name): + """ + Determine the full extent of a cutout. + + Since the coordinates of the cutout data are given as the + center of the grid cells, the extent of the cutout is + calculated by adding/subtracting half of the grid cell size. + + + Parameters + ---------- + cutout_name : str + Path to the cutout. + + Returns + ------- + A list of extent coordinates in the order [x, X, y, Y]. + """ + cutout = atlite.Cutout(cutout_name) + assert cutout.crs.to_epsg() == 4326 + x, X, y, Y = cutout.extent + dx, dy = cutout.dx, cutout.dy + return [x - dx / 2.0, X + dx / 2.0, y - dy / 2.0, Y + dy / 2.0] + + if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake diff --git a/scripts/build_solar_thermal_profiles.py b/scripts/build_solar_thermal_profiles.py index bb5180b9..9de04f45 100644 --- a/scripts/build_solar_thermal_profiles.py +++ b/scripts/build_solar_thermal_profiles.py @@ -3,7 +3,36 @@ # # SPDX-License-Identifier: MIT """ -Build solar thermal collector time series. +Build solar thermal collector profile time series. + +Uses ``atlite.Cutout.solar_thermal` to compute heat generation for clustered onshore regions from population layout and weather data cutout. +The rule is executed in ``build_sector.smk``. + +.. seealso:: + `Atlite.Cutout.solar_thermal `_ + +Relevant Settings +----------------- + +.. code:: yaml + + snapshots: + drop_leap_day: + solar_thermal: + atlite: + default_cutout: + +Inputs +------ + +- ``resources/.nc``: +- ``resources/_.geojson``: +- ``cutout``: Weather data cutout, as specified in config + +Outputs +------- + +- ``resources/solar_thermal__elec_s_.nc``: """ import atlite diff --git a/scripts/build_temperature_profiles.py b/scripts/build_temperature_profiles.py index 00c88b5b..493bd08f 100644 --- a/scripts/build_temperature_profiles.py +++ b/scripts/build_temperature_profiles.py @@ -4,6 +4,36 @@ # SPDX-License-Identifier: MIT """ Build time series for air and soil temperatures per clustered model region. + +Uses ``atlite.Cutout.temperature`` and ``atlite.Cutout.soil_temperature compute temperature ambient air and soil temperature for the respective cutout. The rule is executed in ``build_sector.smk``. + + +.. seealso:: + `Atlite.Cutout.temperature `_ + `Atlite.Cutout.soil_temperature `_ + +Relevant Settings +----------------- + +.. code:: yaml + + snapshots: + drop_leap_day: + atlite: + default_cutout: + +Inputs +------ + +- ``resources//pop_layout_.nc``: +- ``resources//regions_onshore_elec_s_.geojson``: +- ``cutout``: Weather data cutout, as specified in config + +Outputs +------- + +- ``resources/temp_soil__elec_s_.nc``: +- ``resources/temp_air__elec_s_.nc` """ import atlite diff --git a/scripts/build_transport_demand.py b/scripts/build_transport_demand.py index 35f22a80..4a29667a 100644 --- a/scripts/build_transport_demand.py +++ b/scripts/build_transport_demand.py @@ -24,14 +24,17 @@ logger = logging.getLogger(__name__) def build_nodal_transport_data(fn, pop_layout, year): + # get numbers of car and fuel efficiency per country transport_data = pd.read_csv(fn, index_col=[0, 1]) transport_data = transport_data.xs(min(2015, year), level="year") + # break number of cars down to nodal level based on population density nodal_transport_data = transport_data.loc[pop_layout.ct].fillna(0.0) nodal_transport_data.index = pop_layout.index nodal_transport_data["number cars"] = ( pop_layout["fraction"] * nodal_transport_data["number cars"] ) + # fill missing fuel efficiency with average data nodal_transport_data.loc[ nodal_transport_data["average fuel efficiency"] == 0.0, "average fuel efficiency", @@ -41,10 +44,13 @@ def build_nodal_transport_data(fn, pop_layout, year): def build_transport_demand(traffic_fn, airtemp_fn, nodes, nodal_transport_data): - ## Get overall demand curve for all vehicles - + """ + Returns transport demand per bus in unit km driven [100 km]. + """ + # averaged weekly counts from the year 2010-2015 traffic = pd.read_csv(traffic_fn, skiprows=2, usecols=["count"]).squeeze("columns") + # create annual profile take account time zone + summer time transport_shape = generate_periodic_profiles( dt_index=snapshots, nodes=nodes, @@ -52,15 +58,6 @@ def build_transport_demand(traffic_fn, airtemp_fn, nodes, nodal_transport_data): ) transport_shape = transport_shape / transport_shape.sum() - # electric motors are more efficient, so alter transport demand - - plug_to_wheels_eta = options["bev_plug_to_wheel_efficiency"] - battery_to_wheels_eta = plug_to_wheels_eta * options["bev_charge_efficiency"] - - efficiency_gain = ( - nodal_transport_data["average fuel efficiency"] / battery_to_wheels_eta - ) - # get heating demand for correction to demand time series temperature = xr.open_dataarray(airtemp_fn).to_pandas() @@ -73,28 +70,21 @@ def build_transport_demand(traffic_fn, airtemp_fn, nodes, nodal_transport_data): options["ICE_upper_degree_factor"], ) - dd_EV = transport_degree_factor( - temperature, - options["transport_heating_deadband_lower"], - options["transport_heating_deadband_upper"], - options["EV_lower_degree_factor"], - options["EV_upper_degree_factor"], - ) - # divide out the heating/cooling demand from ICE totals - # and multiply back in the heating/cooling demand for EVs ice_correction = (transport_shape * (1 + dd_ICE)).sum() / transport_shape.sum() + # unit TWh energy_totals_transport = ( pop_weighted_energy_totals["total road"] + pop_weighted_energy_totals["total rail"] - pop_weighted_energy_totals["electricity rail"] ) - return ( - (transport_shape.multiply(energy_totals_transport) * 1e6 * nyears) - .divide(efficiency_gain * ice_correction) - .multiply(1 + dd_EV) + # average fuel efficiency in MWh/100 km + eff = nodal_transport_data["average fuel efficiency"] + + return (transport_shape.multiply(energy_totals_transport) * 1e6 * nyears).divide( + eff * ice_correction ) @@ -131,11 +121,14 @@ def bev_availability_profile(fn, snapshots, nodes, options): """ Derive plugged-in availability for passenger electric vehicles. """ + # car count in typical week traffic = pd.read_csv(fn, skiprows=2, usecols=["count"]).squeeze("columns") - + # maximum share plugged-in availability for passenger electric vehicles avail_max = options["bev_avail_max"] + # average share plugged-in availability for passenger electric vehicles avail_mean = options["bev_avail_mean"] + # linear scaling, highest when traffic is lowest, decreases if traffic increases avail = avail_max - (avail_max - avail_mean) * (traffic - traffic.min()) / ( traffic.mean() - traffic.min() ) @@ -156,6 +149,8 @@ def bev_availability_profile(fn, snapshots, nodes, options): def bev_dsm_profile(snapshots, nodes, options): dsm_week = np.zeros((24 * 7,)) + # assuming that at a certain time ("bev_dsm_restriction_time") EVs have to + # be charged to a minimum value (defined in bev_dsm_restriction_value) dsm_week[(np.arange(0, 7, 1) * 24 + options["bev_dsm_restriction_time"])] = options[ "bev_dsm_restriction_value" ] @@ -167,6 +162,7 @@ def bev_dsm_profile(snapshots, nodes, options): ) +# %% if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake @@ -174,7 +170,7 @@ if __name__ == "__main__": snakemake = mock_snakemake( "build_transport_demand", simpl="", - clusters=60, + clusters=128, ) configure_logging(snakemake) set_scenario_config(snakemake) diff --git a/scripts/cluster_network.py b/scripts/cluster_network.py index 87762b36..da7bd178 100644 --- a/scripts/cluster_network.py +++ b/scripts/cluster_network.py @@ -122,7 +122,6 @@ Exemplary unsolved network clustered to 37 nodes: """ import logging -import os import warnings from functools import reduce diff --git a/scripts/make_summary.py b/scripts/make_summary.py index 8c2a1aea..5746697b 100644 --- a/scripts/make_summary.py +++ b/scripts/make_summary.py @@ -413,6 +413,85 @@ def calculate_supply_energy(n, label, supply_energy): return supply_energy +def calculate_nodal_supply_energy(n, label, nodal_supply_energy): + """ + Calculate the total energy supply/consumption of each component at the + buses aggregated by carrier and node. + """ + + bus_carriers = n.buses.carrier.unique() + + for i in bus_carriers: + bus_map = n.buses.carrier == i + bus_map.at[""] = False + + 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 = ( + pd.concat( + [ + ( + c.pnl.p[items] + .multiply(n.snapshot_weightings.generators, axis=0) + .sum() + .multiply(c.df.loc[items, "sign"]) + ), + c.df.loc[items][["bus", "carrier"]], + ], + axis=1, + ) + .groupby(by=["bus", "carrier"]) + .sum()[0] + ) + s = pd.concat([s], keys=[c.list_name]) + s = pd.concat([s], keys=[i]) + + nodal_supply_energy = nodal_supply_energy.reindex( + s.index.union(nodal_supply_energy.index) + ) + nodal_supply_energy.loc[s.index, label] = 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).fillna(False)] + + if (len(items) == 0) or c.pnl["p" + end].empty: + continue + + s = ( + pd.concat( + [ + ( + (-1) + * c.pnl["p" + end][items] + .multiply(n.snapshot_weightings.generators, axis=0) + .sum() + ), + c.df.loc[items][["bus0", "carrier"]], + ], + axis=1, + ) + .groupby(by=["bus0", "carrier"]) + .sum()[0] + ) + + s.index = s.index.map(lambda x: (x[0], x[1] + end)) + s = pd.concat([s], keys=[c.list_name]) + s = pd.concat([s], keys=[i]) + + nodal_supply_energy = nodal_supply_energy.reindex( + s.index.union(nodal_supply_energy.index) + ) + + nodal_supply_energy.loc[s.index, label] = s + + return nodal_supply_energy + + def calculate_metrics(n, label, metrics): metrics_list = [ "line_volume", @@ -637,6 +716,7 @@ def make_summaries(networks_dict): "energy", "supply", "supply_energy", + "nodal_supply_energy", "prices", "weighted_prices", "price_statistics", diff --git a/scripts/plot_summary.py b/scripts/plot_summary.py index bfe9995f..d131e937 100644 --- a/scripts/plot_summary.py +++ b/scripts/plot_summary.py @@ -60,6 +60,7 @@ def rename_techs(label): "offwind": "offshore wind", "offwind-ac": "offshore wind (AC)", "offwind-dc": "offshore wind (DC)", + "offwind-float": "offshore wind (Float)", "onwind": "onshore wind", "ror": "hydroelectricity", "hydro": "hydroelectricity", @@ -352,7 +353,7 @@ def plot_balances(): frameon=False, ) - fig.savefig(snakemake.output.balances[:-10] + k + ".pdf", bbox_inches="tight") + fig.savefig(snakemake.output.balances[:-10] + k + ".svg", bbox_inches="tight") def historical_emissions(countries): @@ -476,9 +477,10 @@ def plot_carbon_budget_distribution(input_eurostat, options): ) emissions = historical_emissions(countries) # add other years https://sdi.eea.europa.eu/data/0569441f-2853-4664-a7cd-db969ef54de0 - emissions.loc[2019] = 2.971372 - emissions.loc[2020] = 2.691958 - emissions.loc[2021] = 2.869355 + emissions.loc[2019] = 3.414362 + emissions.loc[2020] = 3.092434 + emissions.loc[2021] = 3.290418 + emissions.loc[2022] = 3.213025 if snakemake.config["foresight"] == "myopic": path_cb = "results/" + snakemake.params.RDIR + "/csvs/" @@ -561,7 +563,7 @@ def plot_carbon_budget_distribution(input_eurostat, options): ) plt.grid(axis="y") - path = snakemake.output.balances.split("balances")[0] + "carbon_budget.pdf" + path = snakemake.output.balances.split("balances")[0] + "carbon_budget.svg" plt.savefig(path, bbox_inches="tight") diff --git a/scripts/prepare_perfect_foresight.py b/scripts/prepare_perfect_foresight.py index fea0cef4..c5e4caf9 100644 --- a/scripts/prepare_perfect_foresight.py +++ b/scripts/prepare_perfect_foresight.py @@ -7,7 +7,6 @@ Concats pypsa networks of single investment periods to one network. """ import logging -import re import numpy as np import pandas as pd diff --git a/scripts/prepare_sector_network.py b/scripts/prepare_sector_network.py old mode 100755 new mode 100644 index a0b36286..adeb8319 --- a/scripts/prepare_sector_network.py +++ b/scripts/prepare_sector_network.py @@ -29,6 +29,7 @@ from build_energy_totals import ( build_eurostat, build_eurostat_co2, ) +from build_transport_demand import transport_degree_factor from networkx.algorithms import complement from networkx.algorithms.connectivity.edge_augmentation import k_edge_augmentation from prepare_network import maybe_adjust_costs_and_potentials @@ -150,10 +151,12 @@ def define_spatial(nodes, options): if options["regional_methanol_demand"]: spatial.methanol.demand_locations = nodes + spatial.methanol.industry = nodes + " industry methanol" spatial.methanol.shipping = nodes + " shipping methanol" else: spatial.methanol.demand_locations = ["EU"] spatial.methanol.shipping = ["EU shipping methanol"] + spatial.methanol.industry = ["EU industry methanol"] # oil spatial.oil = SimpleNamespace() @@ -198,6 +201,11 @@ def define_spatial(nodes, options): spatial.lignite.nodes = ["EU lignite"] spatial.lignite.locations = ["EU"] + # deep geothermal + spatial.geothermal_heat = SimpleNamespace() + spatial.geothermal_heat.nodes = ["EU enhanced geothermal systems"] + spatial.geothermal_heat.locations = ["EU"] + return spatial @@ -453,7 +461,7 @@ def update_wind_solar_costs(n, costs): clustermaps = busmap_s.map(busmap) # code adapted from pypsa-eur/scripts/add_electricity.py - for connection in ["dc", "ac"]: + for connection in ["dc", "ac", "float"]: tech = "offwind-" + connection if tech not in n.generators.carrier.values: continue @@ -814,33 +822,6 @@ def add_co2limit(n, options, nyears=1.0, limit=0.0): ) -# TODO PyPSA-Eur merge issue -def average_every_nhours(n, offset): - logger.info(f"Resampling the network to {offset}") - m = n.copy(with_time=False) - - snapshot_weightings = n.snapshot_weightings.resample(offset).sum() - sns = snapshot_weightings.index - if snakemake.params.drop_leap_day: - sns = sns[~((sns.month == 2) & (sns.day == 29))] - snapshot_weightings = snapshot_weightings.loc[sns] - m.set_snapshots(snapshot_weightings.index) - m.snapshot_weightings = snapshot_weightings - - for c in n.iterate_components(): - pnl = getattr(m, c.list_name + "_t") - for k, df in c.pnl.items(): - if not df.empty: - if c.list_name == "stores" and k == "e_max_pu": - pnl[k] = df.resample(offset).min() - elif c.list_name == "stores" and k == "e_min_pu": - pnl[k] = df.resample(offset).max() - else: - pnl[k] = df.resample(offset).mean() - - return m - - def cycling_shift(df, steps=1): """ Cyclic shift on index of pd.Series|pd.DataFrame by number of steps. @@ -911,8 +892,6 @@ def add_ammonia(n, costs): nodes = pop_layout.index - cf_industry = snakemake.params.industry - n.add("Carrier", "NH3") n.madd( @@ -999,6 +978,18 @@ def insert_electricity_distribution_grid(n, costs): capital_cost=costs.at["electricity distribution grid", "fixed"] * cost_factor, ) + # deduct distribution losses from electricity demand as these are included in total load + # https://nbviewer.org/github/Open-Power-System-Data/datapackage_timeseries/blob/2020-10-06/main.ipynb + if ( + efficiency := options["transmission_efficiency"] + .get("electricity distribution grid", {}) + .get("efficiency_static") + ): + logger.info( + f"Deducting distribution losses from electricity demand: {np.around(100*(1-efficiency), decimals=2)}%" + ) + n.loads_t.p_set.loc[:, n.loads.carrier == "electricity"] *= efficiency + # this catches regular electricity load and "industry electricity" and # "agriculture machinery electric" and "agriculture electricity" loads = n.loads.index[n.loads.carrier.str.contains("electric")] @@ -1030,9 +1021,9 @@ def insert_electricity_distribution_grid(n, costs): else: pop_solar = pop_layout.total.rename(index=lambda x: x + " solar") - # add max solar rooftop potential assuming 0.1 kW/m2 and 10 m2/person, - # i.e. 1 kW/person (population data is in thousands of people) so we get MW - potential = 0.1 * 10 * pop_solar + # add max solar rooftop potential assuming 0.1 kW/m2 and 20 m2/person, + # i.e. 2 kW/person (population data is in thousands of people) so we get MW + potential = 0.1 * 20 * pop_solar n.madd( "Generator", @@ -1120,7 +1111,7 @@ def insert_gas_distribution_costs(n, costs): def add_electricity_grid_connection(n, costs): - carriers = ["onwind", "solar"] + carriers = ["onwind", "solar", "solar-hsat"] gens = n.generators.index[n.generators.carrier.isin(carriers)] @@ -1508,11 +1499,224 @@ def add_storage_and_grids(n, costs): ) +def check_land_transport_shares(shares): + # Sums up the shares, ignoring None values + total_share = sum(filter(None, shares)) + if total_share != 1: + logger.warning( + f"Total land transport shares sum up to {total_share:.2%}," + "corresponding to increased or decreased demand assumptions." + ) + + +def get_temp_efficency( + car_efficiency, + temperature, + deadband_lw, + deadband_up, + degree_factor_lw, + degree_factor_up, +): + """ + Correct temperature depending on heating and cooling for respective car + type. + """ + # temperature correction for EVs + dd = transport_degree_factor( + temperature, + deadband_lw, + deadband_up, + degree_factor_lw, + degree_factor_up, + ) + + temp_eff = 1 / (1 + dd) + + return car_efficiency * temp_eff + + +def add_EVs( + n, + avail_profile, + dsm_profile, + p_set, + electric_share, + number_cars, + temperature, +): + + n.add("Carrier", "Li ion") + + n.madd( + "Bus", + spatial.nodes, + suffix=" EV battery", + location=spatial.nodes, + carrier="Li ion", + unit="MWh_el", + ) + + car_efficiency = options["transport_electric_efficiency"] + + # temperature corrected efficiency + efficiency = get_temp_efficency( + car_efficiency, + temperature, + options["transport_heating_deadband_lower"], + options["transport_heating_deadband_upper"], + options["EV_lower_degree_factor"], + options["EV_upper_degree_factor"], + ) + + p_shifted = (p_set + cycling_shift(p_set, 1) + cycling_shift(p_set, 2)) / 3 + + cyclic_eff = p_set.div(p_shifted) + + efficiency *= cyclic_eff + + profile = electric_share * p_set.div(efficiency) + + n.madd( + "Load", + spatial.nodes, + suffix=" land transport EV", + bus=spatial.nodes + " EV battery", + carrier="land transport EV", + p_set=profile, + ) + + p_nom = number_cars * options.get("bev_charge_rate", 0.011) * electric_share + + n.madd( + "Link", + spatial.nodes, + suffix=" BEV charger", + bus0=spatial.nodes, + bus1=spatial.nodes + " EV battery", + p_nom=p_nom, + carrier="BEV charger", + p_max_pu=avail_profile[spatial.nodes], + lifetime=1, + efficiency=options.get("bev_charge_efficiency", 0.9), + ) + + if options["v2g"]: + n.madd( + "Link", + spatial.nodes, + suffix=" V2G", + bus1=spatial.nodes, + bus0=spatial.nodes + " EV battery", + p_nom=p_nom, + carrier="V2G", + p_max_pu=avail_profile[spatial.nodes], + lifetime=1, + efficiency=options.get("bev_charge_efficiency", 0.9), + ) + + if options["bev_dsm"]: + e_nom = ( + number_cars + * options.get("bev_energy", 0.05) + * options["bev_availability"] + * electric_share + ) + + n.madd( + "Store", + spatial.nodes, + suffix=" battery storage", + bus=spatial.nodes + " EV battery", + carrier="battery storage", + e_cyclic=True, + e_nom=e_nom, + e_max_pu=1, + e_min_pu=dsm_profile[spatial.nodes], + ) + + +def add_fuel_cell_cars(n, p_set, fuel_cell_share, temperature): + + car_efficiency = options["transport_fuel_cell_efficiency"] + + # temperature corrected efficiency + efficiency = get_temp_efficency( + car_efficiency, + temperature, + options["transport_heating_deadband_lower"], + options["transport_heating_deadband_upper"], + options["ICE_lower_degree_factor"], + options["ICE_upper_degree_factor"], + ) + + profile = fuel_cell_share * p_set.div(efficiency) + + n.madd( + "Load", + spatial.nodes, + suffix=" land transport fuel cell", + bus=spatial.h2.nodes, + carrier="land transport fuel cell", + p_set=profile, + ) + + +def add_ice_cars(n, p_set, ice_share, temperature): + + add_carrier_buses(n, "oil") + + car_efficiency = options["transport_ice_efficiency"] + + # temperature corrected efficiency + efficiency = get_temp_efficency( + car_efficiency, + temperature, + options["transport_heating_deadband_lower"], + options["transport_heating_deadband_upper"], + options["ICE_lower_degree_factor"], + options["ICE_upper_degree_factor"], + ) + + profile = ice_share * p_set.div(efficiency).rename( + columns=lambda x: x + " land transport oil" + ) + + if not options["regional_oil_demand"]: + profile = profile.sum(axis=1).to_frame(name="EU land transport oil") + + n.madd( + "Bus", + spatial.oil.land_transport, + location=spatial.oil.demand_locations, + carrier="land transport oil", + unit="land transport", + ) + + n.madd( + "Load", + spatial.oil.land_transport, + bus=spatial.oil.land_transport, + carrier="land transport oil", + p_set=profile, + ) + + n.madd( + "Link", + spatial.oil.land_transport, + bus0=spatial.oil.nodes, + bus1=spatial.oil.land_transport, + bus2="co2 atmosphere", + carrier="land transport oil", + efficiency2=costs.at["oil", "CO2 intensity"], + p_nom_extendable=True, + ) + + def add_land_transport(n, costs): - # TODO options? logger.info("Add land transport") + # read in transport demand in units driven km [100 km] transport = pd.read_csv( snakemake.input.transport_demand, index_col=0, parse_dates=True ) @@ -1526,158 +1730,36 @@ def add_land_transport(n, costs): snakemake.input.dsm_profile, index_col=0, parse_dates=True ) - fuel_cell_share = get(options["land_transport_fuel_cell_share"], investment_year) - electric_share = get(options["land_transport_electric_share"], investment_year) - ice_share = get(options["land_transport_ice_share"], investment_year) + # exogenous share of passenger car type + engine_types = ["fuel_cell", "electric", "ice"] + shares = pd.Series() + for engine in engine_types: + shares[engine] = get(options[f"land_transport_{engine}_share"], investment_year) + logger.info(f"{engine} share: {shares[engine]*100}%") - total_share = fuel_cell_share + electric_share + ice_share - if total_share != 1: - logger.warning( - f"Total land transport shares sum up to {total_share:.2%}, corresponding to increased or decreased demand assumptions." + check_land_transport_shares(shares) + + p_set = transport[spatial.nodes] + + # temperature for correction factor for heating/cooling + temperature = xr.open_dataarray(snakemake.input.temp_air_total).to_pandas() + + if shares["electric"] > 0: + add_EVs( + n, + avail_profile, + dsm_profile, + p_set, + shares["electric"], + number_cars, + temperature, ) - logger.info(f"FCEV share: {fuel_cell_share*100}%") - logger.info(f"EV share: {electric_share*100}%") - logger.info(f"ICEV share: {ice_share*100}%") + if shares["fuel_cell"] > 0: + add_fuel_cell_cars(n, p_set, shares["fuel_cell"], temperature) - nodes = pop_layout.index - - if electric_share > 0: - n.add("Carrier", "Li ion") - - n.madd( - "Bus", - nodes, - suffix=" EV battery", - location=nodes, - carrier="Li ion", - unit="MWh_el", - ) - - p_set = ( - electric_share - * ( - transport[nodes] - + cycling_shift(transport[nodes], 1) - + cycling_shift(transport[nodes], 2) - ) - / 3 - ) - - n.madd( - "Load", - nodes, - suffix=" land transport EV", - bus=nodes + " EV battery", - carrier="land transport EV", - p_set=p_set, - ) - - p_nom = number_cars * options.get("bev_charge_rate", 0.011) * electric_share - - n.madd( - "Link", - nodes, - suffix=" BEV charger", - bus0=nodes, - bus1=nodes + " EV battery", - p_nom=p_nom, - carrier="BEV charger", - p_max_pu=avail_profile[nodes], - efficiency=options.get("bev_charge_efficiency", 0.9), - # These were set non-zero to find LU infeasibility when availability = 0.25 - # p_nom_extendable=True, - # p_nom_min=p_nom, - # capital_cost=1e6, #i.e. so high it only gets built where necessary - ) - - if electric_share > 0 and options["v2g"]: - n.madd( - "Link", - nodes, - suffix=" V2G", - bus1=nodes, - bus0=nodes + " EV battery", - p_nom=p_nom, - carrier="V2G", - p_max_pu=avail_profile[nodes], - efficiency=options.get("bev_charge_efficiency", 0.9), - ) - - if electric_share > 0 and options["bev_dsm"]: - e_nom = ( - number_cars - * options.get("bev_energy", 0.05) - * options["bev_availability"] - * electric_share - ) - - n.madd( - "Store", - nodes, - suffix=" battery storage", - bus=nodes + " EV battery", - carrier="battery storage", - e_cyclic=True, - e_nom=e_nom, - e_max_pu=1, - e_min_pu=dsm_profile[nodes], - ) - - if fuel_cell_share > 0: - n.madd( - "Load", - nodes, - suffix=" land transport fuel cell", - bus=nodes + " H2", - carrier="land transport fuel cell", - p_set=fuel_cell_share - / options["transport_fuel_cell_efficiency"] - * transport[nodes], - ) - - if ice_share > 0: - add_carrier_buses(n, "oil") - - ice_efficiency = options["transport_internal_combustion_efficiency"] - - p_set_land_transport_oil = ( - ice_share - / ice_efficiency - * transport[nodes].rename(columns=lambda x: x + " land transport oil") - ) - - if not options["regional_oil_demand"]: - p_set_land_transport_oil = p_set_land_transport_oil.sum(axis=1).to_frame( - name="EU land transport oil" - ) - - n.madd( - "Bus", - spatial.oil.land_transport, - location=spatial.oil.demand_locations, - carrier="land transport oil", - unit="land transport", - ) - - n.madd( - "Load", - spatial.oil.land_transport, - bus=spatial.oil.land_transport, - carrier="land transport oil", - p_set=p_set_land_transport_oil, - ) - - n.madd( - "Link", - spatial.oil.land_transport, - bus0=spatial.oil.nodes, - bus1=spatial.oil.land_transport, - bus2="co2 atmosphere", - carrier="land transport oil", - efficiency2=costs.at["oil", "CO2 intensity"], - p_nom_extendable=True, - ) + if shares["ice"] > 0: + add_ice_cars(n, p_set, shares["ice"], temperature) def build_heat_demand(n): @@ -2699,6 +2781,83 @@ def add_industry(n, costs): p_set=industrial_demand.loc[nodes, "hydrogen"] / nhours, ) + # methanol for industry + + n.madd( + "Bus", + spatial.methanol.nodes, + carrier="methanol", + location=spatial.methanol.locations, + unit="MWh_LHV", + ) + + n.madd( + "Store", + spatial.methanol.nodes, + suffix=" Store", + bus=spatial.methanol.nodes, + e_nom_extendable=True, + e_cyclic=True, + carrier="methanol", + capital_cost=0.02, + ) + + n.madd( + "Bus", + spatial.methanol.industry, + carrier="industry methanol", + location=spatial.methanol.demand_locations, + unit="MWh_LHV", + ) + + p_set_methanol = ( + industrial_demand["methanol"].rename(lambda x: x + " industry methanol") + / nhours + ) + + if not options["regional_methanol_demand"]: + p_set_methanol = p_set_methanol.sum() + + n.madd( + "Load", + spatial.methanol.industry, + bus=spatial.methanol.industry, + carrier="industry methanol", + p_set=p_set_methanol, + ) + + n.madd( + "Link", + spatial.methanol.industry, + bus0=spatial.methanol.nodes, + bus1=spatial.methanol.industry, + bus2="co2 atmosphere", + carrier="industry methanol", + p_nom_extendable=True, + efficiency2=1 / options["MWh_MeOH_per_tCO2"], + # CO2 intensity methanol based on stoichiometric calculation with 22.7 GJ/t methanol (32 g/mol), CO2 (44 g/mol), 277.78 MWh/TJ = 0.218 t/MWh + ) + + n.madd( + "Link", + spatial.h2.locations + " methanolisation", + bus0=spatial.h2.nodes, + bus1=spatial.methanol.nodes, + bus2=nodes, + bus3=spatial.co2.nodes, + carrier="methanolisation", + p_nom_extendable=True, + p_min_pu=options.get("min_part_load_methanolisation", 0), + capital_cost=costs.at["methanolisation", "fixed"] + * options["MWh_MeOH_per_MWh_H2"], # EUR/MW_H2/a + marginal_cost=options["MWh_MeOH_per_MWh_H2"] + * costs.at["methanolisation", "VOM"], + lifetime=costs.at["methanolisation", "lifetime"], + efficiency=options["MWh_MeOH_per_MWh_H2"], + efficiency2=-options["MWh_MeOH_per_MWh_H2"] / options["MWh_MeOH_per_MWh_e"], + efficiency3=-options["MWh_MeOH_per_MWh_H2"] / options["MWh_MeOH_per_tCO2"], + ) + shipping_hydrogen_share = get(options["shipping_hydrogen_share"], investment_year) shipping_methanol_share = get(options["shipping_methanol_share"], investment_year) shipping_oil_share = get(options["shipping_oil_share"], investment_year) @@ -2768,56 +2927,18 @@ def add_industry(n, costs): ) if shipping_methanol_share: - n.madd( - "Bus", - spatial.methanol.nodes, - carrier="methanol", - location=spatial.methanol.locations, - unit="MWh_LHV", - ) - - n.madd( - "Store", - spatial.methanol.nodes, - suffix=" Store", - bus=spatial.methanol.nodes, - e_nom_extendable=True, - e_cyclic=True, - carrier="methanol", - ) - - n.madd( - "Link", - spatial.h2.locations + " methanolisation", - bus0=spatial.h2.nodes, - bus1=spatial.methanol.nodes, - bus2=nodes, - bus3=spatial.co2.nodes, - carrier="methanolisation", - p_nom_extendable=True, - p_min_pu=options.get("min_part_load_methanolisation", 0), - capital_cost=costs.at["methanolisation", "fixed"] - * options["MWh_MeOH_per_MWh_H2"], # EUR/MW_H2/a - marginal_cost=options["MWh_MeOH_per_MWh_H2"] - * costs.at["methanolisation", "VOM"], - lifetime=costs.at["methanolisation", "lifetime"], - efficiency=options["MWh_MeOH_per_MWh_H2"], - efficiency2=-options["MWh_MeOH_per_MWh_H2"] / options["MWh_MeOH_per_MWh_e"], - efficiency3=-options["MWh_MeOH_per_MWh_H2"] / options["MWh_MeOH_per_tCO2"], - ) - efficiency = ( options["shipping_oil_efficiency"] / options["shipping_methanol_efficiency"] ) - p_set_methanol = ( + p_set_methanol_shipping = ( shipping_methanol_share * p_set.rename(lambda x: x + " shipping methanol") * efficiency ) if not options["regional_methanol_demand"]: - p_set_methanol = p_set_methanol.sum() + p_set_methanol_shipping = p_set_methanol_shipping.sum() n.madd( "Bus", @@ -2832,7 +2953,7 @@ def add_industry(n, costs): spatial.methanol.shipping, bus=spatial.methanol.shipping, carrier="shipping methanol", - p_set=p_set_methanol, + p_set=p_set_methanol_shipping, ) n.madd( @@ -2962,7 +3083,7 @@ def add_industry(n, costs): if demand_factor != 1: logger.warning(f"Changing HVC demand by {demand_factor*100-100:+.2f}%.") - p_set_plastics = ( + p_set_naphtha = ( demand_factor * industrial_demand.loc[nodes, "naphtha"].rename( lambda x: x + " naphtha for industry" @@ -2971,7 +3092,7 @@ def add_industry(n, costs): ) if not options["regional_oil_demand"]: - p_set_plastics = p_set_plastics.sum() + p_set_naphtha = p_set_naphtha.sum() n.madd( "Bus", @@ -2986,7 +3107,7 @@ def add_industry(n, costs): spatial.oil.naphtha, bus=spatial.oil.naphtha, carrier="naphtha for industry", - p_set=p_set_plastics, + p_set=p_set_naphtha, ) # some CO2 from naphtha are process emissions from steam cracker @@ -2997,19 +3118,114 @@ def add_industry(n, costs): ) emitted_co2_per_naphtha = costs.at["oil", "CO2 intensity"] - process_co2_per_naphtha - n.madd( - "Link", - spatial.oil.naphtha, - bus0=spatial.oil.nodes, - bus1=spatial.oil.naphtha, - bus2="co2 atmosphere", - bus3=spatial.co2.process_emissions, - carrier="naphtha for industry", - p_nom_extendable=True, - efficiency2=emitted_co2_per_naphtha, - efficiency3=process_co2_per_naphtha, + non_sequestered = 1 - get( + cf_industry["HVC_environment_sequestration_fraction"], + investment_year, ) + if cf_industry["waste_to_energy"] or cf_industry["waste_to_energy_cc"]: + + non_sequestered_hvc_locations = ( + pd.Index(spatial.oil.demand_locations) + " non-sequestered HVC" + ) + + n.madd( + "Bus", + non_sequestered_hvc_locations, + location=spatial.oil.demand_locations, + carrier="non-sequestered HVC", + unit="MWh_LHV", + ) + + n.madd( + "Link", + spatial.oil.naphtha, + bus0=spatial.oil.nodes, + bus1=spatial.oil.naphtha, + bus2=non_sequestered_hvc_locations, + bus3=spatial.co2.process_emissions, + carrier="naphtha for industry", + p_nom_extendable=True, + efficiency2=non_sequestered + * emitted_co2_per_naphtha + / costs.at["oil", "CO2 intensity"], + efficiency3=process_co2_per_naphtha, + ) + + n.madd( + "Link", + spatial.oil.demand_locations, + suffix=" HVC to air", + bus0=non_sequestered_hvc_locations, + bus1="co2 atmosphere", + carrier="HVC to air", + p_nom_extendable=True, + efficiency=costs.at["oil", "CO2 intensity"], + ) + + if len(non_sequestered_hvc_locations) == 1: + waste_source = non_sequestered_hvc_locations[0] + else: + waste_source = non_sequestered_hvc_locations + + if cf_industry["waste_to_energy"]: + + n.madd( + "Link", + spatial.nodes + " waste CHP", + bus0=waste_source, + bus1=spatial.nodes, + bus2=spatial.nodes + " urban central heat", + bus3="co2 atmosphere", + carrier="waste CHP", + p_nom_extendable=True, + capital_cost=costs.at["waste CHP", "fixed"] + * costs.at["waste CHP", "efficiency"], + marginal_cost=costs.at["waste CHP", "VOM"], + efficiency=costs.at["waste CHP", "efficiency"], + efficiency2=costs.at["waste CHP", "efficiency-heat"], + efficiency3=costs.at["oil", "CO2 intensity"], + lifetime=costs.at["waste CHP", "lifetime"], + ) + + if cf_industry["waste_to_energy_cc"]: + + n.madd( + "Link", + spatial.nodes + " waste CHP CC", + bus0=waste_source, + bus1=spatial.nodes, + bus2=spatial.nodes + " urban central heat", + bus3="co2 atmosphere", + bus4=spatial.co2.nodes, + carrier="waste CHP CC", + p_nom_extendable=True, + capital_cost=costs.at["waste CHP CC", "fixed"] + * costs.at["waste CHP CC", "efficiency"], + marginal_cost=costs.at["waste CHP CC", "VOM"], + efficiency=costs.at["waste CHP CC", "efficiency"], + efficiency2=costs.at["waste CHP CC", "efficiency-heat"], + efficiency3=costs.at["oil", "CO2 intensity"] + * (1 - options["cc_fraction"]), + efficiency4=costs.at["oil", "CO2 intensity"] * options["cc_fraction"], + lifetime=costs.at["waste CHP CC", "lifetime"], + ) + + else: + + n.madd( + "Link", + spatial.oil.naphtha, + bus0=spatial.oil.nodes, + bus1=spatial.oil.naphtha, + bus2="co2 atmosphere", + bus3=spatial.co2.process_emissions, + carrier="naphtha for industry", + p_nom_extendable=True, + efficiency2=emitted_co2_per_naphtha * non_sequestered, + efficiency3=process_co2_per_naphtha, + ) + # aviation demand_factor = options.get("aviation_demand_factor", 1) if demand_factor != 1: @@ -3167,13 +3383,7 @@ def add_industry(n, costs): p_set=p_set, ) - primary_steel = get( - snakemake.config["industry"]["St_primary_fraction"], investment_year - ) - dri_steel = get(snakemake.config["industry"]["DRI_fraction"], investment_year) - bof_steel = primary_steel - dri_steel - - if bof_steel > 0: + if industrial_demand[["coke", "coal"]].sum().sum() > 0: add_carrier_buses(n, "coal") mwh_coal_per_mwh_coke = 1.366 # from eurostat energy balance @@ -3219,7 +3429,6 @@ def add_waste_heat(n): # TODO options? logger.info("Add possibility to use industrial waste heat in district heating") - cf_industry = snakemake.params.industry # AC buses with district heating urban_central = n.buses.index[n.buses.carrier == "urban central heat"] @@ -3518,100 +3727,56 @@ def cluster_heat_buses(n): import_components_from_dataframe(n, df.loc[to_add], c.name) -def apply_time_segmentation( - n, segments, solver_name="cbc", overwrite_time_dependent=True -): +def set_temporal_aggregation(n, resolution, snapshot_weightings): """ - Aggregating time series to segments with different lengths. - - Input: - n: pypsa Network - segments: (int) number of segments in which the typical period should be - subdivided - solver_name: (str) name of solver - overwrite_time_dependent: (bool) overwrite time dependent data of pypsa network - with typical time series created by tsam - """ - try: - import tsam.timeseriesaggregation as tsam - except ImportError: - raise ModuleNotFoundError( - "Optional dependency 'tsam' not found." "Install via 'pip install tsam'" - ) - - # get all time-dependent data - columns = pd.MultiIndex.from_tuples([], names=["component", "key", "asset"]) - raw = pd.DataFrame(index=n.snapshots, columns=columns) - for c in n.iterate_components(): - for attr, pnl in c.pnl.items(): - # exclude e_min_pu which is used for SOC of EVs in the morning - if not pnl.empty and attr != "e_min_pu": - df = pnl.copy() - df.columns = pd.MultiIndex.from_product([[c.name], [attr], df.columns]) - raw = pd.concat([raw, df], axis=1) - - # normalise all time-dependent data - annual_max = raw.max().replace(0, 1) - raw = raw.div(annual_max, level=0) - - # get representative segments - agg = tsam.TimeSeriesAggregation( - raw, - hoursPerPeriod=len(raw), - noTypicalPeriods=1, - noSegments=int(segments), - segmentation=True, - solver=solver_name, - ) - segmented = agg.createTypicalPeriods() - - weightings = segmented.index.get_level_values("Segment Duration") - offsets = np.insert(np.cumsum(weightings[:-1]), 0, 0) - timesteps = [raw.index[0] + pd.Timedelta(f"{offset}h") for offset in offsets] - snapshots = pd.DatetimeIndex(timesteps) - sn_weightings = pd.Series( - weightings, index=snapshots, name="weightings", dtype="float64" - ) - logger.info(f"Distribution of snapshot durations:\n{weightings.value_counts()}") - - n.set_snapshots(sn_weightings.index) - n.snapshot_weightings = n.snapshot_weightings.mul(sn_weightings, axis=0) - - # overwrite time-dependent data with timeseries created by tsam - if overwrite_time_dependent: - values_t = segmented.mul(annual_max).set_index(snapshots) - for component, key in values_t.columns.droplevel(2).unique(): - n.pnl(component)[key] = values_t[component, key] - - return n - - -def set_temporal_aggregation(n, resolution, solver_name): - """ - Aggregate network temporally. + Aggregate time-varying data to the given snapshots. """ if not resolution: + logger.info("No temporal aggregation. Using native resolution.") return n - - # representative snapshots - if "sn" in resolution.lower(): + elif "sn" in resolution.lower(): + # Representative snapshots are dealt with directly sn = int(resolution[:-2]) logger.info("Use every %s snapshot as representative", sn) n.set_snapshots(n.snapshots[::sn]) n.snapshot_weightings *= sn + return n + else: + # Otherwise, use the provided snapshots + snapshot_weightings = pd.read_csv( + snapshot_weightings, index_col=0, parse_dates=True + ) - # segments with package tsam - elif "seg" in resolution.lower(): - segments = int(resolution[:-3]) - logger.info("Use temporal segmentation with %s segments", segments) - n = apply_time_segmentation(n, segments, solver_name=solver_name) + # Define a series used for aggregation, mapping each hour in + # n.snapshots to the closest previous timestep in + # snapshot_weightings.index + aggregation_map = ( + pd.Series( + snapshot_weightings.index.get_indexer(n.snapshots), index=n.snapshots + ) + .replace(-1, np.nan) + .ffill() + .astype(int) + .map(lambda i: snapshot_weightings.index[i]) + ) - # temporal averaging - elif "h" in resolution.lower(): - logger.info("Aggregate to frequency %s", resolution) - n = average_every_nhours(n, resolution) + m = n.copy(with_time=False) + m.set_snapshots(snapshot_weightings.index) + m.snapshot_weightings = snapshot_weightings - return n + # Aggregation all time-varying data. + for c in n.iterate_components(): + pnl = getattr(m, c.list_name + "_t") + for k, df in c.pnl.items(): + if not df.empty: + if c.list_name == "stores" and k == "e_max_pu": + pnl[k] = df.groupby(aggregation_map).min() + elif c.list_name == "stores" and k == "e_min_pu": + pnl[k] = df.groupby(aggregation_map).max() + else: + pnl[k] = df.groupby(aggregation_map).mean() + + return m def lossy_bidirectional_links(n, carrier, efficiencies={}): @@ -3664,19 +3829,224 @@ def lossy_bidirectional_links(n, carrier, efficiencies={}): ) +def add_enhanced_geothermal(n, egs_potentials, egs_overlap, costs): + """ + Adds EGS potential to model. + + Built in scripts/build_egs_potentials.py + """ + + if len(spatial.geothermal_heat.nodes) > 1: + logger.warning( + "'add_enhanced_geothermal' not implemented for multiple geothermal nodes." + ) + logger.info( + "[EGS] implemented with 2020 CAPEX from Aghahosseini et al 2021: 'From hot rock to...'." + ) + logger.info( + "[EGS] Recommended usage scales CAPEX to future cost expectations using config 'adjustments'." + ) + logger.info("[EGS] During this the relevant carriers are:") + logger.info("[EGS] drilling part -> 'geothermal heat'") + logger.info( + "[EGS] electricity generation part -> 'geothermal organic rankine cycle'" + ) + logger.info("[EGS] district heat distribution part -> 'geothermal district heat'") + + egs_config = snakemake.params["sector"]["enhanced_geothermal"] + costs_config = snakemake.config["costs"] + + # matrix defining the overlap between gridded geothermal potential estimation, and bus regions + overlap = pd.read_csv(egs_overlap, index_col=0) + overlap.columns = overlap.columns.astype(int) + egs_potentials = pd.read_csv(egs_potentials, index_col=0) + + Nyears = n.snapshot_weightings.generators.sum() / 8760 + dr = costs_config["fill_values"]["discount rate"] + lt = costs.at["geothermal", "lifetime"] + FOM = costs.at["geothermal", "FOM"] + + egs_annuity = calculate_annuity(lt, dr) + + # under egs optimism, the expected cost reductions also cover costs for ORC + # hence, the ORC costs are no longer taken from technology-data + orc_capex = costs.at["organic rankine cycle", "investment"] + + # cost for ORC is subtracted, as it is already included in the geothermal cost. + # The orc cost are attributed to a separate link representing the ORC. + # also capital_cost conversion Euro/kW -> Euro/MW + + egs_potentials["capital_cost"] = ( + (egs_annuity + FOM / (1.0 + FOM)) + * (egs_potentials["CAPEX"] * 1e3 - orc_capex) + * Nyears + ) + + assert ( + egs_potentials["capital_cost"] > 0 + ).all(), "Error in EGS cost, negative values found." + + orc_annuity = calculate_annuity(costs.at["organic rankine cycle", "lifetime"], dr) + orc_capital_cost = (orc_annuity + FOM / (1 + FOM)) * orc_capex * Nyears + + efficiency_orc = costs.at["organic rankine cycle", "efficiency"] + efficiency_dh = costs.at["geothermal", "district heat-input"] + + # p_nom_max conversion GW -> MW + egs_potentials["p_nom_max"] = egs_potentials["p_nom_max"] * 1000.0 + + # not using add_carrier_buses, as we are not interested in a Store + n.add("Carrier", "geothermal heat") + + n.madd( + "Bus", + spatial.geothermal_heat.nodes, + carrier="geothermal heat", + unit="MWh_th", + ) + + n.madd( + "Generator", + spatial.geothermal_heat.nodes, + bus=spatial.geothermal_heat.nodes, + carrier="geothermal heat", + p_nom_extendable=True, + ) + + if egs_config["var_cf"]: + efficiency = pd.read_csv( + snakemake.input.egs_capacity_factors, parse_dates=True, index_col=0 + ) + logger.info("Adding Enhanced Geothermal with time-varying capacity factors.") + else: + efficiency = 1.0 + + # if urban central heat exists, adds geothermal as CHP + as_chp = "urban central heat" in n.loads.carrier.unique() + + if as_chp: + logger.info("Adding EGS as Combined Heat and Power.") + + else: + logger.info("Adding EGS for Electricity Only.") + + for bus, bus_overlap in overlap.iterrows(): + if not bus_overlap.sum(): + continue + + overlap = bus_overlap.loc[bus_overlap > 0.0] + bus_egs = egs_potentials.loc[overlap.index] + + if not len(bus_egs): + continue + + bus_egs["p_nom_max"] = bus_egs["p_nom_max"].multiply(bus_overlap) + bus_egs = bus_egs.loc[bus_egs.p_nom_max > 0.0] + + appendix = " " + pd.Index(np.arange(len(bus_egs)).astype(str)) + + # add surface bus + n.madd( + "Bus", + pd.Index([f"{bus} geothermal heat surface"]), + location=bus, + unit="MWh_th", + carrier="geothermal heat", + ) + + bus_egs.index = np.arange(len(bus_egs)).astype(str) + well_name = f"{bus} enhanced geothermal" + appendix + + if egs_config["var_cf"]: + bus_eta = pd.concat( + (efficiency[bus].rename(idx) for idx in well_name), + axis=1, + ) + else: + bus_eta = efficiency + + p_nom_max = bus_egs["p_nom_max"] + capital_cost = bus_egs["capital_cost"] + bus1 = pd.Series(f"{bus} geothermal heat surface", well_name) + + # adding geothermal wells as multiple generators to represent supply curve + n.madd( + "Link", + well_name, + bus0=spatial.geothermal_heat.nodes, + bus1=bus1, + carrier="geothermal heat", + p_nom_extendable=True, + p_nom_max=p_nom_max.set_axis(well_name) / efficiency_orc, + capital_cost=capital_cost.set_axis(well_name) * efficiency_orc, + efficiency=bus_eta, + ) + + # adding Organic Rankine Cycle as a single link + n.add( + "Link", + bus + " geothermal organic rankine cycle", + bus0=f"{bus} geothermal heat surface", + bus1=bus, + p_nom_extendable=True, + carrier="geothermal organic rankine cycle", + capital_cost=orc_capital_cost * efficiency_orc, + efficiency=efficiency_orc, + ) + + if as_chp and bus + " urban central heat" in n.buses.index: + n.add( + "Link", + bus + " geothermal heat district heat", + bus0=f"{bus} geothermal heat surface", + bus1=bus + " urban central heat", + carrier="geothermal district heat", + capital_cost=orc_capital_cost + * efficiency_orc + * costs.at["geothermal", "district heat surcharge"] + / 100.0, + efficiency=efficiency_dh, + p_nom_extendable=True, + ) + elif as_chp and not bus + " urban central heat" in n.buses.index: + n.links.at[bus + " geothermal organic rankine cycle", "efficiency"] = ( + efficiency_orc + ) + + if egs_config["flexible"]: + # this StorageUnit represents flexible operation using the geothermal reservoir. + # Hence, it is counter-intuitive to install it at the surface bus, + # this is however the more lean and computationally efficient solution. + + max_hours = egs_config["max_hours"] + boost = egs_config["max_boost"] + + n.add( + "StorageUnit", + bus + " geothermal reservoir", + bus=f"{bus} geothermal heat surface", + carrier="geothermal heat", + p_nom_extendable=True, + p_min_pu=-boost, + max_hours=max_hours, + cyclic_state_of_charge=True, + ) + + +# %% if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake snakemake = mock_snakemake( "prepare_sector_network", - configfiles="test/config.overnight.yaml", + # configfiles="test/config.overnight.yaml", simpl="", opts="", clusters="37", ll="v1.0", - sector_opts="CO2L0-24H-T-H-B-I-A-dist1", - planning_horizons="2030", + sector_opts="730H-T-H-B-I-A-dist1", + planning_horizons="2050", ) configure_logging(snakemake) @@ -3684,6 +4054,7 @@ if __name__ == "__main__": update_config_from_wildcards(snakemake.config, snakemake.wildcards) options = snakemake.params.sector + cf_industry = snakemake.params.industry investment_year = int(snakemake.wildcards.planning_horizons[-4:]) @@ -3762,9 +4133,9 @@ if __name__ == "__main__": if options["allam_cycle"]: add_allam(n, costs) - solver_name = snakemake.config["solving"]["solver"]["name"] - resolution = snakemake.params.time_resolution - n = set_temporal_aggregation(n, resolution, solver_name) + n = set_temporal_aggregation( + n, snakemake.params.time_resolution, snakemake.input.snapshot_weightings + ) co2_budget = snakemake.params.co2_budget if isinstance(co2_budget, str) and co2_budget.startswith("cb"): @@ -3793,6 +4164,12 @@ if __name__ == "__main__": if options["electricity_distribution_grid"]: insert_electricity_distribution_grid(n, costs) + if options["enhanced_geothermal"].get("enable", False): + logger.info("Adding Enhanced Geothermal Systems (EGS).") + add_enhanced_geothermal( + n, snakemake.input["egs_potentials"], snakemake.input["egs_overlap"], costs + ) + maybe_adjust_costs_and_potentials(n, snakemake.params["adjustments"]) if options["gas_distribution_grid"]: diff --git a/scripts/retrieve_databundle.py b/scripts/retrieve_databundle.py index 996bbeab..e2736f63 100644 --- a/scripts/retrieve_databundle.py +++ b/scripts/retrieve_databundle.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright 2019-2022 Fabian Hofmann (TUB, FIAS) +# Copyright 2019-2024 Fabian Hofmann (TUB, FIAS), Fabian Neumann (TUB) # SPDX-FileCopyrightText: : 2017-2024 The PyPSA-Eur Authors # # SPDX-License-Identifier: MIT @@ -7,24 +7,15 @@ .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3517935.svg :target: https://doi.org/10.5281/zenodo.3517935 -The data bundle (1.4 GB) contains common GIS datasets like NUTS3 shapes, EEZ shapes, CORINE Landcover, Natura 2000 and also electricity specific summary statistics like historic per country yearly totals of hydro generation, GDP and POP on NUTS3 levels and per-country load time-series. +The data bundle contains common GIS datasets like NUTS3 shapes, EEZ shapes, +CORINE Landcover, Natura 2000 and also electricity specific summary statistics +like historic per country yearly totals of hydro generation, GDP and population +data on NUTS3 levels and energy balances. -This rule downloads the data bundle from `zenodo `_ and extracts it in the ``data`` sub-directory, such that all files of the bundle are stored in the ``data/bundle`` subdirectory. - -The :ref:`tutorial` uses a smaller `data bundle `_ than required for the full model (188 MB) - -.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3517921.svg - :target: https://doi.org/10.5281/zenodo.3517921 - -**Relevant Settings** - -.. code:: yaml - - tutorial: - -.. seealso:: - Documentation of the configuration file ``config/config.yaml`` at - :ref:`toplevel_cf` +This rule downloads the data bundle from `zenodo +`_ and extracts it in the ``data`` +sub-directory, such that all files of the bundle are stored in the +``data/bundle`` subdirectory. **Outputs** @@ -57,10 +48,7 @@ if __name__ == "__main__": configure_logging(snakemake) set_scenario_config(snakemake) - if snakemake.config["tutorial"]: - url = "https://zenodo.org/record/3517921/files/pypsa-eur-tutorial-data-bundle.tar.xz" - else: - url = "https://zenodo.org/record/3517935/files/pypsa-eur-data-bundle.tar.xz" + url = "https://zenodo.org/records/10973944/files/bundle.tar.xz" tarball_fn = Path(f"{rootpath}/bundle.tar.xz") to_fn = Path(rootpath) / Path(snakemake.output[0]).parent.parent @@ -74,6 +62,7 @@ if __name__ == "__main__": logger.info("Extracting databundle.") tarfile.open(tarball_fn).extractall(to_fn) + logger.info("Unlinking tarball.") tarball_fn.unlink() logger.info(f"Databundle available in '{to_fn}'.") diff --git a/scripts/retrieve_electricity_demand.py b/scripts/retrieve_electricity_demand.py index 94077fdf..d4b8d758 100644 --- a/scripts/retrieve_electricity_demand.py +++ b/scripts/retrieve_electricity_demand.py @@ -9,11 +9,10 @@ Retrieve electricity prices from OPSD. import logging import pandas as pd +from _helpers import configure_logging, set_scenario_config logger = logging.getLogger(__name__) -from _helpers import configure_logging, set_scenario_config - if __name__ == "__main__": if "snakemake" not in globals(): from _helpers import mock_snakemake diff --git a/scripts/retrieve_eurostat_data.py b/scripts/retrieve_eurostat_data.py index 4b4cea4a..085da064 100644 --- a/scripts/retrieve_eurostat_data.py +++ b/scripts/retrieve_eurostat_data.py @@ -27,11 +27,11 @@ if __name__ == "__main__": set_scenario_config(snakemake) disable_progress = snakemake.config["run"].get("disable_progressbar", False) - url_eurostat = "https://ec.europa.eu/eurostat/documents/38154/4956218/Balances-December2022.zip/f7cf0d19-5c0f-60ad-4e48-098a5ddd6e48?t=1671184070589" - tarball_fn = Path(f"{rootpath}/data/eurostat/eurostat_2023.zip") - to_fn = Path( - f"{rootpath}/data/eurostat/eurostat-energy_balances-april_2023_edition/" + url_eurostat = ( + "https://ec.europa.eu/eurostat/documents/38154/4956218/Balances-April2023.zip" ) + tarball_fn = Path(f"{rootpath}/data/eurostat/eurostat_2023.zip") + to_fn = Path(f"{rootpath}/data/eurostat/Balances-April2023/") logger.info(f"Downloading Eurostat data from '{url_eurostat}'.") progress_retrieve(url_eurostat, tarball_fn, disable=disable_progress) diff --git a/scripts/retrieve_eurostat_household_data.py b/scripts/retrieve_eurostat_household_data.py new file mode 100644 index 00000000..0ad9e34a --- /dev/null +++ b/scripts/retrieve_eurostat_household_data.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2024- The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Retrieve and extract eurostat household energy balances data. +""" + + +import gzip +import logging +import shutil +from pathlib import Path + +from _helpers import configure_logging, progress_retrieve, set_scenario_config + +logger = logging.getLogger(__name__) + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake("retrieve_eurostat_data") + rootpath = ".." + else: + rootpath = "." + configure_logging(snakemake) + set_scenario_config(snakemake) + + disable_progress = snakemake.config["run"].get("disable_progressbar", False) + + url_eurostat_household = "https://ec.europa.eu/eurostat/databrowser-backend/api/extraction/1.0/LIVE/false/sdmx/csv/nrg_d_hhq__custom_11480365?startPeriod=2013&endPeriod=2022&i&compressed=true" + tarball_fn = Path(f"{rootpath}/data/eurostat/eurostat_household.gz") + to_fn = Path( + f"{rootpath}/data/eurostat/eurostat-household_energy_balances-february_2024.csv" + ) + + logger.info( + f"Downloading Eurostats' disaggregated household energy balances data from '{url_eurostat_household}'." + ) + progress_retrieve(url_eurostat_household, tarball_fn, disable=disable_progress) + + logger.info("Extracting Eurostat's disaggregated household energy balance data.") + with gzip.open(tarball_fn, "rb") as f_in, open(to_fn, "wb") as f_out: + shutil.copyfileobj(f_in, f_out) + + logger.info( + f"Eurostat's disaggregated household energy balance data available in '{to_fn}'." + ) diff --git a/scripts/retrieve_gas_infrastructure_data.py b/scripts/retrieve_gas_infrastructure_data.py index 8d7d0e08..972e08c5 100644 --- a/scripts/retrieve_gas_infrastructure_data.py +++ b/scripts/retrieve_gas_infrastructure_data.py @@ -4,7 +4,7 @@ # SPDX-License-Identifier: MIT """ Retrieve gas infrastructure data from -https://zenodo.org/record/4767098/files/IGGIELGN.zip. +https://zenodo.org/records/4767098/files/IGGIELGN.zip. """ import logging @@ -32,7 +32,7 @@ if __name__ == "__main__": configure_logging(snakemake) set_scenario_config(snakemake) - url = "https://zenodo.org/record/4767098/files/IGGIELGN.zip" + url = "https://zenodo.org/records/4767098/files/IGGIELGN.zip" # Save locations zip_fn = Path(f"{rootpath}/IGGIELGN.zip") diff --git a/scripts/retrieve_sector_databundle.py b/scripts/retrieve_sector_databundle.py deleted file mode 100644 index 3b825da2..00000000 --- a/scripts/retrieve_sector_databundle.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- coding: utf-8 -*- -# SPDX-FileCopyrightText: : 2021-2024 The PyPSA-Eur Authors -# -# SPDX-License-Identifier: MIT -""" -Retrieve and extract data bundle for sector-coupled studies. -""" - -import logging -import tarfile -from pathlib import Path - -from _helpers import ( - configure_logging, - progress_retrieve, - set_scenario_config, - validate_checksum, -) - -logger = logging.getLogger(__name__) - -if __name__ == "__main__": - if "snakemake" not in globals(): - from _helpers import mock_snakemake - - snakemake = mock_snakemake("retrieve_databundle") - rootpath = ".." - else: - rootpath = "." - configure_logging(snakemake) - set_scenario_config(snakemake) - - url = "https://zenodo.org/record/5824485/files/pypsa-eur-sec-data-bundle.tar.gz" - - tarball_fn = Path(f"{rootpath}/sector-bundle.tar.gz") - to_fn = Path(rootpath) / Path(snakemake.output[0]).parent.parent - - logger.info(f"Downloading databundle from '{url}'.") - disable_progress = snakemake.config["run"].get("disable_progressbar", False) - progress_retrieve(url, tarball_fn, disable=disable_progress) - - validate_checksum(tarball_fn, url) - - logger.info("Extracting databundle.") - tarfile.open(tarball_fn).extractall(to_fn) - - tarball_fn.unlink() - - logger.info(f"Databundle available in '{to_fn}'.") diff --git a/scripts/solve_network.py b/scripts/solve_network.py index dbde8813..ba2fac7f 100644 --- a/scripts/solve_network.py +++ b/scripts/solve_network.py @@ -123,9 +123,15 @@ def add_land_use_constraint_perfect(n): def _add_land_use_constraint(n): # warning: this will miss existing offwind which is not classed AC-DC and has carrier 'offwind' - for carrier in ["solar", "onwind", "offwind-ac", "offwind-dc"]: - extendable_i = (n.generators.carrier == carrier) & n.generators.p_nom_extendable - n.generators.loc[extendable_i, "p_nom_min"] = 0 + for carrier in [ + "solar", + "solar rooftop", + "solar-hsat", + "onwind", + "offwind-ac", + "offwind-dc", + "offwind-float", + ]: ext_i = (n.generators.carrier == carrier) & ~n.generators.p_nom_extendable existing = ( @@ -158,9 +164,14 @@ def _add_land_use_constraint_m(n, planning_horizons, config): grouping_years = config["existing_capacities"]["grouping_years_power"] current_horizon = snakemake.wildcards.planning_horizons - for carrier in ["solar", "onwind", "offwind-ac", "offwind-dc"]: - extendable_i = (n.generators.carrier == carrier) & n.generators.p_nom_extendable - n.generators.loc[extendable_i, "p_nom_min"] = 0 + for carrier in [ + "solar", + "solar rooftop", + "solar-hsat", + "onwind", + "offwind-ac", + "offwind-dc", + ]: existing = n.generators.loc[n.generators.carrier == carrier, "p_nom"] ind = list( @@ -199,6 +210,83 @@ def _add_land_use_constraint_m(n, planning_horizons, config): n.generators.p_nom_max.clip(lower=0, inplace=True) +def add_solar_potential_constraints(n, config): + """ + Add constraint to make sure the sum capacity of all solar technologies (fixed, tracking, ets. ) is below the region potential. + Example: + ES1 0: total solar potential is 10 GW, meaning: + solar potential : 10 GW + solar-hsat potential : 8 GW (solar with single axis tracking is assumed to have higher land use) + The constraint ensures that: + solar_p_nom + solar_hsat_p_nom * 1.13 <= 10 GW + """ + land_use_factors = { + "solar-hsat": config["renewable"]["solar"]["capacity_per_sqkm"] + / config["renewable"]["solar-hsat"]["capacity_per_sqkm"], + } + rename = {"Generator-ext": "Generator"} + + solar_carriers = ["solar", "solar-hsat"] + solar = n.generators[ + n.generators.carrier.isin(solar_carriers) & n.generators.p_nom_extendable + ].index + + solar_today = n.generators[ + (n.generators.carrier == "solar") & (n.generators.p_nom_extendable) + ].index + solar_hsat = n.generators[(n.generators.carrier == "solar-hsat")].index + + if solar.empty: + return + + land_use = pd.DataFrame(1, index=solar, columns=["land_use_factor"]) + for carrier, factor in land_use_factors.items(): + land_use = land_use.apply( + lambda x: (x * factor) if carrier in x.name else x, axis=1 + ) + + if "m" in snakemake.wildcards.clusters: + location = pd.Series( + [" ".join(i.split(" ")[:2]) for i in n.generators.index], + index=n.generators.index, + ) + ggrouper = pd.Series( + n.generators.loc[solar].index.rename("bus").map(location), + index=n.generators.loc[solar].index, + ).to_xarray() + rhs = ( + n.generators.loc[solar_today, "p_nom_max"] + .groupby(n.generators.loc[solar_today].index.rename("bus").map(location)) + .sum() + - n.generators.loc[solar_hsat, "p_nom_opt"] + .groupby(n.generators.loc[solar_hsat].index.rename("bus").map(location)) + .sum() + * land_use_factors["solar-hsat"] + ).clip(lower=0) + + else: + location = pd.Series(n.buses.index, index=n.buses.index) + ggrouper = n.generators.loc[solar].bus + rhs = ( + n.generators.loc[solar_today, "p_nom_max"] + .groupby(n.generators.loc[solar_today].bus.map(location)) + .sum() + - n.generators.loc[solar_hsat, "p_nom_opt"] + .groupby(n.generators.loc[solar_hsat].bus.map(location)) + .sum() + * land_use_factors["solar-hsat"] + ).clip(lower=0) + + lhs = ( + (n.model["Generator-p_nom"].rename(rename).loc[solar] * land_use.squeeze()) + .groupby(ggrouper) + .sum() + ) + + logger.info("Adding solar potential constraint.") + n.model.add_constraints(lhs <= rhs, name="solar_potential") + + def add_co2_sequestration_limit(n, limit=200): """ Add a global constraint on the amount of Mt CO2 that can be sequestered. @@ -438,23 +526,66 @@ def add_CCL_constraints(n, config): agg_p_nom_limits: data/agg_p_nom_minmax.csv """ agg_p_nom_minmax = pd.read_csv( - config["electricity"]["agg_p_nom_limits"], index_col=[0, 1] - ) + config["solving"]["agg_p_nom_limits"]["file"], index_col=[0, 1], header=[0, 1] + )[snakemake.wildcards.planning_horizons] logger.info("Adding generation capacity constraints per carrier and country") p_nom = n.model["Generator-p_nom"] gens = n.generators.query("p_nom_extendable").rename_axis(index="Generator-ext") - grouper = pd.concat([gens.bus.map(n.buses.country), gens.carrier]) + if config["solving"]["agg_p_nom_limits"]["agg_offwind"]: + rename_offwind = { + "offwind-ac": "offwind-all", + "offwind-dc": "offwind-all", + "offwind": "offwind-all", + } + gens = gens.replace(rename_offwind) + grouper = pd.concat([gens.bus.map(n.buses.country), gens.carrier], axis=1) lhs = p_nom.groupby(grouper).sum().rename(bus="country") - minimum = xr.DataArray(agg_p_nom_minmax["min"].dropna()).rename(dim_0="group") + if config["solving"]["agg_p_nom_limits"]["include_existing"]: + gens_cst = n.generators.query("~p_nom_extendable").rename_axis( + index="Generator-cst" + ) + gens_cst = gens_cst[ + (gens_cst["build_year"] + gens_cst["lifetime"]) + >= int(snakemake.wildcards.planning_horizons) + ] + if config["solving"]["agg_p_nom_limits"]["agg_offwind"]: + gens_cst = gens_cst.replace(rename_offwind) + rhs_cst = ( + pd.concat( + [gens_cst.bus.map(n.buses.country), gens_cst[["carrier", "p_nom"]]], + axis=1, + ) + .groupby(["bus", "carrier"]) + .sum() + ) + rhs_cst.index = rhs_cst.index.rename({"bus": "country"}) + rhs_min = agg_p_nom_minmax["min"].dropna() + idx_min = rhs_min.index.join(rhs_cst.index, how="left") + rhs_min = rhs_min.reindex(idx_min).fillna(0) + rhs = (rhs_min - rhs_cst.reindex(idx_min).fillna(0).p_nom).dropna() + rhs[rhs < 0] = 0 + minimum = xr.DataArray(rhs).rename(dim_0="group") + else: + minimum = xr.DataArray(agg_p_nom_minmax["min"].dropna()).rename(dim_0="group") + index = minimum.indexes["group"].intersection(lhs.indexes["group"]) if not index.empty: n.model.add_constraints( lhs.sel(group=index) >= minimum.loc[index], name="agg_p_nom_min" ) - maximum = xr.DataArray(agg_p_nom_minmax["max"].dropna()).rename(dim_0="group") + if config["solving"]["agg_p_nom_limits"]["include_existing"]: + rhs_max = agg_p_nom_minmax["max"].dropna() + idx_max = rhs_max.index.join(rhs_cst.index, how="left") + rhs_max = rhs_max.reindex(idx_max).fillna(0) + rhs = (rhs_max - rhs_cst.reindex(idx_max).fillna(0).p_nom).dropna() + rhs[rhs < 0] = 0 + maximum = xr.DataArray(rhs).rename(dim_0="group") + else: + maximum = xr.DataArray(agg_p_nom_minmax["max"].dropna()).rename(dim_0="group") + index = maximum.indexes["group"].intersection(lhs.indexes["group"]) if not index.empty: n.model.add_constraints( @@ -558,7 +689,6 @@ def add_BAU_constraints(n, config): ext_i = n.generators.query("p_nom_extendable") ext_carrier_i = xr.DataArray(ext_i.carrier.rename_axis("Generator-ext")) lhs = p_nom.groupby(ext_carrier_i).sum() - index = mincaps.index.intersection(lhs.indexes["carrier"]) rhs = mincaps[lhs.indexes["carrier"]].rename_axis("carrier") n.model.add_constraints(lhs >= rhs, name="bau_mincaps") @@ -642,9 +772,9 @@ def add_operational_reserve_margin(n, sns, config): .loc[vres_i.intersection(ext_i)] .rename({"Generator-ext": "Generator"}) ) - lhs = summed_reserve + (p_nom_vres * (-EPSILON_VRES * capacity_factor)).sum( - "Generator" - ) + lhs = summed_reserve + ( + p_nom_vres * (-EPSILON_VRES * xr.DataArray(capacity_factor)) + ).sum("Generator") # Total demand per t demand = get_as_dense(n, "Load", "p_set").sum(axis=1) @@ -674,7 +804,7 @@ def add_operational_reserve_margin(n, sns, config): p_max_pu = get_as_dense(n, "Generator", "p_max_pu") - lhs = dispatch + reserve - capacity_variable * p_max_pu[ext_i] + lhs = dispatch + reserve - capacity_variable * xr.DataArray(p_max_pu[ext_i]) rhs = (p_max_pu[fix_i] * capacity_fixed).reindex(columns=gen_i, fill_value=0) @@ -814,6 +944,25 @@ def add_pipe_retrofit_constraint(n): n.model.add_constraints(lhs == rhs, name="Link-pipe_retrofit") +def add_flexible_egs_constraint(n): + """ + Upper bounds the charging capacity of the geothermal reservoir according to + the well capacity. + """ + well_index = n.links.loc[n.links.carrier == "geothermal heat"].index + storage_index = n.storage_units.loc[ + n.storage_units.carrier == "geothermal heat" + ].index + + p_nom_rhs = n.model["Link-p_nom"].loc[well_index] + p_nom_lhs = n.model["StorageUnit-p_nom"].loc[storage_index] + + n.model.add_constraints( + p_nom_lhs <= p_nom_rhs, + name="upper_bound_charging_capacity_of_geothermal_reservoir", + ) + + def add_co2_atmosphere_constraint(n, snapshots): glcs = n.global_constraints[n.global_constraints.type == "co2_atmosphere"] @@ -862,6 +1011,13 @@ def extra_functionality(n, snapshots): if EQ_o := constraints["EQ"]: add_EQ_constraints(n, EQ_o.replace("EQ", "")) + if {"solar-hsat", "solar"}.issubset( + config["electricity"]["renewable_carriers"] + ) and {"solar-hsat", "solar"}.issubset( + config["electricity"]["extendable_carriers"]["Generator"] + ): + add_solar_potential_constraints(n, config) + add_battery_constraints(n) add_lossy_bidirectional_link_constraints(n) add_pipe_retrofit_constraint(n) @@ -872,6 +1028,9 @@ def extra_functionality(n, snapshots): else: add_co2_atmosphere_constraint(n, snapshots) + if config["sector"]["enhanced_geothermal"]["enable"]: + add_flexible_egs_constraint(n) + if snakemake.params.custom_extra_functionality: source_path = snakemake.params.custom_extra_functionality assert os.path.exists(source_path), f"{source_path} does not exist" @@ -911,7 +1070,7 @@ def solve_network(n, config, solving, **kwargs): # add to network for extra_functionality n.config = config - if rolling_horizon: + if rolling_horizon and snakemake.rule == "solve_operations_network": kwargs["horizon"] = cf_solving.get("horizon", 365) kwargs["overlap"] = cf_solving.get("overlap", 0) n.optimize.optimize_with_rolling_horizon(**kwargs) @@ -919,9 +1078,12 @@ def solve_network(n, config, solving, **kwargs): elif skip_iterations: status, condition = n.optimize(**kwargs) else: - kwargs["track_iterations"] = (cf_solving.get("track_iterations", False),) - kwargs["min_iterations"] = (cf_solving.get("min_iterations", 4),) - kwargs["max_iterations"] = (cf_solving.get("max_iterations", 6),) + kwargs["track_iterations"] = cf_solving["track_iterations"] + kwargs["min_iterations"] = cf_solving["min_iterations"] + kwargs["max_iterations"] = cf_solving["max_iterations"] + if cf_solving["post_discretization"].pop("enable"): + logger.info("Add post-discretization parameters.") + kwargs.update(cf_solving["post_discretization"]) status, condition = n.optimize.optimize_transmission_expansion_iteratively( **kwargs ) diff --git a/scripts/time_aggregation.py b/scripts/time_aggregation.py new file mode 100644 index 00000000..7ed69112 --- /dev/null +++ b/scripts/time_aggregation.py @@ -0,0 +1,152 @@ +# -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: : 2017-2024 The PyPSA-Eur Authors +# +# SPDX-License-Identifier: MIT +""" +Defines the time aggregation to be used for sector-coupled network. + +Relevant Settings +----------------- + +.. code:: yaml + + clustering: + temporal: + resolution_sector: + + enable: + drop_leap_day: + +Inputs +------ + +- ``networks/elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc``: the network whose + snapshots are to be aggregated +- ``resources/hourly_heat_demand_total_elec_s{simpl}_{clusters}.nc``: the total + hourly heat demand +- ``resources/solar_thermal_total_elec_s{simpl}_{clusters}.nc``: the total + hourly solar thermal generation + +Outputs +------- + +- ``snapshot_weightings_elec_s{simpl}_{clusters}_ec_l{ll}_{opts}.csv`` + +Description +----------- +Computes a time aggregation scheme for the given network, in the form of a CSV +file with the snapshot weightings, indexed by the new subset of snapshots. This +rule only computes said aggregation scheme; aggregation of time-varying network +data is done in ``prepare_sector_network.py``. +""" + + +import logging + +import numpy as np +import pandas as pd +import pypsa +import tsam.timeseriesaggregation as tsam +import xarray as xr +from _helpers import ( + configure_logging, + set_scenario_config, + update_config_from_wildcards, +) + +logger = logging.getLogger(__name__) + +if __name__ == "__main__": + if "snakemake" not in globals(): + from _helpers import mock_snakemake + + snakemake = mock_snakemake( + "time_aggregation", + configfiles="test/config.overnight.yaml", + simpl="", + opts="", + clusters="37", + ll="v1.0", + sector_opts="Co2L0-24h-T-H-B-I-A-dist1", + planning_horizons="2030", + ) + + configure_logging(snakemake) + set_scenario_config(snakemake) + update_config_from_wildcards(snakemake.config, snakemake.wildcards) + + n = pypsa.Network(snakemake.input.network) + resolution = snakemake.params.time_resolution + + # Representative snapshots + if not resolution or isinstance(resolution, str) and "sn" in resolution.lower(): + logger.info("Use representative snapshot or no aggregation at all") + # Output an empty csv; this is taken care of in prepare_sector_network.py + pd.DataFrame().to_csv(snakemake.output.snapshot_weightings) + + # Plain resampling + elif isinstance(resolution, str) and "h" in resolution.lower(): + offset = resolution.lower() + logger.info(f"Averaging every {offset} hours") + snapshot_weightings = n.snapshot_weightings.resample(offset).sum() + sns = snapshot_weightings.index + if snakemake.params.drop_leap_day: + sns = sns[~((sns.month == 2) & (sns.day == 29))] + snapshot_weightings = snapshot_weightings.loc[sns] + snapshot_weightings.to_csv(snakemake.output.snapshot_weightings) + + # Temporal segmentation + elif isinstance(resolution, str) and "seg" in resolution.lower(): + segments = int(resolution[:-3]) + logger.info(f"Use temporal segmentation with {segments} segments") + + # Get all time-dependent data + dfs = [ + pnl + for c in n.iterate_components() + for attr, pnl in c.pnl.items() + if not pnl.empty and attr != "e_min_pu" + ] + if snakemake.input.hourly_heat_demand_total: + dfs.append( + xr.open_dataset(snakemake.input.hourly_heat_demand_total) + .to_dataframe() + .unstack(level=1) + ) + if snakemake.input.solar_thermal_total: + dfs.append( + xr.open_dataset(snakemake.input.solar_thermal_total) + .to_dataframe() + .unstack(level=1) + ) + df = pd.concat(dfs, axis=1) + + # Reset columns to flat index + df = df.T.reset_index(drop=True).T + + # Normalise all time-dependent data + annual_max = df.max().replace(0, 1) + df = df.div(annual_max, level=0) + + # Get representative segments + agg = tsam.TimeSeriesAggregation( + df, + hoursPerPeriod=len(df), + noTypicalPeriods=1, + noSegments=segments, + segmentation=True, + solver=snakemake.params.solver_name, + ) + agg = agg.createTypicalPeriods() + + weightings = agg.index.get_level_values("Segment Duration") + offsets = np.insert(np.cumsum(weightings[:-1]), 0, 0) + snapshot_weightings = n.snapshot_weightings.loc[n.snapshots[offsets]].mul( + weightings, axis=0 + ) + + logger.info( + f"Distribution of snapshot durations:\n{snapshot_weightings.objective.value_counts()}" + ) + + snapshot_weightings.to_csv(snakemake.output.snapshot_weightings)