ส่งความคิดเห็น
ee.Geometry.Rectangle.withinDistance
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แสดงผลเป็นจริงก็ต่อเมื่อรูปทรงเรขาคณิตอยู่ภายในระยะทางที่ระบุ
การใช้งาน การคืนสินค้า Rectangle. withinDistance (right, distance, maxError , proj )
บูลีน
อาร์กิวเมนต์ ประเภท รายละเอียด ดังนี้ left
เรขาคณิต เรขาคณิตที่ใช้เป็นตัวถูกดำเนินการด้านซ้ายของการดำเนินการ right
เรขาคณิต เรขาคณิตที่ใช้เป็นตัวถูกดำเนินการด้านขวาของการดำเนินการ distance
ทศนิยม เกณฑ์ระยะทาง หากระบุการฉายภาพ ระยะทางจะเป็นหน่วยของระบบพิกัดที่ฉายภาพนั้น มิฉะนั้นจะเป็นหน่วยเมตร maxError
ErrorMargin, ค่าเริ่มต้น: null ปริมาณข้อผิดพลาดสูงสุดที่ยอมรับได้เมื่อทำการฉายซ้ำที่จำเป็น proj
การฉายภาพ ค่าเริ่มต้น: null การฉายภาพที่จะใช้ดำเนินการ หากไม่ได้ระบุ ระบบจะดำเนินการในระบบพิกัดทรงกลม และระยะทางเชิงเส้นจะเป็นหน่วยเมตรบนทรงกลม
ตัวอย่าง
โปรแกรมแก้ไขโค้ด (JavaScript)
// Define a Rectangle object.
var rectangle = ee . Geometry . Rectangle ( - 122.09 , 37.42 , - 122.08 , 37.43 );
// Define other inputs.
var inputGeom = ee . Geometry . Point ( - 122.090 , 37.423 );
// Apply the withinDistance method to the Rectangle object.
var rectangleWithinDistance = rectangle . withinDistance ({ 'right' : inputGeom , 'distance' : 500 , 'maxError' : 1 });
// Print the result to the console.
print ( 'rectangle.withinDistance(...) =' , rectangleWithinDistance );
// Display relevant geometries on the map.
Map . setCenter ( - 122.085 , 37.422 , 15 );
Map . addLayer ( rectangle ,
{ 'color' : 'black' },
'Geometry [black]: rectangle' );
Map . addLayer ( inputGeom ,
{ 'color' : 'blue' },
'Parameter [blue]: inputGeom' );
การตั้งค่า Python
ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap
เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า
สภาพแวดล้อม Python
import ee
import geemap.core as geemap
Colab (Python)
# Define a Rectangle object.
rectangle = ee . Geometry . Rectangle ( - 122.09 , 37.42 , - 122.08 , 37.43 )
# Define other inputs.
input_geom = ee . Geometry . Point ( - 122.090 , 37.423 )
# Apply the withinDistance method to the Rectangle object.
rectangle_within_distance = rectangle . withinDistance (
right = input_geom , distance = 500 , maxError = 1
)
# Print the result.
display ( 'rectangle.withinDistance(...) =' , rectangle_within_distance )
# Display relevant geometries on the map.
m = geemap . Map ()
m . set_center ( - 122.085 , 37.422 , 15 )
m . add_layer ( rectangle , { 'color' : 'black' }, 'Geometry [black]: rectangle' )
m . add_layer ( input_geom , { 'color' : 'blue' }, 'Parameter [blue]: input_geom' )
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"],[[["Returns `true` if the input geometries are within the specified distance of one another."],["Takes a Geometry as the left operand and another Geometry as the right operand, along with a distance threshold."],["Distance is in meters or in the units of the specified projection."],["Optionally accepts `maxError` for reprojection tolerance and a `proj` for the operation's coordinate system."]]],[]]