Constructs different types of geodetic curves. The 'by length' and 'by deviation' densification methods are supported.
[Visual Basic .NET] Public Sub DensifyGeodetic ( _ ByVal geodeticLineType As esriGeodeticType, _ ByVal pLU As ILinearUnit, _ ByVal densifyMethod As esriCurveDensifyMethod, _ ByVal densifyParameter As Double _ )
[C#] public void DensifyGeodetic ( esriGeodeticType geodeticLineType, ILinearUnit pLU, esriCurveDensifyMethod densifyMethod, double densifyParameter );
[C++]
HRESULT DensifyGeodetic(
esriGeodeticType geodeticLineType,
ILinearUnit* pLU,
esriCurveDensifyMethod densifyMethod,
double densifyParameter
);
[C++]Parameters
geodeticLineTypegeodeticLineType is a parameter of type esriGeodeticType
pLUpLU is a parameter of type ILinearUnit
densifyMethoddensifyMethod is a parameter of type esriCurveDensifyMethod
densifyParameter densifyParameter is a parameter of type double
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Description
Densifies the polycurve by connecting its existing vertices with geodetic curves of the specified type.
enum esriGeodeticType
{
esriGeodeticTypeGeodesic = 0,
esriGeodeticTypeLoxodrome = 1,
esriGeodeticTypeGreatElliptic = 2,
esriGeodeticTypeNormalSection = 3
};