01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: *
05: * (C) 2004-2006, Geotools Project Managment Committee (PMC)
06: * (C) 2000, Frank Warmerdam
07: *
08: * This library is free software; you can redistribute it and/or
09: * modify it under the terms of the GNU Lesser General Public
10: * License as published by the Free Software Foundation; either
11: * version 2.1 of the License, or (at your option) any later version.
12: *
13: * This library is distributed in the hope that it will be useful,
14: * but WITHOUT ANY WARRANTY; without even the implied warranty of
15: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16: * Lesser General Public License for more details.
17: *
18: * This package contains formulas from the PROJ package of USGS.
19: * USGS's work is fully acknowledged here. This derived work has
20: * been relicensed under LGPL with Frank Warmerdam's permission.
21: */
22: package org.geotools.referencing.operation.projection;
23:
24: // OpenGIS dependencies
25: import org.opengis.parameter.ParameterNotFoundException;
26: import org.opengis.parameter.ParameterValueGroup;
27:
28: /**
29: * The polar case of the {@link Orthographic} projection. Only the spherical
30: * form is given here.
31: *
32: * @since 2.1
33: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/library/referencing/src/main/java/org/geotools/referencing/operation/projection/OrthographicPolar.java $
34: * @version $Id: OrthographicPolar.java 24578 2007-02-24 00:57:19Z desruisseaux $
35: * @author Rueben Schulz
36: *
37: * @deprecated Renamed as {@link PolarOrthographic} for consistency with OGC and EPSG naming.
38: */
39: public class OrthographicPolar extends PolarOrthographic {
40: /**
41: * Constructs a polar orthographic projection.
42: *
43: * @param parameters The parameter values in standard units.
44: * @throws ParameterNotFoundException if a mandatory parameter is missing.
45: *
46: * @since 2.4
47: */
48: protected OrthographicPolar(final ParameterValueGroup parameters)
49: throws ParameterNotFoundException {
50: super(parameters);
51: }
52: }
|