boolean isnorthern = (zone_letter == 'N');
Ellipsoid ellps = (Ellipsoid) props.get(ProjectionFactory.DATUM);
Proj proj = new UTMProjection(center, scale, width, height, type, zone_number, isnorthern,
ellps);
if ((ellps != null) && (ellps != Ellipsoid.WGS_84)) {
proj = new DatumShiftProjection(proj, new DatumShiftGCT(ellps));
}
return proj;
} catch (Exception e) {
if (Debug.debugging("proj")) {
Debug.output("UTMProjectionLoader: problem creating UTM projection "