考虑以下带有几何字段的SQLAalchemy
/ GeoAlchemy2
ORM:
from geoalchemy2 import Geometry, WKTElement
class Item(Base):
__tablename__ = 'item'
id = Column(Integer, primary_key=True)
...
geom = Column(Geometry(geometry_type='POINTZ', srid=4326))
当我更新PostgreSQL shell中的项目时:
UPDATE item SET geom = st_geomFromText('POINT(2 3 0)', 4326) WHERE id = 5;
获取该字段:
items = session.query(Item).\
filter(Item.id == 3)
for item in items:
print item.geom
给出:
01e9030000000000000000004000000000000008400000000000000000
这不是一个合适的WKB - 至少,它不会与Shapely's loads
解析。
如何获取lat
字段的lon
/ geom
答案 0 :(得分:6)
通过ST_X和ST_Y获取lat
,lon
可能不是最优雅的方法,但它有效:
from sqlalchemy import func
items = session.query(Item,
func.st_y(Item.geom),
func.st_x(Item.geom)).\
filter(Item.id == 3)
for item in items:
print item.geom
给出:
(<Item 3>, 3.0, 2.0)
答案 1 :(得分:0)
geoalchemy2 to_shape函数用于转换:class:geoalchemy2.types.SpatialElement
到匀称的几何形状。
在物品类别中:
from geoalchemy2.shape import to_shape
point = to_shape(self.geo)
return {
'latitude': point.y,
'longitude': point.x
}