I am storing my Lat and Long values in the GEOMETRY type within MySql. Unfortunately it seems to be rounding to 4 decimal places, which according to this Wikipedia Article isn’t very accurate. I want to use the Geospatial functions in mySql, but it seems to be lacking the precision I need. Any ideas what I can do? Can I increase the precision, or am I forced to store it as a double/float instead? If I want to use any of the other functionality in the GIS portion of mySql, will these values also be rounded (even if I store in seperate fields as another datatype)?
Share
According to Alexey Botchkov:
Source: http://bugs.mysql.com/bug.php?id=34075 (at the bottom).
So GEOMETRY types are already stored as doubles, no need to do that yourself.