예제 #1
0
 /// <summary>
 /// Creates a new instance of GlobalPosition for a position on the surface of
 /// the reference ellipsoid.
 /// </summary>
 /// <param name="coords"></param>
 public GlobalPosition(GlobalCoordinates coords)
     : this(coords, 0.0)
 {
 }
예제 #2
0
 /// <summary>
 /// Creates a new instance of GlobalPosition.
 /// </summary>
 /// <param name="coords">coordinates on the reference ellipsoid.</param>
 /// <param name="elevation">elevation, in meters, above the reference ellipsoid.</param>
 public GlobalPosition(GlobalCoordinates coords, double elevation)
 {
     mCoordinates = coords;
     mElevation   = elevation;
 }