Hi,
i have two tables, one containing a code list and the meaning of each code:
CodeMeaning
500
Grass
501
Tree
502
Street
The other table, coming from the land survey team, contains the coordinates and the code of the point.
XY
Code
51XXXXX1
9XXXXXXX1
501
51XXXXX2
9XXXXXXX2
500
51XXXXX3
9XXXXXXX3
500
I want the meaning of each code in this table is added in a new column:
XY
Code
Meaning
51XXXXX1
9XXXXXXX1
501
Tree
51XXXXX2
9XXXXXXX2
500
Grass
51XXXXX3
9XXXXXXX3
500
Grass
I m new to FME, usually i would do this with a script, e.g. in QGIS. My FeatureMerge options so far look like:
Any hints are welcome!
Thank you!