odc.geo.yx_
- odc.geo.yx_(y: odc.geo.types.T, x: odc.geo.types.T, /) odc.geo.types.XY[odc.geo.types.T] [source]
- odc.geo.yx_(y: Iterable[odc.geo.types.T], x: Literal[None] = None, /) odc.geo.types.XY[odc.geo.types.T]
- odc.geo.yx_(y: odc.geo.types.XY[odc.geo.types.T], x: Literal[None] = None, /) odc.geo.types.XY[odc.geo.types.T]
Construct from Y,X order.
yx_(0, 1) yx_([0, 1]) yx_(tuple([0, 1])) assert yx_(1, 3).x == 3 assert yx_(1, 3).y == 1
- Return type
XY
[~T]