PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwdoubles_to_latlon()

static char* lwdoubles_to_latlon ( double  lat,
double  lon,
const char *  format 
)
static

Definition at line 397 of file lwprint.c.

References lwalloc(), lwdouble_to_dms(), lwfree(), and lwprint_normalize_latlon().

Referenced by lwpoint_to_latlon().

398 {
399  char * lat_text;
400  char * lon_text;
401  char * result;
402 
403  /* Normalize lat/lon to the normal (-90 to 90, -180 to 180) range. */
404  lwprint_normalize_latlon(&lat, &lon);
405  /* This is somewhat inefficient as the format is parsed twice. */
406  lat_text = lwdouble_to_dms(lat, "N", "S", format);
407  lon_text = lwdouble_to_dms(lon, "E", "W", format);
408 
409  /* lat + lon + a space between + the null terminator. */
410  result = (char*)lwalloc(strlen(lat_text) + strlen(lon_text) + 2);
411  sprintf(result, "%s %s", lat_text, lon_text);
412  lwfree(lat_text);
413  lwfree(lon_text);
414  return result;
415 }
void lwfree(void *mem)
Definition: lwutil.c:244
static void lwprint_normalize_latlon(double *lat, double *lon)
Definition: lwprint.c:34
static char * lwdouble_to_dms(double val, const char *pos_dir_symbol, const char *neg_dir_symbol, const char *format)
Definition: lwprint.c:76
void * lwalloc(size_t size)
Definition: lwutil.c:229
Here is the call graph for this function:
Here is the caller graph for this function: