AI-generated Key Takeaways
-
Defines a pixel grid on Earth's surface using a map projection, potentially with a standard code (
crsCode
) or a custom projection (crsWkt
). -
Includes details about the pixel grid's dimensions (
dimensions
), an optional affine transformation (affineTransform
), and the coordinate reference system. -
The coordinate reference system can be expressed either as a standard code like "EPSG:4326" or using the Well-Known Text (WKT) format.
Defines 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.
JSON representation |
---|
{ "dimensions": { object ( |
Fields | |
---|---|
dimensions |
The dimensions of the pixel grid. |
affineTransform |
The affine transform. |
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: |
|
crsCode |
A standard coordinate reference system code (e.g. "EPSG:4326"). |
crsWkt |
A coordinate reference system in WKT format ("Well-Known Text"). |