├── .gitignore ├── 01_Demo_data-and-config.ipynb ├── 02_Demo_households_spatial_disaggregations.ipynb ├── 03_Demo_households_temporal_disaggregations.ipynb ├── 04_Demo_CTS_Industry_disaggregation.ipynb ├── 04_Demo_CTS_Industry_disaggregation_.ipynb ├── 90_Accessing_geographical_data.ipynb ├── LICENSE ├── README.md ├── data_in ├── dimensionless │ ├── Decomposition Factors Industrial Energy Demand.xlsx │ ├── WZ_2008.xlsx │ ├── bilanz07d.xlsx │ ├── bilanz08d.xlsx │ ├── bilanz09d.xlsx │ ├── bilanz10d.xlsx │ ├── bilanz11d.xlsx │ ├── bilanz12d.xlsx │ ├── bilanz13d.xlsx │ ├── bilanz14d.xlsx │ ├── bilanz15d.xlsx │ ├── bilanz16d.xlsx │ ├── bilanz17d.xlsx │ ├── bilanz18d.xlsx │ ├── bilanz19d.xlsx │ ├── elc_consumption_HH_total.csv │ ├── elc_consumption_by_HH_size.csv │ ├── gas_consumption_households.csv │ ├── heat_consumption_households.csv │ └── heat_consumption_households_source.txt ├── regional │ ├── Cars_byTechnology_byYear.xlsx │ ├── elc_consumption_HH_spatial.csv │ ├── energy_balance_values.csv │ ├── hotwater_shares_nuts1.csv │ ├── households.csv │ ├── income.csv │ ├── living_space.csv │ ├── percentage_EFH_MFH.csv │ ├── population.csv │ ├── shapes │ │ └── germany_places │ │ │ ├── A-README.TXT │ │ │ ├── places.dbf │ │ │ ├── places.prj │ │ │ ├── places.shp │ │ │ └── places.shx │ ├── stove_assumptions_nuts1.csv │ ├── stove_assumptions_nuts1_source.txt │ ├── t_nuts1_bl.csv │ └── t_nuts3_lk.csv └── temporal │ ├── Efficiency_Enhancement_Rates.xlsx │ ├── Gas Load Profiles │ ├── Lastprofil_BA.xls │ ├── Lastprofil_BD.xls │ ├── Lastprofil_BH.xls │ ├── Lastprofil_EFH.xls │ ├── Lastprofil_GA.xls │ ├── Lastprofil_GB.xls │ ├── Lastprofil_GHD.xls │ ├── Lastprofil_HA.xls │ ├── Lastprofil_KO.xls │ ├── Lastprofil_MF.xls │ ├── Lastprofil_MFH.xls │ ├── Lastprofil_MK.xls │ ├── Lastprofil_PD.xls │ ├── Lastprofil_SpaceHeating-EFH.xls │ ├── Lastprofil_SpaceHeating-MFH.xls │ ├── Lastprofil_WA.xls │ └── heruntergeladen am 25.08.txt │ ├── Power Load Profiles │ ├── 39_VDEW_Strom_Repräsentative Profile_G0.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_G1.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_G2.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_G3.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_G4.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_G5.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_G6.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_H0.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_L0.xlsx │ ├── 39_VDEW_Strom_Repräsentative Profile_L1.xlsx │ └── 39_VDEW_Strom_Repräsentative Profile_L2.xlsx │ ├── application_profiles.csv │ ├── percentages_applications.csv │ └── percentages_baseload.csv ├── disaggregator ├── __init__.py ├── animation.py ├── config.py ├── config_example.yaml ├── data.py ├── plot.py ├── spatial.py └── temporal.py ├── environment.yml └── img ├── cutting_high_details.png ├── jupyter_notebook.png ├── model_overview.png ├── overview.png ├── overview.pptx └── spatial_elc_by_household_sizes.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/.gitignore -------------------------------------------------------------------------------- /01_Demo_data-and-config.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/01_Demo_data-and-config.ipynb -------------------------------------------------------------------------------- /02_Demo_households_spatial_disaggregations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/02_Demo_households_spatial_disaggregations.ipynb -------------------------------------------------------------------------------- /03_Demo_households_temporal_disaggregations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/03_Demo_households_temporal_disaggregations.ipynb -------------------------------------------------------------------------------- /04_Demo_CTS_Industry_disaggregation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/04_Demo_CTS_Industry_disaggregation.ipynb -------------------------------------------------------------------------------- /04_Demo_CTS_Industry_disaggregation_.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/04_Demo_CTS_Industry_disaggregation_.ipynb -------------------------------------------------------------------------------- /90_Accessing_geographical_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/90_Accessing_geographical_data.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/README.md -------------------------------------------------------------------------------- /data_in/dimensionless/Decomposition Factors Industrial Energy Demand.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/Decomposition Factors Industrial Energy Demand.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/WZ_2008.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/WZ_2008.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz07d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz07d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz08d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz08d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz09d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz09d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz10d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz10d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz11d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz11d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz12d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz12d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz13d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz13d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz14d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz14d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz15d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz15d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz16d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz16d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz17d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz17d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz18d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz18d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/bilanz19d.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/bilanz19d.xlsx -------------------------------------------------------------------------------- /data_in/dimensionless/elc_consumption_HH_total.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/elc_consumption_HH_total.csv -------------------------------------------------------------------------------- /data_in/dimensionless/elc_consumption_by_HH_size.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/elc_consumption_by_HH_size.csv -------------------------------------------------------------------------------- /data_in/dimensionless/gas_consumption_households.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/gas_consumption_households.csv -------------------------------------------------------------------------------- /data_in/dimensionless/heat_consumption_households.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/heat_consumption_households.csv -------------------------------------------------------------------------------- /data_in/dimensionless/heat_consumption_households_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/dimensionless/heat_consumption_households_source.txt -------------------------------------------------------------------------------- /data_in/regional/Cars_byTechnology_byYear.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/Cars_byTechnology_byYear.xlsx -------------------------------------------------------------------------------- /data_in/regional/elc_consumption_HH_spatial.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/elc_consumption_HH_spatial.csv -------------------------------------------------------------------------------- /data_in/regional/energy_balance_values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/energy_balance_values.csv -------------------------------------------------------------------------------- /data_in/regional/hotwater_shares_nuts1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/hotwater_shares_nuts1.csv -------------------------------------------------------------------------------- /data_in/regional/households.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/households.csv -------------------------------------------------------------------------------- /data_in/regional/income.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/income.csv -------------------------------------------------------------------------------- /data_in/regional/living_space.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/living_space.csv -------------------------------------------------------------------------------- /data_in/regional/percentage_EFH_MFH.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/percentage_EFH_MFH.csv -------------------------------------------------------------------------------- /data_in/regional/population.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/population.csv -------------------------------------------------------------------------------- /data_in/regional/shapes/germany_places/A-README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/shapes/germany_places/A-README.TXT -------------------------------------------------------------------------------- /data_in/regional/shapes/germany_places/places.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/shapes/germany_places/places.dbf -------------------------------------------------------------------------------- /data_in/regional/shapes/germany_places/places.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/shapes/germany_places/places.prj -------------------------------------------------------------------------------- /data_in/regional/shapes/germany_places/places.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/shapes/germany_places/places.shp -------------------------------------------------------------------------------- /data_in/regional/shapes/germany_places/places.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/shapes/germany_places/places.shx -------------------------------------------------------------------------------- /data_in/regional/stove_assumptions_nuts1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/stove_assumptions_nuts1.csv -------------------------------------------------------------------------------- /data_in/regional/stove_assumptions_nuts1_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/stove_assumptions_nuts1_source.txt -------------------------------------------------------------------------------- /data_in/regional/t_nuts1_bl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/t_nuts1_bl.csv -------------------------------------------------------------------------------- /data_in/regional/t_nuts3_lk.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/regional/t_nuts3_lk.csv -------------------------------------------------------------------------------- /data_in/temporal/Efficiency_Enhancement_Rates.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Efficiency_Enhancement_Rates.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_BA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_BA.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_BD.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_BD.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_BH.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_BH.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_EFH.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_EFH.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_GA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_GA.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_GB.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_GB.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_GHD.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_GHD.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_HA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_HA.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_KO.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_KO.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_MF.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_MF.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_MFH.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_MFH.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_MK.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_MK.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_PD.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_PD.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_SpaceHeating-EFH.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_SpaceHeating-EFH.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_SpaceHeating-MFH.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_SpaceHeating-MFH.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/Lastprofil_WA.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Gas Load Profiles/Lastprofil_WA.xls -------------------------------------------------------------------------------- /data_in/temporal/Gas Load Profiles/heruntergeladen am 25.08.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G0.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G1.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G2.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G3.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G3.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G4.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G4.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G5.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G5.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G6.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_G6.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_H0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_H0.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_L0.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_L0.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_L1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_L1.xlsx -------------------------------------------------------------------------------- /data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_L2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/Power Load Profiles/39_VDEW_Strom_Repräsentative Profile_L2.xlsx -------------------------------------------------------------------------------- /data_in/temporal/application_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/application_profiles.csv -------------------------------------------------------------------------------- /data_in/temporal/percentages_applications.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/percentages_applications.csv -------------------------------------------------------------------------------- /data_in/temporal/percentages_baseload.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/data_in/temporal/percentages_baseload.csv -------------------------------------------------------------------------------- /disaggregator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/__init__.py -------------------------------------------------------------------------------- /disaggregator/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/animation.py -------------------------------------------------------------------------------- /disaggregator/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/config.py -------------------------------------------------------------------------------- /disaggregator/config_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/config_example.yaml -------------------------------------------------------------------------------- /disaggregator/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/data.py -------------------------------------------------------------------------------- /disaggregator/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/plot.py -------------------------------------------------------------------------------- /disaggregator/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/spatial.py -------------------------------------------------------------------------------- /disaggregator/temporal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/disaggregator/temporal.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/environment.yml -------------------------------------------------------------------------------- /img/cutting_high_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/img/cutting_high_details.png -------------------------------------------------------------------------------- /img/jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/img/jupyter_notebook.png -------------------------------------------------------------------------------- /img/model_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/img/model_overview.png -------------------------------------------------------------------------------- /img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/img/overview.png -------------------------------------------------------------------------------- /img/overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/img/overview.pptx -------------------------------------------------------------------------------- /img/spatial_elc_by_household_sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DemandRegioTeam/disaggregator/HEAD/img/spatial_elc_by_household_sizes.png --------------------------------------------------------------------------------