ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Ayuda
  • Sign Out
ArcGIS Desktop

ArcGIS Online

La plataforma de representación cartográfica para tu organización

ArcGIS Desktop

Un completo SIG profesional

ArcGIS Enterprise

SIG en tu empresa

ArcGIS for Developers

Herramientas para crear aplicaciones basadas en la ubicación

ArcGIS Solutions

Plantillas de aplicaciones y mapas gratuitas para tu sector

ArcGIS Marketplace

Obtén aplicaciones y datos para tu organización.

  • Documentación
  • Soporte
Esri
  • Iniciar sesión
user
  • Mi perfil
  • Cerrar sesión

ArcMap

  • Inicio
  • Introducción
  • Cartografiar
  • Analizar
  • Administrar datos
  • Herramientas
  • Extensiones

SearchNeighborhoodStandard

  • Resumen
  • Sintaxis
  • Propiedades
  • Muestra de código

Resumen

The SearchNeighborhoodStandard class can be used to define the search neighborhood for IDW, Local Polynomial Interpolation, and Radial Basis Functions.

Learn more about search neighborhoods

Sintaxis

 SearchNeighborhoodStandard ({majorSemiaxis}, {minorSemiaxis}, {angle}, {nbrMax}, {nbrMin}, {sectorType})
ParámetroExplicaciónTipo de datos
majorSemiaxis

The distance, in map units, specifying the length of the major semi axis of the ellipse within which data is selected from.

Double
minorSemiaxis

The distance, in map units, specifying the length of the minor semi axis of the ellipse within which data is selected from.

Double
angle

The angle of the search ellipse.

Double
nbrMax

Maximum number of neighbors, within the search ellipse, to use when making the prediction.

Long
nbrMin

Minimum number of neighbors, within the search ellipse, to use when making the prediction.

Long
sectorType

The searching ellipse can be divided into 1, 4, 4 with an offset of 45º, or 8 sectors.

String

Propiedades

PropiedadExplicaciónTipo de datos
angle
(Lectura y escritura)

The angle of the search ellipse.

Double
majorSemiaxis
(Lectura y escritura)

The distance, in map units, specifying the length of the major semi axis of the ellipse within which data is selected.

Double
minorSemiaxis
(Lectura y escritura)

The distance, in map units, specifying the length of the minor semi axis of the ellipse within which data is selected.

Double
nbrMax
(Lectura y escritura)

Maximum number of neighbors, within the search ellipse, to use when making the prediction.

Long
nbrMin
(Lectura y escritura)

Minimum number of neighbors, within the search ellipse, to use when making the prediction.

Long
nbrType
(Sólo lectura)

The neighborhood type: Smooth or Standard.

String
sectorType
(Lectura y escritura)

The searching ellipse can be divided into 1, 4, 4 with an offset of 45º, or 8 sectors.

String

Muestra de código

SearchNeighborhoodStandard (Python window)

SearchNeighborhoodStandard with IDW to produce an output raster.

import arcpy
arcpy.env.workspace = "C:/gapyexamples/data"
arcpy.IDW_ga("ca_ozone_pts", "OZONE", "outIDW", "C:/gapyexamples/output/idwout", "2000", "2",
             arcpy.SearchNeighborhoodStandard(300000, 300000, 0, 15, 10, "ONE_SECTOR"), "")
SearchNeighborhoodStandard (stand-alone script)

SearchNeighborhoodStandard with IDW to produce an output raster.

# Name: InverseDistanceWeighting_Example_02.py
# Description: Interpolate a series of point features onto a rectangular raster
#              using Inverse Distance Weighting (IDW).
# Requirements: Geostatistical Analyst Extension

# Import system modules
import arcpy

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

# Set local variables
inPointFeatures = "ca_ozone_pts.shp"
zField = "OZONE"
outLayer = "outIDW"
outRaster = "C:/gapyexamples/output/idwout"
cellSize = 2000.0
power = 2

# Set variables for search neighborhood
majSemiaxis = 300000
minSemiaxis = 300000
angle = 0
maxNeighbors = 15
minNeighbors = 10
sectorType = "ONE_SECTOR"
searchNeighbourhood = arcpy.SearchNeighborhoodStandard(majSemiaxis, minSemiaxis,
                                                       angle, maxNeighbors,
                                                       minNeighbors, sectorType)

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

# Execute IDW
arcpy.IDW_ga(inPointFeatures, zField, outLayer, outRaster, cellSize, 
             power, searchNeighbourhood)

ArcGIS Desktop

  • Inicio
  • Documentación
  • Soporte

Plataforma ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Acerca de Esri

  • Quiénes somos
  • Empleo
  • Blog de Esri
  • Conferencia de usuarios
  • Cumbre de desarrolladores
Esri
Díganos su opinión.
Copyright © 2019 Esri. | Privacidad | Legal