GeoAlchemy2:获取点的经纬度
GeoAlchemy2: Get the lat, lon of a point
考虑以下带有几何字段的 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
进行解析。
如何获取geom
字段的lat
/lon
?
通过 ST_X and 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)
geoalchemy2 to_shape 函数转换 :class:geoalchemy2.types.SpatialElement
到 Shapely 几何形状。
在项目 class 中:
from geoalchemy2.shape import to_shape
point = to_shape(self.geo)
return {
'latitude': point.y,
'longitude': point.x
}
点类型语法为
Point ( Lat, Long)
根据mosi_kha的回答,return应该是
from geoalchemy2.shape import to_shape
point = to_shape(self.geo)
return {
'latitude': point.x,
'longitude': point.y
}
考虑以下带有几何字段的 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
进行解析。
如何获取geom
字段的lat
/lon
?
通过 ST_X and 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)
geoalchemy2 to_shape 函数转换 :class:geoalchemy2.types.SpatialElement
到 Shapely 几何形状。
在项目 class 中:
from geoalchemy2.shape import to_shape
point = to_shape(self.geo)
return {
'latitude': point.y,
'longitude': point.x
}
点类型语法为
Point ( Lat, Long)
根据mosi_kha的回答,return应该是
from geoalchemy2.shape import to_shape
point = to_shape(self.geo)
return {
'latitude': point.x,
'longitude': point.y
}