Simplify large geometries #337
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Status quo
There is no check on amount of vertices of a geometry when
SimpleGeomFormis being saved. There was an incident where a geometry has been uploaded, which held over 120,000 vertices, resulting in poor browser performance. Furthermore this amount of vertices is not needed. The current average on geometry vertices is ~75 (05/2023).Enhancement
Add a vertices check on
is_valid. If the geometry holds more than X vertices (e.g. 10,000) the geometry will be simplified automatically to hold less than 10,000 vertices. If this automatic procedure has been triggered, the user must receive an info message on the next redirect to the detail view, which states that the geometry contained too many vertices and had to be simplified due to performance reasons.Further details need to be discusses with the MKUEM.
Merged in #339