Good evening at everyone.
SINFI (National Information System for Italian Infrastructures) requires that the data be delivered to the reference system EPSG:6875 Â1]
The SRS EPSG:6875 is called "RDN2008 / Italy zone (N-E)", based on the "RDN 2008" Datum.
The "Rete Dinamica Nazionale 2008", is the evolution of "European Terrestrial Reference Frame 2000" (ETRF 2000) . The RDN2008-ETRF2000 system is the new official Italian reference system since 2011 (D.M. del 10/11/2011) a2]
e1]Â http://epsg.io/6875Â
e2]Â http://geomappando.com/wp-content/uploads/2016/07/DM-ETRF2000-RDN.pdfÂ
Â
I have configured as follows a custom "DATUM_DEF" and a custom "COORDINATE_SYSTEM_DEF" in my "MyCoordSysDefs.fme" file:
ELLIPSOID_DEFÂ GRS_1980Â \
   DESC_NM "GRS_1980" \
   E_RAD 6378137 \
   P_RAD 6356752.314140
DATUM_DEFÂ RDN2008Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â \
   DESC_NM    "Rete_Dinamica_Nazionale_2008"  \
   SOURCE     "PROJ4"                                         \
   ELLIPSOID  GRS_1980 \
   USE 7PARAMETERÂ
   DELTA_X 0                           \
   DELTA_Y 0                             \
   DELTA_Z 0                             \
   BWSCALE 0                          \
   ROT_X 0                          \
   ROT_Y 0                            \
   ROT_Z 0
  Â
COORDINATE_SYSTEM_DEFÂ RDN2008_Italy_zone_N_EÂ Â Â Â \
    DESC_NM "RDN2008 / Italy zone (N-E)"      \
    EL_NAME GRS_1980    \
    DT_NAME RDN2008 \
    GROUP EUROPE \
    PARM1 12    \
    PROJ TM    \
    MAX_LAT 47.10                           \       Â
    MAX_LNG 18.99                           \       Â
    MIN_LAT 34.76                           \       Â
    MIN_LNG 5.93                            \   Â
    QUAD 1    \
    SCL_RED 0.9985000000    \
    UNIT METER    \
    X_OFF 7000000 Â
The new coordinate system is corrently loaded from FME and the reprojection works great.
FME Create the ESRI WKT Definition as follow:
PROJCS "RDN2008_Italy_zone_N_E",GEOGCS "GCS_RDN2008",DATUMÂ"D_RDN2008",SPHEROIDA"GRS_1980",6378137,298.257222101]],PRIMEM "Greenwich",0],UNIT "Degree",0.017453292519943295]],PROJECTIONÂ"Transverse_Mercator"],PARAMETERÂ"latitude_of_origin",0],PARAMETER "central_meridian",12],PARAMETER "scale_factor",0.9985],PARAMETERÂ"false_easting",7000000],PARAMETERÂ"false_northing",0],UNITÂ"Meter",1]]
Â
The ESRI WKT Definition created from QGIS is the follow:
PROJCSo"RDN2008_Italy_zone_N_E",GEOGCSe"GCS_RDN2008",DATUMn"D_Rete_Dinamica_Nazionale_2008",SPHEROIDc"GRS_1980",6378137,298.257222101]],PRIMEMe"Greenwich",0],UNITt"Degree",0.017453292519943295]],PROJECTION2"Transverse_Mercator"],PARAMETERR"latitude_of_origin",0],PARAMETERD"central_meridian",12],PARAMETER1"scale_factor",0.9985],PARAMETERe"false_easting",7000000],PARAMETERC"false_northing",0],UNITr"Meter",1]]
Â
To allow QGIS to recognise the EPSG:6785 reference system, the two WKT strings must be identical
Â
I expected that in the string was reported the parameter DESC_NM    "Rete_Dinamica_Nazionale_2008" but it is not so. the name is reported.
The name cannot be longer than 24 characters.
Â
Any suggestions?
Â