ee.Geometry.LinearRing
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
สร้าง ee.Geometry ที่อธิบาย LinearRing หากจุดสุดท้ายไม่เท่ากับจุดแรก ระบบจะเพิ่มจุดแรกซ้ำที่จุดสุดท้าย
เพื่อความสะดวก คุณอาจใช้ varargs เมื่ออาร์กิวเมนต์ทั้งหมดเป็นตัวเลข ซึ่งช่วยให้สร้าง LinearRing EPSG:4326 แบบทรงลูกโลกได้เมื่อมีอาร์กิวเมนต์เป็นจำนวนคู่ เช่น ee.Geometry.LinearRing(aLng, aLat, bLng, bLat, ..., aLng, aLat)
การใช้งาน | การคืนสินค้า |
---|
ee.Geometry.LinearRing(coords, proj, geodesic, maxError) | Geometry.LinearRing |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
coords | List<Geometry>|List<List<Number>>|List<Number> | รายการจุดในวงแหวน อาจเป็นรายการพิกัดในรูปแบบ GeoJSON
'LinearRing', รายการออบเจ็กต์ ee.Geometry อย่างน้อย 3 รายการที่อธิบายจุด หรือรายการตัวเลขอย่างน้อย 6 รายการที่กำหนดพิกัด [x,y] ของจุดอย่างน้อย 3 จุด |
proj | การคาดการณ์ (ไม่บังคับ) | การฉายเรขาคณิตนี้ หากไม่ระบุ ระบบจะใช้การฉายภาพของ ee.Geometry อินพุต หรือ EPSG:4326 หากไม่มีอินพุต ee.Geometry |
geodesic | บูลีน ไม่บังคับ | หากเป็นเท็จ ขอบจะตรงในการฉายภาพ หากเป็นจริง เส้นขอบจะโค้งตามเส้นทางที่สั้นที่สุดบนพื้นผิวโลก ค่าเริ่มต้นคือสถานะทางภูมิศาสตร์ของอินพุต หรือเป็นจริงหากอินพุตเป็นตัวเลข |
maxError | ErrorMargin (ไม่บังคับ) | ข้อผิดพลาดสูงสุดเมื่อต้องฉายเรขาคณิตอินพุตใหม่ไปยังการฉายผลลัพธ์หรือสถานะทางภูมิศาสตร์ที่ขออย่างชัดเจน |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-25 UTC
[null,null,["อัปเดตล่าสุด 2025-07-25 UTC"],[[["\u003cp\u003eDefines a closed ring on the Earth's surface, ensuring the last point connects back to the first.\u003c/p\u003e\n"],["\u003cp\u003eAllows simplified creation of geodesic (EPSG:4326) rings using a series of longitude and latitude values.\u003c/p\u003e\n"],["\u003cp\u003eAccepts various input formats for ring coordinates, including GeoJSON, ee.Geometry objects, or raw numerical coordinates.\u003c/p\u003e\n"],["\u003cp\u003eProjection and geodesic behavior can be customized; defaults to input projection or EPSG:4326 with geodesic edges if unspecified.\u003c/p\u003e\n"],["\u003cp\u003eIncludes an optional parameter to control error during reprojection for precise geometry handling.\u003c/p\u003e\n"]]],["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"],null,["# ee.Geometry.LinearRing\n\n\u003cbr /\u003e\n\nConstructs an ee.Geometry describing a LinearRing. If the last point is not equal to the first, a duplicate of the first point will be added at the end.\n\n\u003cbr /\u003e\n\nFor convenience, varargs may be used when all arguments are numbers. This allows creating geodesic EPSG:4326 LinearRings given an even number of arguments, e.g. ee.Geometry.LinearRing(aLng, aLat, bLng, bLat, ..., aLng, aLat).\n\n| Usage | Returns |\n|--------------------------------------------------------------------------|---------------------|\n| `ee.Geometry.LinearRing(coords, `*proj* `, `*geodesic* `, `*maxError*`)` | Geometry.LinearRing |\n\n| Argument | Type | Details |\n|------------|----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `coords` | List\\\u003cGeometry\\\u003e\\|List\\\u003cList\\\u003cNumber\\\u003e\\\u003e\\|List\\\u003cNumber\\\u003e | A list of points in the ring. May be a list of coordinates in the GeoJSON 'LinearRing' format, a list of at least three ee.Geometry objects describing a point, or a list of at least six numbers defining the \\[x,y\\] coordinates of at least three points. |\n| `proj` | Projection, optional | The projection of this geometry. If unspecified, the default is the projection of the input ee.Geometry, or EPSG:4326 if there are no ee.Geometry inputs. |\n| `geodesic` | Boolean, optional | If false, edges are straight in the projection. If true, edges are curved to follow the shortest path on the surface of the Earth. The default is the geodesic state of the inputs, or true if the inputs are numbers. |\n| `maxError` | ErrorMargin, optional | Max error when input geometry must be reprojected to an explicitly requested result projection or geodesic state. |"]]