お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
VisualizationOptions
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
リクエストされたデータの 8 ビット RGB ビジュアリゼーションを生成する方法について説明します。
JSON 表現 |
{
"ranges": [
{
object (DoubleRange )
}
],
"paletteColors": [
string
],
"gamma": number,
"opacity": number
} |
フィールド |
ranges[] |
object (DoubleRange )
指定されている場合、可視化するデータ値の範囲を指定します。この範囲の値は、結果の画像で 0 ~ 255(黒から白)にマッピングされ、この範囲外の値は固定されます。可視化するバンドごとに 1 つの範囲を指定することも、すべてのバンドに適用する 1 つの範囲を指定することもできます。
|
paletteColors[] |
string
指定されている場合、カラーパレットとして適用する CSS スタイルの RGB カラー識別子のシーケンスを指定します。単一のデータバンドを可視化する場合にのみ使用できます。
|
gamma |
number
指定されている場合、画像に適用する全体的なガンマ補正係数を指定します。
|
opacity |
number
指定されている場合、画像に適用する全体的な不透明度係数を 0.0 ~ 1.0 の範囲で指定します。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[null,null,["最終更新日 2025-07-25 UTC。"],[[["\u003cp\u003eVisualizes data as an 8-bit RGB image by mapping data values to colors.\u003c/p\u003e\n"],["\u003cp\u003eAllows customization through ranges, color palettes, gamma correction, and opacity.\u003c/p\u003e\n"],["\u003cp\u003eUses JSON representation for specifying visualization parameters such as data ranges, color palettes, gamma, and opacity.\u003c/p\u003e\n"],["\u003cp\u003eProvides flexibility to define data ranges for each band individually or apply a single range across all bands.\u003c/p\u003e\n"],["\u003cp\u003eEnables visualization of a single data band with a custom color palette or multiple bands with black-to-white mapping based on the provided ranges.\u003c/p\u003e\n"]]],[],null,["# VisualizationOptions\n\nDescribes how to produce an 8-bit RGB visualization of the requested data.\n\n| JSON representation |\n|---------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"ranges\": [ { object (/earth-engine/reference/rest/v1beta/DoubleRange) } ], \"paletteColors\": [ string ], \"gamma\": number, \"opacity\": number } ``` |\n\n| Fields ||\n|-------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `ranges[]` | `object (`[DoubleRange](/earth-engine/reference/rest/v1beta/DoubleRange)`)` If present, specifies the range of data values to visualize. This range of values will be mapped to 0-255 (black to white) in the resulting image, and values outside this range will be clamped. May specify as one range for each band being visualized or else a single range to be applied to all bands. |\n| `paletteColors[]` | `string` If present, specifies sequence of CSS-style RGB color identifiers to apply as a color palette. Only allowed when visualizing a single data band. |\n| `gamma` | `number` If present, specifies an overall gamma correction factor to apply to the image. |\n| `opacity` | `number` If present, specifies an overall opacity factor to apply to the image, in the range 0.0 to 1.0. |"]]