Changes between Initial Version and Version 1 of Ticket #5738, comment 1
- Timestamp:
- 06/05/24 11:27:22 (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5738, comment 1
initial v1 1 1 The example provided is quite complex. Can you provide a single example showing the questionable behaviour? 2 3 Something like this: 4 {{{ 5 WITH data(geom) AS (VALUES 6 ('LINESTRING(544237.894288877 6588306.70972559,544226.9710250939 6588308.03375757,544220.8010926669 6588309.418844438)'::geometry) 7 ) 8 SELECT geom, 9 ST_LineSubstring(geom, 0.35, 0.65) AS subline, 10 ST_OffsetCurve( ST_LineSubstring(geom, 0.35, 0.65), -6, 'quad_segs=4 join=mitre mitre_limit=1.1') AS offLine 11 FROM data; 12 }}}