Increase Line Length (Production Mapping)

Niveau de licence :BasicStandardAdvanced

Récapitulatif

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

Illustration

Increase Line Length example

Utilisation

Syntaxe

IncreaseLineLength_production (Input_Line_Features, Minimum_Length)
ParamètreExplicationType de données
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

Exemple de code

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)

Environnements

Thèmes connexes

Informations de licence

ArcGIS for Desktop Basic: Annuler
ArcGIS for Desktop Standard: Requis Production Mapping
ArcGIS for Desktop Advanced: Requis Production Mapping
4/26/2014