Tile Size (Environment setting)

Tools that honor the Tile Size environment set the tile size for rasters that are stored in blocks of data.

Refer to the Raster Storage Matrix to see which raster storage formats can be controlled when using this and other settings.

Usage notes

Dialog syntax

Scripting syntax

arcpy.env.tileSize = "width height"

Parameters

Explanation

Width

The width of the desired tile size. The default value is 128.

Height

The height of the desired tile size. The default value is 128.

tileSize syntax
import arcpy

#Set the tileSize environment to 128 by 128
arcpy.env.tileSize = "128 128"

Related Topics


3/13/2012