Uses of Class
org.geotools.util.Range
Packages that use Range
Package
Description
Coverage implementation.
Raster processing support for the GeoTools library.
Styling to be applied on
org.geotools.renderer.geom.Geometry
objects at rendering time.Contains utilities and addition to the collection framework.
-
Uses of Range in org.geotools.coverage
Methods in org.geotools.coverage with parameters of type RangeModifier and TypeMethodDescriptionstatic SampleDimensionType
TypeMap.getSampleDimensionType
(Range<?> range) Returns the smallest sample dimension type capable to hold the specified range of values. -
Uses of Range in org.geotools.coverage.io.util
Methods in org.geotools.coverage.io.util with parameters of type Range -
Uses of Range in org.geotools.filter.visitor
Methods in org.geotools.filter.visitor with parameters of type RangeConstructors in org.geotools.filter.visitor with parameters of type RangeConstructor parameters in org.geotools.filter.visitor with type arguments of type Range -
Uses of Range in org.geotools.gce.imagemosaic
Methods in org.geotools.gce.imagemosaic that return RangeModifier and TypeMethodDescriptionUtils.createRange
(Object firstValue, Object secondValue) Create a Range of numbers from a couple of values. -
Uses of Range in org.geotools.process.raster
Fields in org.geotools.process.raster with type parameters of type RangeMethod parameters in org.geotools.process.raster with type arguments of type RangeModifier and TypeMethodDescriptionFootprintExtractionProcess.execute
(GridCoverage2D coverage, List<Range<Integer>> exclusionRanges, Double thresholdArea, Boolean computeSimplifiedFootprint, Double simplifierFactor, Boolean removeCollinear, Boolean forceValid, MarchingSquaresVectorizer.ImageLoadingType imageLoadingType, ProgressListener progressListener) Executes the raster to vector process.Constructor parameters in org.geotools.process.raster with type arguments of type RangeModifierConstructorDescriptionMarchingSquaresVectorizer
(RenderedImage ri, RenderingHints hints, double thresholdArea, MarchingSquaresVectorizer.ImageLoadingType imageLoadingType, List<Range<Integer>> exclusionLuminanceRanges) Main Constructor usingRenderedImage
as input.MarchingSquaresVectorizer
(GridCoverage2D inGeodata, RenderingHints hints, double thresholdArea, double simplifierFactor, MarchingSquaresVectorizer.ImageLoadingType imageLoadingType, List<Range<Integer>> exclusionLuminanceRanges) Main Constructor usingGridCoverage2D
as input. -
Uses of Range in org.geotools.renderer.style
Methods in org.geotools.renderer.style with parameters of type RangeModifier and TypeMethodDescriptionSLDStyleFactory.createDynamicStyle
(SimpleFeature f, Symbolizer symbolizer, Range scaleRange) Creates a rendered styleSLDStyleFactory.createStyle
(Object drawMe, Symbolizer symbolizer, Range scaleRange) Creates a rendered style -
Uses of Range in org.geotools.util
Subclasses of Range in org.geotools.utilModifier and TypeClassDescriptionclass
A range of dates.class
MeasurementRange<T extends Number & Comparable<? super T>>
A range of numbers associated with a unit of measurement.class
NumberRange<T extends Number & Comparable<? super T>>
A range of numbers.Methods in org.geotools.util that return RangeModifier and TypeMethodDescriptionRangeSet.first()
Returns the first (lowest) range currently in this sorted set.Range<?>
Returns the intersection between this range and the provided range.RangeSet.last()
Returns the last (highest) range currently in this sorted set.Range<?>[]
Returns the range of values that are in this range but not in the given range.Range<?>
Returns the union of this range with the given range.Methods in org.geotools.util that return types with arguments of type RangeModifier and TypeMethodDescriptionComparator<Range<T>>
RangeSet.comparator()
Returns the comparator associated with this sorted set.Returns a view of the portion of this sorted set whose elements are strictly less thanupper
.RangeSet.iterator()
Returns an iterator over the elements in this set of ranges.Returns a view of the portion of this sorted set whose elements range fromlower
, inclusive, toupper
, exclusive.Returns a view of the portion of this sorted set whose elements are greater than or equal tolower
.Methods in org.geotools.util with parameters of type RangeModifier and TypeMethodDescriptionboolean
Add a range to this set.boolean
Returnstrue
if the supplied range is fully contained within this range.boolean
Returnstrue
if this range contains fully the given range.Returns a view of the portion of this sorted set whose elements are strictly less thanupper
.Returns the intersection of this range with the given range.NumberRange<?>
Returns the intersection of this range with the given range.Range<?>
Returns the intersection between this range and the provided range.boolean
NumberRange.intersects
(Range<?> range) Returnstrue
if this range intersects the given range.boolean
Range.intersects
(Range<?> range) Returnstrue
if this range intersects the given range.Returns a view of the portion of this sorted set whose elements range fromlower
, inclusive, toupper
, exclusive.Returns the range of values that are in this range but not in the given range.NumberRange<?>[]
Returns the range of values that are in this range but not in the given range.Range<?>[]
Returns the range of values that are in this range but not in the given range.Returns a view of the portion of this sorted set whose elements are greater than or equal tolower
.Returns the union of this range with the given range.NumberRange<?>
Returns the union of this range with the given range.Range<?>
Returns the union of this range with the given range.static <N extends Number & Comparable<? super N>>
NumberRange<N>Wraps the specifiedRange
in aNumberRange
object.Constructors in org.geotools.util with parameters of type RangeModifierConstructorDescriptionMeasurementRange
(Range<T> range, Unit<?> units) Constructs a range with the same values than the specified range.NumberRange
(Range<T> range) Constructs a range with the same type and the same values than the specified range.