Stay organized with collections
Save and categorize content based on your preferences.
Returns a Projection with the given base coordinate system and the given transform between projected coordinates and the base. If no transform is specified, the identity transform is assumed.
Usage
Returns
ee.Projection(crs, transform, transformWkt)
Projection
Argument
Type
Details
crs
Object
The base coordinate reference system of this Projection, given as a well-known authority code (e.g., 'EPSG:4326') or a WKT string.
transform
List, default: null
The transform between projected coordinates and the base coordinate system, specified as a 2x3 affine transform matrix in row-major order: [xScale, xShearing, xTranslation, yShearing, yScale, yTranslation]. May not specify both this and 'transformWkt'.
transformWkt
String, default: null
The transform between projected coordinates and the base coordinate system, specified as a WKT string. May not specify both this and 'transform'.
[[["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 2024-07-13 UTC."],[[["`ee.Projection` returns a Projection object with a defined base coordinate system and an optional transform."],["The base coordinate system (`crs`) can be specified using an authority code (e.g., 'EPSG:4326') or a WKT string."],["The transform between projected and base coordinates can be defined by a 2x3 affine transform matrix (`transform`) or a WKT string (`transformWkt`)."],["If no transform is provided, the identity transform is used, implying a direct mapping between projected and base coordinates."]]],[]]