Open Table of Contents

ET GeoWizards Scripting

Densify Polyline
(Go to the main page of the function)

Densifies ( adds vertices to  polyline at a user-specified tolerance ) the features of a polyline layer.

Syntax    

Dim ET As  New ETGW_Core
Set variable = ET.DensifyPolylines(pInFeatureClass, sOutFileName, dMaxSegmetLength, dMaxDeviation)

The DensifyPolyline method syntax has the following object qualifier and arguments:

Part Description
variable An IFeatureClass object
pInFeatureClass Required. An IFeatureClass object (Must be a Polyline feature class)
sOutFileName Required. A String - the full name of the output feature class (A feature class with the same full name should not exist)
dMaxSegmetLength Required. A Double representing  the Maximum segment length
dMaxDeviation Required. A Double representing  the Deviation value (Has no impact if there are no curve segments in the polylines - in most of the cases can be set to 0)

Example