I have a set of large CSVs (without a Header for attrib names) with a variety of different record types distinguished by the value of the first column ... so I would expect to use a TestFilter to split into their separate feature types - Type A, Type B, and so on.
Once I've isolated these different feature types I want to rename the attributes (by default they'll be Col0, Col1, etc.). The attrib schemas are different for different feature types.
I have a set of header files, each a single line, one per feature type ... which contain the attribute names. - Col0 in the TypeA-Header file contains the new name of Col0 for TypeA features from the big CSVs.
Is there a transformer I can use ... rename the attribs of this feature type using the values of the attribs in this line of this file - one column at a time?
I know I could use the SchemaMapper but that'd involved editing my header files. Just wondered if there were summat to save a bit of faff.
IanM