//UTM Conversion.cpp- test program for lat/long to UTM and UTM to lat/long conversions #include #include #include "LatLong-UTMconversion.h" void main() { double Lat = 47.37816667; double Long = 8.23250000; double UTMNorthing; double UTMEasting; double SwissNorthing; double SwissEasting; char UTMZone[4]; int RefEllipsoid = 23;//WGS-84. See list with file "LatLong- UTM conversion.cpp" for id numbers cout << "Starting position(Lat, Long): " << Lat << " " << Long <