Polygon To Multipatch

ToolBox Implementation .NET Implementation

Converts a polygon feature class to a Multipatch feature class. The Z values are interpolated from an ESRI TIN or PolygonZ TIN.

The portion of the TIN within each polygon is extracted. A new TIN is interpolated from the participating nodes of the reference TIN surface and the vertices of the polygon for which the Z value is interpolated from the TIN. The new TIN is stored as a Multipatch geometry.

Inputs:

Outputs:

ToolBox implementation

Command line syntax - two different toolbox tools available depending on the type of the input TIN. Check the color coding for specifics.

ETS_GPPolygonToMultipatchEsriTIN <Input Dataset> <Input ESRI TIN>  <Out Feature Class>
ETS_GPPolygonToMultipatchPolygonZTIN <Input Dataset> <Input PolygonZ TIN>  <Out Feature Class>

Parameters

Expression Explanation
<Input Dataset> A Polygon feature layer or feature class
<Input ESRI TIN> An ESRI TIN layer or dataset
<Input PolygonZ TIN> A PolygonZ TIN (feature class)
<Out Feature Class> A String - the full name of the output feature class.

Scripting syntax

ETS_GPPolygonToMultipatchEsriTIN (Input Dataset, Input ESRI TIN, Out Feature Class)

ETS_GPPolygonToMultipatchPolygonZTIN (Input Dataset, Input PolygonZ TIN, Out Feature Class)

See the explanations above:
<> - required parameter
{} - optional parameter

.NET implementation
(Go to TOP)

PolygonToMultipatchEsriTIN (inFeatureClass As IFeatureClass, inTin As ITin, sOutFeature As String) As IFeatureClass

PolygonToMultipatchPolygonZTIN (inFeatureClass As IFeatureClass, polygonZTin As IFeatureClass, sOutFeature As String) As IFeatureClass

Copyright © Ianko Tchoukanski