Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-users] projection not supported: +proj=utm +ellps=intl +zone=29 +towgs84=-84,-107,-120

Hi, I built a raster from an OziExplorer file with the following projection:

+proj=utm +ellps=intl +zone=29 +towgs84=-84,-107,-120

WKT:

PROJCS["UTM Zone 29, Northern Hemisphere",
    GEOGCS["International 1909 (Hayford)",
        DATUM["unknown",
            SPHEROID["unnamed",6378388,297.000000000005]],
        PRIMEM["Greenwich",0],
        UNIT["degree",0.0174532925199433]],
    PROJECTION["Transverse_Mercator"],
    PARAMETER["latitude_of_origin",0],
    PARAMETER["central_meridian",-9],
    PARAMETER["scale_factor",0.9996],
    PARAMETER["false_easting",500000],
    PARAMETER["false_northing",0],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]]]

When I convert it to WGS84, it reads it. When I try to set it to ED50 zone 29, it doesn't accept it read it either. RenderingNull

PROJCS["ED50 / UTM zone 29N",
  GEOGCS["ED50",
    DATUM["European_Datum_1950",
      SPHEROID["International 1924", 6378388.0, 297.0, AUTHORITY["EPSG","7022"]],
      AUTHORITY["EPSG","6230"]],
    PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]],
    UNIT["degree", 0.017453292519943295],
    AXIS["Lon", EAST],
    AXIS["Lat", NORTH],
    AUTHORITY["EPSG","4230"]],
  PROJECTION["Transverse_Mercator"],
  PARAMETER["central_meridian", -9.0],
  PARAMETER["latitude_of_origin", 0.0],
  PARAMETER["scale_factor", 0.9996],
  PARAMETER["false_easting", 500000.0],
  PARAMETER["false_northing", 0.0],
  UNIT["m", 1.0],
  AXIS["x", EAST],
  AXIS["y", NORTH],
  AUTHORITY["EPSG","23029"]]

Any suggestions?
Many thanks,
Erik

Back to the top