public static double[] UTMToWGS84(double easting, double northing, int zoneNumber, char zoneLetter) throws NoSuchAuthorityCodeException, FactoryException, TransformException { boolean isNorthernHemisphere = (zoneLetter >= 'N'); String utmCRS = "EPSG:" + (isNorthernHemisphere ? "326" : "327"...