ee.Geometry.Rectangle.closestPoints
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, डिक्शनरी दिखाता है. इसमें ज़्यादा से ज़्यादा दो एंट्री होती हैं. ये एंट्री, हर इनपुट ज्यामिति पर मौजूद ऐसे पॉइंट को दिखाती हैं जो दूसरी इनपुट ज्यामिति के सबसे करीब है. अगर दोनों में से कोई भी ज्यामिति खाली है, तो एक खाली शब्दकोश दिखाया जाता है. अगर दोनों ज्योमेट्री असीमित हैं, तो डिक्शनरी में 'left' और 'right' दोनों के लिए एक आर्बिट्ररी पॉइंट होता है. अगर कोई ज्यामिति असीमित है, तो डिक्शनरी में 'left' और 'right' दोनों के लिए, सीमित ज्यामिति में शामिल कोई भी पॉइंट होता है.
इस्तेमाल | रिटर्न |
---|
Rectangle.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 representing the closest points between two geometries, containing entries for 'left' and 'right'.\u003c/p\u003e\n"],["\u003cp\u003eIf either input geometry is empty, an empty dictionary is returned.\u003c/p\u003e\n"],["\u003cp\u003eFor unbounded geometries, arbitrary points may be returned for 'left' and 'right'.\u003c/p\u003e\n"],["\u003cp\u003eAccepts optional \u003ccode\u003emaxError\u003c/code\u003e and \u003ccode\u003eproj\u003c/code\u003e arguments to control reprojection and coordinate system.\u003c/p\u003e\n"]]],["The function `closestPoints` identifies the nearest points between two geometries (`left` and `right`), returning them in a dictionary. The dictionary can have up to two point entries. An empty dictionary signifies empty input geometries. For unbounded geometries, arbitrary points are returned. The operation allows specification of `maxError` and `proj` for accuracy control, defaulting to spherical coordinates if `proj` is null.\n"],null,["# ee.Geometry.Rectangle.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| Rectangle.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. |"]]