Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]] Former-commit-id:06a8b51d6d
Former-commit-id:3360eb6c5f
26 lines
521 B
C
26 lines
521 B
C
#ifndef GET_LOC_LATLON_H
|
|
#define GET_LOC_LATLON_H
|
|
|
|
#include "DbmsDefs.h"
|
|
|
|
#define LATLONFOUND 1
|
|
#define LATLONNOTFOUND 0
|
|
|
|
typedef struct
|
|
{
|
|
char id[LOC_ID_LEN + 1];
|
|
double lat;
|
|
double lon;
|
|
} latlon_list_struct;
|
|
|
|
|
|
int get_loc_latlon(char *lid,
|
|
double *dlat,
|
|
double *dlon);
|
|
|
|
void get_loc_latlon_nrv(char *lid,
|
|
double *dlat,
|
|
double *dlon,
|
|
int *status);
|
|
|
|
#endif
|