shapely.get_y#
- get_y(point, **kwargs)#
Returns the y-coordinate of a point
- Parameters:
- pointGeometry or array_like
Non-point geometries will result in NaN being returned.
- **kwargs
See NumPy ufunc docs for other keyword arguments.
Examples
>>> from shapely import MultiPoint, Point >>> get_y(Point(1, 2)) 2.0 >>> get_y(MultiPoint([(1, 1), (1, 2)])) nan