Question

How to merge all feature

  • 27 February 2014
  • 2 replies
  • 1 view

Badge
Hi everyone,

 

 

I've got two flow of data:

 

_FA with attributes (a, b, c, d)

 

and

 

_FB with attribute (e)

 

 

I've got X (>1)  FA and only 1 FB.

 

 

And I would like a way to have X features like this:

 

_FC (a, b, c, d, e)

 

 

 

How may I do that ?

 

 

I first tougth of FeatureMerger but I can't.

 

 

Any solution ?

2 replies

Userlevel 4
Hi,

 

 

the easiest solution is perhaps to use the UnconditionalFeatureMerger (http://fmestore.safe.com/transformers/UnconditionalFeatureMerger.htm) from the FME Store.

 

 

You can also use an AttributeCreator to create a new attribute e.g. "_join" = 1 on both _FA and _FB and use that in the FeatureMerger.

 

 

David
Badge
@DAvid: You Rock ! Thanks mate !!

Reply