123456789101112131415161718192021222324 |
- /* latlong.h */
- /* Use this value for unknown latitude/longitude or other values. */
- #define G_UNKNOWN (-999999)
- void latitude_to_str (double dlat, int ambiguity, char *slat);
- void longitude_to_str (double dlong, int ambiguity, char *slong);
- void latitude_to_comp_str (double dlat, char *clat);
- void longitude_to_comp_str (double dlon, char *clon);
- void latitude_to_nmea (double dlat, char *slat, char *hemi);
- void longitude_to_nmea (double dlong, char *slong, char *hemi);
- double latitude_from_nmea (char *pstr, char *phemi);
- double longitude_from_nmea (char *pstr, char *phemi);
- double ll_distance_km (double lat1, double lon1, double lat2, double lon2);
- int ll_from_grid_square (char *maidenhead, double *dlat, double *dlon);
|