org.geotoolkit.referencing.operation.projection
Class EquatorialStereographic
Object
FormattableObject
AbstractMathTransform
AbstractMathTransform2D
UnitaryProjection
Stereographic
EquatorialStereographic
- All Implemented Interfaces:
- Serializable, Formattable, Parameterized, LenientComparable, MathTransform, MathTransform2D
@Immutable
public class EquatorialStereographic
- extends Stereographic
The USGS equatorial case of the stereographic projection.
This is a special case of oblique stereographic projection for a latitude of origin
set to 0°.
- Since:
- 2.0
- Version:
- 3.18
- Author:
- André Gosselin (MPO), Martin Desruisseaux (MPO, IRD, Geomatys), Rueben Schulz (UBC), Rémi Maréchal (Geomatys)
- See Also:
PolarStereographic,
ObliqueStereographic,
Serialized Form
- Module:
|
Method Summary |
Matrix |
derivative(Point2D point)
Gets the derivative of this transform at a point. |
protected void |
transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
Transforms the specified (λ,φ) coordinates
(units in radians) and stores the result in dstPts (linear distance
on a unit sphere). |
| Methods inherited from class AbstractMathTransform |
createTransformedShape, derivative, ensureNonNull, equals, formatWKT, getName, hashCode, isIdentity, rollLongitude, transform, transform, transform, transform |
EquatorialStereographic
protected EquatorialStereographic(UnitaryProjection.Parameters parameters)
- Constructs an equatorial stereographic projection (EPSG equations).
- Parameters:
parameters - The parameters of the projection to be created.
transform
protected void transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
throws ProjectionException
- Transforms the specified (λ,φ) coordinates
(units in radians) and stores the result in
dstPts (linear distance
on a unit sphere).
- Overrides:
transform in class Stereographic
- Parameters:
srcPts - The array containing the source point coordinate, as (longitude,
latitude) angles in radians.srcOff - The offset of the point to be converted in the source array.dstPts - the array into which the converted point coordinate is returned (may be
the same than srcPts). Ordinates will be in a dimensionless unit,
as a linear distance on a unit sphere or ellipse.dstOff - The offset of the location of the converted point that is
stored in the destination array.
- Throws:
ProjectionException - if the point can't be converted.
derivative
public Matrix derivative(Point2D point)
throws ProjectionException
- Gets the derivative of this transform at a point.
- Specified by:
derivative in interface MathTransform2D- Overrides:
derivative in class AbstractMathTransform
- Parameters:
point - The coordinate point where to evaluate the derivative.
- Returns:
- The derivative at the specified point as a 2×2 matrix.
- Throws:
ProjectionException - if the derivative can't be evaluated at the specified point.- Since:
- 3.18
- See Also:
MathTransform2D.derivative(Point2D)
Copyright © 2009-2011 Geotoolkit.org. All Rights Reserved.