Label | Explanation | Data Type |
Input geostatistical layer | The geostatistical layer to be analyzed. | Geostatistical Layer |
Contour type | Type of contour to represent the geostatistical layer.
| String |
Output feature class | The output feature class will either be a polyline or a polygon, depending on the selected contour type. | Feature Class |
Contour quality (Optional) | Determines the smoothness of contour line representation.
| String |
Classification type (Optional) | Specifies how the contour breaks will be calculated.
| String |
Number of classes (Optional) | Specify the number of classes in the output feature class. If Contour type is set to output filled contour polygons, the number of polygons created will equal the value specified in this parameter. If it is set to output contour polylines, the number of polylines will be one less than the value specified in this parameter (because N class intervals define N-1 contour break values). This parameter does not apply if the Classification type is set to Manual. | Long |
Class breaks (Optional) | The list of break values if the Classification type is set to Manual.
| Double |
Output elevation (Optional) | For 3D interpolation models, you can export contours at any elevation. Use this parameter to specify the elevation that you want to export. If left empty, the elevation will be inherited from the input layer. The units will default to the same units of the input layer. | Linear Unit |
Available with Geostatistical Analyst license.
Summary
Creates a feature class of contours from a geostatistical layer. The output feature class can be either a line feature class of contour lines or a polygon feature class of filled contours.
Usage
For data formats that support Null values, such as file geodatabase feature classes, a Null value will be used to indicate that a prediction could not be made for that location or that the value should be ignored when used as input. For data formats that do not support Null values, such as shapefiles, the value of -1.7976931348623158e+308 is used (this is the negative of the C++ defined constant DBL_MAX) to indicate that a prediction could not be made for that location.
The output polygon or polyline features will contain slightly different geometry depending on the number of CPU cores of your machine. This is due to a different number of tiles that will be used in the contour algorithm (more cores allow for more tiling and, hence, more refined contours in the output). For reproducible results on machines with different numbers of CPU cores, use the Parallel Processing Factor environment to control the number of cores that the tool is allowed to use.
If the Input geostatistical layer represents a 3D interpolation model, you must specify the elevation of the contours that you want to export using the Output elevation parameter.
Parameters
arcpy.ga.GALayerToContour(in_geostat_layer, contour_type, out_feature_class, {contour_quality}, {classification_type}, {classes_count}, {classes_breaks}, {out_elevation})
Name | Explanation | Data Type |
in_geostat_layer | The geostatistical layer to be analyzed. | Geostatistical Layer |
contour_type | Type of contour to represent the geostatistical layer.
| String |
out_feature_class | The output feature class will either be a polyline or a polygon, depending on the selected contour type. | Feature Class |
contour_quality (Optional) | Determines the smoothness of contour line representation.
| String |
classification_type (Optional) | Specifies how the contour breaks will be calculated.
| String |
classes_count (Optional) | Specify the number of classes in the output feature class. If contour_type is set to output filled contour polygons, the number of polygons created will equal the value specified in this parameter. If it is set to output contour polylines, the number of polylines will be one less than the value specified in this parameter (because N class intervals define N-1 contour break values). This parameter does not apply if the classification_type is set to Manual. | Long |
classes_breaks [classes_breaks,...] (Optional) | The list of break values if the classification_type is set to Manual. The values should be passed as a list, and the values can be in any order.
| Double |
out_elevation (Optional) | For 3D interpolation models, you can export contours at any elevation. Use this parameter to specify the elevation that you want to export. If left empty, the elevation will be inherited from the input layer. The units will default to the same units of the input layer. | Linear Unit |
Code sample
Export a geostatistical layer to a contour feature class.
import arcpy
from arcpy import env
env.workspace = "C:/gapyexamples/data"
arcpy.GALayerToContour_ga("kriging.lyr", "Contour", "krig_contour",
"Presentation", "GEOMETRIC_INTERVAL", 10, "")
Export a geostatistical layer to a contour feature class.
# Name: GALayerToContour_Example_02.py
# Description: Exports a geostatistical layer to filled contours with
# class breaks at 100, 500 and 2000.
# Requirements: Geostatistical Analyst Extension
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/gapyexamples/data"
# Set local variables
in_geostat_layer = "kriging.lyr"
contour_type = "Filled_contour"
out_feature_class = "C:/gapyexamples/output/krig_filled_contour.shp"
contour_quality = "Presentation"
classification_type = "Manual"
classes_count = ""
classes_breaks = [100, 500, 2000]
# Execute GALayerToContour
arcpy.GALayerToContour_ga(in_geostat_layer, contour_type, out_feature_class,
contour_quality, classification_type, classes_count,
classes_breaks)
Environments
Licensing information
- Basic: Requires Geostatistical Analyst
- Standard: Requires Geostatistical Analyst
- Advanced: Requires Geostatistical Analyst