お知らせ:
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 として扱われます。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は 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. |"]]