postgis topology: missing relations
GRASS currently wrongly interprets relation between feature table and topological primitives (nodes, edges, faces). The correct relation is defined by relation
table in topo schema which is currently empty.
test=# SELECT * from topo_sample_invalid_geom_in_pg.relation;
topogeo_id | layer_id | element_id | element_type
------------+----------+------------+--------------
(0 rows)
Correct table for 3 polygons:
test=# SELECT * from topo_sample_invalid_geom_in_pg1.relation;
topogeo_id | layer_id | element_id | element_type
------------+----------+------------+--------------
1 | 1 | 1 | 3
2 | 1 | 2 | 3
3 | 1 | 30 | 3
(3 rows)
Change History
(7)
Resolution: |
→ fixed
|
Status: |
new → closed
|
Ticket retargeted after milestone closed