Skip to main content

Hi, would you please help me to have these coordinates separately with their own attribute? Thanks in advance. photo is attached

If you have FME 2016 you can make use of the new capabilities of the stringsearcher to find all coordinate matches within the string

Then use an attribute creator to rename the list elements


If you do not have the latest version (2016.1) I would do the following:

Use the StringReplacer to get rid of "SRID=3607; POINT ("

Use a second StringReplacer to get rid of ")"

Use the AttributeSplitter (delimiter " " ) to split the coordinates.

And copy _list{0} to X, _list{1} to Y and _list{2} to Z.


Thanks for replying. I could go forward somehow with erik_jan advises forward. But got the last result came through Geometryreplacer.


If you have FME 2016 you can make use of the new capabilities of the stringsearcher to find all coordinate matches within the string

Then use an attribute creator to rename the list elements

Thanks for replying. Solving my problem through this way is hard for me to find correct parameters for "contains Regular Expression". But I have learned something new.

 

 


Reply