ประกาศ : โปรเจ็กต์ที่ไม่ใช่เชิงพาณิชย์ทั้งหมดที่ลงทะเบียนเพื่อใช้ Earth Engine ก่อนวันที่
15 เมษายน 2025 ต้อง
ยืนยันการมีสิทธิ์ที่ไม่ใช่เชิงพาณิชย์ เพื่อรักษาสิทธิ์เข้าถึง หากคุณไม่ยืนยันภายในวันที่ 26 กันยายน 2025 ระบบอาจระงับสิทธิ์เข้าถึงของคุณ
ส่งความคิดเห็น
ee.Geometry.MultiLineString.buffer
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แสดงผลอินพุตที่บัฟเฟอร์ตามระยะทางที่กำหนด หากระยะทางเป็นบวก ระบบจะขยายเรขาคณิต และหากระยะทางเป็นลบ ระบบจะย่อเรขาคณิต
การใช้งาน การคืนสินค้า MultiLineString. buffer (distance, maxError , proj )
เรขาคณิต
อาร์กิวเมนต์ ประเภท รายละเอียด ดังนี้ geometry
เรขาคณิต เรขาคณิตที่กำลังบัฟเฟอร์ distance
ทศนิยม ระยะห่างของการบัฟเฟอร์ ซึ่งอาจเป็นค่าลบ หากไม่ได้ระบุการฉายภาพ หน่วยจะเป็นเมตร มิฉะนั้น หน่วยจะเป็นระบบพิกัดของการฉาย maxError
ErrorMargin, ค่าเริ่มต้น: null ปริมาณข้อผิดพลาดสูงสุดที่ยอมรับได้เมื่อประมาณวงกลมการบัฟเฟอร์และทำการฉายซ้ำที่จำเป็น หากไม่ได้ระบุไว้ ระบบจะใช้ 1% ของระยะทางเป็นค่าเริ่มต้น proj
การฉายภาพ ค่าเริ่มต้น: null หากระบุ ระบบจะทำการบัฟเฟอร์ในการฉายภาพนี้ และจะตีความระยะทางเป็นหน่วยของระบบพิกัดของการฉายภาพนี้ มิฉะนั้น ระบบจะตีความระยะทางเป็นเมตรและทำการบัฟเฟอร์ในระบบพิกัดทรงกลม
ตัวอย่าง
โปรแกรมแก้ไขโค้ด (JavaScript)
// Define a MultiLineString object.
var multiLineString = ee . Geometry . MultiLineString (
[[[ - 122.088 , 37.418 ], [ - 122.086 , 37.422 ], [ - 122.082 , 37.418 ]],
[[ - 122.087 , 37.416 ], [ - 122.083 , 37.416 ], [ - 122.082 , 37.419 ]]]);
// Apply the buffer method to the MultiLineString object.
var multiLineStringBuffer = multiLineString . buffer ({ 'distance' : 100 });
// Print the result to the console.
print ( 'multiLineString.buffer(...) =' , multiLineStringBuffer );
// Display relevant geometries on the map.
Map . setCenter ( - 122.085 , 37.422 , 15 );
Map . addLayer ( multiLineString ,
{ 'color' : 'black' },
'Geometry [black]: multiLineString' );
Map . addLayer ( multiLineStringBuffer ,
{ 'color' : 'red' },
'Result [red]: multiLineString.buffer' );
การตั้งค่า Python
ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap
เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า
สภาพแวดล้อม Python
import ee
import geemap.core as geemap
Colab (Python)
# Define a MultiLineString object.
multilinestring = ee . Geometry . MultiLineString ([
[[ - 122.088 , 37.418 ], [ - 122.086 , 37.422 ], [ - 122.082 , 37.418 ]],
[[ - 122.087 , 37.416 ], [ - 122.083 , 37.416 ], [ - 122.082 , 37.419 ]],
])
# Apply the buffer method to the MultiLineString object.
multilinestring_buffer = multilinestring . buffer ( distance = 100 )
# Print the result.
display ( 'multilinestring.buffer(...) =' , multilinestring_buffer )
# Display relevant geometries on the map.
m = geemap . Map ()
m . set_center ( - 122.085 , 37.422 , 15 )
m . add_layer (
multilinestring , { 'color' : 'black' }, 'Geometry [black]: multilinestring'
)
m . add_layer (
multilinestring_buffer ,
{ 'color' : 'red' },
'Result [red]: multilinestring.buffer' ,
)
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 `buffer` method expands or contracts a geometry by a specified distance. A positive distance expands the geometry, while a negative distance contracts it. The distance unit is meters by default, or it can be set by the user using projection. The user can also set the maximum error margin to use while computing the buffer. The method returns the buffered geometry.\n"]]