17

例如,

class Lake(Base):
     __tablename__ = 'lake'
     id = Column(Integer, primary_key=True)
     name = Column(String)
     geom = Column(Geometry('POLYGON'))
     point = Column(Geometry('Point'))


lake = Lake(name='Orta', geom='POLYGON((3 0,6 0,6 3,3 3,3 0))', point="POINT(2 9)")
query = session.query(Lake).filter(Lake.geom.ST_Contains('POINT(4 1)'))
for lake in query:
     print lake.point

它回来了<WKBElement at 0x2720ed0; '010100000000000000000000400000000000002240'>

我也尝试过lake.point.ST_X()但它也没有给出预期的纬度

将值从 WKBElement 转换为可读且有用的格式(例如(lng,lat))的正确方法是什么?

谢谢

4

3 回答 3

12

您可以使用shapely解析 WKB(众所周知的二进制)点,甚至其他几何形状。

from shapely import wkb
for lake in query:
    point = wkb.loads(bytes(lake.point.data))
    print point.x, point.y
于 2015-05-13T00:39:50.513 回答
5

http://geoalchemy-2.readthedocs.org/en/0.2.4/spatial_functions.html#geoalchemy2.functions.ST_AsText是您正在寻找的。这将返回“POINT (lng, lat)”。不过,ST_X 应该可以工作,因此如果它没有返回正确的值,您可能会遇到另一个问题。

于 2014-06-07T09:20:46.170 回答
0

扩展约翰的答案,您可以ST_AsText()在这样的查询中使用 -

import sqlalchemy as db
from geoalchemy2 import Geometry
from geoalchemy2.functions import ST_AsText

# connection, table, and stuff here...

query = db.select(
    [
        mytable.columns.id,
        mytable.columns.name,
        ST_AsText(mytable.columns.geolocation),
    ]
)

在此处查找有关使用函数的更多详细信息 - https://geoalchemy-2.readthedocs.io/en/0.2.6/spatial_functions.html#module-geoalchemy2.functions

于 2021-06-10T16:49:25.837 回答