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
Things we need to amend for shapely 2.0 compatibility:
When shapley.ops.split fails (e.g. on split by empty geometry collection) this is currently caught by snkit.network.split_edge_at_points with ValueError. However it this won't work for shapely==2.0, as: "GeometryTypeError will derive from ShapelyError and not TypeError or ValueError in Shapely 2.0." Review codebase to see if we catch other exceptions in a deprecated way.
The text was updated successfully, but these errors were encountered:
Things we need to amend for shapely 2.0 compatibility:
shapley.ops.split
fails (e.g. on split by empty geometry collection) this is currently caught bysnkit.network.split_edge_at_points
withValueError
. However it this won't work for shapely==2.0, as: "GeometryTypeError will derive from ShapelyError and not TypeError or ValueError in Shapely 2.0." Review codebase to see if we catch other exceptions in a deprecated way.The text was updated successfully, but these errors were encountered: