공지사항:
2025년 4월 15일 전에 Earth Engine 사용을 위해 등록된 모든 비상업용 프로젝트는 Earth Engine 액세스를 유지하기 위해
비상업용 자격 요건을 인증해야 합니다.
PixelGrid
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
지도 투영을 통해 지구 표면에 픽셀 그리드를 정의합니다. 투영에 표준 코드가 있는 경우 crsCode
가 설정됩니다 (비어 있지 않음). 프로젝션이 비표준인 경우 crsWkt
이 설정됩니다. 투사 후 변환이 아핀 변환인 경우 affineTransform
가 설정됩니다.
JSON 표현 |
{
"dimensions": {
object (GridDimensions )
},
"affineTransform": {
object (AffineTransform )
},
// Union field crs can be only one of the following:
"crsCode": string,
"crsWkt": string
// End of list of possible types for union field crs .
} |
필드 |
dimensions |
object (GridDimensions )
픽셀 그리드의 크기입니다.
|
affineTransform |
object (AffineTransform )
아핀 변환
|
통합 필드 crs . 픽셀 그리드의 좌표 참조 시스템으로, 가능하면 표준 코드로 지정되고 그렇지 않으면 WKT 형식으로 지정됩니다. crs 은 다음 중 하나여야 합니다. |
crsCode |
string
표준 좌표 참조 시스템 코드 (예: 'EPSG:4326')
|
crsWkt |
string
WKT 형식 ('Well-Known Text')의 좌표 참조 시스템입니다.
|
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[[["\u003cp\u003eDefines a pixel grid on Earth's surface using a map projection, potentially with a standard code (\u003ccode\u003ecrsCode\u003c/code\u003e) or a custom projection (\u003ccode\u003ecrsWkt\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003eIncludes details about the pixel grid's dimensions (\u003ccode\u003edimensions\u003c/code\u003e), an optional affine transformation (\u003ccode\u003eaffineTransform\u003c/code\u003e), and the coordinate reference system.\u003c/p\u003e\n"],["\u003cp\u003eThe coordinate reference system can be expressed either as a standard code like "EPSG:4326" or using the Well-Known Text (WKT) format.\u003c/p\u003e\n"]]],[],null,["# PixelGrid\n\nDefines a pixel grid on the surface of the Earth, via a map projection. If the projection has a standard code, then `crsCode` will be set (non-empty). If the projection is non-standard, then `crsWkt` will be set. If the post-projection transformation is affine, then `affineTransform` will be set.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"dimensions\": { object (/earth-engine/reference/rest/v1alpha/GridDimensions) }, \"affineTransform\": { object (/earth-engine/reference/rest/v1alpha/AffineTransform) }, // Union field `crs` can be only one of the following: \"crsCode\": string, \"crsWkt\": string // End of list of possible types for union field `crs`. } ``` |\n\n| Fields ||\n|-------------------|----------------------------------------------------------------------------------------------------------------------|\n| `dimensions` | `object (`[GridDimensions](/earth-engine/reference/rest/v1alpha/GridDimensions)`)` The dimensions of the pixel grid. |\n| `affineTransform` | `object (`[AffineTransform](/earth-engine/reference/rest/v1alpha/AffineTransform)`)` The affine transform. |\n| Union field `crs`. The coordinate reference system of the pixel grid, specified as a standard code where possible, and in WKT format otherwise. `crs` can be only one of the following: ||\n| `crsCode` | `string` A standard coordinate reference system code (e.g. \"EPSG:4326\"). |\n| `crsWkt` | `string` A coordinate reference system in WKT format (\"Well-Known Text\"). |"]]