| java.lang.Object org.geotools.demo.referencing.TransformationConsole
TransformationConsole | public class TransformationConsole (Code) | | An example of application reading points from the standard input, transforming
them and writting the result to the standard output. This class can be run from
the command-line using the following syntax:
java TransformationConsole [classification]
Where [classification] is the the classification name of the projection to perform.
The default value is "Mercator_1SP". The list of supported classification name is
available here:
http://docs.codehaus.org/display/GEOTOOLS/Coordinate+Transformation+Parameters
To exit from the application, enter "exit".
version: $Id: TransformationConsole.java 17699 2006-01-22 22:42:41Z desruisseaux $ author: Martin Desruisseaux |
Method Summary | |
public static void | main(String[] args) The program main entry point.
Parameters: args - Array of command-line arguments. |
main | public static void main(String[] args) throws IOException, FactoryException, TransformException(Code) | | The program main entry point.
Parameters: args - Array of command-line arguments. This small demo accept onlyone argument: the classification name of the projection toperform. throws: IOException - if an error occured while reading the input stream. throws: FactoryException - if a coordinate system can't be constructed. throws: TransformException - if a transform failed. |
|
|