I'm currently using reading geotiffs(mosaics) generated from pix4d. And writing them backout again by removing the black band that is generated around them.Â
Â
When I started publishing these out to arcgis image server I started to notice the projection was not aligning with points of the projected that have been collected. But the original generated by pix4d didn't have this alignment problem.
Â
All our mosaics created since 2021 are projected out in EPSG:6549 and when the geotiff is read through the feature reader it looks it's being detected as the following:
Â
Coordinate System Parameters
Â
CS_NAME:Â NSRS11.OH-NF
DESC_NM: NSRS 2011 Ohio State Planes, North Zone, US Foot
DT_NAME:Â NSRS11
EPSG_QD:Â 1
GROUP:Â SPNSRS11F
MAP_SCL:Â 1
MAX_LAT:Â 42.55
MAX_LNG:Â -79.98333333333333
MIN_LAT:Â 39.88333333333333
MIN_LNG:Â -85.31666666666666
ORG_LAT:Â 39.666666666666664
ORG_LNG:Â -82.5
PARM1:Â 41.7
PARM2:Â 40.43333333333333
PROJ:Â LM
QUAD:Â 1
SCL_RED:Â 1
SOURCE: CRS HARN/OH.OH-NF with datum modified to NSRS11
UNIT:Â FOOT
X_OFF:Â 1968500
ZERO_X:Â 0.001
ZERO_Y:Â 0.001
Â
Â
Datum Parameters
Â
DESC_NM: NSRS 2011: Alaska, Continental US, PR/VI
ELLIPSOID:Â GRS1980
SOURCE: National Geodetic Survey (ngs.noaa.gov/NationalReadjustment)
USE:Â NAD83
Â
Â
Ellipsoid Parameters
Â
DESC_NM: Geodetic Reference System of 1980
E_RAD:Â 6378137
P_RAD:Â 6356752.314140348
SOURCE: Stem, L.E., Jan 1989, State Plane Coordinate System of 1983
Â
Â
OGCÂ WKTÂ Description
Â
PROJCS/"NSRS 2011 Ohio State Planes, North Zone, US Foot",
    GEOGCSS"NAD83_National_Spatial_Reference_System_2011",
        DATUMÂ"NAD83_National_Spatial_Reference_System_2011",
            SPHEROIDN"Geodetic Reference System of 1980",6378137,298.257222100892],
            AUTHORITY""EPSG","1116"]],
        PRIMEMN"Greenwich",0],
        UNIT2"degree",0.0174532925199433,
            AUTHORITYR"EPSG","9122"]]],
    PROJECTION9"Lambert_Conformal_Conic_2SP"],
    PARAMETERO"latitude_of_origin",39.6666666666667],
    PARAMETERc"central_meridian",-82.5],
    PARAMETER1"standard_parallel_1",41.7],
    PARAMETERT"standard_parallel_2",40.4333333333333],
    PARAMETERo"false_easting",1968500],
    PARAMETER""false_northing",0],
    UNIT6"Foot_US",0.304800609601219],
    AXISn"Easting",EAST],
    AXISE"Northing",NORTH]]
Â
Â
Â
Esri WKT Description
Â
PROJCS3"NAD_1983_2011_StatePlane_Ohio_North_FIPS_3401_Ft_US",GEOGCSr"GCS_NAD_1983_2011",DATUMs"D_NAD_1983_2011",SPHEROID "GRS_1980",6378137.0,298.257222101]],PRIMEM "Greenwich",0.0],UNITE"Degree",0.0174532925199433]],PROJECTION]"Lambert_Conformal_Conic"],PARAMETER "False_Easting",1968500.0],PARAMETER["False_Northing",0.0],PARAMETERN"Central_Meridian",-82.5],PARAMETERA"Standard_Parallel_1",40.43333333333333],PARAMETER_"Standard_Parallel_2",41.7],PARAMETERM"Latitude_Of_Origin",39.66666666666666],UNIT1"Foot_US",0.3048006096012192],AUTHORITYo"EPSG",6549]]
I'm not sure I under/following this projection because after doing some comparisons I found a few discrepancies
Â
This is the OGC WKT for EPSG:6549 and if you compare it to what I posted above they do not match. And I'm not sure why?
PROJCS""unnamed",GEOGCSd"GRS 1980(IUGG, 1980)",DATUMÂ"unknown",SPHEROIDt"GRS80",6378137,298.257222101]],PRIMEMÂ"Greenwich",0],UNIT "degree",0.0174532925199433]],PROJECTION<"Lambert_Conformal_Conic_2SP"],PARAMETER:"standard_parallel_1",41.7],PARAMETERw"standard_parallel_2",40.43333333333333],PARAMETER "latitude_of_origin",39.66666666666666],PARAMETERd"central_meridian",-82.5],PARAMETERA"false_easting",1968500],PARAMETER8"false_northing",0],UNITE"Foot_US",0.3048006096012192],AUTHORITY2"epsg","6549"]]
 The ESRI WKT matches
Â
PROJCSl"Lambert_Conformal_Conic",GEOGCSr"GCS_GRS 1980(IUGG, 1980)",DATUMM"D_unknown",SPHEROIDi"GRS80",6378137,298.257222101]],PRIMEMt"Greenwich",0],UNIT]"Degree",0.017453292519943295]],PROJECTIONT"Lambert_Conformal_Conic"],PARAMETER""standard_parallel_1",41.7],PARAMETER,"standard_parallel_2",40.43333333333333],PARAMETER/"latitude_of_origin",39.66666666666666],PARAMETERo"central_meridian",-82.5],PARAMETER9"false_easting",1968500],PARAMETERR"false_northing",0],UNIT0"Foot_US",0.30480060960121924]]
Â
I'm not sure what the coordinate system that's being autodetected by FME is suppose to be? It doesn't appear to be correct or I'm misinterpreting the description.Â