ee.Geometry.Point

ポイントを記述する ee.Geometry を構築します。

便宜上、すべての引数が数値の場合、可変長引数を使用できます。これにより、EPSG:4326 ポイント(ee.Geometry.Point(lng, lat) など)を作成できます。

用途戻り値
ee.Geometry.Point(coords, proj)Geometry.Point
引数タイプ詳細
coordsList<Number>指定された投影法での 2 つの [x,y] 座標のリスト。
proj投影(省略可)このジオメトリの投影。指定されていない場合は EPSG:4326。

コードエディタ(JavaScript)

// Construct a point from coordinates.
var point = ee.Geometry.Point([-122.08412, 37.42189]);

Python の設定

Python API とインタラクティブな開発での geemap の使用については、 Python 環境のページをご覧ください。

import ee
import geemap.core as geemap

Colab(Python)

# Construct a point from coordinates.
point = ee.Geometry.Point([-122.08412, 37.42189])