Copy Raster (Data Management) |
|
Release 9.2
Last modified November 29, 2010 |
![]() ![]() ![]() Print all topics in : "Tools" |
Used to make a copy of a raster dataset, or to load raster datasets into a raster catalog.
Usage tips
You can save your output to BMP, GIF, GRID, IMG, JPEG, JPEG 2000, PNG, TIFF, or any geodatabase raster dataset.
When storing a raster dataset in a geodatabase, no file extension should be added to the name of the raster dataset. When storing the raster dataset in a file format, you need to specify the file extension: .bmp for BMP, .gif for GIF, .img for an ERDAS IMAGINE file, .jpg for JPEG, .jp2 for JPEG 2000, .png for PNG, .tif for TIFF, or no extension for GRID.
It can be used to load raster datasets into a raster catalog. If you want to load raster datasets into a raster catalog, you will need to type out the full pathname of the raster catalog as the output location or drag the raster catalog into the output text box.
When storing your raster dataset to a JPEG file, a JPEG 2000 file, or a geodatabase, you can specify a compression type and compression quality within the Raster Storage Settings in the Environment Settings dialog box.
The GIF format only supports single-band raster datasets.
The pixel type parameter determines what the bit depth of the output raster dataset will be. There will be no rescaling of the raster values when a different pixel type is chosen. If the pixel type is demoted (lowered), the raster values outside the valid range for that pixel depth will be truncated and lost. To learn about the bit depth capacity for supported export formats, see Technical specifications for raster dataset formats.
The following environments affect this tool: current workspace, scratch workspace, output extent, pyramid, raster statistics, compression, and tile size.
Command line syntax
An overview of the Command Line window
CopyRaster_management <in_raster> <out_rasterdataset> {config_keyword} {background_value} {nodata_value} {NONE | OneBitTo8Bit} {NONE | ColormapToRGB} {1_BIT | 2_BIT | 4_BIT | 8_BIT_UNSIGNED | 8_BIT_SIGNED | 16_BIT_UNSIGNED | 16_BIT_SIGNED | 32_BIT_UNSIGNED | 32_BIT_SIGNED | 32_BIT_FLOAT | 64_BIT}
Parameter | Explanation | Data Type |
<in_raster> |
The name and location of the raster dataset to be copied. |
Raster Layer |
<out_rasterdataset> |
The name and location of the raster dataset to be created. When storing a raster dataset in a geodatabase (personal geodatabase, file geodatabase, or ArcSDE geodatabase), no file extension should be added to the name of the raster dataset. When storing the raster dataset in a file format, you need to specify the file extension: .bmp for BMP, .gif for GIF, .img for an ERDAS IMAGINE file, .jpg for JPEG, .jp2 for JPEG 2000, .png for PNG, .tif for TIFF, or no extension for GRID. When storing your raster dataset to a JPEG file, a JPEG 2000 file, or a geodatabase, you can specify a compression type and compression quality. If using this command to load raster datasets into a raster catalog, you will need to type out the full path name of the raster catalog as the output location. |
Raster Dataset | Raster Catalog |
{config_keyword} |
Specifies the storage parameters (configuration) for a file geodatabase and an ArcSDE geodatabases. Personal geodatabases do not use configuration keywords. ArcSDE configuration keywords are set up by your database administrator. |
String |
{background_value} |
Use this option after rotating or projecting an image to remove the unwanted values created around the original raster data. The value specified will be distinguished from other valuable data in the raster dataset. For example, a value of zero along the raster dataset's borders will be distinguished from zero values within the raster dataset. The pixel value specified will be set to NoData in the output raster dataset. |
Double |
{nodata_value} |
All the pixels with the specified value will be set to NoData in the output raster dataset. |
Double |
{NONE | OneBitTo8Bit} |
Choose whether the input 1-bit raster dataset will be converted to an 8-bit raster dataset. In this conversion the value 1 in the input raster dataset will be changed to 255 in the output raster dataset. This is useful when importing a 1-bit raster dataset to ArcSDE. 1-bit raster datasets have 8-bit pyramid layers when stored in a file system, but in ArcSDE, 1-bit raster datasets can only have 1-bit pyramid layers, which makes the display unpleasant. By converting the data to 8-bit in ArcSDE, the pyramid layers are built as 8-bit instead of 1-bit, resulting in a properly appearing raster dataset in the display.
|
Boolean |
{NONE | ColormapToRGB} |
If the input raster dataset has a colormap, the output raster dataset can be converted to a three band output raster dataset. This is useful when mosaicking rasters with different colormaps.
|
Boolean |
{1_BIT | 2_BIT | 4_BIT | 8_BIT_UNSIGNED | 8_BIT_SIGNED | 16_BIT_UNSIGNED | 16_BIT_SIGNED | 32_BIT_UNSIGNED | 32_BIT_SIGNED | 32_BIT_FLOAT | 64_BIT} |
Determines the bit depth of the output raster dataset. If left unspecified, the output bit depth will be the same as the input. There will be no rescaling of the raster values when a different pixel type is chosen. If the pixel type is demoted (lowered), the raster values outside the valid range for that pixel depth will be truncated and lost.
|
String |
CopyRaster_management d:\images\OverviewImage d:\images\Copy_OverviewImage # 0 # NONE NONE
Scripting syntax
About getting started with writing geoprocessing scripts
CopyRaster_management (in_raster, out_rasterdataset, config_keyword, background_value, nodata_value, onebit_to_eightbit, colormap_to_RGB, pixel_type)
Parameter | Explanation | Data Type |
in_raster (Required) |
The name and location of the raster dataset to be copied. |
Raster Layer |
out_rasterdataset (Required) |
The name and location of the raster dataset to be created. When storing a raster dataset in a geodatabase (personal geodatabase, file geodatabase, or ArcSDE geodatabase), no file extension should be added to the name of the raster dataset. When storing the raster dataset in a file format, you need to specify the file extension: .bmp for BMP, .gif for GIF, .img for an ERDAS IMAGINE file, .jpg for JPEG, .jp2 for JPEG 2000, .png for PNG, .tif for TIFF, or no extension for GRID. When storing your raster dataset to a JPEG file, a JPEG 2000 file, or a geodatabase, you can specify a compression type and compression quality. If using this command to load raster datasets into a raster catalog, you will need to type out the full path name of the raster catalog as the output location. |
Raster Dataset | Raster Catalog |
config_keyword (Optional) |
Specifies the storage parameters (configuration) for a file geodatabase and an ArcSDE geodatabases. Personal geodatabases do not use configuration keywords. ArcSDE configuration keywords are set up by your database administrator. |
String |
background_value (Optional) |
Use this option after rotating or projecting an image to remove the unwanted values created around the original raster data. The value specified will be distinguished from other valuable data in the raster dataset. For example, a value of zero along the raster dataset's borders will be distinguished from zero values within the raster dataset. The pixel value specified will be set to NoData in the output raster dataset. |
Double |
nodata_value (Optional) |
All the pixels with the specified value will be set to NoData in the output raster dataset. |
Double |
onebit_to_eightbit (Optional) |
Choose whether the input 1-bit raster dataset will be converted to an 8-bit raster dataset. In this conversion the value 1 in the input raster dataset will be changed to 255 in the output raster dataset. This is useful when importing a 1-bit raster dataset to ArcSDE. 1-bit raster datasets have 8-bit pyramid layers when stored in a file system, but in ArcSDE, 1-bit raster datasets can only have 1-bit pyramid layers, which makes the display unpleasant. By converting the data to 8-bit in ArcSDE, the pyramid layers are built as 8-bit instead of 1-bit, resulting in a properly appearing raster dataset in the display.
|
Boolean |
colormap_to_RGB (Optional) |
If the input raster dataset has a colormap, the output raster dataset can be converted to a three band output raster dataset. This is useful when mosaicking rasters with different colormaps.
|
Boolean |
pixel_type (Optional) |
Determines the bit depth of the output raster dataset. If left unspecified, the output bit depth will be the same as the input. There will be no rescaling of the raster values when a different pixel type is chosen. If the pixel type is demoted (lowered), the raster values outside the valid range for that pixel depth will be truncated and lost.
|
String |
# CopyRaster_sample.py # Description: Copy raster to another format # Requirements: None # Author: ESRI # Date: 1/28/04 # Create the geoprocessing object import arcgisscripting gp = arcgisscripting.create() # Set input raster workspace gp.workspace = "c:/rasterdata" gp.toolbox="management" # Copy Redlands.tif to output ArcSDE workspace with configuration keyword RASTER gp.CopyRaster_management("redlands.tif","Database Connections/Connection to raster.sde/redlands","raster", "0","#","NONE","NONE")