gpt4 book ai didi

python - 有没有办法让 psycopg2 将点作为 python 元组返回?

转载 作者:行者123 更新时间:2023-11-29 13:27:07 24 4
gpt4 key购买 nike

我想使用 psycopg2 从 Postgres 中检索一个 PostGIS 点列作为 python 元组。

事实证明这非常困难。我很困惑 psycopg2 不会自动读取 Postgres point types (抛开 PostGIS 点几何)作为 python 元组。

例如,我希望以下代码中的 row['latlng_tuple'] 是 float 的 python 元组。

cursor.execute("SELECT \
( CAST (ST_X(latlng) AS double precision) \
, CAST (ST_Y(latlng) AS double precision) \
) \
AS latlng_tuple \
FROM my_table;"

for row in cursor:
print row['latlng_tuple']

相反,我发现上面的代码将 row['latlng_tuple'] 作为字符串返回。这与 the way that the psycopg2 documentation describes the conversion between Postgres and python types 一致.

为什么会这样?有没有办法让 psycopg2 将点作为 python 元组返回,也许使用自定义转换器/适配器,如所述here

或者,是否有一种简单的方法可以将 PostGIS 点几何作为 python 元组返回?我试过 ppygis,发现它不起作用。

最佳答案

问题中的 SQL 返回一个 composite record type使用 (...),它被转换为 text。例如,使用原生 double precision 类型:

import psycopg2
import psycopg2.extras
conn = psycopg2.connect(...)
cursor = conn.cursor(cursor_factory=psycopg2.extras.RealDictCursor)
cursor.execute("SELECT (1.0::double precision, 2.0::double precision) AS db_tuple;")
for row in cursor:
print(repr(row['db_tuple'])) # '(1,2)'

因此您无法在 SQL for Python 中构建元组。使用 Python 构建元组:

cursor.execute("SELECT 1.0::double precision AS x, 2.0::double precision AS y;")
for row in cursor:
xy_tuple = (row['x'], row['y'])
print(repr(xy_tuple )) # (1.0, 2.0)

要从 PostGIS 获取其他软件的数据,请使用 geometry accessoroutput functions .例如ST_X(geom)double precision 类型返回点几何的 x 坐标。

cursor.execute("SELECT ST_X(latlng) AS lng, ST_Y(latlng) AS lat FROM my_table;")
for row in cursor:
latlng_tuple = (row['lat'], row['lng'])
print(repr(latlng_tuple))

# (1.0, 2.0)
# (3.0, 4.0)

此外,不要将 PostGIS 的 geometry(Point) 类型与 PostgreSQL 的 point 类型混淆。他们非常不同。此外,不需要像 ppygis 这样的包来将几何图形从 Python 传输到 PostGIS。

关于python - 有没有办法让 psycopg2 将点作为 python 元组返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31737092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com