}
public static ProjectedPoint reverse(double x, double y, int srid) {
UTMProjection projection = new UTMProjection(srid);
XYPoint p = new XYPoint(x, y);
CoordinatePoint latlon = projection.reverse(p);
return new ProjectedPoint(latlon.getLat(), latlon.getLon(), x, y, srid);
}
}