예제 #1
0
파일: Utm.cpp 프로젝트: LK8000/LK8000
void UtmToLatLonWGS84 (int utmXZone, char utmYZone, double easting,
					   double northing, double& lat, double& lon)
	{
	UtmToLatLon (6378137.0, 1 / 298.257223563, utmXZone, utmYZone,
		easting, northing, lat, lon);
	}
예제 #2
0
void UtmToLatLonWGS84(struct utmPosition utm, double& lat, double& lon) {
    UtmToLatLon(6378137.0, 1 / 298.257223563, utm.zoneX, utm.zoneY,
            utm.easting, utm.northing, lat, lon);
}