با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
یک ee.Geometry که یک حلقه خطی را توصیف می کند، می سازد. اگر آخرین امتیاز با نقطه اول برابر نباشد، یک کپی از نقطه اول در پایان اضافه می شود.
برای راحتی کار، زمانی که همه آرگومان ها اعداد هستند، می توان از varargs استفاده کرد. این اجازه می دهد تا EPSG:4326 LinearRings geodesic را با تعداد زوج آرگومان ایجاد کنید، به عنوان مثال ee.Geometry.LinearRing (aLng، aLat، bLng، bLat، ...، aLng، aLat).
لیستی از نقاط در رینگ. ممکن است فهرستی از مختصات در قالب GeoJSON 'LinearRing'، فهرستی از حداقل سه شی ee.Geometry که یک نقطه را توصیف می کند، یا فهرستی از حداقل شش عدد که مختصات [x,y] حداقل سه نقطه را تعریف می کند.
proj
طرح ریزی، اختیاری
طرح ریزی این هندسه. اگر مشخص نشده باشد، پیشفرض نمایش ورودی ee.Geometry یا EPSG:4326 اگر ورودیهای ee.Geometry وجود ندارد، است.
geodesic
بولی، اختیاری
اگر نادرست باشد، لبه ها در برآمدگی مستقیم هستند. اگر درست باشد، لبهها برای دنبال کردن کوتاهترین مسیر روی سطح زمین خمیده میشوند. حالت پیشفرض، وضعیت ژئودزیکی ورودیها است، یا اگر ورودیها عدد باشند، درست است.
maxError
ErrorMargin، اختیاری است
حداکثر خطا در زمانی که هندسه ورودی باید به یک پیشبینی نتیجه درخواستی صریحاً یا حالت ژئودزیک بازتاب داده شود.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","easyToUnderstand","thumb-up"],["مشکلم را برطرف کرد","solvedMyProblem","thumb-up"],["غیره","otherUp","thumb-up"]],[["اطلاعاتی که نیاز دارم وجود ندارد","missingTheInformationINeed","thumb-down"],["بیشازحد پیچیده/ مراحل بسیار زیاد","tooComplicatedTooManySteps","thumb-down"],["قدیمی","outOfDate","thumb-down"],["مشکل ترجمه","translationIssue","thumb-down"],["مشکل کد / نمونهها","samplesCodeIssue","thumb-down"],["غیره","otherDown","thumb-down"]],["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["Defines a closed ring on the Earth's surface, ensuring the last point connects back to the first."],["Allows simplified creation of geodesic (EPSG:4326) rings using a series of longitude and latitude values."],["Accepts various input formats for ring coordinates, including GeoJSON, ee.Geometry objects, or raw numerical coordinates."],["Projection and geodesic behavior can be customized; defaults to input projection or EPSG:4326 with geodesic edges if unspecified."],["Includes an optional parameter to control error during reprojection for precise geometry handling."]]],["This code constructs a `LinearRing` geometry. It takes a list of coordinates (`coords`), an optional projection (`proj`), an optional geodesic setting, and an optional maximum error (`maxError`). If the last point in `coords` isn't the same as the first, it adds a duplicate. Varargs can be used with numbers, creating geodesic EPSG:4326 LinearRings. `coords` can be a list of coordinates, point geometries, or numbers. `geodesic` determines if edges are straight or curved.\n"]]