Hello All,

I'm getting a

NoSuchIdentifierException: No transform for classification "Equirectangular"

exception in trying to create a Plate Carree or Equirectangular projected coordinate system. I thought "Plate_Carree" was a valid EPSG identifier, but I'm certain that "Equirectangular" is. Can anyone tell me what I'm doing wrong in the code below. Full stack trace at the end of the message.

        RSFactory crsFactory = FactoryFinder.getCRSFactory(null);
         String wkt = "PROJCS[\"World_Plate_Carree\", "
              + "GEOGCS[\"WGS84\", "
              + "DATUM[\"WGS84\", "
              + "SPHEROID[\"WGS84\", 6378137.0, 298.257223563]], "
              + "PRIMEM[\"Greenwich\", 0.0], "
              + "UNIT[\"degree\",0.017453292519943295]], "
              + "PROJECTION[\"Equirectangular\"], "
              + "PARAMETER[\"false_easting\",  0.0], "
              + "PARAMETER[\"false_northing\", 0.0], "
              + "PARAMETER[\"central_meridian\", -180.0], "
              + "UNIT[\"meter\",1.0]]";
CoordinateReferenceSystem targetCRS = crsFactory.createFromWKT(wkt);


Thanks!

-- john


Stack trace:

org.opengis.referencing.NoSuchIdentifierException: No transform for classification "Equirectangular". at org.geotools.referencing.operation.DefaultMathTransformFactory.getProvider(DefaultMathTransformFactory.java:265) at org.geotools.referencing.operation.DefaultMathTransformFactory.getDefaultParameters(DefaultMathTransformFactory.java:292)
    at org.geotools.referencing.wkt.Parser.parseProjection(Parser.java:569)
    at org.geotools.referencing.wkt.Parser.parseProjCS(Parser.java:865)
at org.geotools.referencing.wkt.Parser.parseCoordinateReferenceSystem(Parser.java:269) at org.geotools.referencing.wkt.Parser.parseCoordinateReferenceSystem(Parser.java:250) at org.geotools.referencing.factory.GeotoolsFactory.createFromWKT(GeotoolsFactory.java:1126)
    at com.jccartwright.ProjectionTest.transform(ProjectionTest.java:88)
    at com.jccartwright.ProjectionTest.main(ProjectionTest.java:40)

begin:vcard
fn:John Cartwright
n:Cartwright;John
org:CIRES/NGDC;Enterprise Data Systems Group
adr;dom:;;325 Broadway;Bouilder;CO;80305
email;internet:[EMAIL PROTECTED]
title:Associate Scientist
tel;work:303-497-6284
tel;fax:303-497-6513
version:2.1
end:vcard

Reply via email to