01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: *
05: * (C) 2003-2006, Geotools Project Managment Committee (PMC)
06: * (C) 2001, Institut de Recherche pour le Développement
07: * (C) 2000, Frank Warmerdam
08: * (C) 1999, Fisheries and Oceans Canada
09: *
10: * This library is free software; you can redistribute it and/or
11: * modify it under the terms of the GNU Lesser General Public
12: * License as published by the Free Software Foundation; either
13: * version 2.1 of the License, or (at your option) any later version.
14: *
15: * This library is distributed in the hope that it will be useful,
16: * but WITHOUT ANY WARRANTY; without even the implied warranty of
17: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18: * Lesser General Public License for more details.
19: *
20: * This package contains formulas from the PROJ package of USGS.
21: * USGS's work is fully acknowledged here. This derived work has
22: * been relicensed under LGPL with Frank Warmerdam's permission.
23: */
24: package org.geotools.referencing.operation.projection;
25:
26: // OpenGIS dependencies
27: import org.opengis.parameter.ParameterValueGroup;
28: import org.opengis.parameter.ParameterNotFoundException;
29:
30: /**
31: * The USGS equatorial case of the {@linkplain Stereographic stereographic} projection.
32: * This is a special case of oblique stereographic projection for
33: * {@linkplain #latitudeOfOrigin latitude of origin} == 0.0.
34: *
35: * @since 2.1
36: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/operation/projection/StereographicEquatorial.java $
37: * @version $Id: StereographicEquatorial.java 24576 2007-02-24 00:07:40Z desruisseaux $
38: * @author André Gosselin
39: * @author Martin Desruisseaux
40: * @author Rueben Schulz
41: *
42: * @deprecated Renamed as {@link EquatorialStereographic} for consistency with EPSG names.
43: */
44: public class StereographicEquatorial extends EquatorialStereographic {
45: /**
46: * Constructs an equatorial stereographic projection (EPSG equations).
47: *
48: * @param parameters The group of parameter values.
49: * @throws ParameterNotFoundException if a required parameter was not found.
50: *
51: * @since 2.4
52: */
53: protected StereographicEquatorial(
54: final ParameterValueGroup parameters)
55: throws ParameterNotFoundException {
56: super(parameters);
57: }
58: }
|