2

考虑以下带有几何字段的SQLAalchemy/ ORM:GeoAlchemy2

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 的loads.

我如何获得该字段的lat/ ?longeom

4

2 回答 2

6

通过ST_XST_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)
于 2015-11-02T16:44:57.147 回答
5

geoalchemy2 to_shape函数将 :class: 转换geoalchemy2.types.SpatialElement 为 Shapely 几何。

在项目类中:

from geoalchemy2.shape import to_shape

point = to_shape(self.geo)

return {
    'latitude': point.y,
    'longitude': point.x
}
于 2019-07-09T07:34:30.600 回答