gpt4 book ai didi

python - 如何为 MongoEngine PointField 格式化数据

转载 作者:可可西里 更新时间:2023-11-01 10:31:37 33 4
gpt4 key购买 nike

所以我想用mongodb中的位置数据做一些实验,所以我写了一些python代码来生成一些测试数据。
不幸的是,文档位于 http://docs.mongoengine.org/apireference.html#mongoengine.fields.PointField没有明确说明如何格式化输入。

class Location(db.Document):
coord = db.PointField(required=True) # GeoJSON

尝试存储包含 lng/lat 的列表失败:

>>> a = Location(coord=[1,2])
>>> a.save()
mongoengine.errors.OperationError: Could not save document (location object expected, location array not in correct format)

传递 geoJSON 文档会导致相同的错误:

>>> b = Location(coord={ "type" : "Point" ,"coordinates" : [1, 1]})
>>> b.save()
mongoengine.errors.OperationError: Could not save document (location object expected, location array not in correct format)

这应该如何格式化?

注意:之前有人问过类似的问题,但答案没有帮助:Mongoengine PointField gives location object expected, location array not in correct format error

最佳答案

我无法在此处重现您的错误。您能告知您使用的是哪个版本的 mongoengine 吗?

这是我如何实现一个简单的例子:

在我的 models.py 上

class PointFieldExample(Document):

point = PointField()
name = StringField()

def toJSON(self):
pfeJSON = {}
pfeJSON['id'] = str(self.id)
pfeJSON['point'] = self.point
pfeJSON['name'] = str(self.name)
return pfeJSON

在 Django 外壳上

$ python manage.py shell
>>> from mongoengine import *
>>> from myAwesomeApp.app.models import PointFieldExample

>>> pfe = PointFieldExample()
>>> pfe.point = 'random invalid content'
>>> pfe.toJSON()
{'id': 'None', 'name': 'None', 'point': 'random invalid content'}
>>> pfe.save()
ValidationError: ValidationError (PointFieldExample:None) (PointField can only accept lists of [x, y]: ['point'])

>>> pfe.point = [-15, -47]
>>> pfe.save()
<PointFieldExample: PointFieldExample object>

>>> pfe.toJSON()
{'id': '5345a51dbeac9e0c561b1892', 'name': 'None', 'point': [-15, -47]}

在我的数据库上

> db.point_field_example.findOne()
{
"_id" : ObjectId("5345a51dbeac9e0c561b1892"),
"point" : {
"type" : "Point",
"coordinates" : [
-47,
-15
]
}
}

问候

关于python - 如何为 MongoEngine PointField 格式化数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22940168/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com