Skip to main content

I've been using a couple of Affine transformer to transform data from/to a custom, local coordinate system. I just discovered the possibility of defining a custom FME coordinate system with the TMAF projection, so I'm trying to simplify my workspace using this. I put a new TMAF (based on UTM32) into MyCoordSysDefs.fme and then use it in a regular Reprojector transformer. It's my understanding that such affine transforms should be invertible, and that I should just need to change the from/to coordinate systems in the Reprojector to get the correct transform, but I can only get it to work one way? How is this supposed to work?

This is my definition:

COORDINATE_SYSTEM_DEF RG.UTM-32N \
    DESC_NM "Mongstad, based on UTM32N" \
    DT_NAME WGS84 \
    GROUP Project \
    ORG_LAT 0 \
    PARM1 9 \
    PARM2 3994771.6847 \
    PARM3 -5446521.5069 \
    PARM4 0.7816547086773 \
    PARM5 -0.6234456587379 \
    PARM6 0.6234456587379 \
    PARM7 0.7816547086773 \
    PROJ TMAF \
    QUAD 1 \
    SCL_RED 0.9996 \
    SOURCE "Customer" \
    UNIT METER \
    X_OFF 500000 \
    Y_OFF 0

 


Reply