ee.Geometry.MultiLineString.closestPoints
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, डिक्शनरी दिखाता है. इसमें ज़्यादा से ज़्यादा दो एंट्री होती हैं. ये एंट्री, हर इनपुट ज्यामिति पर मौजूद ऐसे पॉइंट को दिखाती हैं जो दूसरी इनपुट ज्यामिति के सबसे करीब है. अगर दोनों में से कोई भी ज्यामिति खाली है, तो एक खाली शब्दकोश दिखाया जाता है. अगर दोनों ज्योमेट्री असीमित हैं, तो डिक्शनरी में 'left' और 'right' दोनों के लिए एक आर्बिट्ररी पॉइंट होता है. अगर कोई ज्यामिति असीमित है, तो डिक्शनरी में 'left' और 'right' दोनों के लिए, सीमित ज्यामिति में शामिल कोई भी पॉइंट होता है.
इस्तेमाल | रिटर्न |
---|
MultiLineString.closestPoints(right, maxError, proj) | ऑब्जेक्ट |
आर्ग्यूमेंट | टाइप | विवरण |
---|
यह: left | ज्यामिति | ज्यामिति का इस्तेमाल, ऑपरेशन के लेफ्ट ऑपरेंड के तौर पर किया जाता है. |
right | ज्यामिति | ज्यामिति, जिसका इस्तेमाल ऑपरेशन के राइट ऑपरेंड के तौर पर किया जाता है. |
maxError | ErrorMargin, डिफ़ॉल्ट: null | ज़रूरी रीप्रोजेक्शन करते समय, ज़्यादा से ज़्यादा कितनी गड़बड़ी हो सकती है. |
proj | प्रोजेक्शन, डिफ़ॉल्ट: null | वह प्रोजेक्शन जिसमें ऑपरेशन करना है. अगर इसे तय नहीं किया जाता है, तो ऑपरेशन स्फ़ेरिकल कोऑर्डिनेट सिस्टम में किया जाएगा. साथ ही, गोले पर रैखिक दूरी मीटर में होगी. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 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. |"]]