ee.Geometry.Polygon.projection
    
    
      
    
    
      
      با مجموعهها، منظم بمانید
    
    
      
      ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
  
  
طرحریزی هندسه را برمیگرداند.
| استفاده | برمی گرداند | | Polygon. projection () | فرافکنی | 
| استدلال | تایپ کنید | جزئیات | | این: geometry | هندسه |  | 
نمونه ها 
 ویرایشگر کد (جاوا اسکریپت) 
// 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 projection method to the Polygon object.
var polygonProjection = polygon.projection();
// Print the result to the console.
print('polygon.projection(...) =', polygonProjection);
// 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 projection method to the Polygon object.
polygon_projection = polygon.projection()
# Print the result.
display('polygon.projection(...) =', polygon_projection)
# 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 `projection()` method is applied to a `Polygon` object to retrieve its projection. The method takes a `Geometry` object as input and returns a `Projection`. In the JavaScript example, a polygon is defined, the method is used, and the projection is printed. The Python example mirrors this, defining a polygon, applying the method, displaying the projection, and visualizing the polygon on a map using `geemap`. The examples in both langages return the projection of the given geometry object.\n"]]