Announcement: All noncommercial projects registered to use Earth Engine before April 15, 2025 must verify noncommercial eligibility to maintain Earth Engine access.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-13 UTC."],[[["\u003cp\u003eCreates a MultiPoint Geometry from a list of coordinates.\u003c/p\u003e\n"],["\u003cp\u003eInput coordinates can be either Points or coordinate pairs (x, y).\u003c/p\u003e\n"],["\u003cp\u003eThe coordinate reference system (CRS) can be specified, defaulting to EPSG:4326 if not provided.\u003c/p\u003e\n"]]],["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"],null,["Constructs a MultiPoint from the given coordinates.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------------|----------|\n| `ee.Algorithms.GeometryConstructors.MultiPoint(coordinates, `*crs*`)` | Geometry |\n\n| Argument | Type | Details |\n|---------------|---------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\n| `coordinates` | List | The list of Points or pairs of Numbers in x,y order. |\n| `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. |"]]