-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1f8ea1
commit 410895f
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
# %% | ||
import geopandas as gpd | ||
import pandas as pd | ||
from ribasim_nl import CloudStorage, Model | ||
from shapely.geometry import MultiPolygon | ||
|
||
cloud = CloudStorage() | ||
|
||
|
||
# %% load model | ||
ribasim_toml = cloud.joinpath("DeDommel", "modellen", "DeDommel", "model.toml") | ||
model = Model.read(ribasim_toml) | ||
|
||
|
||
area_gdf = gpd.read_file(cloud.joinpath("DeDommel", "verwerkt", "watervlakken", "LWW_2023_A_water_vlak_V.shp")) | ||
|
||
|
||
named_area_gdf = area_gdf.dissolve("NAAM", dropna=True).reset_index() | ||
unnamed_area_poly = area_gdf[area_gdf.NAAM.isna()].buffer(0.1).union_all().buffer(-0.1) | ||
unnamed_area_gdf = gpd.GeoDataFrame(geometry=list(unnamed_area_poly.geoms), crs=area_gdf.crs) | ||
|
||
dissolved_area_gdf = pd.concat([unnamed_area_gdf, named_area_gdf]) | ||
dissolved_area_gdf.to_file(cloud.joinpath("DeDommel", "verwerkt", "water_area.gpkg")) | ||
|
||
# %% | ||
basin_df = model.basin.node.df.set_index("node_id") | ||
basin_area_df = gpd.read_file( | ||
cloud.joinpath("DeDommel", "verwerkt", "basin_area.gpkg"), engine="pyogrio", fid_as_index=True | ||
) | ||
basin_area_df.set_index("node_id", inplace=True) | ||
|
||
|
||
data = [] | ||
ignore_basins = [1278, 1228, 1877, 1030] | ||
row = next(i for i in basin_df.itertuples() if i.Index == 1230) | ||
for row in basin_df.itertuples(): | ||
if row.Index not in ignore_basins: | ||
edges_mask = (model.edge.df.from_node_id == row.Index) | (model.edge.df.to_node_id == row.Index) | ||
edges_geom = model.edge.df[edges_mask].union_all() | ||
|
||
selected_areas = dissolved_area_gdf[dissolved_area_gdf.intersects(edges_geom)] | ||
|
||
basin_geom = gpd.clip(selected_areas, basin_area_df.at[row.Index, "geometry"]).union_all() | ||
if isinstance(basin_geom, MultiPolygon): | ||
basin_geom = MultiPolygon(i for i in basin_geom.geoms if i.area > 100) | ||
|
||
data += [{"node_id": row.Index, "geometry": basin_geom}] | ||
|
||
# set name to basin if empty | ||
name = "" | ||
area_df = selected_areas[selected_areas.contains(row.geometry)] | ||
if not area_df.empty: | ||
name = area_df.iloc[0].NAAM | ||
model.basin.node.df.loc[model.basin.node[row.Index].index[0], ["name"]] = name | ||
# assign name to edges if defined | ||
model.edge.df.loc[edges_mask, ["name"]] = name | ||
|
||
# Manuals | ||
for node_id, name in [(1228, "Beatrixkanaal"), (1278, "Eindhovens kanaal")]: | ||
data += [{"node_id": node_id, "geometry": dissolved_area_gdf[dissolved_area_gdf.NAAM == name].iloc[0].geometry}] | ||
edges_mask = (model.edge.df.from_node_id == node_id) | (model.edge.df.to_node_id == node_id) | ||
model.edge.df.loc[edges_mask, "name"] = name | ||
|
||
node_id, name = (1030, "Reusel") | ||
data += [ | ||
{ | ||
"node_id": node_id, | ||
"geometry": dissolved_area_gdf[dissolved_area_gdf.NAAM == name] | ||
.clip(basin_area_df.loc[[1015, 1030]].union_all()) | ||
.union_all(), | ||
} | ||
] | ||
edges_mask = (model.edge.df.from_node_id == node_id) | (model.edge.df.to_node_id == node_id) | ||
model.edge.df.loc[edges_mask, "name"] = name | ||
|
||
area_df = gpd.GeoDataFrame(data, crs=model.basin.node.df.crs) | ||
area_df = area_df[~area_df.is_empty] | ||
model.basin.area.df = area_df | ||
# %% | ||
|
||
model.write(ribasim_toml) |