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
My sense is, since shapely 2.0, general recommendation is to rely on shapely rather than pygeos directly. Should we update this? One probably more for @ljwolf
The text was updated successfully, but these errors were encountered:
One fewer dependency for the book would be great. Here is a proposed update for this.
Original
For the minimum rotated rectangle, we will use the minimum_rotated_rectanglefunction from the pygeos module, which constructs the minimum rotated rectangle for an input multi-point object. This means that we will need to collect our points together into a single multi-point object and then compute the rotated rectangle for that object.
For the minimum rotated rectangle, we will use the minimum_rotated_rectangleproperty from GeoPandas, which constructs the minimum rotated rectangle for an input multi-point object. This means that we will need to collect our points together into a single multi-point object and then compute the rotated rectangle for that object.
Chapter 8 (points) includes imports from
pygeos
:My sense is, since
shapely
2.0, general recommendation is to rely onshapely
rather thanpygeos
directly. Should we update this? One probably more for @ljwolfThe text was updated successfully, but these errors were encountered: