Announcement: All noncommercial projects registered to use Earth Engine beforeApril 15, 2025mustverify noncommercial eligibilityto maintain access. If you have not verified by September 26, 2025, your access may be on hold.
PixelGridStay organized with collectionsSave and categorize content based on your preferences.
AI-generated Key Takeaways
A pixel grid on the Earth's surface is defined by a map projection.
Standard projections usecrsCode, while non-standard ones usecrsWkt.
An affine post-projection transformation is indicated by theaffineTransformfield.
Defines a pixel grid on the surface of the Earth, via a map projection. If the projection has a standard code, thencrsCodewill be set (non-empty). If the projection is non-standard, thencrsWktwill be set. If the post-projection transformation is affine, thenaffineTransformwill be set.
JSON representation
{"dimensions":{object (GridDimensions)},"affineTransform":{object (AffineTransform)},// Union fieldcrscan be only one of the following:"crsCode":string,"crsWkt":string// End of list of possible types for union fieldcrs.}
Union fieldcrs. The coordinate reference system of the pixel grid, specified as a standard code where possible, and in WKT format otherwise.crscan be only one of the following:
crsCode
string
A standard coordinate reference system code (e.g. "EPSG:4326").
crsWkt
string
A coordinate reference system in WKT format ("Well-Known Text").
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-06 UTC."],[],["The content describes a pixel grid on Earth's surface defined by a map projection. Key data includes `dimensions` and an optional `affineTransform` for post-projection affine transformations. The coordinate reference system (`crs`) is defined via either a standard `crsCode` (e.g., \"EPSG:4326\") or, if non-standard, a `crsWkt` (Well-Known Text) string. The `crs` fields are mutually exclusive, with only one being populated.\n"]]