geos_simplify_linestring - ObjectVision/GeoDMS GitHub Wiki
Geometric functions geos_simplify_linestring
- geos_simplify_linestring(arc_data_item, simplifyfactor)
geos_simplify_linestring(arc_data_item, simplifyfactor) results in a data item with the geometry of the arc_data_item, in which the geometric structure is simplified. Near points are combined into a single point. What is near is configured with the simplifyfactor, a parameter indicating for which distance points are combined. No metric needs to be configured for the simplifyfactor, it is using the metric of the coordinate system.
The geos_ prefix of the function name indicates that the implementation of the operator uses [geos]
- attribute arc_data_item with an point value type
- parameter simplifyfactor with a float64 value type
- The composition type type of the arc_data_item item needs to be arc.
- The order of points in the arc_data_item needs to be clockwise for exterior bounds and counterclockwise for holes in polygons (right-hand-rule).
attribute<fpoint> geometry_simplified (polygon, district) := geos_simplify_linestring(road/geometry, 10.0);