Skip to content

Commit

Permalink
Hotfix solving issue #1078
Browse files Browse the repository at this point in the history
  • Loading branch information
IlkaCu committed Jan 4, 2023
1 parent a79ac81 commit c7392f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/egon/data/datasets/power_plants/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class PowerPlants(Dataset):
def __init__(self, dependencies):
super().__init__(
name="PowerPlants",
version="0.0.15",
version="0.0.16",
dependencies=dependencies,
tasks=(
create_tables,
Expand Down
2 changes: 1 addition & 1 deletion src/egon/data/datasets/power_plants/pv_ground_mounted.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def mastr_existing_pv(pow_per_area):
"LokationMastrNummer",
],
)
df = df[df["Lage"] == "Freiflaeche"]
df = df[df["Lage"] == "Freifläche"]

# examine data concerning geographical locations and drop NaNs
x1 = df["Laengengrad"].isnull().sum()
Expand Down

0 comments on commit c7392f0

Please sign in to comment.