我正在开发一个需要能够在PostGis数据库中存储点的应用程序。我正在使用GeoAlchemy,它似乎存储了不正确的经度。
我有这段代码可以处理添加事件与Point位置数据的请求。
json_data = request.get_json(force=True)
if "location" in json_data:
json_location = json_data["location"]
geojson_geom = geojson.loads(json.dumps(json_location))
geom = from_shape(asShape(geojson_geom), srid=4326)
json_data["location"] = geom
event = Event(**json_data)
try:
session = Session()
session.add(event)
session.commit()
session.refresh(event)
except IntegrityError as e:
abort(409, error=e.args[0])
我使用的模型
class Event(Base):
__tablename__ = 'events'
id = Column(Integer, primary_key=True)
name = Column(String, nullable=False)
location = Column(Geography(geometry_type='POINT', srid=4326), nullable=False)
当我使用此测试数据时:
{
"name": "Test",
"location": {
"coordinates": [
47.65641,
-117.42733
],
"type": "Point"
}
}
然后str(geom)
将等于010100000039622d3e05d4474061a6ed5f595b5dc0
,如果我使用this converter,则会得到POINT(47.65641 -117.42733)
,这是正确的位置。
但是,当我查询数据库中的行时,发现0101000020E610000039622D3E05D447403EB324404D494FC0
存储在位置列中,即POINT(47.65641 -62.57267)
:经度非常不同。
据我所知,我向GeoAlchemy2提供了正确的数据和格式,如果有人可以暗示我在这里做错了,我将不胜感激。
答案 0 :(得分:0)
在Postgis中,点坐标表示为Point(longitude, latitude)
,因此值-117
是纬度,在4326中无效。
尝试交换测试数据中的输入坐标。