I have an Attribute called 'GPS_Code' with values grouped like
CL10 ST
CL10 EL
CL2 ST
CL2 EL
CL8 ST
CL8 EL.........etc
I want to create a line string between the ST and the EL but only for those with corresponding numbers. So a line between CL10 ST and CL10 EL, for example.
Currently the result I'm gettting is lines joining willy nilly all over the place.
I am using StringSearcher
Attribute GPS_Code
Regular Expression: ^(.+)(SL|EL)$
Matched Result Attribute: _matched_characters
Matched Pars Attribute: _matched_parts
with Sorter
_Matched_parts{0} Alphabetic Ascending
_matched_parts{1} Alphabetic Decending
and PointConnector
Parameters
Connection Break Attrbutes: _matched_parts{0}
List Name:
Cheers,
Shane