例如,
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)?
由于
答案 0 :(得分:8)
您可以使用匀称解析WKB(well-known binary)点,甚至其他几何形状。
from shapely import wkb
for lake in query:
point = wkb.loads(bytes(lake.point.data))
print point.x, point.y
答案 1 :(得分:4)
http://geoalchemy-2.readthedocs.org/en/0.2.4/spatial_functions.html#geoalchemy2.functions.ST_AsText正是您要找的。这将返回'POINT(lng,lat)'。但是,ST_X应该可以工作,所以如果它没有返回正确的值,你可能会遇到另一个问题。
答案 2 :(得分: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