ee.Algorithms.GeometryConstructors.Point
Constructs a new Point from the given x,y coordinates.
Usage | Returns |
---|
ee.Algorithms.GeometryConstructors.Point(coordinates, crs) | Geometry |
Argument | Type | Details |
---|
coordinates | List | The coordinates of this Point in x,y order. |
crs | Projection, default: null | The coordinate reference system of the coordinates. The default is the projection of the inputs, where Numbers are assumed to be EPSG:4326. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["Creates a new Point geometry object using provided x and y coordinates."],["Accepts a list of coordinates and an optional coordinate reference system (CRS) as input."],["Defaults to EPSG:4326 CRS if no CRS is specified for the input coordinates."]]],["The core function is creating a `Point` geometry object using `ee.Algorithms.GeometryConstructors.Point`. It requires a list of `coordinates` in x,y order. An optional `crs` (coordinate reference system) argument can be specified; otherwise, it defaults to the projection of the inputs, with numbers assumed to be EPSG:4326. The function returns a `Geometry` object representing the created point.\n"]]