Return a point guaranteed to be within the object, cheaply. Alias of `point_on_surface`.
(self)
| 389 | return shapely.point_on_surface(self) |
| 390 | |
| 391 | def representative_point(self): |
| 392 | """Return a point guaranteed to be within the object, cheaply. |
| 393 | |
| 394 | Alias of `point_on_surface`. |
| 395 | """ |
| 396 | return shapely.point_on_surface(self) |
| 397 | |
| 398 | @property |
| 399 | def convex_hull(self): |