ST_ChangeEdgeGeom — Modifica a forma de um limite sem afetar a estrutura da topologia.
text ST_ChangeEdgeGeom(
varchar atopology, integer anedge, geometry acurve)
;
Modifica a forma de um limite sem afetar a estrutura da topologia.
If any arguments are null, the given edge does not exist in the edge
table of the topology schema, the acurve
is not a LINESTRING
, or the modification would change the underlying topology then an error is thrown.
Se o sistema de referência espacial (srid) da geometria acurve
não for o mesmo da topologia, uma exceção é lançada.
Se a nova acurve
não for simples, um erro é lançado.
Se mover o limite de uma posição antiga acertar um obstáculo, um erro é lançado.
Disponibilidade: 1.1.0
Melhorias: 2.0.0 adiciona execução da consistência topológica
This method implements the SQL/MM specification. SQL-MM: Topo-Geo and Topo-Net 3: Routine Details X.3.6
SELECT topology.ST_ChangeEdgeGeom('ma_topo', 1, ST_GeomFromText('LINESTRING(227591.9 893900.4,227622.6 893844.3,227641.6 893816.6, 227704.5 893778.5)', 26986) ); ---- Edge 1 changed