Moved coordinate transformation proto to a subdirectory
[ptas] / coordinate-system.h
1 #ifndef COORDINATE_SYSTEM_H
2 #define COORDINATE_SYSTEM_H
3
4 void wgs84_to_kkj2(double inLatitude, double inLongitude, double *outLatitude, double *outLongitude);
5
6 void kkj2_to_wgs84(double inLatitude, double inLongitude, double *outLatitude, double *outLongitude);
7
8 #endif