I am trying to use this WKT: PROJCS["Azimuthal Equidistant Lng=1.27780675;Lat=58.62877105", GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137.0,298.257223563]], PRIMEM["Greenwich",0.0], UNIT["Degree",0.0174532925199433]], PROJECTION["Azimuthal_Equidistant"], PARAMETER["False_Easting",0.0], PARAMETER["False_Northing",0.0], PARAMETER["Central_Meridian",1.277806753183437], PARAMETER["Latitude_Of_Origin",58.62877104866187], UNIT["Meter",1.0]]
And I am getting this error: org.opengis.util.NoSuchIdentifierException: No operation method found for name or identifier “Azimuthal_Equidistant”. at org.apache.sis.referencing.operation.transform.DefaultMathTransformFactory.getOperationMethod(DefaultMathTransformFactory.java:396) at org.apache.sis.referencing.operation.DefaultCoordinateOperationFactory.getOperationMethod(DefaultCoordinateOperationFactory.java:311) at org.apache.sis.internal.referencing.ServicesForMetadata.getOperationMethod(ServicesForMetadata.java:637) at org.apache.sis.io.wkt.GeodeticObjectParser.parseMethod(GeodeticObjectParser.java:1274) at org.apache.sis.io.wkt.GeodeticObjectParser.parseDerivingConversion(GeodeticObjectParser.java:1322) at org.apache.sis.io.wkt.GeodeticObjectParser.parseProjectedCRS(GeodeticObjectParser.java:2115) at org.apache.sis.io.wkt.GeodeticObjectParser.parseCoordinateReferenceSystem(GeodeticObjectParser.java:326) at org.apache.sis.io.wkt.GeodeticObjectParser.parseObject(GeodeticObjectParser.java:287) at org.apache.sis.io.wkt.AbstractParser.parseObject(AbstractParser.java:283) at org.apache.sis.io.wkt.GeodeticObjectParser.parseObject(GeodeticObjectParser.java:244) at org.apache.sis.io.wkt.AbstractParser.createFromWKT(AbstractParser.java:214) at org.apache.sis.referencing.factory.GeodeticObjectFactory.createFromWKT(GeodeticObjectFactory.java:1671) at org.apache.sis.referencing.CRS.fromWKT(CRS.java:303) This wkt is for crs with epsg code 9832. From this document, I understand that Apache SIS doesn't support Azimuthal Equidistant coordinate systems : https://sis.apache.org/tables/CoordinateReferenceSystems.html . Is this something that is planned? Here is the code I used for testing: String wktString = "PROJCS[\"Azimuthal Equidistant Lng=1.27780675;Lat=58.62877105\"," + "GEOGCS[\"GCS_WGS_1984\",DATUM[\"D_WGS_1984\"," + "SPHEROID[\"WGS_1984\",6378137.0,298.257223563]]," + "PRIMEM[\"Greenwich\",0.0]," + "UNIT[\"Degree\",0.0174532925199433]]," + "PROJECTION[\"Azimuthal_Equidistant\"]," + "PARAMETER[\"False_Easting\",0.0]," + "PARAMETER[\"False_Northing\",0.0]," + "PARAMETER[\"Central_Meridian\",1.277806753183437]," + "PARAMETER[\"Latitude_Of_Origin\",58.62877104866187]," + "UNIT[\"Meter\",1.0]]"; CoordinateReferenceSystem crs = CRS.fromWKT(wktString);
