Anuncio: Todos los proyectos no comerciales registrados para usar Earth Engine antes del
15 de abril de 2025 deben
verificar su elegibilidad no comercial para mantener el acceso a Earth Engine.
PixelGrid
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Define una cuadrícula de píxeles en la superficie de la Tierra a través de una proyección de mapa. Si la proyección tiene un código estándar, se establecerá crsCode
(no estará vacío). Si la proyección no es estándar, se establecerá crsWkt
. Si la transformación posterior a la proyección es afín, se establecerá affineTransform
.
Representación 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 .
} |
Campos |
dimensions |
object (GridDimensions )
Son las dimensiones de la cuadrícula de píxeles.
|
affineTransform |
object (AffineTransform )
La transformación afín.
|
Campo de unión crs . Es el sistema de referencia de coordenadas de la cuadrícula de píxeles, especificado como un código estándar siempre que sea posible y, de lo contrario, en formato WKT. Las direcciones (crs ) solo pueden ser una de las siguientes opciones: |
crsCode |
string
Un código de sistema de referencia de coordenadas estándar (p.ej., "EPSG:4326").
|
crsWkt |
string
Un sistema de referencia de coordenadas en formato WKT ("texto conocido").
|
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-25 (UTC)
[null,null,["Última actualización: 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\"). |"]]