]> git.street.me.uk Git - andy/viking.git/blobdiff - src/coords.h
Track Properties Window internal tidy: maintain graph profile arrays for reuse by...
[andy/viking.git] / src / coords.h
index c27878416d059f2752aa052c0957e2d5f81010d7..0bf335fd258000062508ff9465f1a92f71f15d9f 100644 (file)
@@ -35,6 +35,8 @@ renaming functions and defining LatLon and UTM structs.
 #ifndef _VIKING_COORDS_H
 #define _VIKING_COORDS_H
 
 #ifndef _VIKING_COORDS_H
 #define _VIKING_COORDS_H
 
+#include <glib.h>
+
 struct UTM {
   gdouble northing;
   gdouble easting;
 struct UTM {
   gdouble northing;
   gdouble easting;
@@ -63,6 +65,11 @@ double a_coords_latlon_diff ( const struct LatLon *ll1, const struct LatLon *ll2
  */
 char *a_coords_dtostr ( double d );
 
  */
 char *a_coords_dtostr ( double d );
 
-
+/**
+ * Convert a LatLon to strings.
+ *
+ * Use the prefered representation.
+ */
+void a_coords_latlon_to_string ( const struct LatLon *latlon, gchar **lat, gchar **lon );
 
 #endif
 
 #endif