Merge pull request #471 from PyPSA/fix-crs-warning

Fix warning in rule build_shapes
This commit is contained in:
Fabian Neumann 2023-02-15 11:22:04 +01:00 committed by GitHub
commit a785f83164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,9 +235,11 @@ def nuts3(country_shapes, nuts3, nuts3pop, nuts3gdp, ch_cantons, ch_popgdp):
manual = gpd.GeoDataFrame(
[["BA1", "BA", 3871.0], ["RS1", "RS", 7210.0], ["AL1", "AL", 2893.0]],
columns=["NUTS_ID", "country", "pop"],
).set_index("NUTS_ID")
)
manual["geometry"] = manual["country"].map(country_shapes)
manual = manual.dropna()
manual = manual.set_index("NUTS_ID")
manual = manual.set_crs("ETRS89")
df = pd.concat([df, manual], sort=False)