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:10894 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/factory/epsg/DirectEpsgFactory.java
Revision 10795 | Revision 10894 |
---|---|
/*
* 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.cs; // Database connection import java.sql.Driver; import java.sql.ResultSet; import java.sql.Connection; import java.sql.SQLException; import java.sql.DriverManager; import java.sql.PreparedStatement; // Preferences and reflection import java.util.prefs.Preferences; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.UndeclaredThrowableException; // Logging import java.io.PrintWriter; import java.util.logging.Level; import java.util.logging.Logger; import java.util.logging.LogRecord; // Collections and iterators import java.util.Map; import java.util.List; import java.util.HashMap; import java.util.Iterator; import java.util.ArrayList; import java.util.IdentityHashMap; import java.util.StringTokenizer; import java.util.NoSuchElementException; // JAI dependencies import javax.media.jai.ParameterList; import javax.media.jai.util.CaselessStringKey; // OpenGIS dependencies import org.opengis.referencing.FactoryException; // Resources import org.geotools.units.Unit; import org.geotools.util.MonolineFormatter; import org.geotools.resources.Arguments; import org.geotools.resources.cts.Resources; import org.geotools.resources.cts.ResourceKeys; import org.geotools.measure.AngleFormat; // For Javadoc /** |
package org.geotools.cs; // Database connection import java.io.PrintWriter; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.UndeclaredThrowableException; import java.sql.Connection; import java.sql.Driver; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.HashMap; import java.util.IdentityHashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.NoSuchElementException; import java.util.StringTokenizer; import java.util.logging.Level; import java.util.logging.LogRecord; import java.util.logging.Logger; import java.util.prefs.Preferences; import javax.media.jai.ParameterList; import javax.media.jai.util.CaselessStringKey; import org.geotools.measure.AngleFormat; import org.geotools.resources.Arguments; import org.geotools.resources.cts.ResourceKeys; import org.geotools.resources.cts.Resources; import org.geotools.units.Unit; import org.geotools.util.MonolineFormatter; import org.opengis.referencing.FactoryException; /** |
* The EPSG database express many angles in some multi-radix units. For example, a lot of EPSG's
* angles are coded in the following format: <cite>sign - degrees - decimal point - minutes (two
* digits) - integer seconds (two digits) - fraction of seconds (any precision)</cite>. According
* this convention, the angle <code>40°30'N</code> would be coded as <code>40.30</code>
* (sexagesimal degree) instead of <code>40.5</code> (fractional degree). Unfortunatly,
* sexagesimal degrees have the following inconvenients:
* |
* The EPSG database express many angles in some multi-radix units. For example, a lot of EPSG's
* angles are coded in the following format: <cite>sign - degrees - decimal point - minutes (two
* digits) - integer seconds (two digits) - fraction of seconds (any precision)</cite>. According
* this convention, the angle <code>40�30'N</code> would be coded as <code>40.30</code>
* (sexagesimal degree) instead of <code>40.5</code> (fractional degree). Unfortunatly,
* sexagesimal degrees have the following inconvenients:
* |
* the {@link #replaceAxisUnit} method.
*
* @version $Id$
* @author Yann Cézard
* @author Martin Desruisseaux
* @author Rueben Schulz
*/ |
* the {@link #replaceAxisUnit} method.
*
* @version $Id$
* @author Yann C�zard
* @author Martin Desruisseaux
* @author Rueben Schulz
*/ |