You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often, while intersecting LanduseAreas with XSCutlines for Manning's values, I get TopologyException on landuse table.
Healing the geometry with ST_MakeValid(geom) usually helps, i.e.:
UPDATE"schema"."LanduseAreas"SET
geom = ST_MakeValid(geom)
WHERE
NOT ST_IsValid(geom);
The text was updated successfully, but these errors were encountered:
Often, while intersecting LanduseAreas with XSCutlines for Manning's values, I get TopologyException on landuse table.
Healing the geometry with ST_MakeValid(geom) usually helps, i.e.:
The text was updated successfully, but these errors were encountered: