ประกาศ : โปรเจ็กต์ที่ไม่ใช่เชิงพาณิชย์ทั้งหมดที่ลงทะเบียนเพื่อใช้ Earth Engine ก่อนวันที่
15 เมษายน 2025 ต้อง
ยืนยันการมีสิทธิ์ที่ไม่ใช่เชิงพาณิชย์ เพื่อรักษาสิทธิ์เข้าถึง หากคุณไม่ยืนยันภายในวันที่ 26 กันยายน 2025 ระบบอาจระงับสิทธิ์เข้าถึงของคุณ
ส่งความคิดเห็น
ee.Geometry.MultiPolygon.difference
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แสดงผลลัพธ์ของการลบรูปทรงเรขาคณิต "ขวา" ออกจากรูปทรงเรขาคณิต "ซ้าย"
การใช้งาน การคืนสินค้า MultiPolygon. difference (right, maxError , proj )
เรขาคณิต
อาร์กิวเมนต์ ประเภท รายละเอียด ดังนี้ left
เรขาคณิต เรขาคณิตที่ใช้เป็นตัวถูกดำเนินการด้านซ้ายของการดำเนินการ right
เรขาคณิต เรขาคณิตที่ใช้เป็นตัวถูกดำเนินการด้านขวาของการดำเนินการ maxError
ErrorMargin, ค่าเริ่มต้น: null ปริมาณข้อผิดพลาดสูงสุดที่ยอมรับได้เมื่อทำการฉายซ้ำที่จำเป็น proj
การฉายภาพ ค่าเริ่มต้น: null การฉายภาพที่จะใช้ดำเนินการ หากไม่ได้ระบุ ระบบจะดำเนินการในระบบพิกัดทรงกลม และระยะทางเชิงเส้นจะเป็นหน่วยเมตรบนทรงกลม
ตัวอย่าง
โปรแกรมแก้ไขโค้ด (JavaScript)
// Define a MultiPolygon object.
var multiPolygon = ee . Geometry . MultiPolygon (
[[[[ - 122.092 , 37.424 ],
[ - 122.086 , 37.418 ],
[ - 122.079 , 37.425 ],
[ - 122.085 , 37.423 ]]],
[[[ - 122.081 , 37.417 ],
[ - 122.086 , 37.421 ],
[ - 122.089 , 37.416 ]]]]);
// Define other inputs.
var inputGeom = ee . Geometry . BBox ( - 122.085 , 37.415 , - 122.075 , 37.425 );
// Apply the difference method to the MultiPolygon object.
var multiPolygonDifference = multiPolygon . difference ({ 'right' : inputGeom , 'maxError' : 1 });
// Print the result to the console.
print ( 'multiPolygon.difference(...) =' , multiPolygonDifference );
// Display relevant geometries on the map.
Map . setCenter ( - 122.085 , 37.422 , 15 );
Map . addLayer ( multiPolygon ,
{ 'color' : 'black' },
'Geometry [black]: multiPolygon' );
Map . addLayer ( inputGeom ,
{ 'color' : 'blue' },
'Parameter [blue]: inputGeom' );
Map . addLayer ( multiPolygonDifference ,
{ 'color' : 'red' },
'Result [red]: multiPolygon.difference' );
การตั้งค่า Python
ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap
เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า
สภาพแวดล้อม Python
import ee
import geemap.core as geemap
Colab (Python)
# Define a MultiPolygon object.
multipolygon = ee . Geometry . MultiPolygon ([
[[
[ - 122.092 , 37.424 ],
[ - 122.086 , 37.418 ],
[ - 122.079 , 37.425 ],
[ - 122.085 , 37.423 ],
]],
[[[ - 122.081 , 37.417 ], [ - 122.086 , 37.421 ], [ - 122.089 , 37.416 ]]],
])
# Define other inputs.
input_geom = ee . Geometry . BBox ( - 122.085 , 37.415 , - 122.075 , 37.425 )
# Apply the difference method to the MultiPolygon object.
multipolygon_difference = multipolygon . difference ( right = input_geom , maxError = 1 )
# Print the result.
display ( 'multipolygon.difference(...) =' , multipolygon_difference )
# Display relevant geometries on the map.
m = geemap . Map ()
m . set_center ( - 122.085 , 37.422 , 15 )
m . add_layer (
multipolygon , { 'color' : 'black' }, 'Geometry [black]: multipolygon'
)
m . add_layer ( input_geom , { 'color' : 'blue' }, 'Parameter [blue]: input_geom' )
m . add_layer (
multipolygon_difference ,
{ 'color' : 'red' },
'Result [red]: multipolygon.difference' ,
)
m
ส่งความคิดเห็น
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
หากต้องการบอกให้เราทราบเพิ่มเติม
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-26 UTC"],[],["The `difference` method subtracts a 'right' geometry from a 'left' geometry (a `MultiPolygon`). It returns a new `Geometry` object. Key arguments include the `right` geometry, an optional `maxError` for reprojection tolerance, and an optional `proj` for the operation's projection. The operation is performed in a spherical coordinate system by default. Examples illustrate creating a `MultiPolygon`, defining a `BBox`, applying the difference method and displaying the output.\n"]]