Ich versuche, eine LineStringGeometrie aus PostGIS zu ziehen und sie mit OGR (Python Bindinds) zu analysieren. from osgeo import ogr import psycopg2 connection = psycopg2.connect("...") cursor = connection.cursor() query = "SELECT geom FROM points LIMIT 1" cursor.execute(query) row =...