Initial import
[ptas] / coordinate-system.c
diff --git a/coordinate-system.c b/coordinate-system.c
new file mode 100644 (file)
index 0000000..fefb1c4
--- /dev/null
@@ -0,0 +1,21 @@
+#include "coordinate-system.h"
+
+void wgs84_to_kkj2(double inLatitude, double inLongitude, double *outLatitude, double *outLongitude)
+{
+    if (outLatitude) {
+        *outLatitude = 100;
+    }
+    if (outLongitude) {
+        *outLongitude = 100;
+    }
+}
+
+void kkj2_to_wgs84(double inLatitude, double inLongitude, double *outLatitude, double *outLongitude)
+{
+    if (outLatitude) {
+        *outLatitude = 100;
+    }
+    if (outLongitude) {
+        *outLongitude = 100;
+    }
+}