Package | Description |
---|---|
org.apache.sis.referencing.datum |
Relationship of a
CoordinateSystem (an abstract mathematical entity) to the earth or other system. |
org.apache.sis.referencing.operation.builder |
Helper classes for creating Math Transforms from a set of points.
|
org.apache.sis.referencing.operation.transform |
Conversions or transformations of multi-dimensional coordinate points.
|
Modifier and Type | Method and Description |
---|---|
LinearTransform |
DatumShiftGrid.getCoordinateToGrid()
Conversion from the "real world" coordinates to grid indices including fractional parts.
|
Constructor and Description |
---|
DatumShiftGrid(Unit<C> coordinateUnit,
LinearTransform coordinateToGrid,
int[] gridSize,
boolean isCellValueRatio,
Unit<T> translationUnit)
Creates a new datum shift grid for the given size and units.
|
Modifier and Type | Method and Description |
---|---|
LinearTransform |
LinearTransformBuilder.create()
Deprecated.
Replaced by
LinearTransformBuilder.create(MathTransformFactory) . |
LinearTransform |
LinearTransformBuilder.create(MathTransformFactory factory)
Creates a linear transform approximation from the source positions to the target positions.
|
LinearTransform |
LocalizationGridBuilder.getSourceToGrid()
Returns the current relationship between "real-world" source coordinates and grid coordinates.
|
Modifier and Type | Method and Description |
---|---|
void |
LocalizationGridBuilder.setSourceToGrid(LinearTransform sourceToGrid)
Defines relationship between "real-world" source coordinates and grid coordinates.
|
Modifier and Type | Method and Description |
---|---|
static LinearTransform |
MathTransforms.identity(int dimension)
Returns an identity transform of the specified dimension.
|
LinearTransform |
LinearTransform.inverse()
Returns the inverse transform of this object, which shall also be linear.
|
static LinearTransform |
MathTransforms.linear(double scale,
double offset)
Creates a one-dimensional affine transform for the given coefficients.
|
static LinearTransform |
MathTransforms.linear(Matrix matrix)
Creates an arbitrary linear transform from the specified matrix.
|
Copyright © 2010–2017 The Apache Software Foundation. All rights reserved.