├── .NOTreadthedocs.yml ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── feature_request.md ├── dependabot.yaml ├── pull_request_template.md └── workflows │ ├── codeql.yaml │ ├── push-images.yaml │ ├── test.yaml │ ├── update-pinned-env.yaml │ └── validate.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .sync-send ├── CITATION.cff ├── LICENSES ├── CC-BY-4.0.txt ├── CC0-1.0.txt └── MIT.txt ├── Makefile ├── README.md ├── REUSE.toml ├── Snakefile ├── borg-it ├── config ├── config.default.yaml ├── config_ES.yaml ├── create_scenarios.py ├── examples │ ├── config.distribution-grid-experimental.yaml │ ├── config.entsoe-all.yaml │ ├── config.perfect.yaml │ └── config.validation.yaml ├── plotting.default.yaml ├── scenarios.template.yaml └── test │ ├── config.clusters.yaml │ ├── config.electricity.yaml │ ├── config.myopic.yaml │ ├── config.overnight.yaml │ ├── config.perfect.yaml │ ├── config.scenarios.yaml │ ├── config.tyndp.yaml │ ├── config.validator.yaml │ ├── config_ES_test.yaml │ └── scenarios.yaml ├── data ├── agg_p_nom_minmax.csv ├── ammonia_plants.csv ├── attributed_ports.json ├── biomass_transport_costs_supplychain1.csv ├── biomass_transport_costs_supplychain2.csv ├── cement-plants-noneu.csv ├── ch_cantons.csv ├── ch_industrial_production_per_subsector.csv ├── custom_extra_functionality.py ├── custom_powerplants.csv ├── district_heat_share.csv ├── egs_costs.json ├── eia_hydro_annual_capacity.csv ├── eia_hydro_annual_generation.csv ├── entsoegridkit │ ├── README.md │ ├── buses.csv │ ├── converters.csv │ ├── generators.csv │ ├── lines.csv │ ├── links.csv │ └── transformers.csv ├── existing_infrastructure │ └── existing_heating_raw.csv ├── gr-e-11.03.02.01.01-cc.csv ├── heat_load_profile_BDEW.csv ├── hydro_capacities.csv ├── links_p_nom.csv ├── nuclear_p_max_pu.csv ├── parameter_corrections.yaml ├── refineries-noneu.csv ├── retro │ ├── comparative_level_investment.csv │ ├── data_building_stock.csv │ ├── electricity_taxes_eu.csv │ ├── floor_area_missing.csv │ ├── retro_cost_germany.csv │ ├── u_values_poland.csv │ └── window_assumptions.csv ├── switzerland-new_format-all_years.csv ├── transmission_projects │ ├── manual │ │ └── new_links.csv │ ├── nep │ │ ├── new_lines.csv │ │ └── new_links.csv │ ├── template │ │ ├── new_lines.csv │ │ ├── new_links.csv │ │ ├── upgraded_lines.csv │ │ └── upgraded_links.csv │ └── tyndp2020 │ │ ├── new_lines.csv │ │ ├── new_links.csv │ │ ├── upgraded_lines.csv │ │ └── upgraded_links.csv └── unit_commitment.csv ├── data_ES ├── H2 │ └── H2_valley_demands.yaml ├── costs │ └── costs_updates.csv ├── dics │ ├── dic_datadis.yaml │ └── dic_nuts.yaml ├── electricity_demand │ ├── electricity_demand_percentages_NUTS0_by_economicSector_2022.csv │ ├── electricity_demand_percentages_NUTS2_by_economicSector_2022.csv │ ├── electricity_demand_percentages_NUTS3_by_economicSector_2022.csv │ ├── electricity_demand_profiles_NUTS0_by_economicSector_2022.csv │ ├── electricity_demand_profiles_NUTS2_by_economicSector_2022.csv │ └── electricity_demand_profiles_NUTS3_by_economicSector_2022.csv ├── esios │ ├── esios_CCGT_capacity_2023.csv │ ├── esios_nuclear_capacity_2023.csv │ ├── esios_onwind_capacity_2023.csv │ └── esios_solar_capacity_2023.csv ├── interconnections │ ├── ic_market_prices │ │ ├── mp_FR_2030.csv │ │ ├── mp_FR_2030_cutout2023.csv │ │ ├── mp_PT_2030.csv │ │ └── mp_PT_2030_cutout2023.csv │ ├── interconnections.yaml │ └── neighbouring_countries.yaml ├── nuts │ ├── NUTS2_ES.geojson │ └── NUTS3_ES.geojson └── q2q │ ├── q2q_onwind_europe_2023_NUTS3_v1.pkl │ ├── q2q_onwind_europe_2023_NUTS3_v2.pkl │ ├── q2q_onwind_europe_2023_NUTS3_v3.pkl │ ├── q2q_solar_europe_2023_NUTS3_v1.pkl │ ├── q2q_solar_europe_2023_NUTS3_v2.pkl │ └── q2q_solar_europe_2023_NUTS3_v3.pkl ├── doc ├── Makefile ├── conf.py ├── configtables │ ├── adjustments.csv │ ├── atlite.csv │ ├── biomass.csv │ ├── clustering.csv │ ├── co2_budget.csv │ ├── conventional.csv │ ├── costs.csv │ ├── countries.csv │ ├── electricity.csv │ ├── enable.csv │ ├── energy.csv │ ├── existing_capacities.csv │ ├── foresight.csv │ ├── hydro.csv │ ├── industry.csv │ ├── lines.csv │ ├── links.csv │ ├── load.csv │ ├── offwind.csv │ ├── onwind.csv │ ├── opts.csv │ ├── plotting.csv │ ├── run.csv │ ├── scenario.csv │ ├── sector-opts.csv │ ├── sector.csv │ ├── snapshots.csv │ ├── solar-thermal.csv │ ├── solar.csv │ ├── solving.csv │ ├── toplevel.csv │ ├── transformers.csv │ └── transmission_projects.csv ├── configuration.rst ├── contributing.rst ├── costs.rst ├── data-base-network.rst ├── data-bundle.rst ├── data-repos.rst ├── data-retrieval.rst ├── data_sources.rst ├── foresight.rst ├── img │ ├── Heat_and_el_demand_timeseries.png │ ├── base.png │ ├── base_s.png │ ├── base_s_128.png │ ├── base_s_256.png │ ├── base_s_37.png │ ├── base_s_512.png │ ├── base_s_X.png │ ├── corine.png │ ├── countries.png │ ├── country_shapes.png │ ├── demand-map-heat.png │ ├── distance_hist.png │ ├── eez.png │ ├── elec.png │ ├── eligibility.png │ ├── era5.png │ ├── europe_shape.png │ ├── fec_industry_today_tomorrow.png │ ├── gas_pipeline_figure.png │ ├── gebco_2019_grid_image.jpg │ ├── hotmaps.png │ ├── hydrocapacities.png │ ├── hydrogeneration.png │ ├── inflow-box.png │ ├── inflow-ts.png │ ├── intro-workflow.png │ ├── load-box.png │ ├── load-ts.png │ ├── multisector_figure.pdf │ ├── multisector_figure.png │ ├── multisector_figure.svg │ ├── natura.png │ ├── nuts3.png │ ├── nuts3_shapes.png │ ├── offshore_shapes.png │ ├── offwindac-gridcell.png │ ├── offwinddc-gridcell.png │ ├── onwind-gridcell.png │ ├── p_nom_max_hist.png │ ├── potential_heatmap.png │ ├── powerplantmatching.png │ ├── process-emissions.png │ ├── profile_ts.png │ ├── pypsa-eur-grid.png │ ├── pypsa-logo.png │ ├── regions_offshore.png │ ├── regions_offshore_base_s.png │ ├── regions_offshore_base_s_X.png │ ├── regions_onshore.png │ ├── regions_onshore_base_s.png │ ├── regions_onshore_base_s_X.png │ ├── results.png │ ├── sarah.png │ ├── scenarios.png │ ├── solar-gridcell.png │ ├── synchronisation.png │ ├── tech-colors.png │ ├── underwater_hist.png │ ├── validation_production_bar_elec_s_37_ec_lv1.0_Ept.png │ ├── validation_seasonal_operation_area_elec_s_37_ec_lv1.0_Ept.png │ └── workflow.png ├── index.rst ├── installation.rst ├── introduction.rst ├── licenses.rst ├── limitations.rst ├── make.bat ├── plotting.rst ├── preparation.rst ├── publications.bib ├── publications.rst ├── release_notes.rst ├── requirements.txt ├── retrieve.rst ├── sector.rst ├── solving.rst ├── spatial_resolution.rst ├── supply_demand.rst ├── support.rst ├── tutorial.rst ├── tutorial_sector.rst ├── validation.rst └── wildcards.rst ├── docker └── dev-env │ └── Dockerfile ├── docs ├── ISA_index.rst ├── Makefile ├── _build │ ├── doctrees │ │ ├── configuration.doctree │ │ ├── environment.pickle │ │ ├── index.doctree │ │ └── introduction.doctree │ └── html │ │ ├── .buildinfo │ │ ├── _images │ │ └── base.png │ │ ├── _sources │ │ ├── configuration.rst │ │ ├── index.rst │ │ ├── index.rst.txt │ │ └── introduction.rst │ │ ├── _static │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── github-banner.svg │ │ ├── images │ │ │ ├── logo_binder.svg │ │ │ ├── logo_colab.png │ │ │ ├── logo_deepnote.svg │ │ │ └── logo_jupyterhub.svg │ │ ├── language_data.js │ │ ├── locales │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── iw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ms │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── no │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── tg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── tl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ ├── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── booktheme.mo │ │ │ │ │ └── booktheme.po │ │ │ └── zh_TW │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── booktheme.mo │ │ │ │ └── booktheme.po │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── sbt-webpack-macros.html │ │ ├── scripts │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.LICENSE.txt │ │ │ ├── bootstrap.js.map │ │ │ ├── pydata-sphinx-theme.js │ │ │ ├── pydata-sphinx-theme.js.map │ │ │ ├── sphinx-book-theme.js │ │ │ └── sphinx-book-theme.js.map │ │ ├── searchtools.js │ │ ├── sphinx_highlight.js │ │ ├── styles │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── pydata-sphinx-theme.css │ │ │ ├── pydata-sphinx-theme.css.map │ │ │ ├── sphinx-book-theme.css │ │ │ ├── sphinx-book-theme.css.map │ │ │ └── theme.css │ │ ├── vendor │ │ │ └── fontawesome │ │ │ │ └── 6.5.2 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ └── all.min.js.LICENSE.txt │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ └── webpack-macros.html │ │ ├── configuration.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── introduction.html │ │ ├── objects.inv │ │ ├── search.html │ │ └── searchindex.js ├── bib_github_pypsa_spain.bib ├── conf.py ├── configtables │ ├── ISA_index.csv │ └── pypsa-spain.csv ├── configuration.rst ├── drafts.rst ├── img │ ├── ISA_onwind.jpg │ ├── ISA_onwind_map.jpg │ ├── ISA_solar.jpg │ ├── ISA_solar_map.jpg │ ├── base.jpg │ ├── network_ES21_k_100_50.png │ └── network_ES24_k_100_50.png ├── index.rst ├── interconnections.rst ├── make.bat ├── publications.rst ├── regional_network_focus.rst ├── release_notes.rst └── requirements.txt ├── envs ├── environment.yaml ├── linux-64.lock.yaml ├── osx-64.lock.yaml ├── osx-arm64.lock.yaml └── win-64.lock.yaml ├── matplotlibrc ├── ruff.toml ├── rules ├── build_electricity.smk ├── build_sector.smk ├── collect.smk ├── common.smk ├── development.smk ├── postprocess.smk ├── retrieve.smk ├── solve_electricity.smk ├── solve_myopic.smk ├── solve_overnight.smk └── solve_perfect.smk ├── scripts ├── __init__.py ├── _benchmark.py ├── _helpers.py ├── add_brownfield.py ├── add_electricity.py ├── add_existing_baseyear.py ├── add_transmission_projects_and_dlr.py ├── base_network.py ├── build_ammonia_production.py ├── build_ates_potentials.py ├── build_bidding_zones.py ├── build_biomass_potentials.py ├── build_biomass_transport_costs.py ├── build_central_heating_temperature_profiles │ ├── central_heating_temperature_approximator.py │ └── run.py ├── build_clustered_co2_sequestration_potentials.py ├── build_clustered_population_layouts.py ├── build_clustered_solar_rooftop_potentials.py ├── build_co2_sequestration_potentials.py ├── build_cop_profiles │ ├── BaseCopApproximator.py │ ├── CentralHeatingCopApproximator.py │ ├── DecentralHeatingCopApproximator.py │ └── run.py ├── build_cutout.py ├── build_daily_heat_demand.py ├── build_direct_heat_source_utilisation_profiles.py ├── build_district_heat_share.py ├── build_egs_potentials.py ├── build_electricity_demand.py ├── build_electricity_demand_base.py ├── build_energy_totals.py ├── build_existing_heating_distribution.py ├── build_gas_input_locations.py ├── build_gas_network.py ├── build_geothermal_heat_potential.py ├── build_hac_features.py ├── build_heat_totals.py ├── build_hourly_heat_demand.py ├── build_hydro_profile.py ├── build_industrial_distribution_key.py ├── build_industrial_energy_demand_per_country_today.py ├── build_industrial_energy_demand_per_node.py ├── build_industrial_energy_demand_per_node_today.py ├── build_industrial_production_per_country.py ├── build_industrial_production_per_country_tomorrow.py ├── build_industrial_production_per_node.py ├── build_industry_sector_ratios.py ├── build_industry_sector_ratios_intermediate.py ├── build_line_rating.py ├── build_monthly_prices.py ├── build_osm_boundaries.py ├── build_osm_network.py ├── build_population_layouts.py ├── build_population_weighted_energy_totals.py ├── build_powerplants.py ├── build_ptes_operations │ ├── ptes_temperature_approximator.py │ └── run.py ├── build_renewable_profiles.py ├── build_retro_cost.py ├── build_salt_cavern_potentials.py ├── build_shapes.py ├── build_ship_raster.py ├── build_shipping_demand.py ├── build_solar_thermal_profiles.py ├── build_temperature_profiles.py ├── build_transmission_projects.py ├── build_transport_demand.py ├── build_tyndp_network.py ├── clean_osm_data.py ├── cluster_gas_network.py ├── cluster_network.py ├── definitions │ ├── heat_sector.py │ ├── heat_system.py │ └── heat_system_type.py ├── determine_availability_matrix.py ├── determine_availability_matrix_MD_UA.py ├── make_cumulative_costs.py ├── make_global_summary.py ├── make_summary.py ├── make_summary_perfect.py ├── plot_balance_map.py ├── plot_balance_timeseries.py ├── plot_base_network.py ├── plot_gas_network.py ├── plot_heatmap_timeseries.py ├── plot_hydrogen_network.py ├── plot_power_network.py ├── plot_power_network_clustered.py ├── plot_power_network_perfect.py ├── plot_statistics.py ├── plot_summary.py ├── prepare_network.py ├── prepare_osm_network_release.py ├── prepare_perfect_foresight.py ├── prepare_sector_network.py ├── retrieve_bidding_zones.py ├── retrieve_cost_data.py ├── retrieve_databundle.py ├── retrieve_electricity_demand.py ├── retrieve_eurostat_data.py ├── retrieve_eurostat_household_data.py ├── retrieve_gas_infrastructure_data.py ├── retrieve_jrc_idees.py ├── retrieve_monthly_fuel_prices.py ├── retrieve_osm_boundaries.py ├── retrieve_osm_data.py ├── retrieve_tyndp_bundle.py ├── simplify_network.py ├── solve_network.py ├── solve_operations_network.py └── time_aggregation.py └── test ├── __init__.py ├── conftest.py ├── test_base_network.py ├── test_build_powerplants.py ├── test_build_shapes.py └── test_data ├── custom_powerplants_DE.csv └── powerplants_DE.csv /.NOTreadthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.NOTreadthedocs.yml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/push-images.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/workflows/push-images.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pinned-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/workflows/update-pinned-env.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.sync-send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/.sync-send -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/REUSE.toml -------------------------------------------------------------------------------- /Snakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/Snakefile -------------------------------------------------------------------------------- /borg-it: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/borg-it -------------------------------------------------------------------------------- /config/config.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/config.default.yaml -------------------------------------------------------------------------------- /config/config_ES.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/config_ES.yaml -------------------------------------------------------------------------------- /config/create_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/create_scenarios.py -------------------------------------------------------------------------------- /config/examples/config.distribution-grid-experimental.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/examples/config.distribution-grid-experimental.yaml -------------------------------------------------------------------------------- /config/examples/config.entsoe-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/examples/config.entsoe-all.yaml -------------------------------------------------------------------------------- /config/examples/config.perfect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/examples/config.perfect.yaml -------------------------------------------------------------------------------- /config/examples/config.validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/examples/config.validation.yaml -------------------------------------------------------------------------------- /config/plotting.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/plotting.default.yaml -------------------------------------------------------------------------------- /config/scenarios.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/scenarios.template.yaml -------------------------------------------------------------------------------- /config/test/config.clusters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.clusters.yaml -------------------------------------------------------------------------------- /config/test/config.electricity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.electricity.yaml -------------------------------------------------------------------------------- /config/test/config.myopic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.myopic.yaml -------------------------------------------------------------------------------- /config/test/config.overnight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.overnight.yaml -------------------------------------------------------------------------------- /config/test/config.perfect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.perfect.yaml -------------------------------------------------------------------------------- /config/test/config.scenarios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.scenarios.yaml -------------------------------------------------------------------------------- /config/test/config.tyndp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.tyndp.yaml -------------------------------------------------------------------------------- /config/test/config.validator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config.validator.yaml -------------------------------------------------------------------------------- /config/test/config_ES_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/config_ES_test.yaml -------------------------------------------------------------------------------- /config/test/scenarios.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/config/test/scenarios.yaml -------------------------------------------------------------------------------- /data/agg_p_nom_minmax.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/agg_p_nom_minmax.csv -------------------------------------------------------------------------------- /data/ammonia_plants.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/ammonia_plants.csv -------------------------------------------------------------------------------- /data/attributed_ports.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/attributed_ports.json -------------------------------------------------------------------------------- /data/biomass_transport_costs_supplychain1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/biomass_transport_costs_supplychain1.csv -------------------------------------------------------------------------------- /data/biomass_transport_costs_supplychain2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/biomass_transport_costs_supplychain2.csv -------------------------------------------------------------------------------- /data/cement-plants-noneu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/cement-plants-noneu.csv -------------------------------------------------------------------------------- /data/ch_cantons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/ch_cantons.csv -------------------------------------------------------------------------------- /data/ch_industrial_production_per_subsector.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/ch_industrial_production_per_subsector.csv -------------------------------------------------------------------------------- /data/custom_extra_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/custom_extra_functionality.py -------------------------------------------------------------------------------- /data/custom_powerplants.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/custom_powerplants.csv -------------------------------------------------------------------------------- /data/district_heat_share.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/district_heat_share.csv -------------------------------------------------------------------------------- /data/egs_costs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/egs_costs.json -------------------------------------------------------------------------------- /data/eia_hydro_annual_capacity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/eia_hydro_annual_capacity.csv -------------------------------------------------------------------------------- /data/eia_hydro_annual_generation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/eia_hydro_annual_generation.csv -------------------------------------------------------------------------------- /data/entsoegridkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/README.md -------------------------------------------------------------------------------- /data/entsoegridkit/buses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/buses.csv -------------------------------------------------------------------------------- /data/entsoegridkit/converters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/converters.csv -------------------------------------------------------------------------------- /data/entsoegridkit/generators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/generators.csv -------------------------------------------------------------------------------- /data/entsoegridkit/lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/lines.csv -------------------------------------------------------------------------------- /data/entsoegridkit/links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/links.csv -------------------------------------------------------------------------------- /data/entsoegridkit/transformers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/entsoegridkit/transformers.csv -------------------------------------------------------------------------------- /data/existing_infrastructure/existing_heating_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/existing_infrastructure/existing_heating_raw.csv -------------------------------------------------------------------------------- /data/gr-e-11.03.02.01.01-cc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/gr-e-11.03.02.01.01-cc.csv -------------------------------------------------------------------------------- /data/heat_load_profile_BDEW.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/heat_load_profile_BDEW.csv -------------------------------------------------------------------------------- /data/hydro_capacities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/hydro_capacities.csv -------------------------------------------------------------------------------- /data/links_p_nom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/links_p_nom.csv -------------------------------------------------------------------------------- /data/nuclear_p_max_pu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/nuclear_p_max_pu.csv -------------------------------------------------------------------------------- /data/parameter_corrections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/parameter_corrections.yaml -------------------------------------------------------------------------------- /data/refineries-noneu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/refineries-noneu.csv -------------------------------------------------------------------------------- /data/retro/comparative_level_investment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/comparative_level_investment.csv -------------------------------------------------------------------------------- /data/retro/data_building_stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/data_building_stock.csv -------------------------------------------------------------------------------- /data/retro/electricity_taxes_eu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/electricity_taxes_eu.csv -------------------------------------------------------------------------------- /data/retro/floor_area_missing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/floor_area_missing.csv -------------------------------------------------------------------------------- /data/retro/retro_cost_germany.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/retro_cost_germany.csv -------------------------------------------------------------------------------- /data/retro/u_values_poland.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/u_values_poland.csv -------------------------------------------------------------------------------- /data/retro/window_assumptions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/retro/window_assumptions.csv -------------------------------------------------------------------------------- /data/switzerland-new_format-all_years.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/switzerland-new_format-all_years.csv -------------------------------------------------------------------------------- /data/transmission_projects/manual/new_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/manual/new_links.csv -------------------------------------------------------------------------------- /data/transmission_projects/nep/new_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/nep/new_lines.csv -------------------------------------------------------------------------------- /data/transmission_projects/nep/new_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/nep/new_links.csv -------------------------------------------------------------------------------- /data/transmission_projects/template/new_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/template/new_lines.csv -------------------------------------------------------------------------------- /data/transmission_projects/template/new_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/template/new_links.csv -------------------------------------------------------------------------------- /data/transmission_projects/template/upgraded_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/template/upgraded_lines.csv -------------------------------------------------------------------------------- /data/transmission_projects/template/upgraded_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/template/upgraded_links.csv -------------------------------------------------------------------------------- /data/transmission_projects/tyndp2020/new_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/tyndp2020/new_lines.csv -------------------------------------------------------------------------------- /data/transmission_projects/tyndp2020/new_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/tyndp2020/new_links.csv -------------------------------------------------------------------------------- /data/transmission_projects/tyndp2020/upgraded_lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/tyndp2020/upgraded_lines.csv -------------------------------------------------------------------------------- /data/transmission_projects/tyndp2020/upgraded_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/transmission_projects/tyndp2020/upgraded_links.csv -------------------------------------------------------------------------------- /data/unit_commitment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data/unit_commitment.csv -------------------------------------------------------------------------------- /data_ES/H2/H2_valley_demands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/H2/H2_valley_demands.yaml -------------------------------------------------------------------------------- /data_ES/costs/costs_updates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/costs/costs_updates.csv -------------------------------------------------------------------------------- /data_ES/dics/dic_datadis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/dics/dic_datadis.yaml -------------------------------------------------------------------------------- /data_ES/dics/dic_nuts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/dics/dic_nuts.yaml -------------------------------------------------------------------------------- /data_ES/electricity_demand/electricity_demand_percentages_NUTS0_by_economicSector_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/electricity_demand/electricity_demand_percentages_NUTS0_by_economicSector_2022.csv -------------------------------------------------------------------------------- /data_ES/electricity_demand/electricity_demand_percentages_NUTS2_by_economicSector_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/electricity_demand/electricity_demand_percentages_NUTS2_by_economicSector_2022.csv -------------------------------------------------------------------------------- /data_ES/electricity_demand/electricity_demand_percentages_NUTS3_by_economicSector_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/electricity_demand/electricity_demand_percentages_NUTS3_by_economicSector_2022.csv -------------------------------------------------------------------------------- /data_ES/electricity_demand/electricity_demand_profiles_NUTS0_by_economicSector_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/electricity_demand/electricity_demand_profiles_NUTS0_by_economicSector_2022.csv -------------------------------------------------------------------------------- /data_ES/electricity_demand/electricity_demand_profiles_NUTS2_by_economicSector_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/electricity_demand/electricity_demand_profiles_NUTS2_by_economicSector_2022.csv -------------------------------------------------------------------------------- /data_ES/electricity_demand/electricity_demand_profiles_NUTS3_by_economicSector_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/electricity_demand/electricity_demand_profiles_NUTS3_by_economicSector_2022.csv -------------------------------------------------------------------------------- /data_ES/esios/esios_CCGT_capacity_2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/esios/esios_CCGT_capacity_2023.csv -------------------------------------------------------------------------------- /data_ES/esios/esios_nuclear_capacity_2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/esios/esios_nuclear_capacity_2023.csv -------------------------------------------------------------------------------- /data_ES/esios/esios_onwind_capacity_2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/esios/esios_onwind_capacity_2023.csv -------------------------------------------------------------------------------- /data_ES/esios/esios_solar_capacity_2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/esios/esios_solar_capacity_2023.csv -------------------------------------------------------------------------------- /data_ES/interconnections/ic_market_prices/mp_FR_2030.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/interconnections/ic_market_prices/mp_FR_2030.csv -------------------------------------------------------------------------------- /data_ES/interconnections/ic_market_prices/mp_FR_2030_cutout2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/interconnections/ic_market_prices/mp_FR_2030_cutout2023.csv -------------------------------------------------------------------------------- /data_ES/interconnections/ic_market_prices/mp_PT_2030.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/interconnections/ic_market_prices/mp_PT_2030.csv -------------------------------------------------------------------------------- /data_ES/interconnections/ic_market_prices/mp_PT_2030_cutout2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/interconnections/ic_market_prices/mp_PT_2030_cutout2023.csv -------------------------------------------------------------------------------- /data_ES/interconnections/interconnections.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/interconnections/interconnections.yaml -------------------------------------------------------------------------------- /data_ES/interconnections/neighbouring_countries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/interconnections/neighbouring_countries.yaml -------------------------------------------------------------------------------- /data_ES/nuts/NUTS2_ES.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/nuts/NUTS2_ES.geojson -------------------------------------------------------------------------------- /data_ES/nuts/NUTS3_ES.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/nuts/NUTS3_ES.geojson -------------------------------------------------------------------------------- /data_ES/q2q/q2q_onwind_europe_2023_NUTS3_v1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/q2q/q2q_onwind_europe_2023_NUTS3_v1.pkl -------------------------------------------------------------------------------- /data_ES/q2q/q2q_onwind_europe_2023_NUTS3_v2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/q2q/q2q_onwind_europe_2023_NUTS3_v2.pkl -------------------------------------------------------------------------------- /data_ES/q2q/q2q_onwind_europe_2023_NUTS3_v3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/q2q/q2q_onwind_europe_2023_NUTS3_v3.pkl -------------------------------------------------------------------------------- /data_ES/q2q/q2q_solar_europe_2023_NUTS3_v1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/q2q/q2q_solar_europe_2023_NUTS3_v1.pkl -------------------------------------------------------------------------------- /data_ES/q2q/q2q_solar_europe_2023_NUTS3_v2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/q2q/q2q_solar_europe_2023_NUTS3_v2.pkl -------------------------------------------------------------------------------- /data_ES/q2q/q2q_solar_europe_2023_NUTS3_v3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/data_ES/q2q/q2q_solar_europe_2023_NUTS3_v3.pkl -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/configtables/adjustments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/adjustments.csv -------------------------------------------------------------------------------- /doc/configtables/atlite.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/atlite.csv -------------------------------------------------------------------------------- /doc/configtables/biomass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/biomass.csv -------------------------------------------------------------------------------- /doc/configtables/clustering.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/clustering.csv -------------------------------------------------------------------------------- /doc/configtables/co2_budget.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/co2_budget.csv -------------------------------------------------------------------------------- /doc/configtables/conventional.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/conventional.csv -------------------------------------------------------------------------------- /doc/configtables/costs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/costs.csv -------------------------------------------------------------------------------- /doc/configtables/countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/countries.csv -------------------------------------------------------------------------------- /doc/configtables/electricity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/electricity.csv -------------------------------------------------------------------------------- /doc/configtables/enable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/enable.csv -------------------------------------------------------------------------------- /doc/configtables/energy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/energy.csv -------------------------------------------------------------------------------- /doc/configtables/existing_capacities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/existing_capacities.csv -------------------------------------------------------------------------------- /doc/configtables/foresight.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/foresight.csv -------------------------------------------------------------------------------- /doc/configtables/hydro.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/hydro.csv -------------------------------------------------------------------------------- /doc/configtables/industry.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/industry.csv -------------------------------------------------------------------------------- /doc/configtables/lines.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/lines.csv -------------------------------------------------------------------------------- /doc/configtables/links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/links.csv -------------------------------------------------------------------------------- /doc/configtables/load.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/load.csv -------------------------------------------------------------------------------- /doc/configtables/offwind.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/offwind.csv -------------------------------------------------------------------------------- /doc/configtables/onwind.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/onwind.csv -------------------------------------------------------------------------------- /doc/configtables/opts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/opts.csv -------------------------------------------------------------------------------- /doc/configtables/plotting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/plotting.csv -------------------------------------------------------------------------------- /doc/configtables/run.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/run.csv -------------------------------------------------------------------------------- /doc/configtables/scenario.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/scenario.csv -------------------------------------------------------------------------------- /doc/configtables/sector-opts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/sector-opts.csv -------------------------------------------------------------------------------- /doc/configtables/sector.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/sector.csv -------------------------------------------------------------------------------- /doc/configtables/snapshots.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/snapshots.csv -------------------------------------------------------------------------------- /doc/configtables/solar-thermal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/solar-thermal.csv -------------------------------------------------------------------------------- /doc/configtables/solar.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/solar.csv -------------------------------------------------------------------------------- /doc/configtables/solving.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/solving.csv -------------------------------------------------------------------------------- /doc/configtables/toplevel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/toplevel.csv -------------------------------------------------------------------------------- /doc/configtables/transformers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/transformers.csv -------------------------------------------------------------------------------- /doc/configtables/transmission_projects.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configtables/transmission_projects.csv -------------------------------------------------------------------------------- /doc/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/configuration.rst -------------------------------------------------------------------------------- /doc/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/contributing.rst -------------------------------------------------------------------------------- /doc/costs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/costs.rst -------------------------------------------------------------------------------- /doc/data-base-network.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/data-base-network.rst -------------------------------------------------------------------------------- /doc/data-bundle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/data-bundle.rst -------------------------------------------------------------------------------- /doc/data-repos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/data-repos.rst -------------------------------------------------------------------------------- /doc/data-retrieval.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/data-retrieval.rst -------------------------------------------------------------------------------- /doc/data_sources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/data_sources.rst -------------------------------------------------------------------------------- /doc/foresight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/foresight.rst -------------------------------------------------------------------------------- /doc/img/Heat_and_el_demand_timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/Heat_and_el_demand_timeseries.png -------------------------------------------------------------------------------- /doc/img/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base.png -------------------------------------------------------------------------------- /doc/img/base_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base_s.png -------------------------------------------------------------------------------- /doc/img/base_s_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base_s_128.png -------------------------------------------------------------------------------- /doc/img/base_s_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base_s_256.png -------------------------------------------------------------------------------- /doc/img/base_s_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base_s_37.png -------------------------------------------------------------------------------- /doc/img/base_s_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base_s_512.png -------------------------------------------------------------------------------- /doc/img/base_s_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/base_s_X.png -------------------------------------------------------------------------------- /doc/img/corine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/corine.png -------------------------------------------------------------------------------- /doc/img/countries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/countries.png -------------------------------------------------------------------------------- /doc/img/country_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/country_shapes.png -------------------------------------------------------------------------------- /doc/img/demand-map-heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/demand-map-heat.png -------------------------------------------------------------------------------- /doc/img/distance_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/distance_hist.png -------------------------------------------------------------------------------- /doc/img/eez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/eez.png -------------------------------------------------------------------------------- /doc/img/elec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/elec.png -------------------------------------------------------------------------------- /doc/img/eligibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/eligibility.png -------------------------------------------------------------------------------- /doc/img/era5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/era5.png -------------------------------------------------------------------------------- /doc/img/europe_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/europe_shape.png -------------------------------------------------------------------------------- /doc/img/fec_industry_today_tomorrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/fec_industry_today_tomorrow.png -------------------------------------------------------------------------------- /doc/img/gas_pipeline_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/gas_pipeline_figure.png -------------------------------------------------------------------------------- /doc/img/gebco_2019_grid_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/gebco_2019_grid_image.jpg -------------------------------------------------------------------------------- /doc/img/hotmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/hotmaps.png -------------------------------------------------------------------------------- /doc/img/hydrocapacities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/hydrocapacities.png -------------------------------------------------------------------------------- /doc/img/hydrogeneration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/hydrogeneration.png -------------------------------------------------------------------------------- /doc/img/inflow-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/inflow-box.png -------------------------------------------------------------------------------- /doc/img/inflow-ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/inflow-ts.png -------------------------------------------------------------------------------- /doc/img/intro-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/intro-workflow.png -------------------------------------------------------------------------------- /doc/img/load-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/load-box.png -------------------------------------------------------------------------------- /doc/img/load-ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/load-ts.png -------------------------------------------------------------------------------- /doc/img/multisector_figure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/multisector_figure.pdf -------------------------------------------------------------------------------- /doc/img/multisector_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/multisector_figure.png -------------------------------------------------------------------------------- /doc/img/multisector_figure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/multisector_figure.svg -------------------------------------------------------------------------------- /doc/img/natura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/natura.png -------------------------------------------------------------------------------- /doc/img/nuts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/nuts3.png -------------------------------------------------------------------------------- /doc/img/nuts3_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/nuts3_shapes.png -------------------------------------------------------------------------------- /doc/img/offshore_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/offshore_shapes.png -------------------------------------------------------------------------------- /doc/img/offwindac-gridcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/offwindac-gridcell.png -------------------------------------------------------------------------------- /doc/img/offwinddc-gridcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/offwinddc-gridcell.png -------------------------------------------------------------------------------- /doc/img/onwind-gridcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/onwind-gridcell.png -------------------------------------------------------------------------------- /doc/img/p_nom_max_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/p_nom_max_hist.png -------------------------------------------------------------------------------- /doc/img/potential_heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/potential_heatmap.png -------------------------------------------------------------------------------- /doc/img/powerplantmatching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/powerplantmatching.png -------------------------------------------------------------------------------- /doc/img/process-emissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/process-emissions.png -------------------------------------------------------------------------------- /doc/img/profile_ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/profile_ts.png -------------------------------------------------------------------------------- /doc/img/pypsa-eur-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/pypsa-eur-grid.png -------------------------------------------------------------------------------- /doc/img/pypsa-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/pypsa-logo.png -------------------------------------------------------------------------------- /doc/img/regions_offshore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/regions_offshore.png -------------------------------------------------------------------------------- /doc/img/regions_offshore_base_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/regions_offshore_base_s.png -------------------------------------------------------------------------------- /doc/img/regions_offshore_base_s_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/regions_offshore_base_s_X.png -------------------------------------------------------------------------------- /doc/img/regions_onshore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/regions_onshore.png -------------------------------------------------------------------------------- /doc/img/regions_onshore_base_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/regions_onshore_base_s.png -------------------------------------------------------------------------------- /doc/img/regions_onshore_base_s_X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/regions_onshore_base_s_X.png -------------------------------------------------------------------------------- /doc/img/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/results.png -------------------------------------------------------------------------------- /doc/img/sarah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/sarah.png -------------------------------------------------------------------------------- /doc/img/scenarios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/scenarios.png -------------------------------------------------------------------------------- /doc/img/solar-gridcell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/solar-gridcell.png -------------------------------------------------------------------------------- /doc/img/synchronisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/synchronisation.png -------------------------------------------------------------------------------- /doc/img/tech-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/tech-colors.png -------------------------------------------------------------------------------- /doc/img/underwater_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/underwater_hist.png -------------------------------------------------------------------------------- /doc/img/validation_production_bar_elec_s_37_ec_lv1.0_Ept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/validation_production_bar_elec_s_37_ec_lv1.0_Ept.png -------------------------------------------------------------------------------- /doc/img/validation_seasonal_operation_area_elec_s_37_ec_lv1.0_Ept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/validation_seasonal_operation_area_elec_s_37_ec_lv1.0_Ept.png -------------------------------------------------------------------------------- /doc/img/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/img/workflow.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/introduction.rst -------------------------------------------------------------------------------- /doc/licenses.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/licenses.rst -------------------------------------------------------------------------------- /doc/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/limitations.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/plotting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/plotting.rst -------------------------------------------------------------------------------- /doc/preparation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/preparation.rst -------------------------------------------------------------------------------- /doc/publications.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/publications.bib -------------------------------------------------------------------------------- /doc/publications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/publications.rst -------------------------------------------------------------------------------- /doc/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/release_notes.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/retrieve.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/retrieve.rst -------------------------------------------------------------------------------- /doc/sector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/sector.rst -------------------------------------------------------------------------------- /doc/solving.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/solving.rst -------------------------------------------------------------------------------- /doc/spatial_resolution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/spatial_resolution.rst -------------------------------------------------------------------------------- /doc/supply_demand.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/supply_demand.rst -------------------------------------------------------------------------------- /doc/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/support.rst -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /doc/tutorial_sector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/tutorial_sector.rst -------------------------------------------------------------------------------- /doc/validation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/validation.rst -------------------------------------------------------------------------------- /doc/wildcards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/doc/wildcards.rst -------------------------------------------------------------------------------- /docker/dev-env/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docker/dev-env/Dockerfile -------------------------------------------------------------------------------- /docs/ISA_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/ISA_index.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/configuration.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/doctrees/configuration.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/_build/doctrees/introduction.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/doctrees/introduction.doctree -------------------------------------------------------------------------------- /docs/_build/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/.buildinfo -------------------------------------------------------------------------------- /docs/_build/html/_images/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_images/base.png -------------------------------------------------------------------------------- /docs/_build/html/_sources/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_sources/configuration.rst -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_sources/index.rst -------------------------------------------------------------------------------- /docs/_build/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_build/html/_sources/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_sources/introduction.rst -------------------------------------------------------------------------------- /docs/_build/html/_static/alabaster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/alabaster.css -------------------------------------------------------------------------------- /docs/_build/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/basic.css -------------------------------------------------------------------------------- /docs/_build/html/_static/custom.css: -------------------------------------------------------------------------------- 1 | /* This file intentionally left blank. */ 2 | -------------------------------------------------------------------------------- /docs/_build/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_build/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/file.png -------------------------------------------------------------------------------- /docs/_build/html/_static/github-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/github-banner.svg -------------------------------------------------------------------------------- /docs/_build/html/_static/images/logo_binder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/images/logo_binder.svg -------------------------------------------------------------------------------- /docs/_build/html/_static/images/logo_colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/images/logo_colab.png -------------------------------------------------------------------------------- /docs/_build/html/_static/images/logo_deepnote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/images/logo_deepnote.svg -------------------------------------------------------------------------------- /docs/_build/html/_static/images/logo_jupyterhub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/images/logo_jupyterhub.svg -------------------------------------------------------------------------------- /docs/_build/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ar/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ar/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ar/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ar/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/bg/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/bg/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/bg/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/bg/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/bn/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/bn/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/bn/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/bn/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ca/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ca/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ca/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ca/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/cs/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/cs/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/cs/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/cs/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/da/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/da/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/da/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/da/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/de/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/de/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/de/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/de/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/el/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/el/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/el/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/el/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/eo/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/eo/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/eo/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/eo/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/es/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/es/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/es/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/es/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/et/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/et/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/et/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/et/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/fi/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/fi/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/fi/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/fi/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/fr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/fr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/fr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/fr/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/hr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/hr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/hr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/hr/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/id/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/id/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/id/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/id/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/it/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/it/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/it/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/it/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/iw/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/iw/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/iw/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/iw/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ja/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ja/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ja/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ja/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ko/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ko/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ko/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ko/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/lt/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/lt/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/lt/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/lt/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/lv/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/lv/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/lv/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/lv/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ml/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ml/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ml/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ml/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/mr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/mr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/mr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/mr/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ms/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ms/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ms/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ms/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/nl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/nl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/nl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/nl/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/no/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/no/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/no/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/no/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/pl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/pl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/pl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/pl/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/pt/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/pt/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/pt/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/pt/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ro/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ro/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ro/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ro/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ru/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ru/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ru/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ru/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sk/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sk/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sk/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sk/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sl/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sr/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sv/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sv/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/sv/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/sv/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ta/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ta/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ta/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ta/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/te/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/te/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/te/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/te/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/tg/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/tg/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/tg/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/tg/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/th/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/th/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/th/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/th/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/tl/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/tl/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/tl/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/tl/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/tr/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/tr/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/tr/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/tr/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/uk/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/uk/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/uk/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/uk/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ur/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ur/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/ur/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/ur/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/vi/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/vi/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/vi/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/vi/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/zh_CN/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/zh_CN/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo -------------------------------------------------------------------------------- /docs/_build/html/_static/locales/zh_TW/LC_MESSAGES/booktheme.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/locales/zh_TW/LC_MESSAGES/booktheme.po -------------------------------------------------------------------------------- /docs/_build/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/minus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/plus.png -------------------------------------------------------------------------------- /docs/_build/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/_build/html/_static/sbt-webpack-macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/sbt-webpack-macros.html -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/bootstrap.js -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/bootstrap.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/bootstrap.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/bootstrap.js.map -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/pydata-sphinx-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/pydata-sphinx-theme.js -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/pydata-sphinx-theme.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/pydata-sphinx-theme.js.map -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/sphinx-book-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/sphinx-book-theme.js -------------------------------------------------------------------------------- /docs/_build/html/_static/scripts/sphinx-book-theme.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/scripts/sphinx-book-theme.js.map -------------------------------------------------------------------------------- /docs/_build/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_build/html/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/bootstrap.css -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/bootstrap.css.map -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/pydata-sphinx-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/pydata-sphinx-theme.css -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/pydata-sphinx-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/pydata-sphinx-theme.css.map -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/sphinx-book-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/sphinx-book-theme.css -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/sphinx-book-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/sphinx-book-theme.css.map -------------------------------------------------------------------------------- /docs/_build/html/_static/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/styles/theme.css -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/LICENSE.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/css/all.min.css -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/js/all.min.js -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/js/all.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/js/all.min.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/vendor/fontawesome/6.5.2/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /docs/_build/html/_static/webpack-macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/_static/webpack-macros.html -------------------------------------------------------------------------------- /docs/_build/html/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/configuration.html -------------------------------------------------------------------------------- /docs/_build/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/genindex.html -------------------------------------------------------------------------------- /docs/_build/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/index.html -------------------------------------------------------------------------------- /docs/_build/html/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/introduction.html -------------------------------------------------------------------------------- /docs/_build/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/objects.inv -------------------------------------------------------------------------------- /docs/_build/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/search.html -------------------------------------------------------------------------------- /docs/_build/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/_build/html/searchindex.js -------------------------------------------------------------------------------- /docs/bib_github_pypsa_spain.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/bib_github_pypsa_spain.bib -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configtables/ISA_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/configtables/ISA_index.csv -------------------------------------------------------------------------------- /docs/configtables/pypsa-spain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/configtables/pypsa-spain.csv -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/drafts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/drafts.rst -------------------------------------------------------------------------------- /docs/img/ISA_onwind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/ISA_onwind.jpg -------------------------------------------------------------------------------- /docs/img/ISA_onwind_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/ISA_onwind_map.jpg -------------------------------------------------------------------------------- /docs/img/ISA_solar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/ISA_solar.jpg -------------------------------------------------------------------------------- /docs/img/ISA_solar_map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/ISA_solar_map.jpg -------------------------------------------------------------------------------- /docs/img/base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/base.jpg -------------------------------------------------------------------------------- /docs/img/network_ES21_k_100_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/network_ES21_k_100_50.png -------------------------------------------------------------------------------- /docs/img/network_ES24_k_100_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/img/network_ES24_k_100_50.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/interconnections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/interconnections.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/publications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/publications.rst -------------------------------------------------------------------------------- /docs/regional_network_focus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/regional_network_focus.rst -------------------------------------------------------------------------------- /docs/release_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/release_notes.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /envs/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/envs/environment.yaml -------------------------------------------------------------------------------- /envs/linux-64.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/envs/linux-64.lock.yaml -------------------------------------------------------------------------------- /envs/osx-64.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/envs/osx-64.lock.yaml -------------------------------------------------------------------------------- /envs/osx-arm64.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/envs/osx-arm64.lock.yaml -------------------------------------------------------------------------------- /envs/win-64.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/envs/win-64.lock.yaml -------------------------------------------------------------------------------- /matplotlibrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/matplotlibrc -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/ruff.toml -------------------------------------------------------------------------------- /rules/build_electricity.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/build_electricity.smk -------------------------------------------------------------------------------- /rules/build_sector.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/build_sector.smk -------------------------------------------------------------------------------- /rules/collect.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/collect.smk -------------------------------------------------------------------------------- /rules/common.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/common.smk -------------------------------------------------------------------------------- /rules/development.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/development.smk -------------------------------------------------------------------------------- /rules/postprocess.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/postprocess.smk -------------------------------------------------------------------------------- /rules/retrieve.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/retrieve.smk -------------------------------------------------------------------------------- /rules/solve_electricity.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/solve_electricity.smk -------------------------------------------------------------------------------- /rules/solve_myopic.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/solve_myopic.smk -------------------------------------------------------------------------------- /rules/solve_overnight.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/solve_overnight.smk -------------------------------------------------------------------------------- /rules/solve_perfect.smk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/rules/solve_perfect.smk -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/_benchmark.py -------------------------------------------------------------------------------- /scripts/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/_helpers.py -------------------------------------------------------------------------------- /scripts/add_brownfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/add_brownfield.py -------------------------------------------------------------------------------- /scripts/add_electricity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/add_electricity.py -------------------------------------------------------------------------------- /scripts/add_existing_baseyear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/add_existing_baseyear.py -------------------------------------------------------------------------------- /scripts/add_transmission_projects_and_dlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/add_transmission_projects_and_dlr.py -------------------------------------------------------------------------------- /scripts/base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/base_network.py -------------------------------------------------------------------------------- /scripts/build_ammonia_production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_ammonia_production.py -------------------------------------------------------------------------------- /scripts/build_ates_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_ates_potentials.py -------------------------------------------------------------------------------- /scripts/build_bidding_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_bidding_zones.py -------------------------------------------------------------------------------- /scripts/build_biomass_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_biomass_potentials.py -------------------------------------------------------------------------------- /scripts/build_biomass_transport_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_biomass_transport_costs.py -------------------------------------------------------------------------------- /scripts/build_central_heating_temperature_profiles/central_heating_temperature_approximator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_central_heating_temperature_profiles/central_heating_temperature_approximator.py -------------------------------------------------------------------------------- /scripts/build_central_heating_temperature_profiles/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_central_heating_temperature_profiles/run.py -------------------------------------------------------------------------------- /scripts/build_clustered_co2_sequestration_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_clustered_co2_sequestration_potentials.py -------------------------------------------------------------------------------- /scripts/build_clustered_population_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_clustered_population_layouts.py -------------------------------------------------------------------------------- /scripts/build_clustered_solar_rooftop_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_clustered_solar_rooftop_potentials.py -------------------------------------------------------------------------------- /scripts/build_co2_sequestration_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_co2_sequestration_potentials.py -------------------------------------------------------------------------------- /scripts/build_cop_profiles/BaseCopApproximator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_cop_profiles/BaseCopApproximator.py -------------------------------------------------------------------------------- /scripts/build_cop_profiles/CentralHeatingCopApproximator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_cop_profiles/CentralHeatingCopApproximator.py -------------------------------------------------------------------------------- /scripts/build_cop_profiles/DecentralHeatingCopApproximator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_cop_profiles/DecentralHeatingCopApproximator.py -------------------------------------------------------------------------------- /scripts/build_cop_profiles/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_cop_profiles/run.py -------------------------------------------------------------------------------- /scripts/build_cutout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_cutout.py -------------------------------------------------------------------------------- /scripts/build_daily_heat_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_daily_heat_demand.py -------------------------------------------------------------------------------- /scripts/build_direct_heat_source_utilisation_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_direct_heat_source_utilisation_profiles.py -------------------------------------------------------------------------------- /scripts/build_district_heat_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_district_heat_share.py -------------------------------------------------------------------------------- /scripts/build_egs_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_egs_potentials.py -------------------------------------------------------------------------------- /scripts/build_electricity_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_electricity_demand.py -------------------------------------------------------------------------------- /scripts/build_electricity_demand_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_electricity_demand_base.py -------------------------------------------------------------------------------- /scripts/build_energy_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_energy_totals.py -------------------------------------------------------------------------------- /scripts/build_existing_heating_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_existing_heating_distribution.py -------------------------------------------------------------------------------- /scripts/build_gas_input_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_gas_input_locations.py -------------------------------------------------------------------------------- /scripts/build_gas_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_gas_network.py -------------------------------------------------------------------------------- /scripts/build_geothermal_heat_potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_geothermal_heat_potential.py -------------------------------------------------------------------------------- /scripts/build_hac_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_hac_features.py -------------------------------------------------------------------------------- /scripts/build_heat_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_heat_totals.py -------------------------------------------------------------------------------- /scripts/build_hourly_heat_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_hourly_heat_demand.py -------------------------------------------------------------------------------- /scripts/build_hydro_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_hydro_profile.py -------------------------------------------------------------------------------- /scripts/build_industrial_distribution_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_distribution_key.py -------------------------------------------------------------------------------- /scripts/build_industrial_energy_demand_per_country_today.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_energy_demand_per_country_today.py -------------------------------------------------------------------------------- /scripts/build_industrial_energy_demand_per_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_energy_demand_per_node.py -------------------------------------------------------------------------------- /scripts/build_industrial_energy_demand_per_node_today.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_energy_demand_per_node_today.py -------------------------------------------------------------------------------- /scripts/build_industrial_production_per_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_production_per_country.py -------------------------------------------------------------------------------- /scripts/build_industrial_production_per_country_tomorrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_production_per_country_tomorrow.py -------------------------------------------------------------------------------- /scripts/build_industrial_production_per_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industrial_production_per_node.py -------------------------------------------------------------------------------- /scripts/build_industry_sector_ratios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industry_sector_ratios.py -------------------------------------------------------------------------------- /scripts/build_industry_sector_ratios_intermediate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_industry_sector_ratios_intermediate.py -------------------------------------------------------------------------------- /scripts/build_line_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_line_rating.py -------------------------------------------------------------------------------- /scripts/build_monthly_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_monthly_prices.py -------------------------------------------------------------------------------- /scripts/build_osm_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_osm_boundaries.py -------------------------------------------------------------------------------- /scripts/build_osm_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_osm_network.py -------------------------------------------------------------------------------- /scripts/build_population_layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_population_layouts.py -------------------------------------------------------------------------------- /scripts/build_population_weighted_energy_totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_population_weighted_energy_totals.py -------------------------------------------------------------------------------- /scripts/build_powerplants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_powerplants.py -------------------------------------------------------------------------------- /scripts/build_ptes_operations/ptes_temperature_approximator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_ptes_operations/ptes_temperature_approximator.py -------------------------------------------------------------------------------- /scripts/build_ptes_operations/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_ptes_operations/run.py -------------------------------------------------------------------------------- /scripts/build_renewable_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_renewable_profiles.py -------------------------------------------------------------------------------- /scripts/build_retro_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_retro_cost.py -------------------------------------------------------------------------------- /scripts/build_salt_cavern_potentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_salt_cavern_potentials.py -------------------------------------------------------------------------------- /scripts/build_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_shapes.py -------------------------------------------------------------------------------- /scripts/build_ship_raster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_ship_raster.py -------------------------------------------------------------------------------- /scripts/build_shipping_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_shipping_demand.py -------------------------------------------------------------------------------- /scripts/build_solar_thermal_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_solar_thermal_profiles.py -------------------------------------------------------------------------------- /scripts/build_temperature_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_temperature_profiles.py -------------------------------------------------------------------------------- /scripts/build_transmission_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_transmission_projects.py -------------------------------------------------------------------------------- /scripts/build_transport_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_transport_demand.py -------------------------------------------------------------------------------- /scripts/build_tyndp_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/build_tyndp_network.py -------------------------------------------------------------------------------- /scripts/clean_osm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/clean_osm_data.py -------------------------------------------------------------------------------- /scripts/cluster_gas_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/cluster_gas_network.py -------------------------------------------------------------------------------- /scripts/cluster_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/cluster_network.py -------------------------------------------------------------------------------- /scripts/definitions/heat_sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/definitions/heat_sector.py -------------------------------------------------------------------------------- /scripts/definitions/heat_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/definitions/heat_system.py -------------------------------------------------------------------------------- /scripts/definitions/heat_system_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/definitions/heat_system_type.py -------------------------------------------------------------------------------- /scripts/determine_availability_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/determine_availability_matrix.py -------------------------------------------------------------------------------- /scripts/determine_availability_matrix_MD_UA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/determine_availability_matrix_MD_UA.py -------------------------------------------------------------------------------- /scripts/make_cumulative_costs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/make_cumulative_costs.py -------------------------------------------------------------------------------- /scripts/make_global_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/make_global_summary.py -------------------------------------------------------------------------------- /scripts/make_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/make_summary.py -------------------------------------------------------------------------------- /scripts/make_summary_perfect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/make_summary_perfect.py -------------------------------------------------------------------------------- /scripts/plot_balance_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_balance_map.py -------------------------------------------------------------------------------- /scripts/plot_balance_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_balance_timeseries.py -------------------------------------------------------------------------------- /scripts/plot_base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_base_network.py -------------------------------------------------------------------------------- /scripts/plot_gas_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_gas_network.py -------------------------------------------------------------------------------- /scripts/plot_heatmap_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_heatmap_timeseries.py -------------------------------------------------------------------------------- /scripts/plot_hydrogen_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_hydrogen_network.py -------------------------------------------------------------------------------- /scripts/plot_power_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_power_network.py -------------------------------------------------------------------------------- /scripts/plot_power_network_clustered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_power_network_clustered.py -------------------------------------------------------------------------------- /scripts/plot_power_network_perfect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_power_network_perfect.py -------------------------------------------------------------------------------- /scripts/plot_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_statistics.py -------------------------------------------------------------------------------- /scripts/plot_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/plot_summary.py -------------------------------------------------------------------------------- /scripts/prepare_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/prepare_network.py -------------------------------------------------------------------------------- /scripts/prepare_osm_network_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/prepare_osm_network_release.py -------------------------------------------------------------------------------- /scripts/prepare_perfect_foresight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/prepare_perfect_foresight.py -------------------------------------------------------------------------------- /scripts/prepare_sector_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/prepare_sector_network.py -------------------------------------------------------------------------------- /scripts/retrieve_bidding_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_bidding_zones.py -------------------------------------------------------------------------------- /scripts/retrieve_cost_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_cost_data.py -------------------------------------------------------------------------------- /scripts/retrieve_databundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_databundle.py -------------------------------------------------------------------------------- /scripts/retrieve_electricity_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_electricity_demand.py -------------------------------------------------------------------------------- /scripts/retrieve_eurostat_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_eurostat_data.py -------------------------------------------------------------------------------- /scripts/retrieve_eurostat_household_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_eurostat_household_data.py -------------------------------------------------------------------------------- /scripts/retrieve_gas_infrastructure_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_gas_infrastructure_data.py -------------------------------------------------------------------------------- /scripts/retrieve_jrc_idees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_jrc_idees.py -------------------------------------------------------------------------------- /scripts/retrieve_monthly_fuel_prices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_monthly_fuel_prices.py -------------------------------------------------------------------------------- /scripts/retrieve_osm_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_osm_boundaries.py -------------------------------------------------------------------------------- /scripts/retrieve_osm_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_osm_data.py -------------------------------------------------------------------------------- /scripts/retrieve_tyndp_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/retrieve_tyndp_bundle.py -------------------------------------------------------------------------------- /scripts/simplify_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/simplify_network.py -------------------------------------------------------------------------------- /scripts/solve_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/solve_network.py -------------------------------------------------------------------------------- /scripts/solve_operations_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/solve_operations_network.py -------------------------------------------------------------------------------- /scripts/time_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/scripts/time_aggregation.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_base_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/test_base_network.py -------------------------------------------------------------------------------- /test/test_build_powerplants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/test_build_powerplants.py -------------------------------------------------------------------------------- /test/test_build_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/test_build_shapes.py -------------------------------------------------------------------------------- /test/test_data/custom_powerplants_DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/test_data/custom_powerplants_DE.csv -------------------------------------------------------------------------------- /test/test_data/powerplants_DE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cristobal-GC/pypsa-spain/HEAD/test/test_data/powerplants_DE.csv --------------------------------------------------------------------------------