shapely.get_y

Contents

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.

See also

get_x, get_z, get_m

Examples

>>> from shapely import MultiPoint, Point
>>> get_y(Point(1, 2))
2.0
>>> get_y(MultiPoint([(1, 1), (1, 2)]))
nan