HfLinear
Summary
Defines the relationship between the horizontal cost factor and the horizontal relative moving angle through a linear function. The function specifies that the horizontal factor has a linear relationship with the horizontal relative moving angle.

Discussion
This object is used in the Distance Accumulation and Distance Allocation Spatial Analyst tools, as well as the Path Distance, Path Distance Allocation, and Path Distance Back Link Legacy Distance tools.
The horizontal factors (HFs) are determined by a straight line in the horizontal relative moving angle (HRMA)-HF coordinate system. The line intercepts the y-axis, equitable to the HF factor, at the value associated with the zeroFactor. The slope of the line can be specified using the slope modifier. If no slope is identified, the default is 0.5/45 or 1/90 (specified as 0.01111).
Syntax
HfLinear({zeroFactor}, {cutAngle}, {slope})
| Name | Explanation | Data type |
|---|---|---|
|
zeroFactor (Optional) |
The The default value is 0.5. |
Double |
|
cutAngle (Optional) |
The The default value is 181.0. |
Double |
|
slope (Optional) |
Identifies the slope of the straight line in the HRMA-HF coordinate system. Slope is specified as the rise over the run. For example, a 30-degree slope is 1/30, specified as 0.03333 (rise/run: 1 HF on the y axis / 30 degrees on the x axis). The default value is 0.011111. |
Double |
Properties
| Name | Explanation | Data type |
|---|---|---|
|
zeroFactor (Read and Write) |
The |
Double |
|
cutAngle (Read and Write) |
The |
Double |
|
slope (Read and Write) |
Identifies the slope of the straight line in the HRMA-HF coordinate system. Slope is specified as the rise over the run. For example, a 30-degree slope is 1/30, specified as 0.03333 (rise/run: 1 HF on the y axis / 30 degrees on the x axis). The default value is 0.011111. |
Double |
Code sample
Demonstrates how to create an HfLinear class and use it in the DistanceAccumulation tool within the Python window.
import arcpy
from arcpy import env
from arcpy.sa import *
env.workspace = "C:/sapyexamples/data"
myHorizFactor = HfLinear(0.5, 181.0, 0.01111)
outDistAccum = DistanceAccumulation("source.shp", "barrier.tif",
"elev.tif", "", "", "",
"horizontalRas.tif", myHorizFactor)
outDistAccum.save("C:/sapyexamples/output/distaccumhfL")
Performs a distance accumulation analysis using the HfLinear class.
# Name: HfLinear_Ex_02.py
# Description: Uses the HfLinear object to run the
# DistanceAccumulation 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"
inSurfaceRaster = "elevation.tif"
inHorizontalRaster = "horizontalRas.tif"
# Create the HfLinear Object
zeroFactor = 0.5
cutAngle = 181.0
slope = 0.01111
myHorizFactor = HfLinear(zeroFactor, cutAngle, slope)
# Run PathDistance
outDistAccum = DistanceAccumulation(inSourceData,"", inSurfaceRaster,"","",
"", inHorizontalRaster, myHorizFactor)
# Save the output
outDistAccum.save("C:/sapyexamples/output/distaccumhfl2")