お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
DoubleRange
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
JSON 表現 |
{
"min": number,
"max": number
} |
フィールド |
min |
number
データの最小値(範囲の下限)。
|
max |
number
データの最大値(範囲の上限)。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eDefines a range of numerical values using a minimum and maximum boundary.\u003c/p\u003e\n"],["\u003cp\u003eUses JSON format with "min" and "max" fields representing lower and upper bounds respectively.\u003c/p\u003e\n"],["\u003cp\u003eBoth "min" and "max" fields are of data type 'number'.\u003c/p\u003e\n"]]],["The content defines a data structure representing a range of double values. This structure is represented in JSON format as an object with two key-value pairs: \"min\" and \"max\". \"Min\" specifies the minimum numerical value within the range, while \"max\" defines the maximum numerical value. Both \"min\" and \"max\" hold number type data, defining the lower and upper limits of the described numerical range.\n"],null,["# DoubleRange\n\nA range of doubles.\n\n| JSON representation |\n|------------------------------------------|\n| ``` { \"min\": number, \"max\": number } ``` |\n\n| Fields ||\n|-------|---------------------------------------------------------------------|\n| `min` | `number` The minimum data value, i.e. the lower bound of the range. |\n| `max` | `number` The maximum data value, i.e. the upper bound of the range. |"]]