Changes in this commit seem to be the result of some "auto reformat" tool execution. The Java - GeoAPI - GeoTools import ordering is altered, imports used only in Javadoc are lost and the encoding of non-ASCII characters is broken. This commit has been reverted, except for the removal of really unused imports which are kept removed.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r10795:10796 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/resources/CRSUtilities.java
Revision 10795 | Revision 10796 |
---|---|
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2003, Geotools Project Managment Committee (PMC)
* (C) 2001, Institut de Recherche pour le Développement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public |
/*
* Geotools 2 - OpenSource mapping toolkit
* (C) 2003, Geotools Project Managment Committee (PMC)
* (C) 2001, Institut de Recherche pour le D�veloppement
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public |
package org.geotools.resources; // J2SE dependencies import java.util.Locale; import java.awt.geom.Point2D; import java.awt.geom.Rectangle2D; import java.awt.geom.AffineTransform; // OpenGIS dependencies import org.opengis.metadata.extent.*; import org.opengis.referencing.cs.*; import org.opengis.referencing.crs.*; import org.opengis.referencing.datum.*; import org.opengis.referencing.operation.MathTransform; import org.opengis.referencing.operation.MathTransform2D; import org.opengis.referencing.operation.TransformException; import org.opengis.spatialschema.geometry.MismatchedDimensionException; import org.opengis.spatialschema.geometry.Envelope; // Geotools dependencies import org.geotools.measure.Latitude; import org.geotools.measure.Longitude; import org.geotools.measure.AngleFormat; import org.geotools.geometry.GeneralEnvelope; import org.geotools.geometry.GeneralDirectPosition; import org.geotools.resources.Utilities; import org.geotools.resources.cts.Resources; import org.geotools.resources.cts.ResourceKeys; import org.geotools.resources.geometry.XRectangle2D; import org.geotools.util.UnsupportedImplementationException; /** |
package org.geotools.resources; // J2SE dependencies import java.awt.geom.AffineTransform; import java.awt.geom.Point2D; import java.awt.geom.Rectangle2D; import org.geotools.geometry.GeneralDirectPosition; import org.geotools.geometry.GeneralEnvelope; import org.geotools.measure.AngleFormat; import org.geotools.measure.Latitude; import org.geotools.measure.Longitude; import org.geotools.resources.cts.ResourceKeys; import org.geotools.resources.cts.Resources; import org.geotools.resources.geometry.XRectangle2D; import org.geotools.util.UnsupportedImplementationException; import org.opengis.metadata.extent.BoundingPolygon; import org.opengis.metadata.extent.Extent; import org.opengis.metadata.extent.GeographicBoundingBox; import org.opengis.metadata.extent.GeographicExtent; import org.opengis.referencing.crs.CompoundCRS; import org.opengis.referencing.crs.CoordinateReferenceSystem; import org.opengis.referencing.crs.GeographicCRS; import org.opengis.referencing.crs.ProjectedCRS; import org.opengis.referencing.crs.SingleCRS; import org.opengis.referencing.crs.TemporalCRS; import org.opengis.referencing.crs.VerticalCRS; import org.opengis.referencing.cs.AxisDirection; import org.opengis.referencing.cs.CoordinateSystem; import org.opengis.referencing.cs.CoordinateSystemAxis; import org.opengis.referencing.datum.Datum; import org.opengis.referencing.datum.Ellipsoid; import org.opengis.referencing.datum.GeodeticDatum; import org.opengis.referencing.operation.MathTransform; import org.opengis.referencing.operation.MathTransform2D; import org.opengis.referencing.operation.TransformException; import org.opengis.spatialschema.geometry.Envelope; import org.opengis.spatialschema.geometry.MismatchedDimensionException; /** |
/**
* Returns a character string for the specified geographic area. The string will have the
* form "45°00.00'N-50°00.00'N 30°00.00'E-40°00.00'E". If a map projection is required in
* order to obtain this representation, it will be automatically applied. This string is
* mostly used for debugging purpose.
* |
/**
* Returns a character string for the specified geographic area. The string will have the
* form "45�00.00'N-50�00.00'N 30�00.00'E-40�00.00'E". If a map projection is required in
* order to obtain this representation, it will be automatically applied. This string is
* mostly used for debugging purpose.
* |
// createFromCoordinateSystems(cs, GeographicCoordinateSystem.WGS84);
// bounds = transform((MathTransform2D) tr.getMathTransform(), bounds, null);
}
final AngleFormat fmt = new AngleFormat("DD°MM.m'");
buffer = fmt.format(new Latitude(bounds.getMinY()), buffer, null); buffer.append('-');
buffer = fmt.format(new Latitude(bounds.getMaxY()), buffer, null); buffer.append(' ');
buffer = fmt.format(new Longitude(bounds.getMinX()), buffer, null); buffer.append('-'); |
// createFromCoordinateSystems(cs, GeographicCoordinateSystem.WGS84);
// bounds = transform((MathTransform2D) tr.getMathTransform(), bounds, null);
}
final AngleFormat fmt = new AngleFormat("DD�MM.m'");
buffer = fmt.format(new Latitude(bounds.getMinY()), buffer, null); buffer.append('-');
buffer = fmt.format(new Latitude(bounds.getMaxY()), buffer, null); buffer.append(' ');
buffer = fmt.format(new Longitude(bounds.getMinX()), buffer, null); buffer.append('-'); |