System.out.printf( "%s%n", h.projVar);
CoordinateAxis1D xaxis = (CoordinateAxis1D) h.gcs.getXHorizAxis();
CoordinateAxis1D yaxis = (CoordinateAxis1D) h.gcs.getYHorizAxis();
h.p.projToLatLon(xaxis.getCoordValue(0), yaxis.getCoordValue(0) );
LatLonPointImpl start1 = h.p.projToLatLon(xaxis.getCoordValue(0), yaxis.getCoordValue(0));
LatLonPointImpl start2 = h.p.projToLatLon(xaxis.getCoordValue((int)xaxis.getSize()-1), yaxis.getCoordValue((int)yaxis.getSize()-1));
System.out.printf( "start = %s%n", start1);
System.out.printf( "end = %s%n", start2);
}