ee.Feature.area
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แสดงผลพื้นที่ของเรขาคณิตเริ่มต้นของฟีเจอร์ พื้นที่ของจุดและสตริงของเส้นคือ 0 และพื้นที่ของเรขาคณิตแบบหลายรายการคือผลรวมของพื้นที่ของคอมโพเนนต์ (ระบบจะนับพื้นที่ที่ตัดกันหลายครั้ง)
การใช้งาน | การคืนสินค้า |
---|
Feature.area(maxError, proj) | ทศนิยม |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
ดังนี้ feature | องค์ประกอบ | ฟีเจอร์ที่นำเรขาคณิตมาใช้ |
maxError | ErrorMargin, ค่าเริ่มต้น: null | ปริมาณข้อผิดพลาดสูงสุดที่ยอมรับได้เมื่อทำการฉายซ้ำที่จำเป็น |
proj | การฉายภาพ ค่าเริ่มต้น: null | หากระบุไว้ ผลลัพธ์จะอยู่ในหน่วยของระบบพิกัดของการฉายภาพนี้ มิฉะนั้นจะเป็นตารางเมตร |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 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. |"]]