Increase Line Length (Production Mapping)

许可等级:BasicStandardAdvanced

摘要

Increases the lengths of lines from the center until they meet a specified length.

插图

Increase Line Length example

用法

语法

IncreaseLineLength_production (Input_Line_Features, Minimum_Length)
参数说明数据类型
Input_Line_Features

The line features to be lengthened.

Feature Layer
Minimum_Length

Any feature shorter than this length will be extended in both directions until it meets the minimum length value.

Linear unit

代码实例

IncreaseLineLength example (stand-alone script)

This sample script increases the length of roads until they reach 400 feet.

# Name: IncreaseLineLength_Example.py
# Description:
# Author: Esri
# Date: February 2014

# Import arcpy module
import arcpy

# Check out Production Mapping license
arcpy.CheckOutExtension("Foundation")

# set environment
arcpy.env.workspace="c:/data/LocalGovernment.gdb"

# Define variables
inFeatures="ReferenceData/RoadCenterline"
inFeatureLyr="RoadLayer"
minLength="400 feet"

# make a feature layer from road centerlines
arcpy.MakeFeatureLayer_management(inFeatures,inFeatureLyr)

# Execute ExtendPolygonSides
arcpy.IncreaseLineLength_production(inFeatureLyr,minLength)

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 需要 Production Mapping
ArcGIS for Desktop Advanced: 需要 Production Mapping
4/27/2014