ET GeoWizards Scripting
Interpolate Contours
(Go to the main page of the
function)
Interpolates contours from a TIN(polygonZ)
Syntax
Dim ET As New ETGW_Core
Set variable = ET.InterpolateContours (pInFeatureClass, sOutFileName,
dContourInterval, dBaseContour, sMessage
)
The InterpolateContours method syntax has the following object qualifier and arguments:
| Part | Description |
|---|---|
| variable | An IFeatureClass object |
| pInFeatureClass | Required. An IFeatureClass object (Must be a PolygonZ 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) |
| dContourInterval | Required. A Double representing the Z value difference between adjacent contours in the units of the TIN. |
| dBaseContour | Optional. A Double representing the the contour from which to begin generation of contours. Default value = 0 |
| sMessage | Optional. In a case of failure - description of the cause. If the functions completes with success an empty string will be returned. |