double equinox = wcs.getEquinox();
WorldCoords centerPos = new WorldCoords(center, equinox);
// get the radius in arcmin
Point2D.Double p = new Point2D.Double(r.getX(), r.getY());
wcs.screenToWorldCoords(p, false);
WorldCoords origin = new WorldCoords(p, equinox);
double radius = centerPos.dist(origin);
// get the image width and height in arcmin
Point2D.Double dims = new Point2D.Double(r.getWidth(), r.getHeight());