Update of /cvsroot/geotools/geotools/src/uk/ac/leeds/ccg/geotools/projections
In directory usw-pr-cvs1:/tmp/cvs-serv2360/uk/ac/leeds/ccg/geotools/projections
Modified Files:
ElipsoidalMercator.java
Log Message:
commented out some debug output
Index: ElipsoidalMercator.java
===================================================================
RCS file: /cvsroot/geotools/geotools/src/uk/ac/leeds/ccg/geotools/projections/ElipsoidalMercator.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -w -C2 -d -r1.1.1.1 -r1.2
*** ElipsoidalMercator.java 2000/04/14 09:18:50 1.1.1.1
--- ElipsoidalMercator.java 2001/12/22 20:09:27 1.2
***************
*** 74,78 ****
*/
public GeoRectangle projectedExtent(GeoRectangle r){
! System.out.println("raw "+r);
double x = r.getX();
double y = r.getY();
--- 74,78 ----
*/
public GeoRectangle projectedExtent(GeoRectangle r){
! //System.out.println("raw "+r);
double x = r.getX();
double y = r.getY();
***************
*** 93,97 ****
double right = Math.max(r1[0],r2[0]);
! System.out.println("proj "+left+","+base+":"+right+","+top);
GeoRectangle gr = new GeoRectangle();
gr.add(left,base);
--- 93,97 ----
double right = Math.max(r1[0],r2[0]);
! //System.out.println("proj "+left+","+base+":"+right+","+top);
GeoRectangle gr = new GeoRectangle();
gr.add(left,base);
***************
*** 100,104 ****
}
public GeoRectangle unprojectedExtent(GeoRectangle r){
! System.out.println("raw "+r);
double x = r.getX();
double y = r.getY();
--- 100,104 ----
}
public GeoRectangle unprojectedExtent(GeoRectangle r){
! //System.out.println("raw "+r);
double x = r.getX();
double y = r.getY();
***************
*** 124,128 ****
double right = Math.min(r1[0],r2[0]);
! System.out.println("unproj "+left+","+base+":"+right+","+top);
GeoRectangle gr = new GeoRectangle();
gr.add(left,base);
--- 124,128 ----
double right = Math.min(r1[0],r2[0]);
! //System.out.println("unproj "+left+","+base+":"+right+","+top);
GeoRectangle gr = new GeoRectangle();
gr.add(left,base);
|