| Total Complexity | 115 | 
| Total Lines | 2662 | 
| Duplicated Lines | 1.2 % | 
| Changes | 0 | ||
Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like data.datasets.power_plants.pv_rooftop_buildings often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
| 1 | """  | 
            ||
| 2 | Distribute MaStR PV rooftop capacities to OSM and synthetic buildings. Generate new  | 
            ||
| 3 | PV rooftop generators for scenarios eGon2035 and eGon100RE.  | 
            ||
| 4 | Data cleaning: Drop duplicates and entries with missing critical data. Determine most  | 
            ||
| 5 | plausible capacity from multiple values given in MaStR data. Drop generators which don't  | 
            ||
| 6 | have any plausible capacity data (23.5MW > P > 0.1). Randomly and weighted add a  | 
            ||
| 7 | start-up date if it is missing. Extract zip and municipality from 'Standort' given in  | 
            ||
| 8 | MaStR data. Geocode unique zip and municipality combinations with Nominatim (1sec  | 
            ||
| 9 | delay). Drop generators for which geocoding failed or which are located outside the  | 
            ||
| 10 | municipalities of Germany. Add some visual sanity checks for cleaned data.  | 
            ||
| 11 | Allocation of MaStR data: Allocate each generator to an existing building from OSM.  | 
            ||
| 12 | Determine the quantile each generator and building is in depending on the capacity of  | 
            ||
| 13 | the generator and the area of the polygon of the building. Randomly distribute  | 
            ||
| 14 | generators within each municipality preferably within the same building area quantile as  | 
            ||
| 15 | the generators are capacity wise. If not enough buildings exists within a municipality  | 
            ||
| 16 | and quantile additional buildings from other quantiles are chosen randomly.  | 
            ||
| 17 | Desegregation of pv rooftop scenarios: The scenario data per federal state is linear  | 
            ||
| 18 | distributed to the mv grid districts according to the pv rooftop potential per mv grid  | 
            ||
| 19 | district. The rooftop potential is estimated from the building area given from the OSM  | 
            ||
| 20 | buildings. Grid districts, which are located in several federal states, are allocated PV  | 
            ||
| 21 | capacity according to their respective roof potential in the individual federal states.  | 
            ||
| 22 | The desegregation of PV plants within a grid districts respects existing plants from  | 
            ||
| 23 | MaStR, which did not reach their end of life. New PV plants are randomly and weighted  | 
            ||
| 24 | generated using a breakdown of MaStR data as generator basis. Plant metadata (e.g. plant  | 
            ||
| 25 | orientation) is also added random and weighted from MaStR data as basis.  | 
            ||
| 26 | """  | 
            ||
| 27 | from __future__ import annotations  | 
            ||
| 28 | |||
| 29 | from collections import Counter  | 
            ||
| 30 | from functools import wraps  | 
            ||
| 31 | from pathlib import Path  | 
            ||
| 32 | from time import perf_counter  | 
            ||
| 33 | from typing import Any  | 
            ||
| 34 | |||
| 35 | from geoalchemy2 import Geometry  | 
            ||
| 36 | from geopy.extra.rate_limiter import RateLimiter  | 
            ||
| 37 | from geopy.geocoders import Nominatim  | 
            ||
| 38 | from loguru import logger  | 
            ||
| 39 | from numpy.random import RandomState, default_rng  | 
            ||
| 40 | from pyproj.crs.crs import CRS  | 
            ||
| 41 | from sqlalchemy import BigInteger, Column, Float, Integer, String  | 
            ||
| 42 | from sqlalchemy.dialects.postgresql import HSTORE  | 
            ||
| 43 | from sqlalchemy.ext.declarative import declarative_base  | 
            ||
| 44 | import geopandas as gpd  | 
            ||
| 45 | import numpy as np  | 
            ||
| 46 | import pandas as pd  | 
            ||
| 47 | |||
| 48 | from egon.data import config, db  | 
            ||
| 49 | from egon.data.datasets.electricity_demand_timeseries.hh_buildings import (  | 
            ||
| 50 | OsmBuildingsSynthetic,  | 
            ||
| 51 | )  | 
            ||
| 52 | from egon.data.datasets.scenario_capacities import EgonScenarioCapacities  | 
            ||
| 53 | from egon.data.datasets.zensus_vg250 import Vg250Gem  | 
            ||
| 54 | |||
| 55 | engine = db.engine()  | 
            ||
| 56 | Base = declarative_base()  | 
            ||
| 57 | SEED = int(config.settings()["egon-data"]["--random-seed"])  | 
            ||
| 58 | |||
| 59 | # TODO: move to yml  | 
            ||
| 60 | # mastr data  | 
            ||
| 61 | MASTR_RELEVANT_COLS = [  | 
            ||
| 62 | "EinheitMastrNummer",  | 
            ||
| 63 | "Bruttoleistung",  | 
            ||
| 64 | "StatisikFlag",  | 
            ||
| 65 | "Bruttoleistung_extended",  | 
            ||
| 66 | "Nettonennleistung",  | 
            ||
| 67 | "InstallierteLeistung",  | 
            ||
| 68 | "zugeordneteWirkleistungWechselrichter",  | 
            ||
| 69 | "EinheitBetriebsstatus",  | 
            ||
| 70 | "Standort",  | 
            ||
| 71 | "Bundesland",  | 
            ||
| 72 | "Land",  | 
            ||
| 73 | "Landkreis",  | 
            ||
| 74 | "Gemeinde",  | 
            ||
| 75 | "Postleitzahl",  | 
            ||
| 76 | "Ort",  | 
            ||
| 77 | "GeplantesInbetriebnahmedatum",  | 
            ||
| 78 | "Inbetriebnahmedatum",  | 
            ||
| 79 | "GemeinsamerWechselrichterMitSpeicher",  | 
            ||
| 80 | "Lage",  | 
            ||
| 81 | "Leistungsbegrenzung",  | 
            ||
| 82 | "EinheitlicheAusrichtungUndNeigungswinkel",  | 
            ||
| 83 | "Hauptausrichtung",  | 
            ||
| 84 | "HauptausrichtungNeigungswinkel",  | 
            ||
| 85 | "Nebenausrichtung",  | 
            ||
| 86 | ]  | 
            ||
| 87 | |||
| 88 | MASTR_DTYPES = { | 
            ||
| 89 | "EinheitMastrNummer": str,  | 
            ||
| 90 | "Bruttoleistung": float,  | 
            ||
| 91 | "StatisikFlag": str,  | 
            ||
| 92 | "Bruttoleistung_extended": float,  | 
            ||
| 93 | "Nettonennleistung": float,  | 
            ||
| 94 | "InstallierteLeistung": float,  | 
            ||
| 95 | "zugeordneteWirkleistungWechselrichter": float,  | 
            ||
| 96 | "EinheitBetriebsstatus": str,  | 
            ||
| 97 | "Standort": str,  | 
            ||
| 98 | "Bundesland": str,  | 
            ||
| 99 | "Land": str,  | 
            ||
| 100 | "Landkreis": str,  | 
            ||
| 101 | "Gemeinde": str,  | 
            ||
| 102 | # "Postleitzahl": int, # fails because of nan values  | 
            ||
| 103 | "Ort": str,  | 
            ||
| 104 | "GemeinsamerWechselrichterMitSpeicher": str,  | 
            ||
| 105 | "Lage": str,  | 
            ||
| 106 | "Leistungsbegrenzung": str,  | 
            ||
| 107 | # this will parse nan values as false wich is not always correct  | 
            ||
| 108 | # "EinheitlicheAusrichtungUndNeigungswinkel": bool,  | 
            ||
| 109 | "Hauptausrichtung": str,  | 
            ||
| 110 | "HauptausrichtungNeigungswinkel": str,  | 
            ||
| 111 | "Nebenausrichtung": str,  | 
            ||
| 112 | "NebenausrichtungNeigungswinkel": str,  | 
            ||
| 113 | }  | 
            ||
| 114 | |||
| 115 | MASTR_PARSE_DATES = [  | 
            ||
| 116 | "GeplantesInbetriebnahmedatum",  | 
            ||
| 117 | "Inbetriebnahmedatum",  | 
            ||
| 118 | ]  | 
            ||
| 119 | |||
| 120 | MASTR_INDEX_COL = "EinheitMastrNummer"  | 
            ||
| 121 | |||
| 122 | EPSG = 4326  | 
            ||
| 123 | SRID = 3035  | 
            ||
| 124 | |||
| 125 | # data cleaning  | 
            ||
| 126 | MAX_REALISTIC_PV_CAP = 23500  | 
            ||
| 127 | MIN_REALISTIC_PV_CAP = 0.1  | 
            ||
| 128 | ROUNDING = 1  | 
            ||
| 129 | |||
| 130 | # geopy  | 
            ||
| 131 | MIN_DELAY_SECONDS = 1  | 
            ||
| 132 | USER_AGENT = "rli_kh_geocoder"  | 
            ||
| 133 | |||
| 134 | # show additional logging information  | 
            ||
| 135 | VERBOSE = False  | 
            ||
| 136 | |||
| 137 | EXPORT_DIR = Path(__name__).resolve().parent / "data"  | 
            ||
| 138 | EXPORT_FILE = "mastr_geocoded.gpkg"  | 
            ||
| 139 | EXPORT_PATH = EXPORT_DIR / EXPORT_FILE  | 
            ||
| 140 | DRIVER = "GPKG"  | 
            ||
| 141 | |||
| 142 | # Number of quantiles  | 
            ||
| 143 | Q = 5  | 
            ||
| 144 | |||
| 145 | # Scenario Data  | 
            ||
| 146 | CARRIER = "solar_rooftop"  | 
            ||
| 147 | SCENARIOS = ["eGon2035"] # , "eGon100RE"]  | 
            ||
| 148 | SCENARIO_TIMESTAMP = { | 
            ||
| 149 |     "eGon2035": pd.Timestamp("2035-01-01", tz="UTC"), | 
            ||
| 150 |     "eGon100RE": pd.Timestamp("2050-01-01", tz="UTC"), | 
            ||
| 151 | }  | 
            ||
| 152 | PV_ROOFTOP_LIFETIME = pd.Timedelta(30 * 365, unit="D")  | 
            ||
| 153 | |||
| 154 | # Example Modul Trina Vertex S TSM-400DE09M.08 400 Wp  | 
            ||
| 155 | # https://www.photovoltaik4all.de/media/pdf/92/64/68/Trina_Datasheet_VertexS_DE09-08_2021_A.pdf  | 
            ||
| 156 | MODUL_CAP = 0.4 # kWp  | 
            ||
| 157 | MODUL_SIZE = 1.096 * 1.754 # m²  | 
            ||
| 158 | PV_CAP_PER_SQ_M = MODUL_CAP / MODUL_SIZE  | 
            ||
| 159 | |||
| 160 | # Estimation of usable roof area  | 
            ||
| 161 | # Factor for the conversion of building area to roof area  | 
            ||
| 162 | # estimation mean roof pitch: 35°  | 
            ||
| 163 | # estimation usable roof share: 80%  | 
            ||
| 164 | # estimation that only the south side of the building is used for pv  | 
            ||
| 165 | # see https://mediatum.ub.tum.de/doc/%20969497/969497.pdf  | 
            ||
| 166 | # AREA_FACTOR = 1.221  | 
            ||
| 167 | # USABLE_ROOF_SHARE = 0.8  | 
            ||
| 168 | # SOUTH_SHARE = 0.5  | 
            ||
| 169 | # ROOF_FACTOR = AREA_FACTOR * USABLE_ROOF_SHARE * SOUTH_SHARE  | 
            ||
| 170 | ROOF_FACTOR = 0.5  | 
            ||
| 171 | |||
| 172 | CAP_RANGES = [  | 
            ||
| 173 | (0, 30),  | 
            ||
| 174 | (30, 100),  | 
            ||
| 175 |     (100, float("inf")), | 
            ||
| 176 | ]  | 
            ||
| 177 | |||
| 178 | MIN_BUILDING_SIZE = 10.0  | 
            ||
| 179 | UPPER_QUNATILE = 0.95  | 
            ||
| 180 | LOWER_QUANTILE = 0.05  | 
            ||
| 181 | |||
| 182 | COLS_TO_RENAME = { | 
            ||
| 183 | "EinheitlicheAusrichtungUndNeigungswinkel": (  | 
            ||
| 184 | "einheitliche_ausrichtung_und_neigungswinkel"  | 
            ||
| 185 | ),  | 
            ||
| 186 | "Hauptausrichtung": "hauptausrichtung",  | 
            ||
| 187 | "HauptausrichtungNeigungswinkel": "hauptausrichtung_neigungswinkel",  | 
            ||
| 188 | }  | 
            ||
| 189 | |||
| 190 | COLS_TO_EXPORT = [  | 
            ||
| 191 | "scenario",  | 
            ||
| 192 | "building_id",  | 
            ||
| 193 | "gens_id",  | 
            ||
| 194 | "capacity",  | 
            ||
| 195 | "einheitliche_ausrichtung_und_neigungswinkel",  | 
            ||
| 196 | "hauptausrichtung",  | 
            ||
| 197 | "hauptausrichtung_neigungswinkel",  | 
            ||
| 198 | "voltage_level",  | 
            ||
| 199 | ]  | 
            ||
| 200 | |||
| 201 | INCLUDE_SYNTHETIC_BUILDINGS = False  | 
            ||
| 202 | ONLY_BUILDINGS_WITH_DEMAND = True  | 
            ||
| 203 | |||
| 204 | |||
| 205 | def timer_func(func):  | 
            ||
| 206 | @wraps(func)  | 
            ||
| 207 | def timeit_wrapper(*args, **kwargs):  | 
            ||
| 208 | start_time = perf_counter()  | 
            ||
| 209 | result = func(*args, **kwargs)  | 
            ||
| 210 | end_time = perf_counter()  | 
            ||
| 211 | total_time = end_time - start_time  | 
            ||
| 212 |         print(f"Function {func.__name__} took {total_time:.4f} seconds.") | 
            ||
| 213 | return result  | 
            ||
| 214 | |||
| 215 | return timeit_wrapper  | 
            ||
| 216 | |||
| 217 | |||
| 218 | @timer_func  | 
            ||
| 219 | def mastr_data(  | 
            ||
| 220 | index_col: str | int | list[str] | list[int],  | 
            ||
| 221 | usecols: list[str],  | 
            ||
| 222 | dtype: dict[str, Any] | None,  | 
            ||
| 223 | parse_dates: list[str] | None,  | 
            ||
| 224 | ) -> pd.DataFrame:  | 
            ||
| 225 | """  | 
            ||
| 226 | Read MaStR data from csv.  | 
            ||
| 227 | |||
| 228 | Parameters  | 
            ||
| 229 | -----------  | 
            ||
| 230 | index_col : str, int or list of str or int  | 
            ||
| 231 | Column(s) to use as the row labels of the DataFrame.  | 
            ||
| 232 | usecols : list of str  | 
            ||
| 233 | Return a subset of the columns.  | 
            ||
| 234 | dtype : dict of column (str) -> type (any), optional  | 
            ||
| 235 | Data type for data or columns.  | 
            ||
| 236 | parse_dates : list of names (str), optional  | 
            ||
| 237 | Try to parse given columns to datetime.  | 
            ||
| 238 | Returns  | 
            ||
| 239 | -------  | 
            ||
| 240 | pandas.DataFrame  | 
            ||
| 241 | DataFrame containing MaStR data.  | 
            ||
| 242 | """  | 
            ||
| 243 | mastr_path = Path(  | 
            ||
| 244 | config.datasets()["power_plants"]["sources"]["mastr_pv"]  | 
            ||
| 245 | ).resolve()  | 
            ||
| 246 | |||
| 247 | mastr_df = pd.read_csv(  | 
            ||
| 248 | mastr_path,  | 
            ||
| 249 | index_col=index_col,  | 
            ||
| 250 | usecols=usecols,  | 
            ||
| 251 | dtype=dtype,  | 
            ||
| 252 | parse_dates=parse_dates,  | 
            ||
| 253 | )  | 
            ||
| 254 | |||
| 255 | mastr_df = mastr_df.loc[  | 
            ||
| 256 | (mastr_df.StatisikFlag == "B")  | 
            ||
| 257 | & (mastr_df.EinheitBetriebsstatus == "InBetrieb")  | 
            ||
| 258 | & (mastr_df.Land == "Deutschland")  | 
            ||
| 259 | & (mastr_df.Lage == "BaulicheAnlagen")  | 
            ||
| 260 | ]  | 
            ||
| 261 | |||
| 262 | if (  | 
            ||
| 263 | config.settings()["egon-data"]["--dataset-boundary"]  | 
            ||
| 264 | == "Schleswig-Holstein"  | 
            ||
| 265 | ):  | 
            ||
| 266 | init_len = len(mastr_df)  | 
            ||
| 267 | |||
| 268 | mastr_df = mastr_df.loc[mastr_df.Bundesland == "SchleswigHolstein"]  | 
            ||
| 269 | |||
| 270 | logger.info(  | 
            ||
| 271 | f"Using only MaStR data within Schleswig-Holstein. "  | 
            ||
| 272 |             f"{init_len - len(mastr_df)} of {init_len} generators are dropped." | 
            ||
| 273 | )  | 
            ||
| 274 | |||
| 275 |     logger.debug("MaStR data loaded.") | 
            ||
| 276 | |||
| 277 | return mastr_df  | 
            ||
| 278 | |||
| 279 | |||
| 280 | @timer_func  | 
            ||
| 281 | def clean_mastr_data(  | 
            ||
| 282 | mastr_df: pd.DataFrame,  | 
            ||
| 283 | max_realistic_pv_cap: int | float,  | 
            ||
| 284 | min_realistic_pv_cap: int | float,  | 
            ||
| 285 | rounding: int,  | 
            ||
| 286 | seed: int,  | 
            ||
| 287 | ) -> pd.DataFrame:  | 
            ||
| 288 | """  | 
            ||
| 289 | Clean the MaStR data from implausible data.  | 
            ||
| 290 | |||
| 291 | * Drop MaStR ID duplicates.  | 
            ||
| 292 | * Drop generators with implausible capacities.  | 
            ||
| 293 | * Drop generators without any kind of start-up date.  | 
            ||
| 294 | * Clean up Standort column and capacity.  | 
            ||
| 295 | |||
| 296 | Parameters  | 
            ||
| 297 | -----------  | 
            ||
| 298 | mastr_df : pandas.DataFrame  | 
            ||
| 299 | DataFrame containing MaStR data.  | 
            ||
| 300 | max_realistic_pv_cap : int or float  | 
            ||
| 301 | Maximum capacity, which is considered to be realistic.  | 
            ||
| 302 | min_realistic_pv_cap : int or float  | 
            ||
| 303 | Minimum capacity, which is considered to be realistic.  | 
            ||
| 304 | rounding : int  | 
            ||
| 305 | Rounding to use when cleaning up capacity. E.g. when  | 
            ||
| 306 | rounding is 1 a capacity of 9.93 will be rounded to 9.9.  | 
            ||
| 307 | seed : int  | 
            ||
| 308 | Seed to use for random operations with NumPy and pandas.  | 
            ||
| 309 | Returns  | 
            ||
| 310 | -------  | 
            ||
| 311 | pandas.DataFrame  | 
            ||
| 312 | DataFrame containing cleaned MaStR data.  | 
            ||
| 313 | """  | 
            ||
| 314 | init_len = len(mastr_df)  | 
            ||
| 315 | |||
| 316 | # drop duplicates  | 
            ||
| 317 | mastr_df = mastr_df.loc[~mastr_df.index.duplicated()]  | 
            ||
| 318 | |||
| 319 | # drop invalid entries in standort  | 
            ||
| 320 | index_to_drop = mastr_df.loc[  | 
            ||
| 321 | (mastr_df.Standort.isna()) | (mastr_df.Standort.isnull())  | 
            ||
| 322 | ].index  | 
            ||
| 323 | |||
| 324 | mastr_df = mastr_df.loc[~mastr_df.index.isin(index_to_drop)]  | 
            ||
| 325 | |||
| 326 | df = mastr_df[  | 
            ||
| 327 | [  | 
            ||
| 328 | "Bruttoleistung",  | 
            ||
| 329 | "Bruttoleistung_extended",  | 
            ||
| 330 | "Nettonennleistung",  | 
            ||
| 331 | "zugeordneteWirkleistungWechselrichter",  | 
            ||
| 332 | "InstallierteLeistung",  | 
            ||
| 333 | ]  | 
            ||
| 334 | ].round(rounding)  | 
            ||
| 335 | |||
| 336 | # use only the smallest capacity rating if multiple are given  | 
            ||
| 337 | mastr_df = mastr_df.assign(  | 
            ||
| 338 | capacity=[  | 
            ||
| 339 | most_plausible(p_tub, min_realistic_pv_cap)  | 
            ||
| 340 | for p_tub in df.itertuples(index=False)  | 
            ||
| 341 | ]  | 
            ||
| 342 | )  | 
            ||
| 343 | |||
| 344 | # drop generators without any capacity info  | 
            ||
| 345 | # and capacity of zero  | 
            ||
| 346 | # and if the capacity is > 23.5 MW, because  | 
            ||
| 347 | # Germanies largest rooftop PV is 23 MW  | 
            ||
| 348 | # https://www.iwr.de/news/groesste-pv-dachanlage-europas-wird-in-sachsen-anhalt-gebaut-news37379  | 
            ||
| 349 | mastr_df = mastr_df.loc[  | 
            ||
| 350 | (~mastr_df.capacity.isna())  | 
            ||
| 351 | & (mastr_df.capacity <= max_realistic_pv_cap)  | 
            ||
| 352 | & (mastr_df.capacity > min_realistic_pv_cap)  | 
            ||
| 353 | ]  | 
            ||
| 354 | |||
| 355 | # get zip and municipality  | 
            ||
| 356 | mastr_df[["zip_and_municipality", "drop_this"]] = pd.DataFrame(  | 
            ||
| 357 | mastr_df.Standort.astype(str)  | 
            ||
| 358 | .apply(  | 
            ||
| 359 | zip_and_municipality_from_standort,  | 
            ||
| 360 | args=(VERBOSE,),  | 
            ||
| 361 | )  | 
            ||
| 362 | .tolist(),  | 
            ||
| 363 | index=mastr_df.index,  | 
            ||
| 364 | )  | 
            ||
| 365 | |||
| 366 | # drop invalid entries  | 
            ||
| 367 | mastr_df = mastr_df.loc[mastr_df.drop_this].drop(columns="drop_this")  | 
            ||
| 368 | |||
| 369 | # add ", Deutschland" just in case  | 
            ||
| 370 | mastr_df = mastr_df.assign(  | 
            ||
| 371 | zip_and_municipality=(mastr_df.zip_and_municipality + ", Deutschland")  | 
            ||
| 372 | )  | 
            ||
| 373 | |||
| 374 | # get consistent start-up date  | 
            ||
| 375 | mastr_df = mastr_df.assign(  | 
            ||
| 376 | start_up_date=mastr_df.Inbetriebnahmedatum,  | 
            ||
| 377 | )  | 
            ||
| 378 | |||
| 379 | mastr_df.loc[mastr_df.start_up_date.isna()] = mastr_df.loc[  | 
            ||
| 380 | mastr_df.start_up_date.isna()  | 
            ||
| 381 | ].assign(  | 
            ||
| 382 | start_up_date=mastr_df.GeplantesInbetriebnahmedatum.loc[  | 
            ||
| 383 | mastr_df.start_up_date.isna()  | 
            ||
| 384 | ]  | 
            ||
| 385 | )  | 
            ||
| 386 | |||
| 387 | # randomly and weighted fill missing start-up dates  | 
            ||
| 388 | pool = mastr_df.loc[  | 
            ||
| 389 | ~mastr_df.start_up_date.isna()  | 
            ||
| 390 | ].start_up_date.to_numpy()  | 
            ||
| 391 | |||
| 392 | size = len(mastr_df) - len(pool)  | 
            ||
| 393 | |||
| 394 | if size > 0:  | 
            ||
| 395 | np.random.seed(seed)  | 
            ||
| 396 | |||
| 397 | choice = np.random.choice(  | 
            ||
| 398 | pool,  | 
            ||
| 399 | size=size,  | 
            ||
| 400 | replace=False,  | 
            ||
| 401 | )  | 
            ||
| 402 | |||
| 403 | mastr_df.loc[mastr_df.start_up_date.isna()] = mastr_df.loc[  | 
            ||
| 404 | mastr_df.start_up_date.isna()  | 
            ||
| 405 | ].assign(start_up_date=choice)  | 
            ||
| 406 | |||
| 407 | logger.info(  | 
            ||
| 408 |             f"Randomly and weigthed added start-up date to {size} generators." | 
            ||
| 409 | )  | 
            ||
| 410 | |||
| 411 | mastr_df = mastr_df.assign(  | 
            ||
| 412 | start_up_date=pd.to_datetime(mastr_df.start_up_date, utc=True)  | 
            ||
| 413 | )  | 
            ||
| 414 | |||
| 415 | end_len = len(mastr_df)  | 
            ||
| 416 | logger.debug(  | 
            ||
| 417 |         f"Dropped {init_len - end_len} " | 
            ||
| 418 |         f"({((init_len - end_len) / init_len) * 100:g}%)" | 
            ||
| 419 |         f" of {init_len} rows from MaStR DataFrame." | 
            ||
| 420 | )  | 
            ||
| 421 | |||
| 422 | return mastr_df  | 
            ||
| 423 | |||
| 424 | |||
| 425 | def zip_and_municipality_from_standort(  | 
            ||
| 426 | standort: str,  | 
            ||
| 427 | verbose: bool = False,  | 
            ||
| 428 | ) -> tuple[str, bool]:  | 
            ||
| 429 | """  | 
            ||
| 430 | Get zip code and municipality from Standort string split into a list.  | 
            ||
| 431 | Parameters  | 
            ||
| 432 | -----------  | 
            ||
| 433 | standort : str  | 
            ||
| 434 | Standort as given from MaStR data.  | 
            ||
| 435 | verbose : bool  | 
            ||
| 436 | Logs additional info if True.  | 
            ||
| 437 | Returns  | 
            ||
| 438 | -------  | 
            ||
| 439 | str  | 
            ||
| 440 | Standort with only the zip code and municipality  | 
            ||
| 441 | as well a ', Germany' added.  | 
            ||
| 442 | """  | 
            ||
| 443 | if verbose:  | 
            ||
| 444 |         logger.debug(f"Uncleaned String: {standort}") | 
            ||
| 445 | |||
| 446 | standort_list = standort.split()  | 
            ||
| 447 | |||
| 448 | found = False  | 
            ||
| 449 | count = 0  | 
            ||
| 450 | |||
| 451 | for count, elem in enumerate(standort_list):  | 
            ||
| 452 | if len(elem) != 5:  | 
            ||
| 453 | continue  | 
            ||
| 454 | if not elem.isnumeric():  | 
            ||
| 455 | continue  | 
            ||
| 456 | |||
| 457 | found = True  | 
            ||
| 458 | |||
| 459 | break  | 
            ||
| 460 | |||
| 461 | if found:  | 
            ||
| 462 | cleaned_str = " ".join(standort_list[count:])  | 
            ||
| 463 | |||
| 464 | if verbose:  | 
            ||
| 465 |             logger.debug(f"Cleaned String:   {cleaned_str}") | 
            ||
| 466 | |||
| 467 | return cleaned_str, found  | 
            ||
| 468 | |||
| 469 | logger.warning(  | 
            ||
| 470 | "Couldn't identify zip code. This entry will be dropped."  | 
            ||
| 471 |         f" Original standort: {standort}." | 
            ||
| 472 | )  | 
            ||
| 473 | |||
| 474 | return standort, found  | 
            ||
| 475 | |||
| 476 | |||
| 477 | def most_plausible(  | 
            ||
| 478 | p_tub: tuple,  | 
            ||
| 479 | min_realistic_pv_cap: int | float,  | 
            ||
| 480 | ) -> float:  | 
            ||
| 481 | """  | 
            ||
| 482 | Try to determine the most plausible capacity.  | 
            ||
| 483 | Try to determine the most plausible capacity from a given  | 
            ||
| 484 | generator from MaStR data.  | 
            ||
| 485 | Parameters  | 
            ||
| 486 | -----------  | 
            ||
| 487 | p_tub : tuple  | 
            ||
| 488 | Tuple containing the different capacities given in  | 
            ||
| 489 | the MaStR data.  | 
            ||
| 490 | min_realistic_pv_cap : int or float  | 
            ||
| 491 | Minimum capacity, which is considered to be realistic.  | 
            ||
| 492 | Returns  | 
            ||
| 493 | -------  | 
            ||
| 494 | float  | 
            ||
| 495 | Capacity of the generator estimated as the most realistic.  | 
            ||
| 496 | """  | 
            ||
| 497 | count = Counter(p_tub).most_common(3)  | 
            ||
| 498 | |||
| 499 | if len(count) == 1:  | 
            ||
| 500 | return count[0][0]  | 
            ||
| 501 | |||
| 502 | val1 = count[0][0]  | 
            ||
| 503 | val2 = count[1][0]  | 
            ||
| 504 | |||
| 505 | if len(count) == 2:  | 
            ||
| 506 | min_val = min(val1, val2)  | 
            ||
| 507 | max_val = max(val1, val2)  | 
            ||
| 508 | else:  | 
            ||
| 509 | val3 = count[2][0]  | 
            ||
| 510 | |||
| 511 | min_val = min(val1, val2, val3)  | 
            ||
| 512 | max_val = max(val1, val2, val3)  | 
            ||
| 513 | |||
| 514 | if min_val < min_realistic_pv_cap:  | 
            ||
| 515 | return max_val  | 
            ||
| 516 | |||
| 517 | return min_val  | 
            ||
| 518 | |||
| 519 | |||
| 520 | def geocoder(  | 
            ||
| 521 | user_agent: str,  | 
            ||
| 522 | min_delay_seconds: int,  | 
            ||
| 523 | ) -> RateLimiter:  | 
            ||
| 524 | """  | 
            ||
| 525 | Setup Nominatim geocoding class.  | 
            ||
| 526 | Parameters  | 
            ||
| 527 | -----------  | 
            ||
| 528 | user_agent : str  | 
            ||
| 529 | The app name.  | 
            ||
| 530 | min_delay_seconds : int  | 
            ||
| 531 | Delay in seconds to use between requests to Nominatim.  | 
            ||
| 532 | A minimum of 1 is advised.  | 
            ||
| 533 | Returns  | 
            ||
| 534 | -------  | 
            ||
| 535 | geopy.extra.rate_limiter.RateLimiter  | 
            ||
| 536 | Nominatim RateLimiter geocoding class to use for geocoding.  | 
            ||
| 537 | """  | 
            ||
| 538 | locator = Nominatim(user_agent=user_agent)  | 
            ||
| 539 | return RateLimiter(  | 
            ||
| 540 | locator.geocode,  | 
            ||
| 541 | min_delay_seconds=min_delay_seconds,  | 
            ||
| 542 | )  | 
            ||
| 543 | |||
| 544 | |||
| 545 | def geocoding_data(  | 
            ||
| 546 | clean_mastr_df: pd.DataFrame,  | 
            ||
| 547 | ) -> pd.DataFrame:  | 
            ||
| 548 | """  | 
            ||
| 549 | Setup DataFrame to geocode.  | 
            ||
| 550 | Parameters  | 
            ||
| 551 | -----------  | 
            ||
| 552 | clean_mastr_df : pandas.DataFrame  | 
            ||
| 553 | DataFrame containing cleaned MaStR data.  | 
            ||
| 554 | Returns  | 
            ||
| 555 | -------  | 
            ||
| 556 | pandas.DataFrame  | 
            ||
| 557 | DataFrame containing all unique combinations of  | 
            ||
| 558 | zip codes with municipalities for geocoding.  | 
            ||
| 559 | """  | 
            ||
| 560 | return pd.DataFrame(  | 
            ||
| 561 | data=clean_mastr_df.zip_and_municipality.unique(),  | 
            ||
| 562 | columns=["zip_and_municipality"],  | 
            ||
| 563 | )  | 
            ||
| 564 | |||
| 565 | |||
| 566 | @timer_func  | 
            ||
| 567 | def geocode_data(  | 
            ||
| 568 | geocoding_df: pd.DataFrame,  | 
            ||
| 569 | ratelimiter: RateLimiter,  | 
            ||
| 570 | epsg: int,  | 
            ||
| 571 | ) -> gpd.GeoDataFrame:  | 
            ||
| 572 | """  | 
            ||
| 573 | Geocode zip code and municipality.  | 
            ||
| 574 | Extract latitude, longitude and altitude.  | 
            ||
| 575 | Transfrom latitude and longitude to shapely  | 
            ||
| 576 | Point and return a geopandas GeoDataFrame.  | 
            ||
| 577 | Parameters  | 
            ||
| 578 | -----------  | 
            ||
| 579 | geocoding_df : pandas.DataFrame  | 
            ||
| 580 | DataFrame containing all unique combinations of  | 
            ||
| 581 | zip codes with municipalities for geocoding.  | 
            ||
| 582 | ratelimiter : geopy.extra.rate_limiter.RateLimiter  | 
            ||
| 583 | Nominatim RateLimiter geocoding class to use for geocoding.  | 
            ||
| 584 | epsg : int  | 
            ||
| 585 | EPSG ID to use as CRS.  | 
            ||
| 586 | Returns  | 
            ||
| 587 | -------  | 
            ||
| 588 | geopandas.GeoDataFrame  | 
            ||
| 589 | GeoDataFrame containing all unique combinations of  | 
            ||
| 590 | zip codes with municipalities with matching geolocation.  | 
            ||
| 591 | """  | 
            ||
| 592 |     logger.info(f"Geocoding {len(geocoding_df)} locations.") | 
            ||
| 593 | |||
| 594 | geocode_df = geocoding_df.assign(  | 
            ||
| 595 | location=geocoding_df.zip_and_municipality.apply(ratelimiter)  | 
            ||
| 596 | )  | 
            ||
| 597 | |||
| 598 | geocode_df = geocode_df.assign(  | 
            ||
| 599 | point=geocode_df.location.apply(  | 
            ||
| 600 | lambda loc: tuple(loc.point) if loc else None  | 
            ||
| 601 | )  | 
            ||
| 602 | )  | 
            ||
| 603 | |||
| 604 | geocode_df[["latitude", "longitude", "altitude"]] = pd.DataFrame(  | 
            ||
| 605 | geocode_df.point.tolist(), index=geocode_df.index  | 
            ||
| 606 | )  | 
            ||
| 607 | |||
| 608 | return gpd.GeoDataFrame(  | 
            ||
| 609 | geocode_df,  | 
            ||
| 610 | geometry=gpd.points_from_xy(geocode_df.longitude, geocode_df.latitude),  | 
            ||
| 611 |         crs=f"EPSG:{epsg}", | 
            ||
| 612 | )  | 
            ||
| 613 | |||
| 614 | |||
| 615 | def merge_geocode_with_mastr(  | 
            ||
| 616 | clean_mastr_df: pd.DataFrame, geocode_gdf: gpd.GeoDataFrame  | 
            ||
| 617 | ) -> gpd.GeoDataFrame:  | 
            ||
| 618 | """  | 
            ||
| 619 | Merge geometry to original mastr data.  | 
            ||
| 620 | Parameters  | 
            ||
| 621 | -----------  | 
            ||
| 622 | clean_mastr_df : pandas.DataFrame  | 
            ||
| 623 | DataFrame containing cleaned MaStR data.  | 
            ||
| 624 | geocode_gdf : geopandas.GeoDataFrame  | 
            ||
| 625 | GeoDataFrame containing all unique combinations of  | 
            ||
| 626 | zip codes with municipalities with matching geolocation.  | 
            ||
| 627 | Returns  | 
            ||
| 628 | -------  | 
            ||
| 629 | gepandas.GeoDataFrame  | 
            ||
| 630 | GeoDataFrame containing cleaned MaStR data with  | 
            ||
| 631 | matching geolocation from geocoding.  | 
            ||
| 632 | """  | 
            ||
| 633 | return gpd.GeoDataFrame(  | 
            ||
| 634 | clean_mastr_df.merge(  | 
            ||
| 635 | geocode_gdf[["zip_and_municipality", "geometry"]],  | 
            ||
| 636 | how="left",  | 
            ||
| 637 | left_on="zip_and_municipality",  | 
            ||
| 638 | right_on="zip_and_municipality",  | 
            ||
| 639 | ),  | 
            ||
| 640 | crs=geocode_gdf.crs,  | 
            ||
| 641 | ).set_index(clean_mastr_df.index)  | 
            ||
| 642 | |||
| 643 | |||
| 644 | def drop_invalid_entries_from_gdf(  | 
            ||
| 645 | gdf: gpd.GeoDataFrame,  | 
            ||
| 646 | ) -> gpd.GeoDataFrame:  | 
            ||
| 647 | """  | 
            ||
| 648 | Drop invalid entries from geopandas GeoDataFrame.  | 
            ||
| 649 | TODO: how to omit the logging from geos here???  | 
            ||
| 650 | Parameters  | 
            ||
| 651 | -----------  | 
            ||
| 652 | gdf : geopandas.GeoDataFrame  | 
            ||
| 653 | GeoDataFrame to be checked for validity.  | 
            ||
| 654 | Returns  | 
            ||
| 655 | -------  | 
            ||
| 656 | gepandas.GeoDataFrame  | 
            ||
| 657 | GeoDataFrame with rows with invalid geometries  | 
            ||
| 658 | dropped.  | 
            ||
| 659 | """  | 
            ||
| 660 | valid_gdf = gdf.loc[gdf.is_valid]  | 
            ||
| 661 | |||
| 662 | logger.debug(  | 
            ||
| 663 |         f"{len(gdf) - len(valid_gdf)} " | 
            ||
| 664 |         f"({(len(gdf) - len(valid_gdf)) / len(gdf) * 100:g}%) " | 
            ||
| 665 |         f"of {len(gdf)} values were invalid and are dropped." | 
            ||
| 666 | )  | 
            ||
| 667 | |||
| 668 | return valid_gdf  | 
            ||
| 669 | |||
| 670 | |||
| 671 | @timer_func  | 
            ||
| 672 | def municipality_data() -> gpd.GeoDataFrame:  | 
            ||
| 673 | """  | 
            ||
| 674 | Get municipality data from eGo^n Database.  | 
            ||
| 675 | Returns  | 
            ||
| 676 | -------  | 
            ||
| 677 | gepandas.GeoDataFrame  | 
            ||
| 678 | GeoDataFrame with municipality data.  | 
            ||
| 679 | """  | 
            ||
| 680 | with db.session_scope() as session:  | 
            ||
| 681 |         query = session.query(Vg250Gem.ags, Vg250Gem.geometry.label("geom")) | 
            ||
| 682 | |||
| 683 | return gpd.read_postgis(  | 
            ||
| 684 | query.statement, query.session.bind, index_col="ags"  | 
            ||
| 685 | )  | 
            ||
| 686 | |||
| 687 | |||
| 688 | @timer_func  | 
            ||
| 689 | def add_ags_to_gens(  | 
            ||
| 690 | valid_mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 691 | municipalities_gdf: gpd.GeoDataFrame,  | 
            ||
| 692 | ) -> gpd.GeoDataFrame:  | 
            ||
| 693 | """  | 
            ||
| 694 | Add information about AGS ID to generators.  | 
            ||
| 695 | Parameters  | 
            ||
| 696 | -----------  | 
            ||
| 697 | valid_mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 698 | GeoDataFrame with valid and cleaned MaStR data.  | 
            ||
| 699 | municipalities_gdf : geopandas.GeoDataFrame  | 
            ||
| 700 | GeoDataFrame with municipality data.  | 
            ||
| 701 | Returns  | 
            ||
| 702 | -------  | 
            ||
| 703 | gepandas.GeoDataFrame  | 
            ||
| 704 | GeoDataFrame with valid and cleaned MaStR data  | 
            ||
| 705 | with AGS ID added.  | 
            ||
| 706 | """  | 
            ||
| 707 | return valid_mastr_gdf.sjoin(  | 
            ||
| 708 | municipalities_gdf,  | 
            ||
| 709 | how="left",  | 
            ||
| 710 | predicate="intersects",  | 
            ||
| 711 |     ).rename(columns={"index_right": "ags"}) | 
            ||
| 712 | |||
| 713 | |||
| 714 | def drop_gens_outside_muns(  | 
            ||
| 715 | valid_mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 716 | ) -> gpd.GeoDataFrame:  | 
            ||
| 717 | """  | 
            ||
| 718 | Drop all generators outside of municipalities.  | 
            ||
| 719 | Parameters  | 
            ||
| 720 | -----------  | 
            ||
| 721 | valid_mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 722 | GeoDataFrame with valid and cleaned MaStR data.  | 
            ||
| 723 | Returns  | 
            ||
| 724 | -------  | 
            ||
| 725 | gepandas.GeoDataFrame  | 
            ||
| 726 | GeoDataFrame with valid and cleaned MaStR data  | 
            ||
| 727 | with generatos without an AGS ID dropped.  | 
            ||
| 728 | """  | 
            ||
| 729 | gdf = valid_mastr_gdf.loc[~valid_mastr_gdf.ags.isna()]  | 
            ||
| 730 | |||
| 731 | logger.debug(  | 
            ||
| 732 |         f"{len(valid_mastr_gdf) - len(gdf)} " | 
            ||
| 733 |         f"({(len(valid_mastr_gdf) - len(gdf)) / len(valid_mastr_gdf) * 100:g}%) " | 
            ||
| 734 |         f"of {len(valid_mastr_gdf)} values are outside of the municipalities" | 
            ||
| 735 | " and are therefore dropped."  | 
            ||
| 736 | )  | 
            ||
| 737 | |||
| 738 | return gdf  | 
            ||
| 739 | |||
| 740 | |||
| 741 | class EgonMastrPvRoofGeocoded(Base):  | 
            ||
| 742 | __tablename__ = "egon_mastr_pv_roof_geocoded"  | 
            ||
| 743 |     __table_args__ = {"schema": "supply"} | 
            ||
| 744 | |||
| 745 | zip_and_municipality = Column(String, primary_key=True, index=True)  | 
            ||
| 746 | location = Column(String)  | 
            ||
| 747 | point = Column(String)  | 
            ||
| 748 | latitude = Column(Float)  | 
            ||
| 749 | longitude = Column(Float)  | 
            ||
| 750 | altitude = Column(Float)  | 
            ||
| 751 | geometry = Column(Geometry(srid=EPSG))  | 
            ||
| 752 | |||
| 753 | |||
| 754 | def create_geocoded_table(geocode_gdf):  | 
            ||
| 755 | """  | 
            ||
| 756 | Create geocoded table mastr pv rooftop  | 
            ||
| 757 | Parameters  | 
            ||
| 758 | -----------  | 
            ||
| 759 | geocode_gdf : geopandas.GeoDataFrame  | 
            ||
| 760 | GeoDataFrame containing geocoding information on pv rooftop locations.  | 
            ||
| 761 | """  | 
            ||
| 762 | EgonMastrPvRoofGeocoded.__table__.drop(bind=engine, checkfirst=True)  | 
            ||
| 763 | EgonMastrPvRoofGeocoded.__table__.create(bind=engine, checkfirst=True)  | 
            ||
| 764 | |||
| 765 | geocode_gdf.to_postgis(  | 
            ||
| 766 | name=EgonMastrPvRoofGeocoded.__table__.name,  | 
            ||
| 767 | schema=EgonMastrPvRoofGeocoded.__table__.schema,  | 
            ||
| 768 | con=db.engine(),  | 
            ||
| 769 | if_exists="append",  | 
            ||
| 770 | index=False,  | 
            ||
| 771 |         # dtype={} | 
            ||
| 772 | )  | 
            ||
| 773 | |||
| 774 | |||
| 775 | def geocoded_data_from_db(  | 
            ||
| 776 | epsg: str | int,  | 
            ||
| 777 | ) -> gpd.GeoDataFrame:  | 
            ||
| 778 | """  | 
            ||
| 779 | Read OSM buildings data from eGo^n Database.  | 
            ||
| 780 | Parameters  | 
            ||
| 781 | -----------  | 
            ||
| 782 | to_crs : pyproj.crs.crs.CRS  | 
            ||
| 783 | CRS to transform geometries to.  | 
            ||
| 784 | Returns  | 
            ||
| 785 | -------  | 
            ||
| 786 | geopandas.GeoDataFrame  | 
            ||
| 787 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 788 | """  | 
            ||
| 789 | with db.session_scope() as session:  | 
            ||
| 790 | query = session.query(  | 
            ||
| 791 | EgonMastrPvRoofGeocoded.zip_and_municipality,  | 
            ||
| 792 | EgonMastrPvRoofGeocoded.geometry,  | 
            ||
| 793 | )  | 
            ||
| 794 | |||
| 795 | return gpd.read_postgis(  | 
            ||
| 796 | query.statement, query.session.bind, geom_col="geometry"  | 
            ||
| 797 |     ).to_crs(f"EPSG:{epsg}") | 
            ||
| 798 | |||
| 799 | |||
| 800 | def load_mastr_data():  | 
            ||
| 801 | """Read PV rooftop data from MaStR CSV  | 
            ||
| 802 | Note: the source will be replaced as soon as the MaStR data is available  | 
            ||
| 803 | in DB.  | 
            ||
| 804 | Returns  | 
            ||
| 805 | -------  | 
            ||
| 806 | geopandas.GeoDataFrame  | 
            ||
| 807 | GeoDataFrame containing MaStR data with geocoded locations.  | 
            ||
| 808 | """  | 
            ||
| 809 | mastr_df = mastr_data(  | 
            ||
| 810 | MASTR_INDEX_COL,  | 
            ||
| 811 | MASTR_RELEVANT_COLS,  | 
            ||
| 812 | MASTR_DTYPES,  | 
            ||
| 813 | MASTR_PARSE_DATES,  | 
            ||
| 814 | )  | 
            ||
| 815 | |||
| 816 | clean_mastr_df = clean_mastr_data(  | 
            ||
| 817 | mastr_df,  | 
            ||
| 818 | max_realistic_pv_cap=MAX_REALISTIC_PV_CAP,  | 
            ||
| 819 | min_realistic_pv_cap=MIN_REALISTIC_PV_CAP,  | 
            ||
| 820 | seed=SEED,  | 
            ||
| 821 | rounding=ROUNDING,  | 
            ||
| 822 | )  | 
            ||
| 823 | |||
| 824 | geocode_gdf = geocoded_data_from_db(EPSG)  | 
            ||
| 825 | |||
| 826 | mastr_gdf = merge_geocode_with_mastr(clean_mastr_df, geocode_gdf)  | 
            ||
| 827 | |||
| 828 | valid_mastr_gdf = drop_invalid_entries_from_gdf(mastr_gdf)  | 
            ||
| 829 | |||
| 830 | municipalities_gdf = municipality_data()  | 
            ||
| 831 | |||
| 832 | valid_mastr_gdf = add_ags_to_gens(valid_mastr_gdf, municipalities_gdf)  | 
            ||
| 833 | |||
| 834 | return drop_gens_outside_muns(valid_mastr_gdf)  | 
            ||
| 835 | |||
| 836 | |||
| 837 | class OsmBuildingsFiltered(Base):  | 
            ||
| 838 | __tablename__ = "osm_buildings_filtered"  | 
            ||
| 839 |     __table_args__ = {"schema": "openstreetmap"} | 
            ||
| 840 | |||
| 841 | osm_id = Column(BigInteger)  | 
            ||
| 842 | amenity = Column(String)  | 
            ||
| 843 | building = Column(String)  | 
            ||
| 844 | name = Column(String)  | 
            ||
| 845 | geom = Column(Geometry(srid=SRID), index=True)  | 
            ||
| 846 | area = Column(Float)  | 
            ||
| 847 | geom_point = Column(Geometry(srid=SRID), index=True)  | 
            ||
| 848 | tags = Column(HSTORE)  | 
            ||
| 849 | id = Column(BigInteger, primary_key=True, index=True)  | 
            ||
| 850 | |||
| 851 | |||
| 852 | @timer_func  | 
            ||
| 853 | def osm_buildings(  | 
            ||
| 854 | to_crs: CRS,  | 
            ||
| 855 | ) -> gpd.GeoDataFrame:  | 
            ||
| 856 | """  | 
            ||
| 857 | Read OSM buildings data from eGo^n Database.  | 
            ||
| 858 | Parameters  | 
            ||
| 859 | -----------  | 
            ||
| 860 | to_crs : pyproj.crs.crs.CRS  | 
            ||
| 861 | CRS to transform geometries to.  | 
            ||
| 862 | Returns  | 
            ||
| 863 | -------  | 
            ||
| 864 | geopandas.GeoDataFrame  | 
            ||
| 865 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 866 | """  | 
            ||
| 867 | with db.session_scope() as session:  | 
            ||
| 868 | query = session.query(  | 
            ||
| 869 | OsmBuildingsFiltered.id,  | 
            ||
| 870 | OsmBuildingsFiltered.area,  | 
            ||
| 871 |             OsmBuildingsFiltered.geom_point.label("geom"), | 
            ||
| 872 | )  | 
            ||
| 873 | |||
| 874 | return gpd.read_postgis(  | 
            ||
| 875 | query.statement, query.session.bind, index_col="id"  | 
            ||
| 876 | ).to_crs(to_crs)  | 
            ||
| 877 | |||
| 878 | |||
| 879 | @timer_func  | 
            ||
| 880 | def synthetic_buildings(  | 
            ||
| 881 | to_crs: CRS,  | 
            ||
| 882 | ) -> gpd.GeoDataFrame:  | 
            ||
| 883 | """  | 
            ||
| 884 | Read synthetic buildings data from eGo^n Database.  | 
            ||
| 885 | Parameters  | 
            ||
| 886 | -----------  | 
            ||
| 887 | to_crs : pyproj.crs.crs.CRS  | 
            ||
| 888 | CRS to transform geometries to.  | 
            ||
| 889 | Returns  | 
            ||
| 890 | -------  | 
            ||
| 891 | geopandas.GeoDataFrame  | 
            ||
| 892 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 893 | """  | 
            ||
| 894 | with db.session_scope() as session:  | 
            ||
| 895 | query = session.query(  | 
            ||
| 896 | OsmBuildingsSynthetic.id,  | 
            ||
| 897 | OsmBuildingsSynthetic.area,  | 
            ||
| 898 |             OsmBuildingsSynthetic.geom_point.label("geom"), | 
            ||
| 899 | )  | 
            ||
| 900 | |||
| 901 | return gpd.read_postgis(  | 
            ||
| 902 | query.statement, query.session.bind, index_col="id"  | 
            ||
| 903 | ).to_crs(to_crs)  | 
            ||
| 904 | |||
| 905 | |||
| 906 | @timer_func  | 
            ||
| 907 | def add_ags_to_buildings(  | 
            ||
| 908 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 909 | municipalities_gdf: gpd.GeoDataFrame,  | 
            ||
| 910 | ) -> gpd.GeoDataFrame:  | 
            ||
| 911 | """  | 
            ||
| 912 | Add information about AGS ID to buildings.  | 
            ||
| 913 | Parameters  | 
            ||
| 914 | -----------  | 
            ||
| 915 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 916 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 917 | municipalities_gdf : geopandas.GeoDataFrame  | 
            ||
| 918 | GeoDataFrame with municipality data.  | 
            ||
| 919 | Returns  | 
            ||
| 920 | -------  | 
            ||
| 921 | gepandas.GeoDataFrame  | 
            ||
| 922 | GeoDataFrame containing OSM buildings data  | 
            ||
| 923 | with AGS ID added.  | 
            ||
| 924 | """  | 
            ||
| 925 | return buildings_gdf.sjoin(  | 
            ||
| 926 | municipalities_gdf,  | 
            ||
| 927 | how="left",  | 
            ||
| 928 | predicate="intersects",  | 
            ||
| 929 |     ).rename(columns={"index_right": "ags"}) | 
            ||
| 930 | |||
| 931 | |||
| 932 | def drop_buildings_outside_muns(  | 
            ||
| 933 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 934 | ) -> gpd.GeoDataFrame:  | 
            ||
| 935 | """  | 
            ||
| 936 | Drop all buildings outside of municipalities.  | 
            ||
| 937 | Parameters  | 
            ||
| 938 | -----------  | 
            ||
| 939 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 940 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 941 | Returns  | 
            ||
| 942 | -------  | 
            ||
| 943 | gepandas.GeoDataFrame  | 
            ||
| 944 | GeoDataFrame containing OSM buildings data  | 
            ||
| 945 | with buildings without an AGS ID dropped.  | 
            ||
| 946 | """  | 
            ||
| 947 | gdf = buildings_gdf.loc[~buildings_gdf.ags.isna()]  | 
            ||
| 948 | |||
| 949 | logger.debug(  | 
            ||
| 950 |         f"{len(buildings_gdf) - len(gdf)} " | 
            ||
| 951 |         f"({(len(buildings_gdf) - len(gdf)) / len(buildings_gdf) * 100:g}%) " | 
            ||
| 952 |         f"of {len(buildings_gdf)} values are outside of the municipalities " | 
            ||
| 953 | "and are therefore dropped."  | 
            ||
| 954 | )  | 
            ||
| 955 | |||
| 956 | return gdf  | 
            ||
| 957 | |||
| 958 | |||
| 959 | def egon_building_peak_loads():  | 
            ||
| 960 | sql = f"""  | 
            ||
| 961 | SELECT building_id  | 
            ||
| 962 | FROM demand.egon_building_peak_loads  | 
            ||
| 963 | """  | 
            ||
| 964 | |||
| 965 | return db.select_dataframe(sql).building_id.astype(int).sort_values()  | 
            ||
| 966 | |||
| 967 | |||
| 968 | @timer_func  | 
            ||
| 969 | def load_building_data():  | 
            ||
| 970 | """  | 
            ||
| 971 | Read buildings from DB  | 
            ||
| 972 | Tables:  | 
            ||
| 973 | |||
| 974 | * `openstreetmap.osm_buildings_filtered` (from OSM)  | 
            ||
| 975 | * `openstreetmap.osm_buildings_synthetic` (synthetic, created by us)  | 
            ||
| 976 | |||
| 977 | Use column `id` for both as it is unique hence you concat both datasets. If  | 
            ||
| 978 | INCLUDE_SYNTHETIC_BUILDINGS is False synthetic buildings will not be loaded.  | 
            ||
| 979 | |||
| 980 | Returns  | 
            ||
| 981 | -------  | 
            ||
| 982 | gepandas.GeoDataFrame  | 
            ||
| 983 | GeoDataFrame containing OSM buildings data with buildings without an AGS ID  | 
            ||
| 984 | dropped.  | 
            ||
| 985 | """  | 
            ||
| 986 | |||
| 987 | municipalities_gdf = municipality_data()  | 
            ||
| 988 | |||
| 989 | osm_buildings_gdf = osm_buildings(municipalities_gdf.crs)  | 
            ||
| 990 | |||
| 991 | if INCLUDE_SYNTHETIC_BUILDINGS:  | 
            ||
| 992 | synthetic_buildings_gdf = synthetic_buildings(municipalities_gdf.crs)  | 
            ||
| 993 | |||
| 994 | buildings_gdf = gpd.GeoDataFrame(  | 
            ||
| 995 | pd.concat(  | 
            ||
| 996 | [  | 
            ||
| 997 | osm_buildings_gdf,  | 
            ||
| 998 | synthetic_buildings_gdf,  | 
            ||
| 999 | ]  | 
            ||
| 1000 | ),  | 
            ||
| 1001 | geometry="geom",  | 
            ||
| 1002 | crs=osm_buildings_gdf.crs,  | 
            ||
| 1003 |         ).rename(columns={"area": "building_area"}) | 
            ||
| 1004 | |||
| 1005 | else:  | 
            ||
| 1006 | buildings_gdf = osm_buildings_gdf.rename(  | 
            ||
| 1007 |             columns={"area": "building_area"} | 
            ||
| 1008 | )  | 
            ||
| 1009 | |||
| 1010 | if ONLY_BUILDINGS_WITH_DEMAND:  | 
            ||
| 1011 | building_ids = egon_building_peak_loads()  | 
            ||
| 1012 | |||
| 1013 | init_len = len(building_ids)  | 
            ||
| 1014 | |||
| 1015 | building_ids = [  | 
            ||
| 1016 | b_id for b_id in building_ids if b_id in buildings_gdf.index  | 
            ||
| 1017 | ]  | 
            ||
| 1018 | |||
| 1019 | end_len = len(building_ids)  | 
            ||
| 1020 | |||
| 1021 | logger.debug(  | 
            ||
| 1022 |             f"{end_len/init_len * 100: g} % ({end_len} / {init_len}) of IDs within OSM" | 
            ||
| 1023 | f" buildings."  | 
            ||
| 1024 | )  | 
            ||
| 1025 | |||
| 1026 | buildings_gdf = buildings_gdf.loc[building_ids]  | 
            ||
| 1027 | |||
| 1028 | buildings_ags_gdf = add_ags_to_buildings(buildings_gdf, municipalities_gdf)  | 
            ||
| 1029 | |||
| 1030 |     logger.debug("Loaded buildings.") | 
            ||
| 1031 | |||
| 1032 | return drop_buildings_outside_muns(buildings_ags_gdf)  | 
            ||
| 1033 | |||
| 1034 | |||
| 1035 | @timer_func  | 
            ||
| 1036 | def sort_and_qcut_df(  | 
            ||
| 1037 | df: pd.DataFrame | gpd.GeoDataFrame,  | 
            ||
| 1038 | col: str,  | 
            ||
| 1039 | q: int,  | 
            ||
| 1040 | ) -> pd.DataFrame | gpd.GeoDataFrame:  | 
            ||
| 1041 | """  | 
            ||
| 1042 | Determine the quantile of a given attribute in a (Geo)DataFrame.  | 
            ||
| 1043 | Sort the (Geo)DataFrame in ascending order for the given attribute.  | 
            ||
| 1044 | Parameters  | 
            ||
| 1045 | -----------  | 
            ||
| 1046 | df : pandas.DataFrame or geopandas.GeoDataFrame  | 
            ||
| 1047 | (Geo)DataFrame to sort and qcut.  | 
            ||
| 1048 | col : str  | 
            ||
| 1049 | Name of the attribute to sort and qcut the (Geo)DataFrame on.  | 
            ||
| 1050 | q : int  | 
            ||
| 1051 | Number of quantiles.  | 
            ||
| 1052 | Returns  | 
            ||
| 1053 | -------  | 
            ||
| 1054 | pandas.DataFrame or gepandas.GeoDataFrame  | 
            ||
| 1055 | Sorted and qcut (Geo)DataFrame.  | 
            ||
| 1056 | """  | 
            ||
| 1057 | df = df.sort_values(col, ascending=True)  | 
            ||
| 1058 | |||
| 1059 | return df.assign(  | 
            ||
| 1060 | quant=pd.qcut(  | 
            ||
| 1061 | df[col],  | 
            ||
| 1062 | q=q,  | 
            ||
| 1063 | labels=range(q),  | 
            ||
| 1064 | )  | 
            ||
| 1065 | )  | 
            ||
| 1066 | |||
| 1067 | |||
| 1068 | @timer_func  | 
            ||
| 1069 | def allocate_pv(  | 
            ||
| 1070 | q_mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1071 | q_buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1072 | seed: int,  | 
            ||
| 1073 | ) -> tuple[gpd.GeoDataFrame, gpd.GeoDataFrame]:  | 
            ||
| 1074 | """  | 
            ||
| 1075 | Allocate the MaStR pv generators to the OSM buildings.  | 
            ||
| 1076 | This will determine a building for each pv generator if there are more  | 
            ||
| 1077 | buildings than generators within a given AGS. Primarily generators are  | 
            ||
| 1078 | distributed with the same qunatile as the buildings. Multiple assignment  | 
            ||
| 1079 | is excluded.  | 
            ||
| 1080 | Parameters  | 
            ||
| 1081 | -----------  | 
            ||
| 1082 | q_mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1083 | GeoDataFrame containing geocoded and qcut MaStR data.  | 
            ||
| 1084 | q_buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1085 | GeoDataFrame containing qcut OSM buildings data.  | 
            ||
| 1086 | seed : int  | 
            ||
| 1087 | Seed to use for random operations with NumPy and pandas.  | 
            ||
| 1088 | Returns  | 
            ||
| 1089 | -------  | 
            ||
| 1090 | tuple with two geopandas.GeoDataFrame s  | 
            ||
| 1091 | GeoDataFrame containing MaStR data allocated to building IDs.  | 
            ||
| 1092 | GeoDataFrame containing building data allocated to MaStR IDs.  | 
            ||
| 1093 | """  | 
            ||
| 1094 | rng = default_rng(seed=seed)  | 
            ||
| 1095 | |||
| 1096 | q_buildings_gdf = q_buildings_gdf.assign(gens_id=np.nan)  | 
            ||
| 1097 | q_mastr_gdf = q_mastr_gdf.assign(building_id=np.nan)  | 
            ||
| 1098 | |||
| 1099 | ags_list = q_buildings_gdf.ags.unique()  | 
            ||
| 1100 | |||
| 1101 | num_ags = len(ags_list)  | 
            ||
| 1102 | |||
| 1103 | t0 = perf_counter()  | 
            ||
| 1104 | |||
| 1105 | for count, ags in enumerate(ags_list):  | 
            ||
| 1106 | |||
| 1107 | buildings = q_buildings_gdf.loc[  | 
            ||
| 1108 | (q_buildings_gdf.ags == ags) & (q_buildings_gdf.gens_id.isna())  | 
            ||
| 1109 | ]  | 
            ||
| 1110 | gens = q_mastr_gdf.loc[  | 
            ||
| 1111 | (q_mastr_gdf.ags == ags) & (q_mastr_gdf.building_id.isna())  | 
            ||
| 1112 | ]  | 
            ||
| 1113 | |||
| 1114 | len_build = len(buildings)  | 
            ||
| 1115 | len_gens = len(gens)  | 
            ||
| 1116 | |||
| 1117 | if len_build < len_gens:  | 
            ||
| 1118 | gens = gens.sample(len_build, random_state=RandomState(seed=seed))  | 
            ||
| 1119 | logger.error(  | 
            ||
| 1120 |                 f"There are {len_gens} generators and only {len_build}" | 
            ||
| 1121 |                 f" buildings in AGS {ags}. {len_gens - len(gens)} " | 
            ||
| 1122 | "generators were truncated to match the amount of buildings."  | 
            ||
| 1123 | )  | 
            ||
| 1124 | |||
| 1125 | assert len_build == len(gens)  | 
            ||
| 1126 | |||
| 1127 | for quant in gens.quant.unique():  | 
            ||
| 1128 | q_buildings = buildings.loc[  | 
            ||
| 1129 | (buildings.quant == quant) & (buildings.gens_id.isna())  | 
            ||
| 1130 | ]  | 
            ||
| 1131 | q_gens = gens.loc[gens.quant == quant]  | 
            ||
| 1132 | |||
| 1133 | len_build = len(q_buildings)  | 
            ||
| 1134 | len_gens = len(q_gens)  | 
            ||
| 1135 | |||
| 1136 | if len_build < len_gens:  | 
            ||
| 1137 | delta = len_gens - len_build  | 
            ||
| 1138 | |||
| 1139 | logger.warning(  | 
            ||
| 1140 |                     f"There are {len_gens} generators and only {len_build} " | 
            ||
| 1141 |                     f"buildings in AGS {ags} and quantile {quant}. {delta} " | 
            ||
| 1142 |                     f"buildings from AGS {ags} will be added randomly." | 
            ||
| 1143 | )  | 
            ||
| 1144 | |||
| 1145 | add_buildings = pd.Index(  | 
            ||
| 1146 | rng.choice(  | 
            ||
| 1147 | buildings.loc[  | 
            ||
| 1148 | (buildings.quant != quant)  | 
            ||
| 1149 | & (buildings.gens_id.isna())  | 
            ||
| 1150 | ].index,  | 
            ||
| 1151 | size=delta,  | 
            ||
| 1152 | replace=False,  | 
            ||
| 1153 | )  | 
            ||
| 1154 | )  | 
            ||
| 1155 | |||
| 1156 | q_buildings = buildings.loc[  | 
            ||
| 1157 | q_buildings.index.append(add_buildings)  | 
            ||
| 1158 | ]  | 
            ||
| 1159 | |||
| 1160 | assert len(q_buildings) == len_gens  | 
            ||
| 1161 | |||
| 1162 | chosen_buildings = pd.Index(  | 
            ||
| 1163 | rng.choice(  | 
            ||
| 1164 | q_buildings.index,  | 
            ||
| 1165 | size=len_gens,  | 
            ||
| 1166 | replace=False,  | 
            ||
| 1167 | )  | 
            ||
| 1168 | )  | 
            ||
| 1169 | |||
| 1170 | # q_mastr_gdf.loc[q_gens.index] = q_mastr_gdf.loc[  | 
            ||
| 1171 | # q_gens.index  | 
            ||
| 1172 | # ].assign(building_id=chosen_buildings)  | 
            ||
| 1173 | |||
| 1174 | q_buildings_gdf.loc[chosen_buildings, "gens_id"] = q_gens.index  | 
            ||
| 1175 | |||
| 1176 | if count % 100 == 0:  | 
            ||
| 1177 | logger.debug(  | 
            ||
| 1178 |                 f"Allocation of {count / num_ags * 100:g} % of AGS done. It took " | 
            ||
| 1179 |                 f"{perf_counter() - t0:g} seconds." | 
            ||
| 1180 | )  | 
            ||
| 1181 | |||
| 1182 | t0 = perf_counter()  | 
            ||
| 1183 | |||
| 1184 | assigned_buildings = q_buildings_gdf.loc[~q_buildings_gdf.gens_id.isna()]  | 
            ||
| 1185 | |||
| 1186 | q_mastr_gdf.loc[  | 
            ||
| 1187 | assigned_buildings.gens_id, "building_id"  | 
            ||
| 1188 | ] = assigned_buildings.index  | 
            ||
| 1189 | |||
| 1190 |     logger.debug("Allocated status quo generators to buildings.") | 
            ||
| 1191 | |||
| 1192 | return frame_to_numeric(q_mastr_gdf), frame_to_numeric(q_buildings_gdf)  | 
            ||
| 1193 | |||
| 1194 | |||
| 1195 | def frame_to_numeric(  | 
            ||
| 1196 | df: pd.DataFrame | gpd.GeoDataFrame,  | 
            ||
| 1197 | ) -> pd.DataFrame | gpd.GeoDataFrame:  | 
            ||
| 1198 | """  | 
            ||
| 1199 | Try to convert all columns of a DataFrame to numeric ignoring errors.  | 
            ||
| 1200 | Parameters  | 
            ||
| 1201 | ----------  | 
            ||
| 1202 | df : pandas.DataFrame or geopandas.GeoDataFrame  | 
            ||
| 1203 | Returns  | 
            ||
| 1204 | -------  | 
            ||
| 1205 | pandas.DataFrame or geopandas.GeoDataFrame  | 
            ||
| 1206 | """  | 
            ||
| 1207 | if str(df.index.dtype) == "object":  | 
            ||
| 1208 | df.index = pd.to_numeric(df.index, errors="ignore")  | 
            ||
| 1209 | |||
| 1210 | for col in df.columns:  | 
            ||
| 1211 | if str(df[col].dtype) == "object":  | 
            ||
| 1212 | df[col] = pd.to_numeric(df[col], errors="ignore")  | 
            ||
| 1213 | |||
| 1214 | return df  | 
            ||
| 1215 | |||
| 1216 | |||
| 1217 | def validate_output(  | 
            ||
| 1218 | desagg_mastr_gdf: pd.DataFrame | gpd.GeoDataFrame,  | 
            ||
| 1219 | desagg_buildings_gdf: pd.DataFrame | gpd.GeoDataFrame,  | 
            ||
| 1220 | ) -> None:  | 
            ||
| 1221 | """  | 
            ||
| 1222 | Validate output.  | 
            ||
| 1223 | |||
| 1224 | * Validate that there are exactly as many buildings with a pv system as there are  | 
            ||
| 1225 | pv systems with a building  | 
            ||
| 1226 | * Validate that the building IDs with a pv system are the same building IDs as  | 
            ||
| 1227 | assigned to the pv systems  | 
            ||
| 1228 | * Validate that the pv system IDs with a building are the same pv system IDs as  | 
            ||
| 1229 | assigned to the buildings  | 
            ||
| 1230 | |||
| 1231 | Parameters  | 
            ||
| 1232 | -----------  | 
            ||
| 1233 | desagg_mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1234 | GeoDataFrame containing MaStR data allocated to building IDs.  | 
            ||
| 1235 | desagg_buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1236 | GeoDataFrame containing building data allocated to MaStR IDs.  | 
            ||
| 1237 | """  | 
            ||
| 1238 | assert len(  | 
            ||
| 1239 | desagg_mastr_gdf.loc[~desagg_mastr_gdf.building_id.isna()]  | 
            ||
| 1240 | ) == len(desagg_buildings_gdf.loc[~desagg_buildings_gdf.gens_id.isna()])  | 
            ||
| 1241 | assert (  | 
            ||
| 1242 | np.sort(  | 
            ||
| 1243 | desagg_mastr_gdf.loc[  | 
            ||
| 1244 | ~desagg_mastr_gdf.building_id.isna()  | 
            ||
| 1245 | ].building_id.unique()  | 
            ||
| 1246 | )  | 
            ||
| 1247 | == np.sort(  | 
            ||
| 1248 | desagg_buildings_gdf.loc[  | 
            ||
| 1249 | ~desagg_buildings_gdf.gens_id.isna()  | 
            ||
| 1250 | ].index.unique()  | 
            ||
| 1251 | )  | 
            ||
| 1252 | ).all()  | 
            ||
| 1253 | assert (  | 
            ||
| 1254 | np.sort(  | 
            ||
| 1255 | desagg_mastr_gdf.loc[  | 
            ||
| 1256 | ~desagg_mastr_gdf.building_id.isna()  | 
            ||
| 1257 | ].index.unique()  | 
            ||
| 1258 | )  | 
            ||
| 1259 | == np.sort(  | 
            ||
| 1260 | desagg_buildings_gdf.loc[  | 
            ||
| 1261 | ~desagg_buildings_gdf.gens_id.isna()  | 
            ||
| 1262 | ].gens_id.unique()  | 
            ||
| 1263 | )  | 
            ||
| 1264 | ).all()  | 
            ||
| 1265 | |||
| 1266 |     logger.debug("Validated output.") | 
            ||
| 1267 | |||
| 1268 | |||
| 1269 | def drop_unallocated_gens(  | 
            ||
| 1270 | gdf: gpd.GeoDataFrame,  | 
            ||
| 1271 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1272 | """  | 
            ||
| 1273 | Drop generators which did not get allocated.  | 
            ||
| 1274 | |||
| 1275 | Parameters  | 
            ||
| 1276 | -----------  | 
            ||
| 1277 | gdf : geopandas.GeoDataFrame  | 
            ||
| 1278 | GeoDataFrame containing MaStR data allocated to building IDs.  | 
            ||
| 1279 | Returns  | 
            ||
| 1280 | -------  | 
            ||
| 1281 | geopandas.GeoDataFrame  | 
            ||
| 1282 | GeoDataFrame containing MaStR data with generators dropped which did not get  | 
            ||
| 1283 | allocated.  | 
            ||
| 1284 | """  | 
            ||
| 1285 | init_len = len(gdf)  | 
            ||
| 1286 | gdf = gdf.loc[~gdf.building_id.isna()]  | 
            ||
| 1287 | end_len = len(gdf)  | 
            ||
| 1288 | |||
| 1289 | logger.debug(  | 
            ||
| 1290 |         f"Dropped {init_len - end_len} " | 
            ||
| 1291 |         f"({((init_len - end_len) / init_len) * 100:g}%)" | 
            ||
| 1292 |         f" of {init_len} unallocated rows from MaStR DataFrame." | 
            ||
| 1293 | )  | 
            ||
| 1294 | |||
| 1295 | return gdf  | 
            ||
| 1296 | |||
| 1297 | |||
| 1298 | @timer_func  | 
            ||
| 1299 | def allocate_to_buildings(  | 
            ||
| 1300 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1301 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1302 | ) -> tuple[gpd.GeoDataFrame, gpd.GeoDataFrame]:  | 
            ||
| 1303 | """  | 
            ||
| 1304 | Allocate status quo pv rooftop generators to buildings.  | 
            ||
| 1305 | Parameters  | 
            ||
| 1306 | -----------  | 
            ||
| 1307 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1308 | GeoDataFrame containing MaStR data with geocoded locations.  | 
            ||
| 1309 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1310 | GeoDataFrame containing OSM buildings data with buildings without an AGS ID  | 
            ||
| 1311 | dropped.  | 
            ||
| 1312 | Returns  | 
            ||
| 1313 | -------  | 
            ||
| 1314 | tuple with two geopandas.GeoDataFrame s  | 
            ||
| 1315 | GeoDataFrame containing MaStR data allocated to building IDs.  | 
            ||
| 1316 | GeoDataFrame containing building data allocated to MaStR IDs.  | 
            ||
| 1317 | """  | 
            ||
| 1318 |     logger.debug("Starting allocation of status quo.") | 
            ||
| 1319 | |||
| 1320 | q_mastr_gdf = sort_and_qcut_df(mastr_gdf, col="capacity", q=Q)  | 
            ||
| 1321 | q_buildings_gdf = sort_and_qcut_df(buildings_gdf, col="building_area", q=Q)  | 
            ||
| 1322 | |||
| 1323 | desagg_mastr_gdf, desagg_buildings_gdf = allocate_pv(  | 
            ||
| 1324 | q_mastr_gdf, q_buildings_gdf, SEED  | 
            ||
| 1325 | )  | 
            ||
| 1326 | |||
| 1327 | validate_output(desagg_mastr_gdf, desagg_buildings_gdf)  | 
            ||
| 1328 | |||
| 1329 | return drop_unallocated_gens(desagg_mastr_gdf), desagg_buildings_gdf  | 
            ||
| 1330 | |||
| 1331 | |||
| 1332 | @timer_func  | 
            ||
| 1333 | def grid_districts(  | 
            ||
| 1334 | epsg: int,  | 
            ||
| 1335 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1336 | """  | 
            ||
| 1337 | Load mv grid district geo data from eGo^n Database as  | 
            ||
| 1338 | geopandas.GeoDataFrame.  | 
            ||
| 1339 | Parameters  | 
            ||
| 1340 | -----------  | 
            ||
| 1341 | epsg : int  | 
            ||
| 1342 | EPSG ID to use as CRS.  | 
            ||
| 1343 | Returns  | 
            ||
| 1344 | -------  | 
            ||
| 1345 | geopandas.GeoDataFrame  | 
            ||
| 1346 | GeoDataFrame containing mv grid district ID and geo shapes data.  | 
            ||
| 1347 | """  | 
            ||
| 1348 | gdf = db.select_geodataframe(  | 
            ||
| 1349 | """  | 
            ||
| 1350 | SELECT bus_id, geom  | 
            ||
| 1351 | FROM grid.egon_mv_grid_district  | 
            ||
| 1352 | ORDER BY bus_id  | 
            ||
| 1353 | """,  | 
            ||
| 1354 | index_col="bus_id",  | 
            ||
| 1355 | geom_col="geom",  | 
            ||
| 1356 | epsg=epsg,  | 
            ||
| 1357 | )  | 
            ||
| 1358 | |||
| 1359 | gdf.index = gdf.index.astype(int)  | 
            ||
| 1360 | |||
| 1361 |     logger.debug("Grid districts loaded.") | 
            ||
| 1362 | |||
| 1363 | return gdf  | 
            ||
| 1364 | |||
| 1365 | |||
| 1366 | def scenario_data(  | 
            ||
| 1367 | carrier: str = "solar_rooftop",  | 
            ||
| 1368 | scenario: str = "eGon2035",  | 
            ||
| 1369 | ) -> pd.DataFrame:  | 
            ||
| 1370 | """  | 
            ||
| 1371 | Get scenario capacity data from eGo^n Database.  | 
            ||
| 1372 | Parameters  | 
            ||
| 1373 | -----------  | 
            ||
| 1374 | carrier : str  | 
            ||
| 1375 | Carrier type to filter table by.  | 
            ||
| 1376 | scenario : str  | 
            ||
| 1377 | Scenario to filter table by.  | 
            ||
| 1378 | Returns  | 
            ||
| 1379 | -------  | 
            ||
| 1380 | geopandas.GeoDataFrame  | 
            ||
| 1381 | GeoDataFrame with scenario capacity data in GW.  | 
            ||
| 1382 | """  | 
            ||
| 1383 | with db.session_scope() as session:  | 
            ||
| 1384 | query = session.query(EgonScenarioCapacities).filter(  | 
            ||
| 1385 | EgonScenarioCapacities.carrier == carrier,  | 
            ||
| 1386 | EgonScenarioCapacities.scenario_name == scenario,  | 
            ||
| 1387 | )  | 
            ||
| 1388 | |||
| 1389 | df = pd.read_sql(  | 
            ||
| 1390 | query.statement, query.session.bind, index_col="index"  | 
            ||
| 1391 | ).sort_index()  | 
            ||
| 1392 | |||
| 1393 |     logger.debug("Scenario capacity data loaded.") | 
            ||
| 1394 | |||
| 1395 | return df  | 
            ||
| 1396 | |||
| 1397 | |||
| 1398 | View Code Duplication | class Vg250Lan(Base):  | 
            |
| 
                                                                                                    
                        
                         | 
                |||
| 1399 | __tablename__ = "vg250_lan"  | 
            ||
| 1400 |     __table_args__ = {"schema": "boundaries"} | 
            ||
| 1401 | |||
| 1402 | id = Column(BigInteger, primary_key=True, index=True)  | 
            ||
| 1403 | ade = Column(BigInteger)  | 
            ||
| 1404 | gf = Column(BigInteger)  | 
            ||
| 1405 | bsg = Column(BigInteger)  | 
            ||
| 1406 | ars = Column(String)  | 
            ||
| 1407 | ags = Column(String)  | 
            ||
| 1408 | sdv_ars = Column(String)  | 
            ||
| 1409 | gen = Column(String)  | 
            ||
| 1410 | bez = Column(String)  | 
            ||
| 1411 | ibz = Column(BigInteger)  | 
            ||
| 1412 | bem = Column(String)  | 
            ||
| 1413 | nbd = Column(String)  | 
            ||
| 1414 | sn_l = Column(String)  | 
            ||
| 1415 | sn_r = Column(String)  | 
            ||
| 1416 | sn_k = Column(String)  | 
            ||
| 1417 | sn_v1 = Column(String)  | 
            ||
| 1418 | sn_v2 = Column(String)  | 
            ||
| 1419 | sn_g = Column(String)  | 
            ||
| 1420 | fk_s3 = Column(String)  | 
            ||
| 1421 | nuts = Column(String)  | 
            ||
| 1422 | ars_0 = Column(String)  | 
            ||
| 1423 | ags_0 = Column(String)  | 
            ||
| 1424 | wsk = Column(String)  | 
            ||
| 1425 | debkg_id = Column(String)  | 
            ||
| 1426 | rs = Column(String)  | 
            ||
| 1427 | sdv_rs = Column(String)  | 
            ||
| 1428 | rs_0 = Column(String)  | 
            ||
| 1429 | geometry = Column(Geometry(srid=EPSG), index=True)  | 
            ||
| 1430 | |||
| 1431 | |||
| 1432 | def federal_state_data(to_crs: CRS) -> gpd.GeoDataFrame:  | 
            ||
| 1433 | """  | 
            ||
| 1434 | Get feder state data from eGo^n Database.  | 
            ||
| 1435 | Parameters  | 
            ||
| 1436 | -----------  | 
            ||
| 1437 | to_crs : pyproj.crs.crs.CRS  | 
            ||
| 1438 | CRS to transform geometries to.  | 
            ||
| 1439 | Returns  | 
            ||
| 1440 | -------  | 
            ||
| 1441 | geopandas.GeoDataFrame  | 
            ||
| 1442 | GeoDataFrame with federal state data.  | 
            ||
| 1443 | """  | 
            ||
| 1444 | with db.session_scope() as session:  | 
            ||
| 1445 | query = session.query(  | 
            ||
| 1446 |             Vg250Lan.id, Vg250Lan.nuts, Vg250Lan.geometry.label("geom") | 
            ||
| 1447 | )  | 
            ||
| 1448 | |||
| 1449 | gdf = gpd.read_postgis(  | 
            ||
| 1450 | query.statement, query.session.bind, index_col="id"  | 
            ||
| 1451 | ).to_crs(to_crs)  | 
            ||
| 1452 | |||
| 1453 |     logger.debug("Federal State data loaded.") | 
            ||
| 1454 | |||
| 1455 | return gdf  | 
            ||
| 1456 | |||
| 1457 | |||
| 1458 | @timer_func  | 
            ||
| 1459 | def overlay_grid_districts_with_counties(  | 
            ||
| 1460 | mv_grid_district_gdf: gpd.GeoDataFrame,  | 
            ||
| 1461 | federal_state_gdf: gpd.GeoDataFrame,  | 
            ||
| 1462 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1463 | """  | 
            ||
| 1464 | Calculate the intersections of mv grid districts and counties.  | 
            ||
| 1465 | Parameters  | 
            ||
| 1466 | -----------  | 
            ||
| 1467 | mv_grid_district_gdf : gpd.GeoDataFrame  | 
            ||
| 1468 | GeoDataFrame containing mv grid district ID and geo shapes data.  | 
            ||
| 1469 | federal_state_gdf : gpd.GeoDataFrame  | 
            ||
| 1470 | GeoDataFrame with federal state data.  | 
            ||
| 1471 | Returns  | 
            ||
| 1472 | -------  | 
            ||
| 1473 | geopandas.GeoDataFrame  | 
            ||
| 1474 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 1475 | """  | 
            ||
| 1476 | logger.debug(  | 
            ||
| 1477 | "Calculating intersection overlay between mv grid districts and "  | 
            ||
| 1478 | "counties. This may take a while..."  | 
            ||
| 1479 | )  | 
            ||
| 1480 | |||
| 1481 | gdf = gpd.overlay(  | 
            ||
| 1482 | federal_state_gdf.to_crs(mv_grid_district_gdf.crs),  | 
            ||
| 1483 | mv_grid_district_gdf.reset_index(),  | 
            ||
| 1484 | how="intersection",  | 
            ||
| 1485 | keep_geom_type=True,  | 
            ||
| 1486 | )  | 
            ||
| 1487 | |||
| 1488 |     logger.debug("Done!") | 
            ||
| 1489 | |||
| 1490 | return gdf  | 
            ||
| 1491 | |||
| 1492 | |||
| 1493 | @timer_func  | 
            ||
| 1494 | def add_overlay_id_to_buildings(  | 
            ||
| 1495 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1496 | grid_federal_state_gdf: gpd.GeoDataFrame,  | 
            ||
| 1497 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1498 | """  | 
            ||
| 1499 | Add information about overlay ID to buildings.  | 
            ||
| 1500 | Parameters  | 
            ||
| 1501 | -----------  | 
            ||
| 1502 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1503 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 1504 | grid_federal_state_gdf : geopandas.GeoDataFrame  | 
            ||
| 1505 | GeoDataFrame with intersection shapes between counties and grid districts.  | 
            ||
| 1506 | Returns  | 
            ||
| 1507 | -------  | 
            ||
| 1508 | geopandas.GeoDataFrame  | 
            ||
| 1509 | GeoDataFrame containing OSM buildings data with overlay ID added.  | 
            ||
| 1510 | """  | 
            ||
| 1511 | gdf = (  | 
            ||
| 1512 | buildings_gdf.to_crs(grid_federal_state_gdf.crs)  | 
            ||
| 1513 | .sjoin(  | 
            ||
| 1514 | grid_federal_state_gdf,  | 
            ||
| 1515 | how="left",  | 
            ||
| 1516 | predicate="intersects",  | 
            ||
| 1517 | )  | 
            ||
| 1518 |         .rename(columns={"index_right": "overlay_id"}) | 
            ||
| 1519 | )  | 
            ||
| 1520 | |||
| 1521 |     logger.debug("Added overlay ID to OSM buildings.") | 
            ||
| 1522 | |||
| 1523 | return gdf  | 
            ||
| 1524 | |||
| 1525 | |||
| 1526 | def drop_buildings_outside_grids(  | 
            ||
| 1527 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1528 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1529 | """  | 
            ||
| 1530 | Drop all buildings outside of grid areas.  | 
            ||
| 1531 | Parameters  | 
            ||
| 1532 | -----------  | 
            ||
| 1533 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1534 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 1535 | Returns  | 
            ||
| 1536 | -------  | 
            ||
| 1537 | gepandas.GeoDataFrame  | 
            ||
| 1538 | GeoDataFrame containing OSM buildings data  | 
            ||
| 1539 | with buildings without an bus ID dropped.  | 
            ||
| 1540 | """  | 
            ||
| 1541 | gdf = buildings_gdf.loc[~buildings_gdf.bus_id.isna()]  | 
            ||
| 1542 | |||
| 1543 | logger.debug(  | 
            ||
| 1544 |         f"{len(buildings_gdf) - len(gdf)} " | 
            ||
| 1545 |         f"({(len(buildings_gdf) - len(gdf)) / len(buildings_gdf) * 100:g}%) " | 
            ||
| 1546 |         f"of {len(buildings_gdf)} values are outside of the grid areas " | 
            ||
| 1547 | "and are therefore dropped."  | 
            ||
| 1548 | )  | 
            ||
| 1549 | |||
| 1550 | return gdf  | 
            ||
| 1551 | |||
| 1552 | |||
| 1553 | def buildings_area_per_overlay_id(  | 
            ||
| 1554 | valid_buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1555 | grid_federal_state_gdf: gpd.GeoDataFrame,  | 
            ||
| 1556 | ) -> pd.DataFrame:  | 
            ||
| 1557 | """  | 
            ||
| 1558 | Calculate total area of building per overlay ID.  | 
            ||
| 1559 | TODO: This is very simplified at the moment. If possible add some kind  | 
            ||
| 1560 | of weights to the area per building to differentiate between single-  | 
            ||
| 1561 | family and multi-family houses as well as agricultural and industrial  | 
            ||
| 1562 | buildings.  | 
            ||
| 1563 | Parameters  | 
            ||
| 1564 | -----------  | 
            ||
| 1565 | valid_buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1566 | GeoDataFrame containing OSM buildings data with overlay ID added.  | 
            ||
| 1567 | grid_federal_state_gdf : geopandas.GeoDataFrame  | 
            ||
| 1568 | GeoDataFrame with intersection shapes between counties and grid districts.  | 
            ||
| 1569 | Returns  | 
            ||
| 1570 | -------  | 
            ||
| 1571 | geopandas.GeoDataFrame  | 
            ||
| 1572 | GeoDataFrame with grid data and total buildings area.  | 
            ||
| 1573 | """  | 
            ||
| 1574 | return grid_federal_state_gdf.merge(  | 
            ||
| 1575 | valid_buildings_gdf[  | 
            ||
| 1576 | [  | 
            ||
| 1577 | "building_area",  | 
            ||
| 1578 | "overlay_id",  | 
            ||
| 1579 | ]  | 
            ||
| 1580 | ]  | 
            ||
| 1581 |         .groupby("overlay_id") | 
            ||
| 1582 | .sum(),  | 
            ||
| 1583 | how="left",  | 
            ||
| 1584 | left_index=True,  | 
            ||
| 1585 | right_index=True,  | 
            ||
| 1586 | )  | 
            ||
| 1587 | |||
| 1588 | |||
| 1589 | def cap_per_bus_id(  | 
            ||
| 1590 | scenario: str,  | 
            ||
| 1591 | # overlay_gdf: gpd.GeoDataFrame,  | 
            ||
| 1592 | # scenario_df: pd.DataFrame,  | 
            ||
| 1593 | # conversion: int | float = 10**3,  | 
            ||
| 1594 | ) -> pd.DataFrame:  | 
            ||
| 1595 | """  | 
            ||
| 1596 | Calculate total pv rooftop capacity per grid district dependent on  | 
            ||
| 1597 | available buildings area.  | 
            ||
| 1598 | TODO: This is very simplified at the moment as it assumes an evenly  | 
            ||
| 1599 | distribution of generators depending on the available buildings  | 
            ||
| 1600 | area per grid district.  | 
            ||
| 1601 | Parameters  | 
            ||
| 1602 | -----------  | 
            ||
| 1603 | overlay_gdf : geopandas.GeoDataFrame  | 
            ||
| 1604 | GeoDataFrame with grid data and total buildings area.  | 
            ||
| 1605 | conversion : int, float  | 
            ||
| 1606 | Conversion factor to match units. E.g. MW -> kW  | 
            ||
| 1607 | Returns  | 
            ||
| 1608 | -------  | 
            ||
| 1609 | pandas.DataFrame  | 
            ||
| 1610 | DataFrame with total rooftop capacity per mv grid.  | 
            ||
| 1611 | """  | 
            ||
| 1612 | targets = config.datasets()["solar_rooftop"]["targets"]  | 
            ||
| 1613 | |||
| 1614 | sql = f"""  | 
            ||
| 1615 | SELECT bus as bus_id, p_nom as capacity  | 
            ||
| 1616 |     FROM {targets['generators']['schema']}.{targets['generators']['table']} | 
            ||
| 1617 | WHERE carrier = 'solar_rooftop'  | 
            ||
| 1618 |     AND scn_name = '{scenario}' | 
            ||
| 1619 | """  | 
            ||
| 1620 | |||
| 1621 | return db.select_dataframe(sql, index_col="bus_id")  | 
            ||
| 1622 | |||
| 1623 | # overlay_gdf = overlay_gdf.assign(capacity=np.nan)  | 
            ||
| 1624 | #  | 
            ||
| 1625 | # for cap, nuts in scenario_df[["capacity", "nuts"]].itertuples(index=False):  | 
            ||
| 1626 | # nuts_gdf = overlay_gdf.loc[overlay_gdf.nuts == nuts]  | 
            ||
| 1627 | #  | 
            ||
| 1628 | # capacity = nuts_gdf.building_area.multiply(  | 
            ||
| 1629 | # cap / nuts_gdf.building_area.sum()  | 
            ||
| 1630 | # )  | 
            ||
| 1631 | #  | 
            ||
| 1632 | # overlay_gdf.loc[nuts_gdf.index] = overlay_gdf.loc[  | 
            ||
| 1633 | # nuts_gdf.index  | 
            ||
| 1634 | # ].assign(capacity=capacity.multiply(conversion).to_numpy())  | 
            ||
| 1635 | #  | 
            ||
| 1636 |     # return overlay_gdf[["bus_id", "capacity"]].groupby("bus_id").sum() | 
            ||
| 1637 | |||
| 1638 | |||
| 1639 | def determine_end_of_life_gens(  | 
            ||
| 1640 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1641 | scenario_timestamp: pd.Timestamp,  | 
            ||
| 1642 | pv_rooftop_lifetime: pd.Timedelta,  | 
            ||
| 1643 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1644 | """  | 
            ||
| 1645 | Determine if an old PV system has reached its end of life.  | 
            ||
| 1646 | Parameters  | 
            ||
| 1647 | -----------  | 
            ||
| 1648 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1649 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1650 | scenario_timestamp : pandas.Timestamp  | 
            ||
| 1651 | Timestamp at which the scenario takes place.  | 
            ||
| 1652 | pv_rooftop_lifetime : pandas.Timedelta  | 
            ||
| 1653 | Average expected lifetime of PV rooftop systems.  | 
            ||
| 1654 | Returns  | 
            ||
| 1655 | -------  | 
            ||
| 1656 | geopandas.GeoDataFrame  | 
            ||
| 1657 | GeoDataFrame containing geocoded MaStR data and info if the system  | 
            ||
| 1658 | has reached its end of life.  | 
            ||
| 1659 | """  | 
            ||
| 1660 | mastr_gdf = mastr_gdf.assign(  | 
            ||
| 1661 | age=scenario_timestamp - mastr_gdf.start_up_date  | 
            ||
| 1662 | )  | 
            ||
| 1663 | |||
| 1664 |     logger.debug("Determined if pv rooftop systems reached their end of life.") | 
            ||
| 1665 | |||
| 1666 | return mastr_gdf.assign(end_of_life=pv_rooftop_lifetime < mastr_gdf.age)  | 
            ||
| 1667 | |||
| 1668 | |||
| 1669 | def calculate_max_pv_cap_per_building(  | 
            ||
| 1670 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1671 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1672 | pv_cap_per_sq_m: float | int,  | 
            ||
| 1673 | roof_factor: float | int,  | 
            ||
| 1674 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1675 | """  | 
            ||
| 1676 | Calculate the estimated maximum possible PV capacity per building.  | 
            ||
| 1677 | Parameters  | 
            ||
| 1678 | -----------  | 
            ||
| 1679 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1680 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 1681 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1682 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1683 | pv_cap_per_sq_m : float, int  | 
            ||
| 1684 | Average expected, installable PV capacity per square meter.  | 
            ||
| 1685 | roof_factor : float, int  | 
            ||
| 1686 | Average for PV usable roof area share.  | 
            ||
| 1687 | Returns  | 
            ||
| 1688 | -------  | 
            ||
| 1689 | geopandas.GeoDataFrame  | 
            ||
| 1690 | GeoDataFrame containing OSM buildings data with estimated maximum PV  | 
            ||
| 1691 | capacity.  | 
            ||
| 1692 | """  | 
            ||
| 1693 | gdf = (  | 
            ||
| 1694 | buildings_gdf.reset_index()  | 
            ||
| 1695 | .merge(  | 
            ||
| 1696 | mastr_gdf[  | 
            ||
| 1697 | [  | 
            ||
| 1698 | "capacity",  | 
            ||
| 1699 | "end_of_life",  | 
            ||
| 1700 | "building_id",  | 
            ||
| 1701 | "EinheitlicheAusrichtungUndNeigungswinkel",  | 
            ||
| 1702 | "Hauptausrichtung",  | 
            ||
| 1703 | "HauptausrichtungNeigungswinkel",  | 
            ||
| 1704 | ]  | 
            ||
| 1705 | ],  | 
            ||
| 1706 | how="left",  | 
            ||
| 1707 | left_on="id",  | 
            ||
| 1708 | right_on="building_id",  | 
            ||
| 1709 | )  | 
            ||
| 1710 |         .set_index("id") | 
            ||
| 1711 | .drop(columns="building_id")  | 
            ||
| 1712 | )  | 
            ||
| 1713 | |||
| 1714 | return gdf.assign(  | 
            ||
| 1715 | max_cap=gdf.building_area.multiply(roof_factor * pv_cap_per_sq_m),  | 
            ||
| 1716 | end_of_life=gdf.end_of_life.fillna(True).astype(bool),  | 
            ||
| 1717 | bus_id=gdf.bus_id.astype(int),  | 
            ||
| 1718 | )  | 
            ||
| 1719 | |||
| 1720 | |||
| 1721 | def calculate_building_load_factor(  | 
            ||
| 1722 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1723 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 1724 | rounding: int = 4,  | 
            ||
| 1725 | ) -> gpd.GeoDataFrame:  | 
            ||
| 1726 | """  | 
            ||
| 1727 | Calculate the roof load factor from existing PV systems.  | 
            ||
| 1728 | Parameters  | 
            ||
| 1729 | -----------  | 
            ||
| 1730 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1731 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1732 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 1733 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 1734 | rounding : int  | 
            ||
| 1735 | Rounding to use for load factor.  | 
            ||
| 1736 | Returns  | 
            ||
| 1737 | -------  | 
            ||
| 1738 | geopandas.GeoDataFrame  | 
            ||
| 1739 | GeoDataFrame containing geocoded MaStR data with calculated load factor.  | 
            ||
| 1740 | """  | 
            ||
| 1741 | gdf = mastr_gdf.merge(  | 
            ||
| 1742 | buildings_gdf[["max_cap", "building_area"]].loc[  | 
            ||
| 1743 | ~buildings_gdf["max_cap"].isna()  | 
            ||
| 1744 | ],  | 
            ||
| 1745 | how="left",  | 
            ||
| 1746 | left_on="building_id",  | 
            ||
| 1747 | right_index=True,  | 
            ||
| 1748 | )  | 
            ||
| 1749 | |||
| 1750 | return gdf.assign(load_factor=(gdf.capacity / gdf.max_cap).round(rounding))  | 
            ||
| 1751 | |||
| 1752 | |||
| 1753 | def get_probability_for_property(  | 
            ||
| 1754 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1755 | cap_range: tuple[int | float, int | float],  | 
            ||
| 1756 | prop: str,  | 
            ||
| 1757 | ) -> tuple[np.array, np.array]:  | 
            ||
| 1758 | """  | 
            ||
| 1759 | Calculate the probability of the different options of a property of the  | 
            ||
| 1760 | existing PV plants.  | 
            ||
| 1761 | Parameters  | 
            ||
| 1762 | -----------  | 
            ||
| 1763 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1764 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1765 | cap_range : tuple(int, int)  | 
            ||
| 1766 | Capacity range of PV plants to look at.  | 
            ||
| 1767 | prop : str  | 
            ||
| 1768 | Property to calculate probabilities for. String needs to be in columns  | 
            ||
| 1769 | of mastr_gdf.  | 
            ||
| 1770 | Returns  | 
            ||
| 1771 | -------  | 
            ||
| 1772 | tuple  | 
            ||
| 1773 | numpy.array  | 
            ||
| 1774 | Unique values of property.  | 
            ||
| 1775 | numpy.array  | 
            ||
| 1776 | Probabilties per unique value.  | 
            ||
| 1777 | """  | 
            ||
| 1778 | cap_range_gdf = mastr_gdf.loc[  | 
            ||
| 1779 | (mastr_gdf.capacity > cap_range[0])  | 
            ||
| 1780 | & (mastr_gdf.capacity <= cap_range[1])  | 
            ||
| 1781 | ]  | 
            ||
| 1782 | |||
| 1783 | if prop == "load_factor":  | 
            ||
| 1784 | cap_range_gdf = cap_range_gdf.loc[cap_range_gdf[prop] <= 1]  | 
            ||
| 1785 | |||
| 1786 | count = Counter(  | 
            ||
| 1787 | cap_range_gdf[prop].loc[  | 
            ||
| 1788 | ~cap_range_gdf[prop].isna()  | 
            ||
| 1789 | & ~cap_range_gdf[prop].isnull()  | 
            ||
| 1790 | & ~(cap_range_gdf[prop] == "None")  | 
            ||
| 1791 | ]  | 
            ||
| 1792 | )  | 
            ||
| 1793 | |||
| 1794 | values = np.array(list(count.keys()))  | 
            ||
| 1795 | probabilities = np.fromiter(count.values(), dtype=float)  | 
            ||
| 1796 | probabilities = probabilities / np.sum(probabilities)  | 
            ||
| 1797 | |||
| 1798 | return values, probabilities  | 
            ||
| 1799 | |||
| 1800 | |||
| 1801 | @timer_func  | 
            ||
| 1802 | def probabilities(  | 
            ||
| 1803 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1804 | cap_ranges: list[tuple[int | float, int | float]] | None = None,  | 
            ||
| 1805 | properties: list[str] | None = None,  | 
            ||
| 1806 | ) -> dict:  | 
            ||
| 1807 | """  | 
            ||
| 1808 | Calculate the probability of the different options of properties of the  | 
            ||
| 1809 | existing PV plants.  | 
            ||
| 1810 | Parameters  | 
            ||
| 1811 | -----------  | 
            ||
| 1812 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1813 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1814 | cap_ranges : list(tuple(int, int))  | 
            ||
| 1815 | List of capacity ranges to distinguish between. The first tuple should  | 
            ||
| 1816 | start with a zero and the last one should end with infinite.  | 
            ||
| 1817 | properties : list(str)  | 
            ||
| 1818 | List of properties to calculate probabilities for. Strings needs to be  | 
            ||
| 1819 | in columns of mastr_gdf.  | 
            ||
| 1820 | Returns  | 
            ||
| 1821 | -------  | 
            ||
| 1822 | dict  | 
            ||
| 1823 | Dictionary with values and probabilities per capacity range.  | 
            ||
| 1824 | """  | 
            ||
| 1825 | if cap_ranges is None:  | 
            ||
| 1826 | cap_ranges = [  | 
            ||
| 1827 | (0, 30),  | 
            ||
| 1828 | (30, 100),  | 
            ||
| 1829 |             (100, float("inf")), | 
            ||
| 1830 | ]  | 
            ||
| 1831 | if properties is None:  | 
            ||
| 1832 | properties = [  | 
            ||
| 1833 | "EinheitlicheAusrichtungUndNeigungswinkel",  | 
            ||
| 1834 | "Hauptausrichtung",  | 
            ||
| 1835 | "HauptausrichtungNeigungswinkel",  | 
            ||
| 1836 | "load_factor",  | 
            ||
| 1837 | ]  | 
            ||
| 1838 | |||
| 1839 |     prob_dict = {} | 
            ||
| 1840 | |||
| 1841 | for cap_range in cap_ranges:  | 
            ||
| 1842 |         prob_dict[cap_range] = { | 
            ||
| 1843 |             "values": {}, | 
            ||
| 1844 |             "probabilities": {}, | 
            ||
| 1845 | }  | 
            ||
| 1846 | |||
| 1847 | for prop in properties:  | 
            ||
| 1848 | v, p = get_probability_for_property(  | 
            ||
| 1849 | mastr_gdf,  | 
            ||
| 1850 | cap_range,  | 
            ||
| 1851 | prop,  | 
            ||
| 1852 | )  | 
            ||
| 1853 | |||
| 1854 | prob_dict[cap_range]["values"][prop] = v  | 
            ||
| 1855 | prob_dict[cap_range]["probabilities"][prop] = p  | 
            ||
| 1856 | |||
| 1857 | return prob_dict  | 
            ||
| 1858 | |||
| 1859 | |||
| 1860 | def cap_share_per_cap_range(  | 
            ||
| 1861 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1862 | cap_ranges: list[tuple[int | float, int | float]] | None = None,  | 
            ||
| 1863 | ) -> dict[tuple[int | float, int | float], float]:  | 
            ||
| 1864 | """  | 
            ||
| 1865 | Calculate the share of PV capacity from the total PV capacity within  | 
            ||
| 1866 | capacity ranges.  | 
            ||
| 1867 | Parameters  | 
            ||
| 1868 | -----------  | 
            ||
| 1869 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1870 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1871 | cap_ranges : list(tuple(int, int))  | 
            ||
| 1872 | List of capacity ranges to distinguish between. The first tuple should  | 
            ||
| 1873 | start with a zero and the last one should end with infinite.  | 
            ||
| 1874 | Returns  | 
            ||
| 1875 | -------  | 
            ||
| 1876 | dict  | 
            ||
| 1877 | Dictionary with share of PV capacity from the total PV capacity within  | 
            ||
| 1878 | capacity ranges.  | 
            ||
| 1879 | """  | 
            ||
| 1880 | if cap_ranges is None:  | 
            ||
| 1881 | cap_ranges = [  | 
            ||
| 1882 | (0, 30),  | 
            ||
| 1883 | (30, 100),  | 
            ||
| 1884 |             (100, float("inf")), | 
            ||
| 1885 | ]  | 
            ||
| 1886 | |||
| 1887 |     cap_share_dict = {} | 
            ||
| 1888 | |||
| 1889 | total_cap = mastr_gdf.capacity.sum()  | 
            ||
| 1890 | |||
| 1891 | for cap_range in cap_ranges:  | 
            ||
| 1892 | cap_share = (  | 
            ||
| 1893 | mastr_gdf.loc[  | 
            ||
| 1894 | (mastr_gdf.capacity > cap_range[0])  | 
            ||
| 1895 | & (mastr_gdf.capacity <= cap_range[1])  | 
            ||
| 1896 | ].capacity.sum()  | 
            ||
| 1897 | / total_cap  | 
            ||
| 1898 | )  | 
            ||
| 1899 | |||
| 1900 | cap_share_dict[cap_range] = cap_share  | 
            ||
| 1901 | |||
| 1902 | return cap_share_dict  | 
            ||
| 1903 | |||
| 1904 | |||
| 1905 | def mean_load_factor_per_cap_range(  | 
            ||
| 1906 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1907 | cap_ranges: list[tuple[int | float, int | float]] | None = None,  | 
            ||
| 1908 | ) -> dict[tuple[int | float, int | float], float]:  | 
            ||
| 1909 | """  | 
            ||
| 1910 | Calculate the mean roof load factor per capacity range from existing PV  | 
            ||
| 1911 | plants.  | 
            ||
| 1912 | Parameters  | 
            ||
| 1913 | -----------  | 
            ||
| 1914 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1915 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1916 | cap_ranges : list(tuple(int, int))  | 
            ||
| 1917 | List of capacity ranges to distinguish between. The first tuple should  | 
            ||
| 1918 | start with a zero and the last one should end with infinite.  | 
            ||
| 1919 | Returns  | 
            ||
| 1920 | -------  | 
            ||
| 1921 | dict  | 
            ||
| 1922 | Dictionary with mean roof load factor per capacity range.  | 
            ||
| 1923 | """  | 
            ||
| 1924 | if cap_ranges is None:  | 
            ||
| 1925 | cap_ranges = [  | 
            ||
| 1926 | (0, 30),  | 
            ||
| 1927 | (30, 100),  | 
            ||
| 1928 |             (100, float("inf")), | 
            ||
| 1929 | ]  | 
            ||
| 1930 | |||
| 1931 |     load_factor_dict = {} | 
            ||
| 1932 | |||
| 1933 | for cap_range in cap_ranges:  | 
            ||
| 1934 | load_factor = mastr_gdf.loc[  | 
            ||
| 1935 | (mastr_gdf.load_factor <= 1)  | 
            ||
| 1936 | & (mastr_gdf.capacity > cap_range[0])  | 
            ||
| 1937 | & (mastr_gdf.capacity <= cap_range[1])  | 
            ||
| 1938 | ].load_factor.mean()  | 
            ||
| 1939 | |||
| 1940 | load_factor_dict[cap_range] = load_factor  | 
            ||
| 1941 | |||
| 1942 | return load_factor_dict  | 
            ||
| 1943 | |||
| 1944 | |||
| 1945 | def building_area_range_per_cap_range(  | 
            ||
| 1946 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 1947 | cap_ranges: list[tuple[int | float, int | float]] | None = None,  | 
            ||
| 1948 | min_building_size: int | float = 10.0,  | 
            ||
| 1949 | upper_quantile: float = 0.95,  | 
            ||
| 1950 | lower_quantile: float = 0.05,  | 
            ||
| 1951 | ) -> dict[tuple[int | float, int | float], tuple[int | float, int | float]]:  | 
            ||
| 1952 | """  | 
            ||
| 1953 | Estimate normal building area range per capacity range.  | 
            ||
| 1954 | Calculate the mean roof load factor per capacity range from existing PV  | 
            ||
| 1955 | plants.  | 
            ||
| 1956 | Parameters  | 
            ||
| 1957 | -----------  | 
            ||
| 1958 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 1959 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 1960 | cap_ranges : list(tuple(int, int))  | 
            ||
| 1961 | List of capacity ranges to distinguish between. The first tuple should  | 
            ||
| 1962 | start with a zero and the last one should end with infinite.  | 
            ||
| 1963 | min_building_size : int, float  | 
            ||
| 1964 | Minimal building size to consider for PV plants.  | 
            ||
| 1965 | upper_quantile : float  | 
            ||
| 1966 | Upper quantile to estimate maximum building size per capacity range.  | 
            ||
| 1967 | lower_quantile : float  | 
            ||
| 1968 | Lower quantile to estimate minimum building size per capacity range.  | 
            ||
| 1969 | Returns  | 
            ||
| 1970 | -------  | 
            ||
| 1971 | dict  | 
            ||
| 1972 | Dictionary with estimated normal building area range per capacity  | 
            ||
| 1973 | range.  | 
            ||
| 1974 | """  | 
            ||
| 1975 | if cap_ranges is None:  | 
            ||
| 1976 | cap_ranges = [  | 
            ||
| 1977 | (0, 30),  | 
            ||
| 1978 | (30, 100),  | 
            ||
| 1979 |             (100, float("inf")), | 
            ||
| 1980 | ]  | 
            ||
| 1981 | |||
| 1982 |     building_area_range_dict = {} | 
            ||
| 1983 | |||
| 1984 | n_ranges = len(cap_ranges)  | 
            ||
| 1985 | |||
| 1986 | for count, cap_range in enumerate(cap_ranges):  | 
            ||
| 1987 | cap_range_gdf = mastr_gdf.loc[  | 
            ||
| 1988 | (mastr_gdf.capacity > cap_range[0])  | 
            ||
| 1989 | & (mastr_gdf.capacity <= cap_range[1])  | 
            ||
| 1990 | ]  | 
            ||
| 1991 | |||
| 1992 | if count == 0:  | 
            ||
| 1993 | building_area_range_dict[cap_range] = (  | 
            ||
| 1994 | min_building_size,  | 
            ||
| 1995 | cap_range_gdf.building_area.quantile(upper_quantile),  | 
            ||
| 1996 | )  | 
            ||
| 1997 | elif count == n_ranges - 1:  | 
            ||
| 1998 | building_area_range_dict[cap_range] = (  | 
            ||
| 1999 | cap_range_gdf.building_area.quantile(lower_quantile),  | 
            ||
| 2000 |                 float("inf"), | 
            ||
| 2001 | )  | 
            ||
| 2002 | else:  | 
            ||
| 2003 | building_area_range_dict[cap_range] = (  | 
            ||
| 2004 | cap_range_gdf.building_area.quantile(lower_quantile),  | 
            ||
| 2005 | cap_range_gdf.building_area.quantile(upper_quantile),  | 
            ||
| 2006 | )  | 
            ||
| 2007 | |||
| 2008 | values = list(building_area_range_dict.values())  | 
            ||
| 2009 | |||
| 2010 |     building_area_range_normed_dict = {} | 
            ||
| 2011 | |||
| 2012 | for count, (cap_range, (min_area, max_area)) in enumerate(  | 
            ||
| 2013 | building_area_range_dict.items()  | 
            ||
| 2014 | ):  | 
            ||
| 2015 | if count == 0:  | 
            ||
| 2016 | building_area_range_normed_dict[cap_range] = (  | 
            ||
| 2017 | min_area,  | 
            ||
| 2018 | np.mean((values[count + 1][0], max_area)),  | 
            ||
| 2019 | )  | 
            ||
| 2020 | elif count == n_ranges - 1:  | 
            ||
| 2021 | building_area_range_normed_dict[cap_range] = (  | 
            ||
| 2022 | np.mean((values[count - 1][1], min_area)),  | 
            ||
| 2023 | max_area,  | 
            ||
| 2024 | )  | 
            ||
| 2025 | else:  | 
            ||
| 2026 | building_area_range_normed_dict[cap_range] = (  | 
            ||
| 2027 | np.mean((values[count - 1][1], min_area)),  | 
            ||
| 2028 | np.mean((values[count + 1][0], max_area)),  | 
            ||
| 2029 | )  | 
            ||
| 2030 | |||
| 2031 | return building_area_range_normed_dict  | 
            ||
| 2032 | |||
| 2033 | |||
| 2034 | @timer_func  | 
            ||
| 2035 | def desaggregate_pv_in_mv_grid(  | 
            ||
| 2036 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 2037 | pv_cap: float | int,  | 
            ||
| 2038 | **kwargs,  | 
            ||
| 2039 | ) -> gpd.GeoDataFrame:  | 
            ||
| 2040 | """  | 
            ||
| 2041 | Desaggregate PV capacity on buildings within a given grid district.  | 
            ||
| 2042 | Parameters  | 
            ||
| 2043 | -----------  | 
            ||
| 2044 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 2045 | GeoDataFrame containing buildings within the grid district.  | 
            ||
| 2046 | pv_cap : float, int  | 
            ||
| 2047 | PV capacity to desaggregate.  | 
            ||
| 2048 | Other Parameters  | 
            ||
| 2049 | -----------  | 
            ||
| 2050 | prob_dict : dict  | 
            ||
| 2051 | Dictionary with values and probabilities per capacity range.  | 
            ||
| 2052 | cap_share_dict : dict  | 
            ||
| 2053 | Dictionary with share of PV capacity from the total PV capacity within  | 
            ||
| 2054 | capacity ranges.  | 
            ||
| 2055 | building_area_range_dict : dict  | 
            ||
| 2056 | Dictionary with estimated normal building area range per capacity  | 
            ||
| 2057 | range.  | 
            ||
| 2058 | load_factor_dict : dict  | 
            ||
| 2059 | Dictionary with mean roof load factor per capacity range.  | 
            ||
| 2060 | seed : int  | 
            ||
| 2061 | Seed to use for random operations with NumPy and pandas.  | 
            ||
| 2062 | pv_cap_per_sq_m : float, int  | 
            ||
| 2063 | Average expected, installable PV capacity per square meter.  | 
            ||
| 2064 | Returns  | 
            ||
| 2065 | -------  | 
            ||
| 2066 | geopandas.GeoDataFrame  | 
            ||
| 2067 | GeoDataFrame containing OSM building data with desaggregated PV  | 
            ||
| 2068 | plants.  | 
            ||
| 2069 | """  | 
            ||
| 2070 | bus_id = int(buildings_gdf.bus_id.iat[0])  | 
            ||
| 2071 | |||
| 2072 | rng = default_rng(seed=kwargs["seed"])  | 
            ||
| 2073 | random_state = RandomState(seed=kwargs["seed"])  | 
            ||
| 2074 | |||
| 2075 | results_df = pd.DataFrame(columns=buildings_gdf.columns)  | 
            ||
| 2076 | |||
| 2077 | for cap_range, share in kwargs["cap_share_dict"].items():  | 
            ||
| 2078 | pv_cap_range = pv_cap * share  | 
            ||
| 2079 | |||
| 2080 | b_area_min, b_area_max = kwargs["building_area_range_dict"][cap_range]  | 
            ||
| 2081 | |||
| 2082 | cap_range_buildings_gdf = buildings_gdf.loc[  | 
            ||
| 2083 | ~buildings_gdf.index.isin(results_df.index)  | 
            ||
| 2084 | & (buildings_gdf.building_area > b_area_min)  | 
            ||
| 2085 | & (buildings_gdf.building_area <= b_area_max)  | 
            ||
| 2086 | ]  | 
            ||
| 2087 | |||
| 2088 | mean_load_factor = kwargs["load_factor_dict"][cap_range]  | 
            ||
| 2089 | cap_range_buildings_gdf = cap_range_buildings_gdf.assign(  | 
            ||
| 2090 | mean_cap=cap_range_buildings_gdf.max_cap * mean_load_factor,  | 
            ||
| 2091 | load_factor=np.nan,  | 
            ||
| 2092 | capacity=np.nan,  | 
            ||
| 2093 | )  | 
            ||
| 2094 | |||
| 2095 | total_mean_cap = cap_range_buildings_gdf.mean_cap.sum()  | 
            ||
| 2096 | |||
| 2097 | if total_mean_cap == 0:  | 
            ||
| 2098 | logger.warning(  | 
            ||
| 2099 |                 f"There are no matching roof for capacity range {cap_range} " | 
            ||
| 2100 |                 f"kW in grid {bus_id}. Using all buildings as fallback." | 
            ||
| 2101 | )  | 
            ||
| 2102 | |||
| 2103 | cap_range_buildings_gdf = buildings_gdf.loc[  | 
            ||
| 2104 | ~buildings_gdf.index.isin(results_df.index)  | 
            ||
| 2105 | ]  | 
            ||
| 2106 | |||
| 2107 | if len(cap_range_buildings_gdf) == 0:  | 
            ||
| 2108 | logger.warning(  | 
            ||
| 2109 | "There are no roofes available for capacity range "  | 
            ||
| 2110 |                     f"{cap_range} kW in grid {bus_id}. Allowing dual use." | 
            ||
| 2111 | )  | 
            ||
| 2112 | cap_range_buildings_gdf = buildings_gdf.copy()  | 
            ||
| 2113 | |||
| 2114 | cap_range_buildings_gdf = cap_range_buildings_gdf.assign(  | 
            ||
| 2115 | mean_cap=cap_range_buildings_gdf.max_cap * mean_load_factor,  | 
            ||
| 2116 | load_factor=np.nan,  | 
            ||
| 2117 | capacity=np.nan,  | 
            ||
| 2118 | )  | 
            ||
| 2119 | |||
| 2120 | total_mean_cap = cap_range_buildings_gdf.mean_cap.sum()  | 
            ||
| 2121 | |||
| 2122 | elif total_mean_cap < pv_cap_range:  | 
            ||
| 2123 | logger.warning(  | 
            ||
| 2124 |                 f"Average roof utilization of the roof area in grid {bus_id} " | 
            ||
| 2125 |                 f"and capacity range {cap_range} kW is not sufficient. The " | 
            ||
| 2126 | "roof utilization will be above average."  | 
            ||
| 2127 | )  | 
            ||
| 2128 | |||
| 2129 | frac = max(  | 
            ||
| 2130 | pv_cap_range / total_mean_cap,  | 
            ||
| 2131 | 1 / len(cap_range_buildings_gdf),  | 
            ||
| 2132 | )  | 
            ||
| 2133 | |||
| 2134 | samples_gdf = cap_range_buildings_gdf.sample(  | 
            ||
| 2135 | frac=min(1, frac),  | 
            ||
| 2136 | random_state=random_state,  | 
            ||
| 2137 | )  | 
            ||
| 2138 | |||
| 2139 | cap_range_dict = kwargs["prob_dict"][cap_range]  | 
            ||
| 2140 | |||
| 2141 | values_dict = cap_range_dict["values"]  | 
            ||
| 2142 | p_dict = cap_range_dict["probabilities"]  | 
            ||
| 2143 | |||
| 2144 | load_factors = rng.choice(  | 
            ||
| 2145 | a=values_dict["load_factor"],  | 
            ||
| 2146 | size=len(samples_gdf),  | 
            ||
| 2147 | p=p_dict["load_factor"],  | 
            ||
| 2148 | )  | 
            ||
| 2149 | |||
| 2150 | samples_gdf = samples_gdf.assign(  | 
            ||
| 2151 | load_factor=load_factors,  | 
            ||
| 2152 | capacity=samples_gdf.building_area  | 
            ||
| 2153 | * load_factors  | 
            ||
| 2154 | * kwargs["pv_cap_per_sq_m"],  | 
            ||
| 2155 | )  | 
            ||
| 2156 | |||
| 2157 | missing_factor = pv_cap_range / samples_gdf.capacity.sum()  | 
            ||
| 2158 | |||
| 2159 | samples_gdf = samples_gdf.assign(  | 
            ||
| 2160 | capacity=(samples_gdf.capacity * missing_factor),  | 
            ||
| 2161 | load_factor=(samples_gdf.load_factor * missing_factor),  | 
            ||
| 2162 | )  | 
            ||
| 2163 | |||
| 2164 | assert np.isclose(  | 
            ||
| 2165 | samples_gdf.capacity.sum(),  | 
            ||
| 2166 | pv_cap_range,  | 
            ||
| 2167 |         ), f"{samples_gdf.capacity.sum()} != {pv_cap_range}" | 
            ||
| 2168 | |||
| 2169 | results_df = pd.concat(  | 
            ||
| 2170 | [  | 
            ||
| 2171 | results_df,  | 
            ||
| 2172 | samples_gdf,  | 
            ||
| 2173 | ],  | 
            ||
| 2174 | )  | 
            ||
| 2175 | |||
| 2176 | assert np.isclose(  | 
            ||
| 2177 | results_df.capacity.sum(),  | 
            ||
| 2178 | pv_cap,  | 
            ||
| 2179 |     ), f"{results_df.capacity.sum()} != {pv_cap}" | 
            ||
| 2180 | |||
| 2181 | return gpd.GeoDataFrame(  | 
            ||
| 2182 | results_df,  | 
            ||
| 2183 | crs=samples_gdf.crs,  | 
            ||
| 2184 | geometry="geom",  | 
            ||
| 2185 | )  | 
            ||
| 2186 | |||
| 2187 | |||
| 2188 | @timer_func  | 
            ||
| 2189 | def desaggregate_pv(  | 
            ||
| 2190 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 2191 | cap_df: pd.DataFrame,  | 
            ||
| 2192 | **kwargs,  | 
            ||
| 2193 | ) -> gpd.GeoDataFrame:  | 
            ||
| 2194 | """  | 
            ||
| 2195 | Desaggregate PV capacity on buildings within a given grid district.  | 
            ||
| 2196 | Parameters  | 
            ||
| 2197 | -----------  | 
            ||
| 2198 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 2199 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 2200 | cap_df : pandas.DataFrame  | 
            ||
| 2201 | DataFrame with total rooftop capacity per mv grid.  | 
            ||
| 2202 | Other Parameters  | 
            ||
| 2203 | -----------  | 
            ||
| 2204 | prob_dict : dict  | 
            ||
| 2205 | Dictionary with values and probabilities per capacity range.  | 
            ||
| 2206 | cap_share_dict : dict  | 
            ||
| 2207 | Dictionary with share of PV capacity from the total PV capacity within  | 
            ||
| 2208 | capacity ranges.  | 
            ||
| 2209 | building_area_range_dict : dict  | 
            ||
| 2210 | Dictionary with estimated normal building area range per capacity  | 
            ||
| 2211 | range.  | 
            ||
| 2212 | load_factor_dict : dict  | 
            ||
| 2213 | Dictionary with mean roof load factor per capacity range.  | 
            ||
| 2214 | seed : int  | 
            ||
| 2215 | Seed to use for random operations with NumPy and pandas.  | 
            ||
| 2216 | pv_cap_per_sq_m : float, int  | 
            ||
| 2217 | Average expected, installable PV capacity per square meter.  | 
            ||
| 2218 | Returns  | 
            ||
| 2219 | -------  | 
            ||
| 2220 | geopandas.GeoDataFrame  | 
            ||
| 2221 | GeoDataFrame containing OSM building data with desaggregated PV  | 
            ||
| 2222 | plants.  | 
            ||
| 2223 | """  | 
            ||
| 2224 | allocated_buildings_gdf = buildings_gdf.loc[~buildings_gdf.end_of_life]  | 
            ||
| 2225 | |||
| 2226 | for bus_id in buildings_gdf.bus_id.unique():  | 
            ||
| 2227 | buildings_grid_gdf = buildings_gdf.loc[buildings_gdf.bus_id == bus_id]  | 
            ||
| 2228 | |||
| 2229 | pv_installed_gdf = buildings_grid_gdf.loc[  | 
            ||
| 2230 | ~buildings_grid_gdf.end_of_life  | 
            ||
| 2231 | ]  | 
            ||
| 2232 | |||
| 2233 | pv_installed = pv_installed_gdf.capacity.sum()  | 
            ||
| 2234 | |||
| 2235 | pot_buildings_gdf = buildings_grid_gdf.loc[  | 
            ||
| 2236 | ~buildings_grid_gdf.index.isin(pv_installed_gdf.index)  | 
            ||
| 2237 | ]  | 
            ||
| 2238 | |||
| 2239 | if len(pot_buildings_gdf) == 0:  | 
            ||
| 2240 | logger.error(  | 
            ||
| 2241 |                 f"In grid {bus_id} there are no potential buildings to allocate " | 
            ||
| 2242 | "PV capacity to. The grid is skipped. This message should only "  | 
            ||
| 2243 | "appear doing test runs with few buildings."  | 
            ||
| 2244 | )  | 
            ||
| 2245 | |||
| 2246 | continue  | 
            ||
| 2247 | |||
| 2248 | pv_target = cap_df.at[  | 
            ||
| 2249 | bus_id,  | 
            ||
| 2250 | "capacity",  | 
            ||
| 2251 | ]  | 
            ||
| 2252 | |||
| 2253 | pv_missing = pv_target - pv_installed  | 
            ||
| 2254 | |||
| 2255 | if pv_missing <= 0:  | 
            ||
| 2256 | logger.info(  | 
            ||
| 2257 |                 f"In grid {bus_id} there is more PV installed in status Quo than" | 
            ||
| 2258 | " allocated within the scenario. No new generators are added."  | 
            ||
| 2259 | )  | 
            ||
| 2260 | |||
| 2261 | continue  | 
            ||
| 2262 | |||
| 2263 | if pot_buildings_gdf.max_cap.sum() < pv_missing:  | 
            ||
| 2264 | logger.error(  | 
            ||
| 2265 |                 f"In grid {bus_id} there is less PV potential (" | 
            ||
| 2266 |                 f"{pot_buildings_gdf.max_cap.sum():g} kW) than allocated PV " | 
            ||
| 2267 |                 f"capacity ({pv_missing:g} kW). The grid is skipped. This message " | 
            ||
| 2268 | "should only appear doing test runs with few buildings."  | 
            ||
| 2269 | )  | 
            ||
| 2270 | |||
| 2271 | continue  | 
            ||
| 2272 | |||
| 2273 | gdf = desaggregate_pv_in_mv_grid(  | 
            ||
| 2274 | buildings_gdf=pot_buildings_gdf,  | 
            ||
| 2275 | pv_cap=pv_missing,  | 
            ||
| 2276 | **kwargs,  | 
            ||
| 2277 | )  | 
            ||
| 2278 | |||
| 2279 | allocated_buildings_gdf = pd.concat(  | 
            ||
| 2280 | [  | 
            ||
| 2281 | allocated_buildings_gdf,  | 
            ||
| 2282 | gdf,  | 
            ||
| 2283 | ]  | 
            ||
| 2284 | )  | 
            ||
| 2285 | |||
| 2286 |     logger.debug("Desaggregated scenario.") | 
            ||
| 2287 | |||
| 2288 | return gpd.GeoDataFrame(  | 
            ||
| 2289 | allocated_buildings_gdf,  | 
            ||
| 2290 | crs=gdf.crs,  | 
            ||
| 2291 | geometry="geom",  | 
            ||
| 2292 | )  | 
            ||
| 2293 | |||
| 2294 | |||
| 2295 | @timer_func  | 
            ||
| 2296 | def add_buildings_meta_data(  | 
            ||
| 2297 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 2298 | prob_dict: dict,  | 
            ||
| 2299 | seed: int,  | 
            ||
| 2300 | ) -> gpd.GeoDataFrame:  | 
            ||
| 2301 | """  | 
            ||
| 2302 | Randomly add additional metadata to desaggregated PV plants.  | 
            ||
| 2303 | Parameters  | 
            ||
| 2304 | -----------  | 
            ||
| 2305 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 2306 | GeoDataFrame containing OSM buildings data with desaggregated PV  | 
            ||
| 2307 | plants.  | 
            ||
| 2308 | prob_dict : dict  | 
            ||
| 2309 | Dictionary with values and probabilities per capacity range.  | 
            ||
| 2310 | seed : int  | 
            ||
| 2311 | Seed to use for random operations with NumPy and pandas.  | 
            ||
| 2312 | Returns  | 
            ||
| 2313 | -------  | 
            ||
| 2314 | geopandas.GeoDataFrame  | 
            ||
| 2315 | GeoDataFrame containing OSM building data with desaggregated PV  | 
            ||
| 2316 | plants.  | 
            ||
| 2317 | """  | 
            ||
| 2318 | rng = default_rng(seed=seed)  | 
            ||
| 2319 | buildings_gdf = buildings_gdf.reset_index().rename(  | 
            ||
| 2320 |         columns={ | 
            ||
| 2321 | "index": "building_id",  | 
            ||
| 2322 | }  | 
            ||
| 2323 | )  | 
            ||
| 2324 | |||
| 2325 | for (min_cap, max_cap), cap_range_prob_dict in prob_dict.items():  | 
            ||
| 2326 | cap_range_gdf = buildings_gdf.loc[  | 
            ||
| 2327 | (buildings_gdf.capacity >= min_cap)  | 
            ||
| 2328 | & (buildings_gdf.capacity < max_cap)  | 
            ||
| 2329 | ]  | 
            ||
| 2330 | |||
| 2331 | for key, values in cap_range_prob_dict["values"].items():  | 
            ||
| 2332 | if key == "load_factor":  | 
            ||
| 2333 | continue  | 
            ||
| 2334 | |||
| 2335 | gdf = cap_range_gdf.loc[  | 
            ||
| 2336 | cap_range_gdf[key].isna()  | 
            ||
| 2337 | | cap_range_gdf[key].isnull()  | 
            ||
| 2338 | | (cap_range_gdf[key] == "None")  | 
            ||
| 2339 | ]  | 
            ||
| 2340 | |||
| 2341 | key_vals = rng.choice(  | 
            ||
| 2342 | a=values,  | 
            ||
| 2343 | size=len(gdf),  | 
            ||
| 2344 | p=cap_range_prob_dict["probabilities"][key],  | 
            ||
| 2345 | )  | 
            ||
| 2346 | |||
| 2347 | buildings_gdf.loc[gdf.index, key] = key_vals  | 
            ||
| 2348 | |||
| 2349 | return buildings_gdf  | 
            ||
| 2350 | |||
| 2351 | |||
| 2352 | def add_voltage_level(  | 
            ||
| 2353 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 2354 | ) -> gpd.GeoDataFrame:  | 
            ||
| 2355 | """  | 
            ||
| 2356 | Add voltage level derived from generator capacity to the power plants.  | 
            ||
| 2357 | Parameters  | 
            ||
| 2358 | -----------  | 
            ||
| 2359 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 2360 | GeoDataFrame containing OSM buildings data with desaggregated PV  | 
            ||
| 2361 | plants.  | 
            ||
| 2362 | Returns  | 
            ||
| 2363 | -------  | 
            ||
| 2364 | geopandas.GeoDataFrame  | 
            ||
| 2365 | GeoDataFrame containing OSM building data with voltage level per generator.  | 
            ||
| 2366 | """  | 
            ||
| 2367 | |||
| 2368 | def voltage_levels(p: float) -> int:  | 
            ||
| 2369 | if p < 100:  | 
            ||
| 2370 | return 7  | 
            ||
| 2371 | elif p < 200:  | 
            ||
| 2372 | return 6  | 
            ||
| 2373 | elif p < 5500:  | 
            ||
| 2374 | return 5  | 
            ||
| 2375 | elif p < 20000:  | 
            ||
| 2376 | return 4  | 
            ||
| 2377 | elif p < 120000:  | 
            ||
| 2378 | return 3  | 
            ||
| 2379 | return 1  | 
            ||
| 2380 | |||
| 2381 | return buildings_gdf.assign(  | 
            ||
| 2382 | voltage_level=buildings_gdf.capacity.apply(voltage_levels)  | 
            ||
| 2383 | )  | 
            ||
| 2384 | |||
| 2385 | |||
| 2386 | def add_start_up_date(  | 
            ||
| 2387 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 2388 | start: pd.Timestamp,  | 
            ||
| 2389 | end: pd.Timestamp,  | 
            ||
| 2390 | seed: int,  | 
            ||
| 2391 | ):  | 
            ||
| 2392 | """  | 
            ||
| 2393 | Randomly and linear add start-up date to new pv generators.  | 
            ||
| 2394 | Parameters  | 
            ||
| 2395 | ----------  | 
            ||
| 2396 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 2397 | GeoDataFrame containing OSM buildings data with desaggregated PV  | 
            ||
| 2398 | plants.  | 
            ||
| 2399 | start : pandas.Timestamp  | 
            ||
| 2400 | Minimum Timestamp to use.  | 
            ||
| 2401 | end : pandas.Timestamp  | 
            ||
| 2402 | Maximum Timestamp to use.  | 
            ||
| 2403 | seed : int  | 
            ||
| 2404 | Seed to use for random operations with NumPy and pandas.  | 
            ||
| 2405 | Returns  | 
            ||
| 2406 | -------  | 
            ||
| 2407 | geopandas.GeoDataFrame  | 
            ||
| 2408 | GeoDataFrame containing OSM buildings data with start-up date added.  | 
            ||
| 2409 | """  | 
            ||
| 2410 | rng = default_rng(seed=seed)  | 
            ||
| 2411 | |||
| 2412 | date_range = pd.date_range(start=start, end=end, freq="1D")  | 
            ||
| 2413 | |||
| 2414 | return buildings_gdf.assign(  | 
            ||
| 2415 | start_up_date=rng.choice(date_range, size=len(buildings_gdf))  | 
            ||
| 2416 | )  | 
            ||
| 2417 | |||
| 2418 | |||
| 2419 | @timer_func  | 
            ||
| 2420 | def allocate_scenarios(  | 
            ||
| 2421 | mastr_gdf: gpd.GeoDataFrame,  | 
            ||
| 2422 | buildings_gdf: gpd.GeoDataFrame,  | 
            ||
| 2423 | last_scenario_gdf: gpd.GeoDataFrame,  | 
            ||
| 2424 | scenario: str,  | 
            ||
| 2425 | ):  | 
            ||
| 2426 | """  | 
            ||
| 2427 | Desaggregate and allocate scenario pv rooftop ramp-ups onto buildings.  | 
            ||
| 2428 | Parameters  | 
            ||
| 2429 | ----------  | 
            ||
| 2430 | mastr_gdf : geopandas.GeoDataFrame  | 
            ||
| 2431 | GeoDataFrame containing geocoded MaStR data.  | 
            ||
| 2432 | buildings_gdf : geopandas.GeoDataFrame  | 
            ||
| 2433 | GeoDataFrame containing OSM buildings data.  | 
            ||
| 2434 | last_scenario_gdf : geopandas.GeoDataFrame  | 
            ||
| 2435 | GeoDataFrame containing OSM buildings matched with pv generators from temporal  | 
            ||
| 2436 | preceding scenario.  | 
            ||
| 2437 | scenario : str  | 
            ||
| 2438 | Scenario to desaggrgate and allocate.  | 
            ||
| 2439 | Returns  | 
            ||
| 2440 | -------  | 
            ||
| 2441 | tuple  | 
            ||
| 2442 | geopandas.GeoDataFrame  | 
            ||
| 2443 | GeoDataFrame containing OSM buildings matched with pv generators.  | 
            ||
| 2444 | pandas.DataFrame  | 
            ||
| 2445 | DataFrame containing pv rooftop capacity per grid id.  | 
            ||
| 2446 | """  | 
            ||
| 2447 | grid_districts_gdf = grid_districts(EPSG)  | 
            ||
| 2448 | |||
| 2449 | federal_state_gdf = federal_state_data(grid_districts_gdf.crs)  | 
            ||
| 2450 | |||
| 2451 | grid_federal_state_gdf = overlay_grid_districts_with_counties(  | 
            ||
| 2452 | grid_districts_gdf,  | 
            ||
| 2453 | federal_state_gdf,  | 
            ||
| 2454 | )  | 
            ||
| 2455 | |||
| 2456 | buildings_overlay_gdf = add_overlay_id_to_buildings(  | 
            ||
| 2457 | buildings_gdf,  | 
            ||
| 2458 | grid_federal_state_gdf,  | 
            ||
| 2459 | )  | 
            ||
| 2460 | |||
| 2461 | valid_buildings_gdf = drop_buildings_outside_grids(buildings_overlay_gdf)  | 
            ||
| 2462 | |||
| 2463 | # buildings_area_per_overlay_gdf = buildings_area_per_overlay_id(  | 
            ||
| 2464 | # valid_buildings_gdf,  | 
            ||
| 2465 | # grid_federal_state_gdf,  | 
            ||
| 2466 | # )  | 
            ||
| 2467 | |||
| 2468 | cap_per_bus_id_df = cap_per_bus_id(scenario)  | 
            ||
| 2469 | # buildings_area_per_overlay_gdf,  | 
            ||
| 2470 | # scenario_data(CARRIER, scenario),  | 
            ||
| 2471 | # )  | 
            ||
| 2472 | |||
| 2473 | last_scenario_gdf = determine_end_of_life_gens(  | 
            ||
| 2474 | last_scenario_gdf,  | 
            ||
| 2475 | SCENARIO_TIMESTAMP[scenario],  | 
            ||
| 2476 | PV_ROOFTOP_LIFETIME,  | 
            ||
| 2477 | )  | 
            ||
| 2478 | |||
| 2479 | buildings_gdf = calculate_max_pv_cap_per_building(  | 
            ||
| 2480 | valid_buildings_gdf,  | 
            ||
| 2481 | last_scenario_gdf,  | 
            ||
| 2482 | PV_CAP_PER_SQ_M,  | 
            ||
| 2483 | ROOF_FACTOR,  | 
            ||
| 2484 | )  | 
            ||
| 2485 | |||
| 2486 | mastr_gdf = calculate_building_load_factor(  | 
            ||
| 2487 | mastr_gdf,  | 
            ||
| 2488 | buildings_gdf,  | 
            ||
| 2489 | )  | 
            ||
| 2490 | |||
| 2491 | probabilities_dict = probabilities(  | 
            ||
| 2492 | mastr_gdf,  | 
            ||
| 2493 | cap_ranges=CAP_RANGES,  | 
            ||
| 2494 | )  | 
            ||
| 2495 | |||
| 2496 | cap_share_dict = cap_share_per_cap_range(  | 
            ||
| 2497 | mastr_gdf,  | 
            ||
| 2498 | cap_ranges=CAP_RANGES,  | 
            ||
| 2499 | )  | 
            ||
| 2500 | |||
| 2501 | load_factor_dict = mean_load_factor_per_cap_range(  | 
            ||
| 2502 | mastr_gdf,  | 
            ||
| 2503 | cap_ranges=CAP_RANGES,  | 
            ||
| 2504 | )  | 
            ||
| 2505 | |||
| 2506 | building_area_range_dict = building_area_range_per_cap_range(  | 
            ||
| 2507 | mastr_gdf,  | 
            ||
| 2508 | cap_ranges=CAP_RANGES,  | 
            ||
| 2509 | min_building_size=MIN_BUILDING_SIZE,  | 
            ||
| 2510 | upper_quantile=UPPER_QUNATILE,  | 
            ||
| 2511 | lower_quantile=LOWER_QUANTILE,  | 
            ||
| 2512 | )  | 
            ||
| 2513 | |||
| 2514 | allocated_buildings_gdf = desaggregate_pv(  | 
            ||
| 2515 | buildings_gdf=buildings_gdf,  | 
            ||
| 2516 | cap_df=cap_per_bus_id_df,  | 
            ||
| 2517 | prob_dict=probabilities_dict,  | 
            ||
| 2518 | cap_share_dict=cap_share_dict,  | 
            ||
| 2519 | building_area_range_dict=building_area_range_dict,  | 
            ||
| 2520 | load_factor_dict=load_factor_dict,  | 
            ||
| 2521 | seed=SEED,  | 
            ||
| 2522 | pv_cap_per_sq_m=PV_CAP_PER_SQ_M,  | 
            ||
| 2523 | )  | 
            ||
| 2524 | |||
| 2525 | allocated_buildings_gdf = allocated_buildings_gdf.assign(scenario=scenario)  | 
            ||
| 2526 | |||
| 2527 | meta_buildings_gdf = frame_to_numeric(  | 
            ||
| 2528 | add_buildings_meta_data(  | 
            ||
| 2529 | allocated_buildings_gdf,  | 
            ||
| 2530 | probabilities_dict,  | 
            ||
| 2531 | SEED,  | 
            ||
| 2532 | )  | 
            ||
| 2533 | )  | 
            ||
| 2534 | |||
| 2535 | return (  | 
            ||
| 2536 | add_start_up_date(  | 
            ||
| 2537 | meta_buildings_gdf,  | 
            ||
| 2538 | start=last_scenario_gdf.start_up_date.max(),  | 
            ||
| 2539 | end=SCENARIO_TIMESTAMP[scenario],  | 
            ||
| 2540 | seed=SEED,  | 
            ||
| 2541 | ),  | 
            ||
| 2542 | cap_per_bus_id_df,  | 
            ||
| 2543 | )  | 
            ||
| 2544 | |||
| 2545 | |||
| 2546 | class EgonPowerPlantPvRoofBuildingScenario(Base):  | 
            ||
| 2547 | __tablename__ = "egon_power_plants_pv_roof_building"  | 
            ||
| 2548 |     __table_args__ = {"schema": "supply"} | 
            ||
| 2549 | |||
| 2550 | index = Column(Integer, primary_key=True, index=True)  | 
            ||
| 2551 | scenario = Column(String)  | 
            ||
| 2552 | building_id = Column(Integer)  | 
            ||
| 2553 | gens_id = Column(String, nullable=True)  | 
            ||
| 2554 | capacity = Column(Float)  | 
            ||
| 2555 | einheitliche_ausrichtung_und_neigungswinkel = Column(Float)  | 
            ||
| 2556 | hauptausrichtung = Column(String)  | 
            ||
| 2557 | hauptausrichtung_neigungswinkel = Column(String)  | 
            ||
| 2558 | voltage_level = Column(Integer)  | 
            ||
| 2559 | |||
| 2560 | |||
| 2561 | def create_scenario_table(buildings_gdf):  | 
            ||
| 2562 | """Create mapping table pv_unit <-> building for scenario"""  | 
            ||
| 2563 | EgonPowerPlantPvRoofBuildingScenario.__table__.drop(  | 
            ||
| 2564 | bind=engine, checkfirst=True  | 
            ||
| 2565 | )  | 
            ||
| 2566 | EgonPowerPlantPvRoofBuildingScenario.__table__.create(  | 
            ||
| 2567 | bind=engine, checkfirst=True  | 
            ||
| 2568 | )  | 
            ||
| 2569 | |||
| 2570 | buildings_gdf.rename(columns=COLS_TO_RENAME)[  | 
            ||
| 2571 | COLS_TO_EXPORT  | 
            ||
| 2572 | ].reset_index().to_sql(  | 
            ||
| 2573 | name=EgonPowerPlantPvRoofBuildingScenario.__table__.name,  | 
            ||
| 2574 | schema=EgonPowerPlantPvRoofBuildingScenario.__table__.schema,  | 
            ||
| 2575 | con=db.engine(),  | 
            ||
| 2576 | if_exists="append",  | 
            ||
| 2577 | index=False,  | 
            ||
| 2578 | )  | 
            ||
| 2579 | |||
| 2580 | |||
| 2581 | def geocode_mastr_data():  | 
            ||
| 2582 | """  | 
            ||
| 2583 | Read PV rooftop data from MaStR CSV  | 
            ||
| 2584 | TODO: the source will be replaced as soon as the MaStR data is available  | 
            ||
| 2585 | in DB.  | 
            ||
| 2586 | """  | 
            ||
| 2587 | mastr_df = mastr_data(  | 
            ||
| 2588 | MASTR_INDEX_COL,  | 
            ||
| 2589 | MASTR_RELEVANT_COLS,  | 
            ||
| 2590 | MASTR_DTYPES,  | 
            ||
| 2591 | MASTR_PARSE_DATES,  | 
            ||
| 2592 | )  | 
            ||
| 2593 | |||
| 2594 | clean_mastr_df = clean_mastr_data(  | 
            ||
| 2595 | mastr_df,  | 
            ||
| 2596 | max_realistic_pv_cap=MAX_REALISTIC_PV_CAP,  | 
            ||
| 2597 | min_realistic_pv_cap=MIN_REALISTIC_PV_CAP,  | 
            ||
| 2598 | seed=SEED,  | 
            ||
| 2599 | rounding=ROUNDING,  | 
            ||
| 2600 | )  | 
            ||
| 2601 | |||
| 2602 | geocoding_df = geocoding_data(clean_mastr_df)  | 
            ||
| 2603 | |||
| 2604 | ratelimiter = geocoder(USER_AGENT, MIN_DELAY_SECONDS)  | 
            ||
| 2605 | |||
| 2606 | geocode_gdf = geocode_data(geocoding_df, ratelimiter, EPSG)  | 
            ||
| 2607 | |||
| 2608 | create_geocoded_table(geocode_gdf)  | 
            ||
| 2609 | |||
| 2610 | |||
| 2611 | def pv_rooftop_to_buildings():  | 
            ||
| 2612 | """Main script, executed as task"""  | 
            ||
| 2613 | |||
| 2614 | mastr_gdf = load_mastr_data()  | 
            ||
| 2615 | |||
| 2616 | buildings_gdf = load_building_data()  | 
            ||
| 2617 | |||
| 2618 |     logger.debug(f"1: {buildings_gdf.head()}") | 
            ||
| 2619 | |||
| 2620 | desagg_mastr_gdf, desagg_buildings_gdf = allocate_to_buildings(  | 
            ||
| 2621 | mastr_gdf, buildings_gdf  | 
            ||
| 2622 | )  | 
            ||
| 2623 | |||
| 2624 |     logger.debug(f"2: {desagg_buildings_gdf.head()}") | 
            ||
| 2625 | |||
| 2626 | all_buildings_gdf = (  | 
            ||
| 2627 | desagg_mastr_gdf.assign(scenario="status_quo")  | 
            ||
| 2628 | .reset_index()  | 
            ||
| 2629 |         .rename(columns={"geometry": "geom", "EinheitMastrNummer": "gens_id"}) | 
            ||
| 2630 | )  | 
            ||
| 2631 | |||
| 2632 | scenario_buildings_gdf = all_buildings_gdf.copy()  | 
            ||
| 2633 | |||
| 2634 | cap_per_bus_id_df = pd.DataFrame()  | 
            ||
| 2635 | |||
| 2636 | for scenario in SCENARIOS:  | 
            ||
| 2637 |         logger.debug(f"Desaggregating scenario {scenario}.") | 
            ||
| 2638 | (  | 
            ||
| 2639 | scenario_buildings_gdf,  | 
            ||
| 2640 | cap_per_bus_id_scenario_df,  | 
            ||
| 2641 | ) = allocate_scenarios( # noqa: F841  | 
            ||
| 2642 | desagg_mastr_gdf,  | 
            ||
| 2643 | desagg_buildings_gdf,  | 
            ||
| 2644 | scenario_buildings_gdf,  | 
            ||
| 2645 | scenario,  | 
            ||
| 2646 | )  | 
            ||
| 2647 | |||
| 2648 | all_buildings_gdf = gpd.GeoDataFrame(  | 
            ||
| 2649 | pd.concat(  | 
            ||
| 2650 | [all_buildings_gdf, scenario_buildings_gdf], ignore_index=True  | 
            ||
| 2651 | ),  | 
            ||
| 2652 | crs=scenario_buildings_gdf.crs,  | 
            ||
| 2653 | geometry="geom",  | 
            ||
| 2654 | )  | 
            ||
| 2655 | |||
| 2656 | cap_per_bus_id_df = pd.concat(  | 
            ||
| 2657 | [cap_per_bus_id_df, cap_per_bus_id_scenario_df]  | 
            ||
| 2658 | )  | 
            ||
| 2659 | |||
| 2660 | # export scenario  | 
            ||
| 2661 | create_scenario_table(add_voltage_level(all_buildings_gdf))  | 
            ||
| 2662 |