I am using an AffineWarper to translate some co-ordinates based on a series of control points.
My control points are stored in a CSV file containing the following columns: Start_X, Start_Y, End_X, End_Y
These are a series of control points representing start and end locations for the transformation. These are turned into vectors which are the vectors for the AffineWarper to perform it's transformation (see screenshot).
This works fine on desktop FME, but when I upload the workspace to FME Server and upload the same CSV file, I do not get any features written.
I get a warning in the logs saying the AffineWarper requires a minimum of 4 points, when the file does have at least 4 lines.
I have written the outputs of the PointAdder and I can see the 4 vector lines being correctly created. However, it doesn't seem to be getting passed into the AffineWarper?