LinearRing을 설명하는 ee.Geometry를 생성합니다. 마지막 점이 첫 번째 점과 같지 않으면 첫 번째 점의 중복이 끝에 추가됩니다.
편의를 위해 모든 인수가 숫자인 경우 varargs를 사용할 수 있습니다. 이를 통해 짝수 개의 인수가 주어지면 최단 거리 EPSG:4326 LinearRings를 만들 수 있습니다(예: ee.Geometry.LinearRing(aLng, aLat, bLng, bLat, ..., aLng, aLat)).
[[["이해하기 쉬움","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-08(UTC)"],[[["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"]]