تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تنشئ هذه الدالة ee.Geometry تصف LinearRing. إذا لم تكن النقطة الأخيرة مساوية للنقطة الأولى، ستتم إضافة نسخة مكررة من النقطة الأولى في النهاية.
لتسهيل الأمر، يمكن استخدام الوسيط المتغيّر عندما تكون جميع الوسيطات أرقامًا. يتيح ذلك إنشاء LinearRings جيوديسية بتنسيق EPSG:4326 مع عدد زوجي من الوسيطات، مثل ee.Geometry.LinearRing(aLng, aLat, bLng, bLat, ..., aLng, aLat).
تمثّل هذه السمة قائمة بالنقاط في الحلقة. يمكن أن تكون قائمة بالإحداثيات بتنسيق GeoJSON LinearRing، أو قائمة تتضمّن ثلاثة عناصر ee.Geometry على الأقل تصف نقطة، أو قائمة تتضمّن ستة أرقام على الأقل تحدّد إحداثيات [x,y] لثلاث نقاط على الأقل.
proj
التوقّعات، اختيارية
إسقاط هذا الشكل الهندسي إذا لم يتم تحديد نظام الإسقاط، سيكون نظام الإسقاط التلقائي هو نظام إسقاط ee.Geometry للإدخال، أو EPSG:4326 إذا لم تكن هناك مدخلات ee.Geometry.
geodesic
قيمة منطقية، اختيارية
إذا كانت القيمة false، تكون الحواف مستقيمة في العرض. إذا كانت القيمة هي true، تكون الحواف منحنية لتتّبع أقصر مسار على سطح الأرض. القيمة التلقائية هي الحالة الجيوديسية للمدخلات، أو "صحيح" إذا كانت المدخلات أرقامًا.
maxError
ErrorMargin، اختياري
الحدّ الأقصى للخطأ عندما يجب إعادة عرض الشكل الهندسي للإدخال إلى عرض النتائج المطلوب بشكل صريح أو حالة خطوط الطول والعرض
تاريخ التعديل الأخير: 2025-07-25 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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-25 (حسب التوقيت العالمي المتفَّق عليه)"],[[["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"]]