공지사항:
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 (검은색~흰색)로 매핑되며 이 범위를 벗어나는 값은 제한됩니다. 시각화되는 각 범위에 하나의 범위로 지정하거나 모든 범위에 적용할 단일 범위로 지정할 수 있습니다.
|
paletteColors[] |
string
있는 경우 색상 팔레트로 적용할 CSS 스타일 RGB 색상 식별자의 시퀀스를 지정합니다. 단일 데이터 범위를 시각화할 때만 허용됩니다.
|
gamma |
number
이 속성이 있는 경우 이미지에 적용할 전체 감마 보정 계수를 지정합니다.
|
opacity |
number
있는 경우 이미지에 적용할 전체 불투명도 계수를 0.0~1.0 범위로 지정합니다.
|
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 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 specifying data ranges, color palettes (for single-band data), gamma correction, and opacity.\u003c/p\u003e\n"],["\u003cp\u003eData ranges determine the mapping of values to a black-to-white scale, with values outside the range clamped.\u003c/p\u003e\n"],["\u003cp\u003eWhen visualizing a single band, a color palette can be used to assign specific colors to data values.\u003c/p\u003e\n"],["\u003cp\u003eGamma correction and opacity factors can further adjust the visual appearance of the image.\u003c/p\u003e\n"]]],["The provided information outlines parameters for creating an 8-bit RGB visualization. Key actions include specifying data value ranges via `ranges`, which map to a 0-255 scale. A color palette (`paletteColors`) can be set for single-band visualizations. `Gamma` adjusts overall image correction, and `opacity` controls transparency, with values from 0.0 to 1.0. These parameters allow control over how data is visually represented.\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/v1alpha/DoubleRange) } ], \"paletteColors\": [ string ], \"gamma\": number, \"opacity\": number } ``` |\n\n| Fields ||\n|-------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `ranges[]` | `object (`[DoubleRange](/earth-engine/reference/rest/v1alpha/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. |"]]