ee.Geometry.Polygon.centroid

জ্যামিতির সর্বোচ্চ-মাত্রার উপাদানগুলির কেন্দ্রে একটি বিন্দু ফেরত দেয়। নিম্ন-মাত্রিক উপাদানগুলিকে উপেক্ষা করা হয়, তাই দুটি বহুভুজ, তিনটি রেখা এবং একটি বিন্দু সমন্বিত একটি জ্যামিতির কেন্দ্রিক জ্যামিতির কেন্দ্রবিন্দুর সমতুল্য যেখানে দুটি বহুভুজ রয়েছে৷

ব্যবহার রিটার্নস
Polygon. centroid ( maxError , proj ) জ্যামিতি
যুক্তি টাইপ বিস্তারিত
এই: geometry জ্যামিতি এই জ্যামিতির কেন্দ্রিক গণনা করে।
maxError ErrorMargin, ডিফল্ট: null যেকোনো প্রয়োজনীয় রিপ্রজেকশন করার সময় সর্বোচ্চ পরিমাণ ত্রুটি সহ্য করা হয়।
proj অভিক্ষেপ, ডিফল্ট: নাল নির্দিষ্ট করা হলে, ফলাফল এই অভিক্ষেপে হবে। অন্যথায় এটি EPSG:4326-এ থাকবে।

উদাহরণ

কোড এডিটর (জাভাস্ক্রিপ্ট)

// 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 centroid method to the Polygon object.
var polygonCentroid = polygon.centroid({'maxError': 1});

// Print the result to the console.
print('polygon.centroid(...) =', polygonCentroid);

// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(polygon,
             {'color': 'black'},
             'Geometry [black]: polygon');
Map.addLayer(polygonCentroid,
             {'color': 'red'},
             'Result [red]: polygon.centroid');

পাইথন সেটআপ

পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।

import ee
import geemap.core as geemap

Colab (পাইথন)

# 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 centroid method to the Polygon object.
polygon_centroid = polygon.centroid(maxError=1)

# Print the result.
display('polygon.centroid(...) =', polygon_centroid)

# 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.add_layer(
    polygon_centroid, {'color': 'red'}, 'Result [red]: polygon.centroid'
)
m