Pengumuman: Semua project nonkomersial yang terdaftar untuk menggunakan Earth Engine sebelum
15 April 2025 harus
memverifikasi kelayakan nonkomersial untuk mempertahankan akses Earth Engine.
ee.Feature.withinDistance
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Menampilkan nilai benar jika dan hanya jika geometri dua fitur berada dalam jarak yang ditentukan.
Penggunaan | Hasil |
---|
Feature.withinDistance(right, distance, maxError, proj) | Boolean |
Argumen | Jenis | Detail |
---|
ini: left | Elemen | Fitur yang berisi geometri yang digunakan sebagai operand kiri operasi. |
right | Elemen | Fitur yang berisi geometri yang digunakan sebagai operand kanan operasi. |
distance | Float | Nilai minimum jarak. Jika proyeksi ditentukan, jaraknya dalam satuan sistem koordinat yang diproyeksikan tersebut, jika tidak, jaraknya dalam meter. |
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\u003e\u003ccode\u003ewithinDistance\u003c/code\u003e determines if two geographic features are within a specified distance of each other, returning true if they are and false otherwise.\u003c/p\u003e\n"],["\u003cp\u003eThe distance threshold can be defined in meters or in the units of a given projected coordinate system.\u003c/p\u003e\n"],["\u003cp\u003eThis function considers the geometries of the features and can handle reprojection with a specified error margin if necessary.\u003c/p\u003e\n"]]],["The core function determines if two feature geometries are within a specified distance. It takes two features (`left`, `right`) and a `distance` (in meters or specified projection units) as input, returning a Boolean. Optional arguments include `maxError` for reprojection tolerance and `proj` to define the projection. The operation checks if `left` is within the given `distance` of `right`, considering the provided projection or defaulting to a spherical coordinate system.\n"],null,["# ee.Feature.withinDistance\n\nReturns true if and only if the geometries of two features are within a specified distance.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------|---------|\n| Feature.withinDistance`(right, distance, `*maxError* `, `*proj*`)` | Boolean |\n\n| Argument | Type | Details |\n|--------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `left` | Element | The feature containing the geometry used as the left operand of the operation. |\n| `right` | Element | The feature containing the geometry used as the right operand of the operation. |\n| `distance` | Float | The distance threshold. If a projection is specified, the distance is in units of that projected coordinate system, otherwise it is in meters. |\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. |"]]