公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.Algorithms.GeometryConstructors.Point
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
根据给定的 x、y 坐标构造新的 Point。
用法 | 返回 |
---|
ee.Algorithms.GeometryConstructors.Point(coordinates, crs) | 几何图形 |
参数 | 类型 | 详细信息 |
---|
coordinates | 列表 | 相应 Point 的坐标,按 x、y 顺序排列。 |
crs | 投影,默认值:null | 相应坐标的坐标参考系统。默认值为输入的投影,其中假设数字采用 EPSG:4326。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eCreates a new Point geometry object using provided x and y coordinates.\u003c/p\u003e\n"],["\u003cp\u003eAccepts a list of coordinates and an optional coordinate reference system (CRS) as input.\u003c/p\u003e\n"],["\u003cp\u003eDefaults to EPSG:4326 CRS if no CRS is specified for the input coordinates.\u003c/p\u003e\n"]]],["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"],null,["# ee.Algorithms.GeometryConstructors.Point\n\nConstructs a new Point from the given x,y coordinates.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|------------------------------------------------------------------|----------|\n| `ee.Algorithms.GeometryConstructors.Point(coordinates, `*crs*`)` | Geometry |\n\n| Argument | Type | Details |\n|---------------|---------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\n| `coordinates` | List | The coordinates of this Point 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. |"]]