You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that currently all names of the separate polyfiles are the same, the below code is a user-scoped workaround used in the DSO project:
bnd_gdf=dfmt.generate_bndpli_cutland(mk=mk_object, res='h', buffer=0.01)
bnd_gdf['name'] =f'{model_name}_bnd'# this must be changed to allow for multiple polylines in the filebnd_gdf['nr_bnd'] =bnd_gdf.indexbnd_gdf['name'] =bnd_gdf['name'] +'_'+bnd_gdf['nr_bnd'].astype(str)
bnd_gdf_interp=dfmt.interpolate_bndpli(bnd_gdf, res=0.06)
Properly implement this in dfmt.geodataframe_to_PolyFile() instead of bothering the user with it.
The text was updated successfully, but these errors were encountered:
It seems that currently all names of the separate polyfiles are the same, the below code is a user-scoped workaround used in the DSO project:
Properly implement this in
dfmt.geodataframe_to_PolyFile()
instead of bothering the user with it.The text was updated successfully, but these errors were encountered: