ee.Geometry.MultiLineString.closestPoints
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แสดงผลพจนานุกรมที่มีรายการสูงสุด 2 รายการซึ่งแสดงจุดในรูปทรงเรขาคณิตของอินพุตแต่ละรายการที่อยู่ใกล้กับรูปทรงเรขาคณิตของอินพุตอีกรายการมากที่สุด หากเรขาคณิตใดเรขาคณิตหนึ่งว่างเปล่า ระบบจะแสดงผลพจนานุกรมที่ว่างเปล่า หากทั้ง 2 เรขาคณิตไม่มีขอบเขต พจนานุกรมจะมีจุดที่กำหนดเองสำหรับทั้ง "ซ้าย" และ "ขวา" หากเรขาคณิตหนึ่งไม่มีขอบเขต พจนานุกรมจะมีจุดที่กำหนดเองซึ่งอยู่ในเรขาคณิตที่มีขอบเขตสำหรับทั้ง "ซ้าย" และ "ขวา"
การใช้งาน | การคืนสินค้า |
---|
MultiLineString.closestPoints(right, maxError, proj) | วัตถุ |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
ดังนี้ left | เรขาคณิต | เรขาคณิตที่ใช้เป็นตัวถูกดำเนินการด้านซ้ายของการดำเนินการ |
right | เรขาคณิต | เรขาคณิตที่ใช้เป็นตัวถูกดำเนินการด้านขวาของการดำเนินการ |
maxError | ErrorMargin, ค่าเริ่มต้น: null | ปริมาณข้อผิดพลาดสูงสุดที่ยอมรับได้เมื่อทำการฉายซ้ำที่จำเป็น |
proj | การฉายภาพ ค่าเริ่มต้น: null | การฉายภาพที่จะใช้ดำเนินการ หากไม่ได้ระบุ ระบบจะดำเนินการในระบบพิกัดทรงกลม และระยะทางเชิงเส้นจะเป็นหน่วยเมตรบนทรงกลม |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003eReturns a dictionary with points on each geometry closest to the other, using 'left' and 'right' keys, which may be arbitrary under specific conditions like unbounded geometries.\u003c/p\u003e\n"],["\u003cp\u003eAccepts two geometries as input (\u003ccode\u003eleft\u003c/code\u003e and \u003ccode\u003eright\u003c/code\u003e) along with optional \u003ccode\u003emaxError\u003c/code\u003e for reprojection and \u003ccode\u003eproj\u003c/code\u003e to define the operational projection (spherical by default).\u003c/p\u003e\n"],["\u003cp\u003eIf either input geometry is empty, the result is an empty dictionary.\u003c/p\u003e\n"]]],["The function identifies and returns the closest points between two geometries ('left' and 'right') in a dictionary. The output dictionary contains up to two points. If either input is empty, it returns an empty dictionary. Unbounded inputs return arbitrary points. It supports optional `maxError` for reprojection tolerance and `proj` for specifying the coordinate projection, defaulting to spherical coordinates with meter distances. The operation is executed using the 'left' geometry as the base, operating on the `right`.\n"],null,["# ee.Geometry.MultiLineString.closestPoints\n\nReturns a dictionary containing up to two entries representing a point on each input geometry that is closest to the other input geometry. If either geometry is empty, an empty dictionary is returned. If both geometries are unbounded, the dictionary has an arbitrary point for both 'left' and 'right'. If one geometry is unbounded, the dictionary has an arbitrary point contained in the bounded geometry for both 'left' and 'right'.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------|---------|\n| MultiLineString.closestPoints`(right, `*maxError* `, `*proj*`)` | Object |\n\n| Argument | Type | Details |\n|--------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `left` | Geometry | The geometry used as the left operand of the operation. |\n| `right` | Geometry | The geometry used as the right operand of the operation. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | The projection in which to perform the operation. If not specified, the operation will be performed in a spherical coordinate system, and linear distances will be in meters on the sphere. |"]]