ee.Algorithms.GeometryConstructors.MultiPoint
Constructs a MultiPoint from the given coordinates.
Usage | Returns |
---|
ee.Algorithms.GeometryConstructors.MultiPoint(coordinates, crs) | Geometry |
Argument | Type | Details |
---|
coordinates | List | The list of Points or pairs of Numbers 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 MultiPoint Geometry from a list of coordinates."],["Input coordinates can be either Points or coordinate pairs (x, y)."],["The coordinate reference system (CRS) can be specified, defaulting to EPSG:4326 if not provided."]]],["This document describes how to create a `MultiPoint` geometry object. The `ee.Algorithms.GeometryConstructors.MultiPoint` function takes a list of `coordinates` as input, which can be either individual points or x,y number pairs. It also accepts an optional `crs` argument to define the coordinate reference system; if unspecified it will default to the projection of the inputs. The function will then return a Geometry object.\n"]]