Merge pull request #668 from PyPSA/0523-deprecations

address geopandas future warning
This commit is contained in:
Fabian Neumann 2023-05-17 09:18:00 +02:00 committed by GitHub
commit 859e32ff9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -234,6 +234,7 @@ 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"],
geometry=gpd.GeoSeries(),
)
manual["geometry"] = manual["country"].map(country_shapes)
manual = manual.dropna()