Tile size |
|
Release 9.2
Last modified September 4, 2007 |
![]() ![]() ![]() Print all topics in : "Raster Storage settings" |
Specifies the width and the height of the desired tile size data stored in blocks.
This setting is used for tools that create raster datasets in ArcGIS. Please refer to the Raster Storage Matrix to see which raster storage formats can be controlled when using this setting. The default tile size is 128 by 128 pixels.
An overview of the command line window
tileSize <tileSize>
Parameters | Explanation | Datatype |
<tileSize> | Specifies the width and the height of the desired tile size in pixels.
|
String |
TileSize "100 100"
An overview of scripting in geoprocessing
tileSize (tileSize)
Parameters | Explanation | Datatype |
tileSize (Required) | Specifies the width and the height of the desired tile size in pixels.
|
String |
import arcgisscripting gp = arcgisscripting.create() gp.TileSize = "100 100" except: # If an error occurred print the message to the screen print gp.GetMessages()