Former-commit-id:133dc97f67
[formerlya02aeb236c
] [formerly9f19e3f712
] [formerly06a8b51d6d
[formerly9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:377dcd10b9
[formerly3360eb6c5f
] Former-commit-id:8e80217e59
41 lines
672 B
C
41 lines
672 B
C
/*
|
|
File: cvt_to_latlon.h
|
|
Date: August 1994
|
|
Authors: Dale Shelton, Chip Gobs, Paul Taylor (4/1/97)
|
|
|
|
Purpose: Provide support for converting lat/lon floating values
|
|
to & from regular string variables.
|
|
*/
|
|
|
|
|
|
#ifndef cvt_latlon_h
|
|
#define cvt_latlon_h
|
|
|
|
#define MAX_DBL ( ( float ) 1.7976931348623157e+308 )
|
|
|
|
|
|
double cvt_to_latlon(char *str, int negate);
|
|
|
|
|
|
int isPackedLatLon(char *str);
|
|
|
|
|
|
double cvt_spaced_format(char *str, int negate);
|
|
|
|
double cvt_packed_format(char *str, int negate);
|
|
|
|
|
|
double cvt_to_lat(char *str);
|
|
double cvt_to_lon(char *str);
|
|
|
|
|
|
double bcvt_to_lat(char *str);
|
|
double ncvt_to_latlon(char *s);
|
|
|
|
|
|
char* cvt_latlon_from_double(double x);
|
|
|
|
|
|
#endif
|
|
|
|
|