ee.Geometry.MultiPoint.geodesic

หากเป็นเท็จ ขอบจะตรงในการฉายภาพ หากเป็นจริง เส้นขอบจะโค้งตามเส้นทางที่สั้นที่สุดบนพื้นผิวโลก

การใช้งานการคืนสินค้า
MultiPoint.geodesic()บูลีน
อาร์กิวเมนต์ประเภทรายละเอียด
ดังนี้ geometryเรขาคณิต

ตัวอย่าง

โปรแกรมแก้ไขโค้ด (JavaScript)

// Define a MultiPoint object.
var multiPoint = ee.Geometry.MultiPoint([[-122.082, 37.420], [-122.081, 37.426]]);

// Apply the geodesic method to the MultiPoint object.
var multiPointGeodesic = multiPoint.geodesic();

// Print the result to the console.
print('multiPoint.geodesic(...) =', multiPointGeodesic);

// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(multiPoint,
             {'color': 'black'},
             'Geometry [black]: multiPoint');

การตั้งค่า Python

ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า สภาพแวดล้อม Python

import ee
import geemap.core as geemap

Colab (Python)

# Define a MultiPoint object.
multipoint = ee.Geometry.MultiPoint([[-122.082, 37.420], [-122.081, 37.426]])

# Apply the geodesic method to the MultiPoint object.
multipoint_geodesic = multipoint.geodesic()

# Print the result.
display('multipoint.geodesic(...) =', multipoint_geodesic)

# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(multipoint, {'color': 'black'}, 'Geometry [black]: multipoint')
m