Uses of Class
org.apache.sis.math.Vector
Packages that use Vector
Package
Description
A coverage backed by a regular grid.
A set of helper classes for the SIS implementation.
Centralizes usages ERSI geometry API by Apache SIS.
Centralizes usages of some (not all) Java2D geometry API by Apache SIS.
Methods specific to the Java Topology Suite (JTS).
A set of helper classes for the SIS implementation.
Utility classes for the implementation of SIS storage classes.
Well Known Text (WKT) parsing and formatting.
A set of mathematical objects and algebraic utilities.
Helper classes for creating Math Transforms from a set of points.
-
Uses of Vector in org.apache.sis.coverage.grid
Methods in org.apache.sis.coverage.grid with parameters of type Vector -
Uses of Vector in org.apache.sis.internal.feature
Methods in org.apache.sis.internal.feature with parameters of type VectorModifier and TypeMethodDescriptionabstract GGeometries.createPolyline(boolean polygon, int dimension, Vector... coordinates) Creates a path, polyline or polygon from the given coordinate values.static voidMovingFeatures.setTimes(AbstractAttribute<?> dest, Vector values, DefaultTemporalCRS converter) Sets the "datetimes" characteristic on the given attribute. -
Uses of Vector in org.apache.sis.internal.feature.esri
Methods in org.apache.sis.internal.feature.esri with parameters of type VectorModifier and TypeMethodDescriptioncom.esri.core.geometry.GeometryFactory.createPolyline(boolean polygon, int dimension, Vector... coordinates) Creates a polyline from the given coordinate values. -
Uses of Vector in org.apache.sis.internal.feature.j2d
Methods in org.apache.sis.internal.feature.j2d with parameters of type VectorModifier and TypeMethodDescriptionFactory.createPolyline(boolean polygon, int dimension, Vector... coordinates) Creates a path from the given coordinate values. -
Uses of Vector in org.apache.sis.internal.feature.jts
Methods in org.apache.sis.internal.feature.jts with parameters of type VectorModifier and TypeMethodDescriptionorg.locationtech.jts.geom.GeometryFactory.createPolyline(boolean polygon, int dimension, Vector... coordinates) Creates a polyline from the given coordinate values. -
Uses of Vector in org.apache.sis.internal.referencing
Methods in org.apache.sis.internal.referencing with parameters of type VectorModifier and TypeMethodDescriptionstatic int[]WKTUtilities.suggestFractionDigits(Vector[] rows) Suggests an amount of fraction digits to use for formatting numbers in each column of the given matrix.static int[]WKTUtilities.suggestFractionDigits(org.opengis.referencing.crs.CoordinateReferenceSystem crs, Vector[] points) Suggests an amount of fraction digits to use for formatting numbers in each column of the given sequence of points. -
Uses of Vector in org.apache.sis.internal.storage.io
Methods in org.apache.sis.internal.storage.io with parameters of type VectorModifier and TypeMethodDescriptionstatic ByteWriterCreates a new writer for copying bytes from the given source vector to the given target array. -
Uses of Vector in org.apache.sis.io.wkt
Methods in org.apache.sis.io.wkt with parameters of type Vector -
Uses of Vector in org.apache.sis.math
Methods in org.apache.sis.math that return VectorModifier and TypeMethodDescriptionVector.compress(double tolerance) Returns a vector with the same data than this vector but encoded in a more compact way, orthisif this method cannot do better than currentVectorinstance.Vector.concatenate(Vector toAppend) Returns the concatenation of this vector with the given one.static VectorVector.create(double[] array) Wraps the given array of floating point values.static VectorWraps the given object in a vector.static VectorVector.createForDecimal(float[] array) Wraps the givenfloat[]array in a vector that preserve the string representations in base 10.static VectorVector.createSequence(Number first, Number increment, int length) Creates a sequence of numbers in a given range of values using the given increment.Vector.pick(int... indices) Returns a view which contains the values of this vector at the given indexes.Vector.repeat(boolean eachValue, int count) Returns a vector whose value is the content of this vector repeated count times.final VectorVector.reverse()Returns a view which contains the values of this vector in reverse order.final VectorVector.subList(int lower, int upper) Returns a view which contain the values of this vector in the given index range.Vector.subSampling(int first, int step, int length) Returns a view which contain the values of this vector in a given index range.Vector.transform(double scale, double offset) Returns a view of this vector with all values transformed by the given linear equation.Methods in org.apache.sis.math with parameters of type VectorModifier and TypeMethodDescriptionVector.concatenate(Vector toAppend) Returns the concatenation of this vector with the given one.doubleGiven a set of data points x[0 … n-1], y[0 … n-1], fits them to a straight line y = slope⋅x + y₀ in a least-squares senses.doubleComputes the plane's coefficients from values distributed on a regular grid.doubleComputes the plane's coefficients from the given coordinate values. -
Uses of Vector in org.apache.sis.referencing.operation.builder
Methods in org.apache.sis.referencing.operation.builder that return VectorModifier and TypeMethodDescriptionLocalizationGridBuilder.getColumn(int dimension, int column) Returns a column of coordinate values in the given dimension.LocalizationGridBuilder.getRow(int dimension, int row) Returns a row of coordinate values in the given dimension.Methods in org.apache.sis.referencing.operation.builder with parameters of type VectorModifier and TypeMethodDescriptionvoidLocalizationGridBuilder.setControlPoints(Vector... coordinates) Sets all control points.Constructors in org.apache.sis.referencing.operation.builder with parameters of type VectorModifierConstructorDescriptionLocalizationGridBuilder(Vector sourceX, Vector sourceY) Creates a new, initially empty, builder for a localization grid of a size inferred from the given points.