ee.Geometry.Polygon.length
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
طول قسمت های خطی هندسه را برمی گرداند. قطعات چند ضلعی نادیده گرفته می شوند. طول چند هندسه مجموع طول اجزای آنهاست.
استفاده | برمی گرداند | Polygon. length ( maxError , proj ) | شناور |
استدلال | تایپ کنید | جزئیات | این: geometry | هندسه | هندسه ورودی |
maxError | ErrorMargin، پیش فرض: null | حداکثر مقدار خطای قابل تحمل هنگام انجام هر گونه بازطراحی ضروری. |
proj | Projection، پیش فرض: null | در صورت مشخص شدن، نتیجه در واحدهای سیستم مختصات این طرح خواهد بود. در غیر این صورت بر حسب متر خواهد بود. |
نمونه ها
ویرایشگر کد (جاوا اسکریپت)
// Define a Polygon object.
var polygon = ee.Geometry.Polygon(
[[[-122.092, 37.424],
[-122.086, 37.418],
[-122.079, 37.425],
[-122.085, 37.423]]]);
// Apply the length method to the Polygon object.
var polygonLength = polygon.length();
// Print the result to the console.
print('polygon.length(...) =', polygonLength);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(polygon,
{'color': 'black'},
'Geometry [black]: polygon');
راه اندازی پایتون
برای اطلاعات در مورد API پایتون و استفاده از geemap
برای توسعه تعاملی به صفحه محیط پایتون مراجعه کنید.
import ee
import geemap.core as geemap
کولب (پایتون)
# Define a Polygon object.
polygon = ee.Geometry.Polygon([[
[-122.092, 37.424],
[-122.086, 37.418],
[-122.079, 37.425],
[-122.085, 37.423],
]])
# Apply the length method to the Polygon object.
polygon_length = polygon.length()
# Print the result.
display('polygon.length(...) =', polygon_length)
# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(polygon, {'color': 'black'}, 'Geometry [black]: polygon')
m
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[],["The `length()` method calculates the length of linear parts within a geometry, ignoring polygonal sections. For multi-geometries, it sums the lengths of individual components. The method accepts optional `maxError` and `proj` arguments to define error tolerance and projection units, respectively. By default, length is computed in meters. The example demonstrates how to use `length()` on a polygon object and visualize it in JavaScript and Python environments.\n"],null,[]]