地理点需要正确的数据类型。
我将使用谷歌地图 API 获取并显示它,格式如下
- 42.761819,11.104863
- 41.508577,-101.953125
用例:
- 用户点击地图
- django 用附加数据保存这一点
- 在下次访问 django 时在地图上显示此点
因此,点之间没有距离等黑客攻击。
数据库:postgres 8
姜戈:1.4
查看 GeoDjango,看看它是否对您有帮助。如果您的堆栈配置为运行 GeoDjango,您可以执行此操作。
你的模型看起来像这样
from django.contrib.gis.db import models
class LocationPoint(models.Model):
point = models.PointField(srid=4326,dim=3)
accuracy = models.FloatField(default=0.0)
objects = models.GeoManager()
要将点保存到数据库中,您所要做的就是
from django.contrib.gis.geos import Point
point = Point(x=12.734534, y=77.2342, z=0, srid=4326)
location = LocationPoint()
location.point = point
location.save()
GeoDjango 为您提供了在不久的将来可能会感兴趣的地理空间查询的扩展能力,例如查找点之间的距离、查找点周围最近的位置等。
看起来您将要存储纬度和经度。我会为此使用DecimalField,并分别存储每个数字。
来自有关 DecimalField 的 django 文档:
DecimalField.max_digits
数字中允许的最大位数。请注意,此数字必须大于或等于 decimal_places。
DecimalField.decimal_places
与数字一起存储的小数位数。
要正确选择准确的数据类型和精度,您应该考虑:
顺便说一下,为了更好地理解,最好知道计算是如何完成的(Python代码):
def deg_to_dms(deg):
d = int(deg)
md = abs(deg - d) * 60
m = int(md)
sd = (md - m) * 60
return [d, m, sd]
def decimal(deg,min,sec):
if deg < 0:
dec= -1.0 * deg + 1.0 * min/60.0 + 1.0 * sec/3600.0
return -1.0 * dec
else:
dec=1.0 * deg + 1.0 * min/60.0 + 1.0 * sec/3600.0;
return dec
我在 django 设置中使用经度和纬度。
我的模型包括:
long_position = models.DecimalField (max_digits=8, decimal_places=3)
lat_position = models.DecimalField (max_digits=8, decimal_places=3)
为了更精确,您可能希望 decimal_places 更多。
当您想在 Google Map API 方法中显示它时,您将引用您的模型并编写一个 python 代码来输出,如下所示:
output = some_long_position + "," + some_lati_position
我在模型中使用它
latitude = models.DecimalField(max_digits=11, decimal_places=7,null=True,blank=True)
longitude = models.DecimalField(max_digits=11, decimal_places=7,null=True,blank=True)