Pengumuman: Semua project nonkomersial yang terdaftar untuk menggunakan Earth Engine sebelum
15 April 2025 harus
memverifikasi kelayakan nonkomersial untuk mempertahankan akses Earth Engine.
ee.Geometry.MultiLineString.closestPoints
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Menampilkan kamus yang berisi hingga dua entri yang merepresentasikan titik pada setiap geometri input yang paling dekat dengan geometri input lainnya. Jika salah satu geometri kosong, kamus kosong akan ditampilkan. Jika kedua geometri tidak terbatas, kamus memiliki titik arbitrer untuk 'kiri' dan 'kanan'. Jika salah satu geometri tidak terbatas, kamus memiliki titik arbitrer yang terdapat dalam geometri terbatas untuk 'kiri' dan 'kanan'.
Penggunaan | Hasil |
---|
MultiLineString.closestPoints(right, maxError, proj) | Objek |
Argumen | Jenis | Detail |
---|
ini: left | Geometri | Geometri yang digunakan sebagai operand kiri operasi. |
right | Geometri | Geometri yang digunakan sebagai operand kanan operasi. |
maxError | ErrorMargin, default: null | Jumlah maksimum error yang dapat ditoleransi saat melakukan reproyeksi yang diperlukan. |
proj | Proyeksi, default: null | Proyeksi tempat operasi akan dilakukan. Jika tidak ditentukan, operasi akan dilakukan dalam sistem koordinat bola, dan jarak linear akan dalam meter di bola. |
Kecuali dinyatakan lain, konten di halaman ini dilisensikan berdasarkan Lisensi Creative Commons Attribution 4.0, sedangkan contoh kode dilisensikan berdasarkan Lisensi Apache 2.0. Untuk mengetahui informasi selengkapnya, lihat Kebijakan Situs Google Developers. Java adalah merek dagang terdaftar dari Oracle dan/atau afiliasinya.
Terakhir diperbarui pada 2025-07-26 UTC.
[null,null,["Terakhir diperbarui pada 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. |"]]