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