Hi @sega, I think the affine warping operation would be a solution.
If the features (1, 2, and 3) have point geometries on the scaled grid and also the attribute values (MERX, MERY) indicate the coordinates of each point in the destination coordinate system, you can use the VertexCreator (Mode: Add Point) to create line segments that represent moving direction and amount from the current location to the destination for each point.
Then, you can perform affine warping operation on the vector features with the AffineWarper transformer, using the line segments as the "Control" features. See also the help on the AffineWarper to learn more.
Hi @sega, I think the affine warping operation would be a solution.
If the features (1, 2, and 3) have point geometries on the scaled grid and also the attribute values (MERX, MERY) indicate the coordinates of each point in the destination coordinate system, you can use the VertexCreator (Mode: Add Point) to create line segments that represent moving direction and amount from the current location to the destination for each point.
Then, you can perform affine warping operation on the vector features with the AffineWarper transformer, using the line segments as the "Control" features. See also the help on the AffineWarper to learn more.
Hello @takashi! Thank you so much! It works!