Provides access to members that perform measurements along geodetic lines between two points
Members
Name | Description | |
---|---|---|
CalculateGeodeticDistanceAndAzimuth | Calculates distance(in meters) and azimuths(in radians) on the Spheroid between this and otherPoint using given geodetic curve type. | |
MovePointByGeodeticDistance | Move point by given distance in meters on the Spheroid in the direction of the given azimuth(given in radians). |
IGeodeticMeasurement.CalculateGeodeticDistanceAndAzimuth Method
Calculates distance(in meters) and azimuths(in radians) on the Spheroid between this and otherPoint using given geodetic curve type.
Public Sub CalculateGeodeticDistanceAndAzimuth ( _
ByVal otherPoint As IPoint, _
ByVal curveType As esriGeodeticType, _
ByRef distanceMeters As Double, _
ByRef azimuth12Radians As Double, _
ByRef azimuth21Radians As Double _
)
public void CalculateGeodeticDistanceAndAzimuth (
IPoint otherPoint,
esriGeodeticType curveType,
ref double distanceMeters,
ref double azimuth12Radians,
ref double azimuth21Radians
);
IGeodeticMeasurement.MovePointByGeodeticDistance Method
Move point by given distance in meters on the Spheroid in the direction of the given azimuth(given in radians).
Public Sub MovePointByGeodeticDistance ( _
ByVal curveType As esriGeodeticType, _
ByVal distanceMeters As Double, _
ByVal azimuthRadians As Double, _
ByVal resultPoint As IPoint _
)
public void MovePointByGeodeticDistance (
esriGeodeticType curveType,
double distanceMeters,
double azimuthRadians,
IPoint resultPoint
);
Classes that implement IGeodeticMeasurement
Classes | Description |
---|---|
Point | A two dimensional point, optionally with measure, height, and ID attributes. |