@UML(identifier="GM_Placement", specification=ISO_19107) public interface Placement
Modifier and Type | Method and Description |
---|---|
int |
getInDimension()
Return the dimension of the input parameter space.
|
int |
getOutDimension()
Return the dimension of the output coordinate reference system.
|
double[] |
transform(double[] in)
Maps the parameter coordinate points to the coordinate points in the output Cartesian space.
|
@UML(identifier="inDimension", obligation=MANDATORY, specification=ISO_19107) int getInDimension()
@UML(identifier="outDimension", obligation=MANDATORY, specification=ISO_19107) int getOutDimension()
outDimension
(the dimension of the coordinate reference system) is larger than inDimension
. If this is not the case, the transformation is probably singular, and may be
replaceable by a simpler one from a smaller dimension parameter space.@UML(identifier="transform", obligation=MANDATORY, specification=ISO_19107) double[] transform(double[] in)
in
- Input coordinate points. The length of this vector must be equals to inDimension
.outDimension
.Copyright © 1996–2019 Geotools. All rights reserved.