System.out.println(utm);
// Lat/Long to XYZ conversion (assume height of zero).
CoordinatesConverter<LatLong, XYZ> latLongToXYZ = LatLong.CRS
.getConverterTo(XYZ.CRS);
XYZ xyz = latLongToXYZ.convert(latLong);
System.out.println(xyz);
// Compound coordinates - Lat/Long/Alt to XYZ conversion.
Altitude alt = Altitude.valueOf(2000, FOOT);
CompoundCoordinates<LatLong, Altitude> latLongAlt =