Package | Description |
---|---|
org.apache.sis.referencing.operation.projection |
Map projection implementations.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TransverseMercator.inverseTransform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
Transforms the specified (η, ξ) coordinates and stores the result in
dstPts (angles in radians). |
protected void |
PolarStereographic.inverseTransform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
Transforms the specified (x,y) coordinates and stores the result in
dstPts (angles in radians). |
protected abstract void |
NormalizedProjection.inverseTransform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
Inverse converts the single coordinate in
srcPts at the given offset and stores the result in
ptDst at the given offset. |
protected void |
Mercator.inverseTransform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
Transforms the specified (x,y) coordinates
and stores the result in
dstPts (angles in radians). |
protected void |
LambertConicConformal.inverseTransform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff)
Transforms the specified (x,y) coordinates and stores the (θ,φ) result in
dstPts . |
Matrix |
TransverseMercator.transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff,
boolean derivate)
Converts the specified (λ,φ) coordinate (units in radians) and stores the result in
dstPts . |
Matrix |
PolarStereographic.transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff,
boolean derivate)
Converts the specified (θ,φ) coordinate (units in radians) and stores the result in
dstPts . |
abstract Matrix |
NormalizedProjection.transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff,
boolean derivate)
Converts a single coordinate in
srcPts at the given offset and stores the result
in dstPts at the given offset. |
Matrix |
Mercator.transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff,
boolean derivate)
Converts the specified (λ,φ) coordinate (units in radians) and stores the result in
dstPts
(linear distance on a unit sphere). |
Matrix |
LambertConicConformal.transform(double[] srcPts,
int srcOff,
double[] dstPts,
int dstOff,
boolean derivate)
Converts the specified (θ,φ) coordinate (units in radians) and stores the result in
dstPts . |
Copyright © 2010–2015 The Apache Software Foundation. All rights reserved.