Densify Sampling Network (Geostatisical Analyst)

Nivel de licencia:BasicStandardAdvanced

Resumen

Uses a predefined geostatistical kriging layer to determine where new locations are required or which can be removed.

Uso

Sintaxis

DensifySamplingNetwork_ga (in_geostat_layer, number_output_points, out_feature_class, {selection_criteria}, {threshold}, {in_weight_raster}, {in_candidate_point_features}, {inhibition_distance})
ParámetroExplicaciónTipo de datos
in_geostat_layer

Input a geostatistical layer resulting from a Kriging model.

Geostatistical Layer
number_output_points

Specify how many sample locations to generate.

Long
out_feature_class

The name of the output feature class.

Feature Class
selection_criteria
(Opcional)

Methods to densify a sampling network.

String
threshold
(Opcional)

The threshold value used to densify the sampling network, applicable only when STDERR_THRESHOLD or QUARTILE_THRESHOLD selection criteria are used.

Double
in_weight_raster
(Opcional)

A raster used to determine which locations to weight for preference.

Raster Layer
in_candidate_point_features
(Opcional)

Sample locations to pick from.

Feature Layer
inhibition_distance
(Opcional)

Used to prevent any samples being placed within this distance from each other.

Linear unit

Ejemplo de código

DensifySamplingNetwork example 1 (Python window)

Densify a sampling network based on a predefined geostatistical kriging layer.

import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
arcpy.DensifySamplingNetwork_ga("C:/gapyexamples/data/Kriging.lyr", 2,
                                 "C:/gapyexamples/output/outDSN")
DensifySamplingNetwork example 2 (stand-alone script)

Densify a sampling network based on a predefined geostatistical kriging layer.

# Name: DensifySamplingNetwork_Example_02.py
# Description: Densify a sampling network based on a predefined geostatistical
#              kriging layer. It uses, inter alia, the Standard Error of 
#              Prediction map to determine where new locations are required.
# Requirements: Geostatistical Analyst Extension

# Import system modules
import arcpy

# Set environment settings
arcpy.env.workspace = "C:/gapyexamples/data"

# Set local variables
inLayer = "C:/gapyexamples/data/Kriging.lyr"
numberPoints = 2
outPoints = "C:/gapyexamples/output/outDSN"

# Check out the ArcGIS Geostatistical Analyst extension license
arcpy.CheckOutExtension("GeoStats")

# Execute DensifySamplingNetworks
arcpy.DensifySamplingNetwork_ga(inLayer, numberPoints, outPoints)

Entornos

Temas relacionados

Información sobre licencias

ArcGIS for Desktop Basic: Requiere Geostatistical Analyst
ArcGIS for Desktop Standard: Requiere Geostatistical Analyst
ArcGIS for Desktop Advanced: Requiere Geostatistical Analyst
9/11/2013