공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
ee.Algorithms.GeometryConstructors.BBox
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
모서리가 위도 및 경도 선인 직사각형을 생성합니다.
결과는 평면 WGS84 직사각형입니다.
(동쪽 - 서쪽) ≥ 360이면 경도 범위가 -180~+180으로 정규화됩니다. 그렇지 않으면 원의 점을 지정하는 것으로 처리됩니다 (예: 동쪽이 서쪽보다 수치적으로 작을 수 있음).
사용 | 반환 값 |
---|
ee.Algorithms.GeometryConstructors.BBox(west, south, east, north) | 도형 |
인수 | 유형 | 세부정보 |
---|
west | 부동 소수점 수 | 가장 서쪽에 있는 경도입니다. -180~180 범위에 있도록 조정됩니다. |
south | 부동 소수점 수 | 가장 남쪽에 있는 위도입니다. -90 (남극) 미만이면 -90으로 처리됩니다. |
east | 부동 소수점 수 | 가장 동쪽의 둘러싸인 경도입니다. |
north | 부동 소수점 수 | 가장 북쪽에 있는 위도입니다. +90 (북극)보다 큰 경우 +90으로 처리됩니다. |
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-26(UTC)
[null,null,["최종 업데이트: 2025-07-26(UTC)"],[[["\u003cp\u003eCreates a rectangular geometry using latitude and longitude coordinates, representing a planar area in WGS84.\u003c/p\u003e\n"],["\u003cp\u003eThe longitude range is normalized to -180 to +180 if it spans 360 degrees or more; otherwise, it's treated as a circular range.\u003c/p\u003e\n"],["\u003cp\u003eInput coordinates for the bounding box include west, south, east, and north, with adjustments made for values exceeding latitude limits.\u003c/p\u003e\n"]]],["This describes creating a WGS84 rectangle using latitude and longitude. The function `BBox` takes four float arguments: `west`, `south`, `east`, and `north`, representing the rectangle's boundaries. Longitude values are normalized to -180 to +180 if the difference between `east` and `west` is 360 or more; otherwise they define points on a circle. Latitude values are clamped between -90 and +90. The function returns a Geometry object.\n"],null,["# ee.Algorithms.GeometryConstructors.BBox\n\nConstructs a rectangle whose edges are lines of latitude and longitude.\n\n\u003cbr /\u003e\n\nThe result is a planar WGS84 rectangle.\n\nIf (east - west) ≥ 360 then the longitude range will be normalized to -180 to +180; otherwise they will be treated as designating points on a circle (e.g., east may be numerically less than west).\n\n| Usage | Returns |\n|---------------------------------------------------------------------|----------|\n| `ee.Algorithms.GeometryConstructors.BBox(west, south, east, north)` | Geometry |\n\n| Argument | Type | Details |\n|----------|-------|-----------------------------------------------------------------------------------------------|\n| `west` | Float | The westernmost enclosed longitude. Will be adjusted to lie in the range -180 to 180. |\n| `south` | Float | The southernmost enclosed latitude. If less than -90 (south pole), will be treated as -90. |\n| `east` | Float | The easternmost enclosed longitude. |\n| `north` | Float | The northernmost enclosed latitude. If greater than +90 (north pole), will be treated as +90. |"]]