Creates a batch task to export an Image as a raster to Google Cloud Storage. Tasks can be started from the Tasks tab.
"crsTransform", "scale", and "dimensions" are mutually exclusive.
Usage | Returns |
---|---|
Export.image.toCloudStorage(image, description, bucket, fileNamePrefix, dimensions, region, scale, crs, crsTransform, maxPixels, shardSize, fileDimensions, skipEmptyTiles, fileFormat, formatOptions) |
Argument | Type | Details |
---|---|---|
image | Image | The image to export. |
description | String, optional | A human-readable name of the task. Defaults to "myExportImageTask". |
bucket | String, optional | The Cloud Storage destination bucket. |
fileNamePrefix | String, optional | The string used as the output's prefix. A trailing "/" indicates a path. Defaults to the task's description. |
dimensions | Number|String, optional | The dimensions to use for the exported image. Takes either a single positive integer as the maximum dimension or "WIDTHxHEIGHT" where WIDTH and HEIGHT are each positive integers. |
region | Geometry.LinearRing|Geometry.Polygon|String, optional | A LinearRing, Polygon, or coordinates representing region to export. These may be specified as the Geometry objects or coordinates serialized as a string. If not specified, the region defaults to the viewport at the time of invocation. |
scale | Number, optional | Resolution in meters per pixel. Defaults to 1000. |
crs | String, optional | CRS to use for the exported image. |
crsTransform | List, optional | Affine transform to use for the exported image. Requires "crs" to be defined. |
maxPixels | Number, optional | Restrict the number of pixels in the export. By default, you will see an error if the export exceeds 1e8 pixels. Setting this value explicitly allows one to raise or lower this limit. |
shardSize | Number, optional | Size in pixels of the shards in which this image will be computed. Defaults to 256. |
fileDimensions | List, optional | The dimensions in pixels of each image file, if the image is too large to fit in a single file. May specify a single number to indicate a square shape, or an array of two dimensions to indicate (width,height). Note that the image will still be clipped to the overall image dimensions. Must be a multiple of shardSize. |
skipEmptyTiles | Boolean, optional | If true, skip writing empty (i.e. fully-masked) image tiles. Defaults to false. |
fileFormat | String, optional | The string file format to which the image is exported. Currently only 'GeoTIFF' and 'TFRecord' are supported, defaults to 'GeoTIFF'. |
formatOptions | ImageExportFormatConfig, optional | A dictionary of string keys to format specific options. |
Examples
JavaScript
// Your example goes here!
Python
# Your example goes here!