예제 #1
0
파일: GeoPoints.cs 프로젝트: ucnl/UCNLNav
 public static GeoPoint ToDeg(GeoPoint geoPointRad)
 {
     return(new GeoPoint(Algorithms.Rad2Deg(geoPointRad.Latitude), Algorithms.Rad2Deg(geoPointRad.Longitude)));
 }
예제 #2
0
파일: GeoPoints.cs 프로젝트: ucnl/UCNLNav
 public GeoPoint3D(GeoPoint point2D, double dpt)
     : this(point2D.Latitude, point2D.Longitude, dpt)
 {
 }
예제 #3
0
파일: GeoPoints.cs 프로젝트: ucnl/UCNLNav
 public static GeoPoint ToRad(GeoPoint geoPointDeg)
 {
     return(new GeoPoint(Algorithms.Deg2Rad(geoPointDeg.Latitude), Algorithms.Deg2Rad(geoPointDeg.Longitude)));
 }