ee.Geometry.Polygon.perimeter

طول محیط قسمت های چند ضلعی هندسه را برمی گرداند. محیط چند هندسه مجموع محیط اجزای آنهاست.

استفاده برمی گرداند
Polygon. perimeter ( 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 perimeter method to the Polygon object.
var polygonPerimeter = polygon.perimeter({'maxError': 1});

// Print the result to the console.
print('polygon.perimeter(...) =', polygonPerimeter);

// 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 perimeter method to the Polygon object.
polygon_perimeter = polygon.perimeter(maxError=1)

# Print the result.
display('polygon.perimeter(...) =', polygon_perimeter)

# 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