Annuncio: tutti i progetti non commerciali registrati per l'utilizzo di Earth Engine prima del
15 aprile 2025 devono
verificare l'idoneità non commerciale per mantenere l'accesso a Earth Engine.
PixelGrid
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Definisce una griglia di pixel sulla superficie della Terra tramite una proiezione della mappa. Se la proiezione ha un codice standard, crsCode
verrà impostato (non vuoto). Se la proiezione non è standard, verrà impostato crsWkt
. Se la trasformazione post-proiezione è affine, verrà impostato affineTransform
.
Rappresentazione 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 .
} |
Campi |
dimensions |
object (GridDimensions )
Le dimensioni della griglia di pixel.
|
affineTransform |
object (AffineTransform )
La trasformazione affine.
|
Campo unione crs . Il sistema di riferimento delle coordinate della griglia di pixel, specificato come codice standard, se possibile, e in formato WKT in caso contrario. crs può essere solo uno dei seguenti: |
crsCode |
string
Un codice del sistema di riferimento di coordinate standard (ad es. "EPSG:4326").
|
crsWkt |
string
Un sistema di riferimento di coordinate in formato WKT ("Well-Known Text").
|
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-25 UTC.
[null,null,["Ultimo aggiornamento 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 the dimensions of the pixel grid (\u003ccode\u003edimensions\u003c/code\u003e) and an affine transform (\u003ccode\u003eaffineTransform\u003c/code\u003e) if applicable.\u003c/p\u003e\n"],["\u003cp\u003eThe coordinate reference system (CRS) can be specified either as a standard code or in Well-Known Text (WKT) format.\u003c/p\u003e\n"]]],["The content describes a pixel grid on Earth's surface using a map projection. The `crsCode` field defines standard projections, while `crsWkt` handles non-standard ones. `affineTransform` specifies affine transformations. Key fields include `dimensions` for grid size and the union field `crs`, which can be either `crsCode` or `crsWkt`. The JSON format and the different field are shown to illustrate the representation of the data.\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/v1beta/GridDimensions) }, \"affineTransform\": { object (/earth-engine/reference/rest/v1beta/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/v1beta/GridDimensions)`)` The dimensions of the pixel grid. |\n| `affineTransform` | `object (`[AffineTransform](/earth-engine/reference/rest/v1beta/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\"). |"]]