我的问题是这个。我正在为一些数据创建一个模型。
class Cables(Base):
__tablename__ = 'cables'
id = Column(Integer, nullable=False)
route = Column(Geometry(geometry_type='LINESTRING', srid=4326), nullable=False)
现在,我想将这样的路由转换为 GeoJSON。
我尝试过的事情
@app.route("/api/cable/<int:id>", methods=['GET'])
def get_cable(id):
cable = session.query(Cables).filter(Cables.id == id).first()
return str(geoalchemy2.functions.ST_AsGeoJSON(cable.route))
返回ST_AsGeoJSON(ST_GeomFromEWKB(:ST_GeomFromEWKB_1))
如果我更改退货:
return geoalchemy2.functions.ST_AsGeoJSON(cable.route)
返回TypeError: 'ST_AsGeoJSON' object is not callable
return str(cable.route)
返回0102000020e610000002000000b34fd4d9bca351c032e14d5134c240c0d24f8055e0a351c0dedea9f4dcbf40c0
这将表明我确实有一个几何对象。
return cable.route
返回TypeError: 'WKBElement' object is not callable
如果我打印路线类型,
print(type(cable.route))
返回
<class 'geoalchemy2.elements.WKBElement'>
我认为它应该返回此类的对象,而不是类本身。在这一点上我很困惑,我不知道我现在应该做什么。
有什么建议么?