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.area
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Menampilkan area geometri default fitur. Area titik dan string garis adalah 0 dan area multi-geometri adalah jumlah area komponennya (area yang berpotongan dihitung beberapa kali).
Penggunaan | Hasil |
---|
Feature.area(maxError, proj) | Float |
Argumen | Jenis | Detail |
---|
ini: feature | Elemen | Fitur dari mana geometri diambil. |
maxError | ErrorMargin, default: null | Jumlah maksimum error yang dapat ditoleransi saat melakukan reproyeksi yang diperlukan. |
proj | Proyeksi, default: null | Jika ditentukan, hasilnya akan dalam satuan sistem koordinat proyeksi ini. Jika tidak, nilainya akan dalam meter persegi. |
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\u003eThe \u003ccode\u003earea()\u003c/code\u003e function calculates and returns the area of a feature's geometry.\u003c/p\u003e\n"],["\u003cp\u003ePoints and line strings have an area of 0, while the area of multi-geometries is the sum of their component areas.\u003c/p\u003e\n"],["\u003cp\u003eThe returned area is in square meters by default, but can be calculated in the units of a specified projection.\u003c/p\u003e\n"],["\u003cp\u003eYou can specify a maximum error tolerance for reprojection during area calculation.\u003c/p\u003e\n"]]],["The function calculates the area of a feature's default geometry, returning a float value. Point and line string geometries return an area of 0, while multi-geometries return the sum of their component areas. The `maxError` argument controls reprojection error tolerance, and `proj` specifies the output projection; otherwise, the area is returned in square meters. The function takes a feature element as the primary input.\n"],null,["# ee.Feature.area\n\nReturns the area of the feature's default geometry. Area of points and line strings is 0 and the area of multi geometries is the sum of the areas of their components (intersecting areas are counted multiple times).\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------|---------|\n| Feature.area`(`*maxError* `, `*proj*`)` | Float |\n\n| Argument | Type | Details |\n|-----------------|----------------------------|-----------------------------------------------------------------------------------------------------------------------------------|\n| this: `feature` | Element | The feature from which the geometry is taken. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | If specified, the result will be in the units of the coordinate system of this projection. Otherwise it will be in square meters. |"]]