gps latitude - part-cw/lambdanative GitHub Wiki
(gps-latitude)
Return current device location latitude, or 0 if not supported on current platform.
Example
Example 1: Log current gps location in all three dimensions, as well as location accuracy
(log-status "LNG:" (float->choppedstring (gps-longitude) 6) " LAT:" (float->choppedstring (gps-latitude) 6)
" [" (float->choppedstring (gps-accuracy) 4) "] ALT:" (float->choppedstring (gps-altitude) 5))