I'm able to figure out how to map a single feature coming from one schema to an existing feature of another schema using the Schema Mapper tranformer. The problem that I'm having is how to map the rest of the features using the same SchemaMapper transformer without having to create one for each feature that are within the two schemas. Here is schematic of what i'm trying to do. Note that the Out feature already exist in the output schema.
RoadL ------------------------> | |-------------------------> RoadL_Out
RiverL --------------------------> | SchemaMapper |-------------------------> RiverL_Out
SandA ------------------------> | |-------------------------> SandL_Out
What's happening for me is that the total number of features from the incoming schema are being inserted into each of the output features. That is, if the total number of the road (200), river (700) and sand (100) feature is 1000, then the transformer tries to write 1000 roads, 1000 rivers and 1000 sand features.
Many thanks,
Sam