Uses of Interface
org.geotools.api.geometry.Position
-
Packages that use Position Package Description org.geotools.api.coverage Coverages (generate a value for any point).org.geotools.api.geometry Root package for geometries.org.geotools.api.referencing.operation Coordinate operations (relationship between any two coordinate reference systems).org.geotools.coverage Coverage implementation.org.geotools.coverage.grid GridCoverage2D implementation.org.geotools.coverage.io.impl org.geotools.data.vpf.io org.geotools.geometry Basic geometry concepts to support referencing and coverage use.org.geotools.geometry.jts org.geotools.ows.wms Provides for Web Map Server client access as a Grid Coverage Exchange.org.geotools.referencing Reference systems implementation.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.transform Basic implementations of math transforms.org.geotools.referencing.util -
-
Uses of Position in org.geotools.api.coverage
Methods in org.geotools.api.coverage that return Position Modifier and Type Method Description Position
PointOutsideCoverageException. getOffendingLocation()
Returns the direct position which is outside the domain of the coverage.Methods in org.geotools.api.coverage with parameters of type Position Modifier and Type Method Description Object
Coverage. evaluate(Position point)
Return the value vector for a given point in the coverage.boolean[]
Coverage. evaluate(Position point, boolean[] destination)
Return a sequence of boolean values for a given point in the coverage.byte[]
Coverage. evaluate(Position point, byte[] destination)
Return a sequence of unsigned byte values for a given point in the coverage.double[]
Coverage. evaluate(Position point, double[] destination)
Return a sequence of double values for a given point in the coverage.float[]
Coverage. evaluate(Position point, float[] destination)
Return a sequence of float values for a given point in the coverage.int[]
Coverage. evaluate(Position point, int[] destination)
Return a sequence of integer values for a given point in the coverage.Set<Record>
Coverage. evaluate(Position p, Collection<String> list)
Returns a set of records of feature attribute values for the specified direct position.void
PointOutsideCoverageException. setOffendingLocation(Position location)
Sets the direct position which is outside the domain of the coverage. -
Uses of Position in org.geotools.api.geometry
Methods in org.geotools.api.geometry that return Position Modifier and Type Method Description Position
Position. getDirectPosition()
Returns the direct position.Position
Bounds. getLowerCorner()
A coordinate position consisting of all the minimal ordinates for each dimension for all points within theEnvelope
.Position
Bounds. getUpperCorner()
A coordinate position consisting of all the maximal ordinates for each dimension for all points within theEnvelope
.Methods in org.geotools.api.geometry with parameters of type Position Modifier and Type Method Description boolean
BoundingBox. contains(Position location)
Returnstrue
if the provided location is contained by this bounding box. -
Uses of Position in org.geotools.api.referencing.operation
Methods in org.geotools.api.referencing.operation that return Position Modifier and Type Method Description Position
MathTransform. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Methods in org.geotools.api.referencing.operation with parameters of type Position Modifier and Type Method Description Matrix
MathTransform. derivative(Position point)
Gets the derivative of this transform at a point.Position
MathTransform. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
. -
Uses of Position in org.geotools.coverage
Methods in org.geotools.coverage with parameters of type Position Modifier and Type Method Description boolean[]
AbstractCoverage. evaluate(Position coord, boolean[] dest)
Returns a sequence of boolean values for a given point in the coverage.byte[]
AbstractCoverage. evaluate(Position coord, byte[] dest)
Returns a sequence of byte values for a given point in the coverage.double[]
AbstractCoverage. evaluate(Position coord, double[] dest)
Returns a sequence of double values for a given point in the coverage.float[]
AbstractCoverage. evaluate(Position coord, float[] dest)
Returns a sequence of float values for a given point in the coverage.int[]
AbstractCoverage. evaluate(Position coord, int[] dest)
Returns a sequence of integer values for a given point in the coverage.Set<Record>
AbstractCoverage. evaluate(Position p, Collection<String> list)
Returns a set of records of feature attribute values for the specified direct position. -
Uses of Position in org.geotools.coverage.grid
Methods in org.geotools.coverage.grid that return Position Modifier and Type Method Description Position
GridGeometry2D. gridToWorld(GridCoordinates2D point)
Transforms a point represented by a GridCoordinates2D object from grid to world coordinates.Methods in org.geotools.coverage.grid with parameters of type Position Modifier and Type Method Description Object
GridCoverage2D. evaluate(Position point)
Returns the value vector for a given location (world coordinates).byte[]
GridCoverage2D. evaluate(Position coord, byte[] dest)
Returns a sequence of byte values for a given location (world coordinates).double[]
GridCoverage2D. evaluate(Position coord, double[] dest)
Returns a sequence of double values for a given location (world coordinates).float[]
GridCoverage2D. evaluate(Position coord, float[] dest)
Returns a sequence of float values for a given location (world coordinates).int[]
GridCoverage2D. evaluate(Position coord, int[] dest)
Returns a sequence of integer values for a given location (world coordinates).protected String
AbstractGridCoverage. formatEvaluateError(Position point, boolean outside)
Constructs an error message for a position that can not be evaluated.String
GridCoverage2D. getDebugString(Position coord)
Returns a debug string for the specified coordinate.GridCoordinates2D
GridGeometry2D. worldToGrid(Position point)
Transforms a point represented by a DirectPosition object from world to grid coordinates. -
Uses of Position in org.geotools.coverage.io.impl
Methods in org.geotools.coverage.io.impl with parameters of type Position Modifier and Type Method Description Object
DefaultGridCoverageResponse. evaluate(Position point)
boolean[]
DefaultGridCoverageResponse. evaluate(Position point, boolean[] destination)
byte[]
DefaultGridCoverageResponse. evaluate(Position point, byte[] destination)
double[]
DefaultGridCoverageResponse. evaluate(Position point, double[] destination)
float[]
DefaultGridCoverageResponse. evaluate(Position point, float[] destination)
int[]
DefaultGridCoverageResponse. evaluate(Position point, int[] destination)
Set<Record>
DefaultGridCoverageResponse. evaluate(Position p, Collection<String> list)
-
Uses of Position in org.geotools.data.vpf.io
Methods in org.geotools.data.vpf.io that return Position Modifier and Type Method Description protected Position[]
VPFInputStream. readCoord2DDouble(int instancesCount)
protected Position[]
VPFInputStream. readCoord2DFloat(int instancesCount)
protected Position[]
VPFInputStream. readCoord3DDouble(int instancesCount)
protected Position[]
VPFInputStream. readCoord3DFloat(int instancesCount)
-
Uses of Position in org.geotools.geometry
Classes in org.geotools.geometry that implement Position Modifier and Type Class Description class
AbstractPosition
Base class for direct position implementations.class
GeneralPosition
Holds the coordinates for a position within some coordinate reference system.class
Position1D
Holds the coordinates for a one-dimensional position within some coordinate reference system.class
Position2D
Holds the coordinates for a two-dimensional position within some coordinate reference system.class
Position3D
Holds the coordinates for a three-dimensional position within some coordinate reference system.class
TransformedPosition
A direct position capable to transform a point between an arbitrary CRS and its own CRS.Methods in org.geotools.geometry that return Position Modifier and Type Method Description Position
AbstractPosition. getDirectPosition()
Returns alwaysthis
, the direct position for this position.Position
Position2D. getDirectPosition()
Returns alwaysthis
, the direct position for this position.Position
Position3D. getDirectPosition()
Returns alwaysthis
, the direct position for this position.Position
AbstractBounds. getLowerCorner()
A coordinate position consisting of all the minimal ordinates.Position
Envelope2DArchived. getLowerCorner()
A coordinate position consisting of all the minimal ordinates for each dimension for all points within theEnvelope
.Position
GeneralBounds. getLowerCorner()
A coordinate position consisting of all the minimal ordinates for each dimension for all points within theEnvelope
.Position
GeneralBounds. getMedian()
A coordinate position consisting of all the middle ordinates for each dimension for all points within theEnvelope
.Position
AbstractBounds. getUpperCorner()
A coordinate position consisting of all the maximal ordinates.Position
Envelope2DArchived. getUpperCorner()
A coordinate position consisting of all the maximal ordinates for each dimension for all points within theEnvelope
.Position
GeneralBounds. getUpperCorner()
A coordinate position consisting of all the maximal ordinates for each dimension for all points within theEnvelope
.Position
TransformedPosition. inverseTransform()
Returns a new point with the same coordinates than this one, but transformed in thesourceCRS
given at construction time.Position
TransformedPosition. inverseTransform(CoordinateReferenceSystem crs)
Returns a new point with the same coordinates than this one, but transformed in the given CRS.Methods in org.geotools.geometry with parameters of type Position Modifier and Type Method Description void
GeneralBounds. add(Position position)
Adds a position to this bounds.boolean
Envelope2DArchived. contains(Position location)
boolean
GeneralBounds. contains(Position position)
Tests if a specified coordinate is inside the boundary of this envelope.void
GeneralPosition. setLocation(Position position)
Set this coordinate to the specified direct position.void
Position1D. setLocation(Position position)
Set this coordinate to the specified direct position.void
Position2D. setLocation(Position position)
Set this coordinate to the specified direct position.void
Position3D. setLocation(Position position)
Set this coordinate to the specified direct position.void
AbstractPosition. setPosition(Position position)
Sets this direct position to the given position.void
TransformedPosition. transform(Position position)
Transforms a given position and stores the result in this object.Constructors in org.geotools.geometry with parameters of type Position Constructor Description GeneralPosition(Position point)
Constructs a position initialized to the same values than the specified point.Position1D(Position point)
Constructs a position initialized to the same values than the specified point.Position2D(Position point)
Constructs a position initialized to the same values than the specified point.Position3D(Position point)
Constructs a position initialized to the same values than the specified point. -
Uses of Position in org.geotools.geometry.jts
Methods in org.geotools.geometry.jts that return Position Modifier and Type Method Description Position
ReferencedEnvelope. getLowerCorner()
A coordinate position consisting of all the minimal ordinates for each dimension for all points within theEnvelope
.Position
ReferencedEnvelope3D. getLowerCorner()
A coordinate position consisting of all the minimal ordinates for each dimension for all points within theEnvelope
.Position
ReferencedEnvelope. getUpperCorner()
A coordinate position consisting of all the maximal ordinates for each dimension for all points within theEnvelope
.Position
ReferencedEnvelope3D. getUpperCorner()
A coordinate position consisting of all the maximal ordinates for each dimension for all points within theEnvelope
.static Position
JTS. toDirectPosition(Coordinate point, CoordinateReferenceSystem crs)
Creates a DirectPosition from the provided point.Methods in org.geotools.geometry.jts with parameters of type Position Modifier and Type Method Description boolean
ReferencedEnvelope. contains(Position pos)
Returnstrue
if the provided location is contained by this bounding box.boolean
ReferencedEnvelope3D. contains(Position pos)
Returnstrue
if the provided location is contained by this bounding box.protected void
ReferencedEnvelope. ensureCompatibleReferenceSystem(Position location)
Make sure that the specified location uses the same CRS as this one.void
ReferencedEnvelope. expandToInclude(Position pt)
Expand to include the provided DirectPositionvoid
ReferencedEnvelope3D. expandToInclude(Position pt)
static Point
JTS. toGeometry(Position position)
Create a Point from a ISO Geometry DirectPosition.static Point
JTS. toGeometry(Position position, GeometryFactory factory)
Create a Point from a ISO Geometry DirectPosition. -
Uses of Position in org.geotools.ows.wms
Methods in org.geotools.ows.wms that return Position Modifier and Type Method Description Position
CRSEnvelope. getLowerCorner()
Position
CRSEnvelope. getUpperCorner()
-
Uses of Position in org.geotools.referencing
Methods in org.geotools.referencing that return Position Modifier and Type Method Description Position
GeodeticCalculator. getDestinationPosition()
Returns the destination position in user coordinates, which doesn't need to be geographic.Position
GeodeticCalculator. getStartingPosition()
Returns the starting position in user coordinates, which doesn't need to be geographic.Position
CoordinateFormat. parseObject(String source, ParsePosition position)
Not yet implemented.Methods in org.geotools.referencing with parameters of type Position Modifier and Type Method Description String
CoordinateFormat. format(Position point)
Formats a direct position.StringBuffer
CoordinateFormat. format(Position point, StringBuffer toAppendTo, FieldPosition position)
Formats a direct position and appends the resulting text to a given string buffer.void
GeodeticCalculator. setDestinationPosition(Position position)
Set the destination position in user coordinates, which doesn't need to be geographic.void
GeodeticCalculator. setStartingPosition(Position position)
Set the starting position in user coordinates, which doesn't need to be geographic. -
Uses of Position in org.geotools.referencing.operation.builder
Methods in org.geotools.referencing.operation.builder that return Position Modifier and Type Method Description Position
MappedPosition. getSource()
Returns the source direct position.Position[]
MathTransformBuilder. getSourcePoints()
Returns the source points.Position
MappedPosition. getTarget()
Returns the target direct position.Position[]
MathTransformBuilder. getTargetPoints()
Returns the target points.Methods in org.geotools.referencing.operation.builder with parameters of type Position Modifier and Type Method Description void
MappedPosition. setSource(Position point)
Set the source direct position to the specified value.void
MathTransformBuilder. setSourcePoints(Position... points)
Convenience method setting the source points in mapped positions.void
MappedPosition. setTarget(Position point)
Set the target direct position to the specified value.void
MathTransformBuilder. setTargetPoints(Position... points)
Convenience method setting the target points in mapped positions.Constructors in org.geotools.referencing.operation.builder with parameters of type Position Constructor Description MappedPosition(Position source, Position target)
Creates a mapped position from the specified direct positions. -
Uses of Position in org.geotools.referencing.operation.transform
Methods in org.geotools.referencing.operation.transform that return Position Modifier and Type Method Description Position
AbstractMathTransform. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Position
AffineTransform2D. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Position
ConcatenatedTransform. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Position
IdentityTransform. transform(Position ptSrc, Position ptDst)
Copies the values fromptSrc
toptDst
.Position
MathTransformProxy. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Methods in org.geotools.referencing.operation.transform with parameters of type Position Modifier and Type Method Description Matrix
AbstractMathTransform. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
AbstractMathTransform.Inverse. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
AffineTransform2D. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
ConcatenatedTransform. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
IdentityTransform. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
LinearTransform1D. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
MathTransformProxy. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
PassThroughTransform. derivative(Position point)
Gets the derivative of this transform at a point.Matrix
ProjectiveTransform. derivative(Position point)
Gets the derivative of this transform at a point.Position
AbstractMathTransform. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Position
AffineTransform2D. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Position
ConcatenatedTransform. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
.Position
IdentityTransform. transform(Position ptSrc, Position ptDst)
Copies the values fromptSrc
toptDst
.Position
MathTransformProxy. transform(Position ptSrc, Position ptDst)
Transforms the specifiedptSrc
and stores the result inptDst
. -
Uses of Position in org.geotools.referencing.util
Methods in org.geotools.referencing.util that return Position Modifier and Type Method Description static Position
CRSUtilities. deltaTransform(MathTransform transform, Position origin, Position source)
Transforms the relative distance vector specified bysource
and stores the result indest
.Methods in org.geotools.referencing.util with parameters of type Position Modifier and Type Method Description static Position
CRSUtilities. deltaTransform(MathTransform transform, Position origin, Position source)
Transforms the relative distance vector specified bysource
and stores the result indest
.
-