What is the ideal data type to store latitude and longitude values in Python? Take a stops.txt
in GTFS as an example,
stop_lat,stop_lon
48.82694828196076,2.367038433387592
48.82694828196076,2.367038433387592
48.829830695271106,2.376120009344837
48.829830695271106,2.376120009344837
48.83331371557845,2.387299704383512
48.83331371557845,2.387299704383512
48.840542782965464,2.3794094631230687
48.840542782965464,2.3794094631230687
48.844652150982945,2.37310814754528
Corresponding to What is the ideal data type to use when storing latitude / longitudes in a MySQL database? and the highly upvoted answer is:
Use MySQL's spatial extensions with GIS.