Uses of Class
org.geotools.referencing.operation.matrix.GeneralMatrix
-
Packages that use GeneralMatrix Package Description org.geotools.referencing.operation.builder A package of convenience classes which use control points common to two data sets to derive empirically the transformation parameters needed to convert positions between the coordinate systems of the two data sets.org.geotools.referencing.operation.matrix Matrix implementations on top of thejavax.vecmath
package. -
-
Uses of GeneralMatrix in org.geotools.referencing.operation.builder
Fields in org.geotools.referencing.operation.builder declared as GeneralMatrix Modifier and Type Field Description protected GeneralMatrix
ProjectiveTransformBuilder. A
Matrix of derivationsprotected GeneralMatrix
ProjectiveTransformBuilder. P
Matrix of wightsprotected GeneralMatrix
ProjectiveTransformBuilder. X
Matrix of target valuesMethods in org.geotools.referencing.operation.builder that return GeneralMatrix Modifier and Type Method Description protected GeneralMatrix
AdvancedAffineBuilder. getA()
Generates A matrix (Matrix of derivation of affine equation).protected GeneralMatrix
BursaWolfTransformBuilder. getA()
Glues the submatrix of derivations into the A matrix.protected GeneralMatrix
AdvancedAffineBuilder. getB()
Fill matrix of derivations of constrains by affine parameters.protected GeneralMatrix
BursaWolfTransformBuilder. getDq()
Generates partial derivative in q (scale factor).protected GeneralMatrix
BursaWolfTransformBuilder. getDRalfa()
Generates partial derivative with respect to alfa.protected GeneralMatrix
BursaWolfTransformBuilder. getDRbeta()
Generates partial derivative with respect to beta.protected GeneralMatrix
BursaWolfTransformBuilder. getDRgamma()
Generates partial derivative with respect to gamma.GeneralMatrix
BursaWolfTransformBuilder. getDxMatrix()
Method that claculates the parameters by iteration.protected GeneralMatrix
BursaWolfTransformBuilder. getl()
Calculates the matrix of errors from aproximate values of prameters.protected GeneralMatrix
AdvancedAffineBuilder. getL()
Fill L matrix.protected GeneralMatrix
AdvancedAffineBuilder. getProjectiveMatrix()
Calculates coefficients of Projective transformation matrix from geometric parameters.protected GeneralMatrix
AffineTransformBuilder. getProjectiveMatrix()
Returns the matrix for Projective transformation setup as Affine.protected GeneralMatrix
ProjectiveTransformBuilder. getProjectiveMatrix()
Returns the matrix of parameters for Projective transformation.protected GeneralMatrix
SimilarTransformBuilder. getProjectiveMatrix()
Returns the matrix for Projective transformation setup as Affine.protected GeneralMatrix
BursaWolfTransformBuilder. getRalfa()
Generates rotation matrix around X axis.protected GeneralMatrix
BursaWolfTransformBuilder. getRbeta()
Generates rotation matrix around Y axis.protected GeneralMatrix
BursaWolfTransformBuilder. getRgamma()
Generates rotation matrix around Z axis.protected GeneralMatrix
AdvancedAffineBuilder. getU()
Fill matrix of constrain values (e.g. for constrain skew = 0 the value is 0)protected GeneralMatrix
BursaWolfTransformBuilder. getx()
Fills the x matrix by coordinates of source points.protected GeneralMatrix
BursaWolfTransformBuilder. getX()
Fills the x matrix by coordinates of destination points.protected GeneralMatrix
BursaWolfTransformBuilder. specialMul(GeneralMatrix R, GeneralMatrix x)
Method for multiplying matrix (3,3) by matrix of coordintes (3 number of coordinates,1)Methods in org.geotools.referencing.operation.builder with parameters of type GeneralMatrix Modifier and Type Method Description protected GeneralMatrix
BursaWolfTransformBuilder. specialMul(GeneralMatrix R, GeneralMatrix x)
Method for multiplying matrix (3,3) by matrix of coordintes (3 number of coordinates,1) -
Uses of GeneralMatrix in org.geotools.referencing.operation.matrix
Subclasses of GeneralMatrix in org.geotools.referencing.operation.matrix Modifier and Type Class Description class
Matrix4
Methods in org.geotools.referencing.operation.matrix that return GeneralMatrix Modifier and Type Method Description GeneralMatrix
GeneralMatrix. clone()
Returns a clone of this matrix.static GeneralMatrix
GeneralMatrix. load(BufferedReader in, Locale locale)
Loads data from the specified streal until the first blank line or end of stream.static GeneralMatrix
GeneralMatrix. load(File file)
Loads data from the specified file until the first blank line or end of file.Methods in org.geotools.referencing.operation.matrix with parameters of type GeneralMatrix Modifier and Type Method Description void
GeneralMatrix. copySubMatrix(int rowSource, int colSource, int numRows, int numCol, int rowDest, int colDest, GeneralMatrix target)
Extract a subMatrix to the provided targetConstructors in org.geotools.referencing.operation.matrix with parameters of type GeneralMatrix Constructor Description GeneralMatrix(GeneralMatrix matrix)
Constructs a new matrix and copies the initial values from the parameter matrix.
-