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
When splitting Shapely objects a non-iterable GeometryCollection is returned. To access individual objects in the collection the .geoms property must be used.
Here I record refactoring needed to upgrade from Shapely <= 1.8 to >= 2.0.
coords
When converting Shapely objects back to Numpy, the
.coods
property must be called:outUV = np_array(shp_line) -> outUV = np_array(shp_line.coords)
geoms
When splitting Shapely objects a non-iterable GeometryCollection is returned. To access individual objects in the collection the
.geoms
property must be used.resampling
a problem regarding resampling methods remains to be solved
The text was updated successfully, but these errors were encountered: