Page 1 / 1
There are two options as I see it
- You can try and use a CSV reader. The parameters allow you to be pretty specific about what you want to be read in.
- You can set the delimiter (in your case "space")
- You can specify on which line the Data actually start (from the screen shot it would be line 21)
- You can then also manually specify column names
- The next option is to use a TextFile reader. This is a good option if the length of the header might change.
- You can filter out the Header lines with a Tester (eg. Starts With H)
- you will then need to split the line data in to attributes based on the delimiter
Once you have your table in the right format with the correct column names you can then write the data out to your preffered format.
FME writers have the option to "Fan Out" a table into multiple files based on an attribute name.