Raster
サマリ
Creates a raster object that can be used in Python scripting or in a Spatial Analyst Map Algebra expression. A raster object is a variable which references a raster dataset.
A raster object can be created in two ways, from any Spatial Analyst Map Agebra statement that results in a raster output or by supplying an existing raster on disk.
説明
Any Spatial Analyst Map Algebra tool or operator (see Working with operators) that produces an output raster to the left of the equal sign creates a raster object. For example, in the following expression, outRas is a raster object.
outRas = Slope("inelevation")
When a raster object is returned from a Map Algebra expression, by default the object (the variable and associated dataset) is temporary.
The temporary dataset associated with a raster object can become permanent:
- By calling the save method on the raster object.
- Call Make Permanent by right-clicking on the layer with an associated raster object in the TOC and specifying an output name.
- Saving the the map project (.MXD, 3DD, etc) that contains any layers with associated raster objects.
In case 3, the dataset referenced by the raster object will automatically be permanently saved to disk with a default name.
If the referenced raster is not made permanant by any of the three cases above, the variable and the referenced raster dataset will be deleted when the variable goes out of scope, such as when a stand-alone script is completed or ArcGIS is closed. When a raster object references permanant data on disk, the data is not deleted.
The raster object created from existing data can be used in subsequent Spatial Analyst Map Algebra expressions and will have all the associated properties and methods.
# outRas is a resultant raster object outRas = Raster("C:/Data/inraster")
Certain operators exist in both Spatial Analyst Map Algebra and in Python. If you want an operator to work on rasters (as opposed to scalars) the input rasters must be cast as a raster object by calling the Raster class constructor: Raster("inRaster").
# The Spatial Analyst plus operator is used on the input rasters creating # an output raster object outRas = Raster("input1") + Raster("input2") # The Python plus operator is used on numbers creating a scalar variable outVar = 4 + 7 # When there is a mix of rasters with numbers the Spatial Analyst # operator is used creating an output raster object outRas = Raster("input") + 10
Certain properties associated with the raster object are only available if the referenced raster dataset is permanent. When the referenced raster dataset is temporary, these properties will be assigned None. The affected properties are catalogPath, compressionType, format, hasRAT, name, and path.
Once permanent, the referenced raster dataset cannot return to the temporary state.
構文
パラメータ | 説明 | データ タイプ |
inRaster |
The input raster dataset. | Raster |
プロパティ
プロパティ | 説明 | データ タイプ |
bandCount (読み取り専用) |
The number of bands in the referenced raster dataset. | Integer |
catalogPath (読み取り専用) |
The full path and the name of the referenced raster dataset. | String |
compressionType (読み取り専用) |
The compression type. The following are the available types:
| String |
extent (読み取り専用) |
The extent of the referenced raster dataset. | Extent |
format (読み取り専用) |
The raster format
| String |
hasRAT (読み書き) |
Identifies if there is an associated attribute table: True if an attribute table exists or False if no attribute table exists. | Boolean |
height (読み取り専用) |
The number of rows. | Integer |
isInteger (読み取り専用) |
The integer state: True if the raster dataset has integer type. | Boolean |
isTemporary (読み取り専用) |
The state of the referenced raster dataset: True if the raster dataset is temporary or False if permanent. | Boolean |
maximum (読み取り専用) |
The maximum value in the referenced raster dataset. | Double |
mean (読み取り専用) |
The mean value in the referenced raster dataset. | Double |
meanCellHeight (読み取り専用) |
The cell size in the y direction. | Double |
meanCellWidth (読み取り専用) |
The cell size in the x direction. | Double |
minimum (読み取り専用) |
The minimum value in the referenced raster dataset. | Double |
name (読み取り専用) |
The name of the referenced raster dataset. | String |
noDataValue (読み取り専用) |
The NoData value of the referenced raster dataset. | Double |
path (読み取り専用) |
The full path and name of the referenced raster dataset. | String |
pixelType (読み取り専用) |
The pixel type of the referenced raster dataset. The types are
| String |
spatialReference (読み取り専用) |
The spatial reference of the referenced raster dataset. | SpatialReference |
standardDeviation (読み取り専用) |
The standard deviation of the values in the referenced raster dataset. | Double |
uncompressedSize (読み取り専用) |
The size of the referenced raster dataset on disk. | Double |
width (読み取り専用) |
The number of columns. | Integer |
メソッドの概要
メソッド | 説明 |
save ({name}) |
Permanently saves the dataset the raster object references. |
メソッド
パラメータ | 説明 | データ タイプ |
name |
The name to assign to the raster dataset on disk. | String |
コードのサンプル
Creates a Raster object from a raster dataset and gets properties for analysis.
import arcpy myRaster = arcpy.Raster('elevation') myMin = myRaster.minimum myMax = myRaster.maximum myArea = (myRaster.width * myRaster.height) * myRaster.meanCellWidth
Creates a Raster object, gets properties, creates a random error raster (+/- 3 feet), adds it to an elevation raster, and convert its units from feet to meters.
import arcpy from arcpy.sa import * elevRaster = Raster('C:/data/elevation') myExtent = elevRaster.extent myCellsize = (elevRaster.meanCellHeight + elevRaster.meanCellWidth) / 2 res01 = arcpy.CreateRandomRaster_management("","error3","UNIFORM 0.0 3.0",myExtent, myCellsize) elev_meters = (elevRaster + Raster(res01)) * 0.3048 elev_meters.save("C:/output/fgdb.gdb/elevM_err")