Z Resolution (Environment setting)

Tools that honor this environment will apply the z-resolution to output geodatasets.

For a description of the default z-resolution, see the following topic: Spatial reference and geoprocessing.

Usage notes

Dialog syntax

Z ResolutionThe z-resolution to be set on the output geodatasets. Set this environment if the default z-resolution is inadequate.

Scripting syntax

arcpy.env.ZResolution = linear_unit

Parameter

Explanation

linear_unit

Sets the z-resolution to be used on output geodatasets. The z-resolution, expressed as a very small distance, refers to the number of significant digits used to store z-coordinate values.

ZResolution syntax

Script example

import arcpy

# Set the ZResolution environment to a linear unit
arcpy.env.ZResolution = "0.002 Meters"

Related Topics

2/10/2014