AsterixDisplayAnalyser.GeodeticMeasurement.GeodeticMeasurement C# (CSharp) 메소드

GeodeticMeasurement() 공개 메소드

Creates a new instance of GeodeticMeasurement.
public GeodeticMeasurement ( GeodeticCurve averageCurve, double elevationChange ) : System
averageCurve GeodeticCurve the geodetic curve as measured at the average elevation between two points
elevationChange double the change in elevation, in meters, going from the starting point to the ending point
리턴 System
        public GeodeticMeasurement(GeodeticCurve averageCurve, double elevationChange)
        {
            double ellDist = averageCurve.EllipsoidalDistance;

            mCurve = averageCurve;
            mElevationChange = elevationChange;
            mP2P = Math.Sqrt(ellDist * ellDist + mElevationChange * mElevationChange);
        }