Download Rasters (Data Management)

Summary

Downloads the source files from an image service or mosaic dataset.

Usage

  • The raster datasets you download are the source files, unless you convert them to another format. Format conversion can be forced, or will only occur when required. Downloaded files are converted if clipping occurs or the source file cannot be downloaded as a raster.

  • You can download selected rasters or LAS files from an image service or a mosaic dataset to a specified folder in the original file format.

  • If a clipping extent is specified, the rasters that intersect the clip extent will be clipped and then converted to a specified format.

  • You can choose to download the data in the same folder structure as the source.

Parameters

LabelExplanationData Type
Input

The image service or mosaic dataset to download.

Image Service; Mosaic Layer; Raster Layer; String
Output Folder

The destination for the image service or mosaic dataset.

Folder
Query Definition
(Optional)

An SQL expression to limit the download to raster datasets that satisfy the expression.

SQL Expression
Selection Feature
(Optional)

Limits the download to an extent of a feature class or bounding box. All raster datasets that intersect the extent will be downloaded.

  • Default—The extent will be based on the maximum extent of all participating inputs. This is the default.
  • Current Display Extent—The extent is equal to the data frame or visible display. The option is not available when there is no active map.
  • As Specified Below—The extent will be based on the minimum and maximum extent values specified.
  • Browse—The extent will be based on an existing dataset.
Extent
Clipping Using Selection Feature
(Optional)

Specify if you want to clip the downloaded images based on the geometry of a feature. Any raster that intersects the clipping geometry will be clipped and then downloaded. This is useful when your area of interest is not a rectangle. When downloaded images are clipped, you need to specify an output format for the clipped images.

  • Unchecked—The files will be clipped based on the minimum bounding rectangle that has been specified. This is the default.
  • Checked—The files will be clipped based on the geometry of the Selection Feature.
Boolean
Convert Rasters
(Optional)

Choose whether to always convert your rasters to the specified format, or to only convert when it is necessary.

  • Unchecked—Do not convert the raster datasets to a new format.
  • Checked—Convert the downloaded raster datasets into another format. If you used Selection Feature to limit the extent, then you need to specify a format in the Output Format parameter.
Boolean
Output Format
(Optional)

Choose a output format for the downloaded raster datasets.

  • TiffTagged Image File Format. This is the default.
  • BilEsri band interleaved by line.
  • BsqEsri band sequential.
  • BipEsri band interleaved by pixel.
  • BmpBitmap.
  • ENVI DatENVI DAT file.
  • Imagine imageERDAS IMAGINE.
  • JpegJoint Photographics Experts Group. If chosen, you can also specify the compression quality. The valid compression quality value ranges are from 0 to 100.
  • GifGraphic interchange format.
  • Jp2JPEG 2000. If chosen, you can also specify the compression quality. The valid compression quality value ranges are from 0 to 100.
  • PngPortable Network Graphics.
String
Compression Method
(Optional)

Choose the compression method to use with the specified Output Format.

  • NoneNo compression will occur. This is the default.
  • JpegLossy compression that uses the public JPEG compression algorithm. If you choose JPEG, you can also specify the compression quality. The valid compression quality value ranges are from 0 to 100. This compression can be used for JPEG files and TIFF files.
  • LzwLossless compression that preserves all raster cell values.
  • PackbitsPackBits compression for TIFF files.
  • RleRun-length encoding for IMG files.
  • Ccitt Group 3Lossless compression for 1-bit data.
  • Ccitt Group 4Lossless compression for 1-bit data.
  • Ccitt 1DLossless compression for 1-bit data.
String
Compression Quality
(Optional)

Set a value from 1 - 100. Higher values will have better image quality, but less compression.

Long
Maintain Folder Structure
(Optional)

Determines the folder structure of the downloaded rasters.

  • Checked—replicates the hierarchical folder structure used to store the source raster datasets.
  • Unchecked—raster datasets will be downloaded into the output folder as a flat folder structure

Boolean

Derived Output

LabelExplanationData Type
Updated Folder

The updated output folder.

Folder

arcpy.management.DownloadRasters(in_image_service, out_folder, {where_clause}, {selection_feature}, {clipping}, {convert_rasters}, {format}, {compression_method}, {compression_quality}, {MAINTAIN_FOLDER})
NameExplanationData Type
in_image_service

The image service or mosaic dataset to download.

Image Service; Mosaic Layer; Raster Layer; String
out_folder

The destination for the image service or mosaic dataset.

Folder
where_clause
(Optional)

An SQL expression to limit the download to raster datasets that satisfy the expression.

SQL Expression
selection_feature
(Optional)

Limits the download to an extent of a feature class or bounding box. All raster datasets that intersect the extent will be downloaded.

  • MAXOF—The maximum extent of all inputs will be used.
  • MINOF—The minimum area common to all inputs will be used.
  • DISPLAY—The extent is equal to the visible display.
  • Layer name—The extent of the specified layer will be used.
  • Extent object—The extent of the specified object will be used.
  • Space delimited string of coordinates—The extent of the specified string will be used. Coordinates are expressed in the order of x-min, y-min, x-max, y-max.
Extent
clipping
(Optional)

Specify if you want to clip the downloaded images based on the geometry of a feature. Any raster that intersects the clipping geometry will be clipped and then downloaded. This is useful when your area of interest is not a rectangle. When downloaded images are clipped, you need to specify an output format for the clipped images.

  • NO_CLIPPINGThe files will be clipped based on the minimum bounding rectangle that has been specified. This is the default.
  • CLIPPINGThe files will be clipped based on the geometry of the selection_feature.
Boolean
convert_rasters
(Optional)

Choose whether to always convert your rasters to the specified format, or to only convert when it is necessary.

  • CONVERT_AS_REQUIREDDo not convert the raster datasets to a new format.
  • ALWAYS_CONVERTConvert the downloaded raster datasets into another format. If you used selection_feature to limit the extent, then you need to specify a format in the format parameter.
Boolean
format
(Optional)

Choose a output format for the downloaded raster datasets.

  • TIFFTagged Image File Format. This is the default.
  • BILEsri band interleaved by line.
  • BSQEsri band sequential.
  • BIPEsri band interleaved by pixel.
  • BMPBitmap.
  • ENVIENVI DAT file.
  • IMAGINE ImageERDAS IMAGINE.
  • JPEGJoint Photographics Experts Group. If chosen, you can also specify the compression quality. The valid compression quality value ranges are from 0 to 100.
  • GIFGraphic interchange format.
  • JP2JPEG 2000. If chosen, you can also specify the compression quality. The valid compression quality value ranges are from 0 to 100.
  • PNGPortable Network Graphics.
String
compression_method
(Optional)

Choose the compression method to use with the specified Output Format.

  • NONENo compression will occur. This is the default.
  • JPEGLossy compression that uses the public JPEG compression algorithm. If you choose JPEG, you can also specify the compression quality. The valid compression quality value ranges are from 0 to 100. This compression can be used for JPEG files and TIFF files.
  • LZWLossless compression that preserves all raster cell values.
  • PACKBITSPackBits compression for TIFF files.
  • RLERun-length encoding for IMG files.
  • CCITT_GROUP3Lossless compression for 1-bit data.
  • CCITT_GROUP4Lossless compression for 1-bit data.
  • CCITT_1DLossless compression for 1-bit data.
String
compression_quality
(Optional)

Set a value from 1 - 100. Higher values will have better image quality, but less compression.

Long
MAINTAIN_FOLDER
(Optional)

Determines the folder structure of the downloaded rasters.

  • MAINTAIN_FOLDERReplicate the hierarchical folder structure used to store the source raster datasets.
  • NO_MAINTAIN_FOLDERRaster datasets will be downloaded into the out_folder as a flat folder structure.
Boolean

Derived Output

NameExplanationData Type
derived_out_folder

The updated output folder.

Folder

Code sample

DownloadRasters example 1 (Python window)

This is a Python sample for the DownloadRasters tool.

import arcpy
DownloadRasters_management(
     "http://srv/arcgis/services/Ext/MDpan/ImageServer?", "c:/dload/", 
     "AcquisitionDate = date '1999-08-18'", "", 
     "c:/workspace/clippingfeat.shp", "TIFF", "JPEG", "75", 
     "MAINTAIN_FOLDER", "CONVERT_AS_REQUIRED")
DownloadRasters example 2 (stand-alone script)

This is a Python script sample for the DownloadRasters tool.

##Download Rasters from image services URL
##Maintain the original sensor data folder structure

import arcpy
arcpy.env.workspace = r"\\myworkstation\Workspace\downloadras"
    
arcpy.DownloadRasters_management(
     "http://serv1/arcgis/services/Ext/MD_LS_pan/ImageServer?",
     "downloadFolder", "AcquisitionDate = date '1999-08-18 00:00:00'",
     "", "", "", "", "", "MAINTAIN_FOLDER")

Environments

Licensing information

  • Basic: Yes
  • Standard: Yes
  • Advanced: Yes

Related topics