Changes between Initial Version and Version 1 of Ticket #5738, comment 1


Ignore:
Timestamp:
06/05/24 11:27:22 (7 months ago)
Author:
mdavis

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5738, comment 1

    initial v1  
    11The example provided is quite complex.  Can you provide a single example showing the questionable behaviour?
     2
     3Something like this:
     4{{{
     5WITH data(geom) AS (VALUES
     6   ('LINESTRING(544237.894288877 6588306.70972559,544226.9710250939 6588308.03375757,544220.8010926669 6588309.418844438)'::geometry)
     7)
     8SELECT 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}}}