diff --git a/scripts/build_retro_cost.py b/scripts/build_retro_cost.py index bdabbd2c..a57ab81a 100644 --- a/scripts/build_retro_cost.py +++ b/scripts/build_retro_cost.py @@ -102,7 +102,7 @@ solar_energy_transmittance = ( ) # solar global radiation [kWh/(m^2a)] solar_global_radiation = pd.Series( - [246, 401, 246, 148], + [271, 392, 271, 160], index=["east", "south", "west", "north"], name="solar_global_radiation [kWh/(m^2a)]", ) @@ -208,7 +208,8 @@ def prepare_building_stock_data(): # heated floor area ---------------------------------------------------------- area = building_data[ - (building_data.type == "Heated area [Mm²]") & (building_data.subsector != "Total") + (building_data.type == "Heated area [Mm²]") + & (building_data.subsector != "Total") ] area_tot = area[["country", "sector", "value"]].groupby(["country", "sector"]).sum() area = pd.concat(