Given an XML of the form
<event>
<LineGeometry srid="4326"> x_1,y_1;x_2,y_2;x_3,y_3;....</LineGeometry>
<OtherProperty> foo</OtherProperty>
...
</event>
I would like to create the line geometry for this event.
While there are myriad of examples that match this almost completely, I always got stuck at some point. I mostly got stuck because the number of x/y pairs is not bounded, and so I coudn't find out how to properly split the LineGeometry-string into a list and then create coordinates from it.
I might want to add that I started using FME (2013 SP3) yesterday, so apologies if there is a very simple way for this that I should have seen.