What is the ideal data type to use when storing latitude / longitude in a MySQL database?

前端 未结 21 2732
梦如初夏
梦如初夏 2020-11-22 09:40

Bearing in mind that I\'ll be performing calculations on lat / long pairs, what datatype is best suited for use with a MySQL database?

21条回答
  •  醉梦人生
    2020-11-22 10:10

    Based on this wiki article http://en.wikipedia.org/wiki/Decimal_degrees#Accuracy the appropriate data type in MySQL is Decimal(9,6) for storing the longitude and latitude in separate fields.

提交回复
热议问题