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

HfForward

Disponible con una licencia de Spatial Analyst.

  • Resumen
  • Ilustración
  • Debate
  • Sintaxis
  • Propiedades
  • Muestra de código

Resumen

Defines the relationship between the horizontal cost factor and the horizontal relative moving angle through a forward function. The function establishes that only forward movement is allowed.

Ilustración

HfForward horizontal factor image
HfForward horizontal factor for the PathDistance functions.

Debate

The HfForward object is used in the Spatial Analyst tools Path Distance, Path Distance Allocation, and Path Distance Back Link.

If a horizontal relative moving angle (HRMA) is less than 45 degrees for a section of travel, the horizontal factor (HF) is set to the value associated with the zeroFactor. When the HRMA is larger than or equal to 45 degrees and less than 90 degrees, the HF is set to the sideValue. If the HRMA is equal to or greater than 90 degrees, the HF is set to infinity.

Sintaxis

 HfForward ({zeroFactor}, {sideValue})
ParámetroExplicaciónTipo de datos
zeroFactor

The zeroFactor will be used to position the y-intercept of the forward function.

(El valor predeterminado es 0.5)

Double
sideValue

Identifies the HF value that will be assigned for HRMAs that are equal to or less than 45 degrees and less than 90 degrees. In the diagram above, the sideValue is assigned 1.

(El valor predeterminado es 1.0)

Double

Propiedades

PropiedadExplicaciónTipo de datos
zeroFactor
(Lectura y escritura)

The zeroFactor will be used to position the y-intercept of the function.

The zeroFactor is assigned as the horizontal factor when HRMA is less then the cut angle.

Double
sideValue
(Lectura y escritura)

Identifies the HF value that will be assigned for HRMAs that are equal to or less than 45 degrees and less than 90 degrees. In the diagram above the sideValue is assigned 1.

Double

Muestra de código

HfForward example 1 (Python window)

Demonstrates how to create an HfForward class and use it in the PathDistance tool within the Python window.

import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
myHorizFactor = HfForward(0.5, 1.0)
outPathDist = PathDistance("sourcepts.shp", "costraster", "", "", myHorizFactor)
outPathDist.save("C:/sapyexamples/output/pathdisthff")
HfForward example 2 (stand-alone script)

Performs a PathDistance analysis using the HfForward class.

# Name: HfForward_Ex_02.py
# Description: Uses the HfForward object to execute the PathDistance tool.
# Requirements: Spatial Analyst Extension

# Import system modules
import arcpy
from arcpy import env
from arcpy.sa import *

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

# Set local variables
inSourceData = "sourcepts.shp"
inCostRaster = "costraster"

# Create the HfForward Object
zeroFactor = 0.5
sideValue = 1.0
myHorizFactor = HfForward(zeroFactor, sideValue)

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

# Execute PathDistance
outPathDist = PathDistance(inSourceData, inCostRaster, "", "", myHorizFactor)

# Save the output 
outPathDist.save("C:/sapyexamples/output/pathdisthff2")

Temas relacionados

  • An overview of Spatial Analyst classes
  • An overview of horizontal factor classes

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