Module org.apache.sis.referencing
Class TransformBuilder
Object
TransformBuilder
- Direct Known Subclasses:
LinearTransformBuilder
,LocalizationGridBuilder
Creates a transform which will map approximately the given source positions to the given target positions.
The transform may be a linear approximation the minimize the errors in a least square sense,
or a more accurate transform using a localization grid.
Builders are not thread-safe. Builders can be used only once;
points cannot be added or modified after create(MathTransformFactory)
has been invoked.
- Since:
- 0.8
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract MathTransform
create
(MathTransformFactory factory) Creates a transform from the source points to the target points.
-
Constructor Details
-
TransformBuilder
protected TransformBuilder()For subclass constructors.
-
-
Method Details
-
create
Creates a transform from the source points to the target points. Invoking this method puts the builder in an unmodifiable state. Invoking this method more than once returns the same transform (the transform is not recomputed).- Parameters:
factory
- the factory to use for creating the transform, ornull
for the default factory.- Returns:
- the transform from source to target points.
- Throws:
FactoryException
- if the transform cannot be created, for example because the target points have not be specified.
-