Hi All - new boy here. I’m trying to build an app that selects certain locations based on a chosen wind direction, and then shows you the distance from your current location to the selected locations.
Is there a way of storing lat long coordinates in glide table so that the app can calculate distance from your current location?
I want to show the coordinates as degrees - minutes, decimal minutes (36 24.45S - 174 45.12E)
1 Like
You should store them as decimal degrees in a text column, with longitude first and the two values separated by a comma, eg:
1 Like
Thank you - does the minus indicate south and positive would be north?
Positive latitudes are north of the equator, negative latitudes are south of the equator. Positive longitudes are east of the Prime Meridian, negative longitudes are west of the Prime Meridian.
Latitude and longitude are usually expressed in that sequence, latitude before longitude.
1 Like