Package | Description |
---|---|
org.geotools.coverage |
Coverage implementation.
|
org.geotools.coverage.io.util | |
org.geotools.filter.visitor | |
org.geotools.gce.imagemosaic | |
org.geotools.process.raster |
Raster processing support for the GeoTools library.
|
org.geotools.renderer.style |
Styling to be applied on
org.geotools.renderer.geom.Geometry objects at rendering time. |
org.geotools.util |
Contains utilities and addition to the collection framework.
|
Modifier and Type | Method and Description |
---|---|
static SampleDimensionType |
TypeMap.getSampleDimensionType(Range<?> range)
Returns the smallest sample dimension type capable to hold the specified range of values.
|
Modifier and Type | Method and Description |
---|---|
int |
NumberRangeComparator.compare(Range<? extends Number> firstRange,
Range<? extends Number> secondRange) |
int |
NumberRangeComparator.compare(Range<? extends Number> firstRange,
Range<? extends Number> secondRange) |
Modifier and Type | Method and Description |
---|---|
void |
MultiRange.addRange(Range<T> range) |
void |
MultiRange.removeRange(Range<T> range) |
Constructor and Description |
---|
MultiRange(Range<T> range) |
Constructor and Description |
---|
MultiRange(List<Range<T>> ranges) |
Modifier and Type | Method and Description |
---|---|
static Range<? extends Number> |
Utils.createRange(Object firstValue,
Object secondValue)
Create a Range of numbers from a couple of values.
|
Modifier and Type | Field and Description |
---|---|
static List<Range<Integer>> |
MarchingSquaresVectorizer.DEFAULT_RANGES |
Modifier and Type | Method and Description |
---|---|
SimpleFeatureCollection |
FootprintExtractionProcess.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 and Description |
---|
MarchingSquaresVectorizer(GridCoverage2D inGeodata,
RenderingHints hints,
double thresholdArea,
double simplifierFactor,
MarchingSquaresVectorizer.ImageLoadingType imageLoadingType,
List<Range<Integer>> exclusionLuminanceRanges)
Main Constructor using
GridCoverage2D as input. |
MarchingSquaresVectorizer(RenderedImage ri,
RenderingHints hints,
double thresholdArea,
MarchingSquaresVectorizer.ImageLoadingType imageLoadingType,
List<Range<Integer>> exclusionLuminanceRanges)
Main Constructor using
RenderedImage as input. |
Modifier and Type | Method and Description |
---|---|
Style2D |
SLDStyleFactory.createDynamicStyle(SimpleFeature f,
Symbolizer symbolizer,
Range scaleRange)
Creates a rendered style
|
Style2D |
SLDStyleFactory.createStyle(Object drawMe,
Symbolizer symbolizer,
Range scaleRange)
Creates a rendered style
Makes use of a symbolizer cache based on identity to avoid recomputing over and over the
same style object and to reduce memory usage.
|
Modifier and Type | Class and Description |
---|---|
class |
DateRange
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.
|
Modifier and Type | Method and Description |
---|---|
Range<T> |
RangeSet.first()
Returns the first (lowest) range currently in this sorted set.
|
Range<?> |
Range.intersect(Range<?> range)
Returns the intersection between this range and the provided range.
|
Range<T> |
RangeSet.last()
Returns the last (highest) range currently in this sorted set.
|
Range<?>[] |
Range.subtract(Range<?> range)
Returns the range of values that are in this range but not in the given range.
|
Range<?> |
Range.union(Range<?> range)
Returns the union of this range with the given range.
|
Modifier and Type | Method and Description |
---|---|
Comparator<Range<T>> |
RangeSet.comparator()
Returns the comparator associated with this sorted set.
|
SortedSet<Range<T>> |
RangeSet.headSet(Range<T> upper)
Returns a view of the portion of this sorted set whose elements are strictly less than
upper . |
Iterator<Range<T>> |
RangeSet.iterator()
Returns an iterator over the elements in this set of ranges.
|
SortedSet<Range<T>> |
RangeSet.subSet(Range<T> lower,
Range<T> upper)
Returns a view of the portion of this sorted set whose elements range from
lower ,
inclusive, to upper , exclusive. |
SortedSet<Range<T>> |
RangeSet.tailSet(Range<T> lower)
Returns a view of the portion of this sorted set whose elements are greater than or equal to
lower . |
Modifier and Type | Method and Description |
---|---|
boolean |
RangeSet.add(Range<T> range)
Add a range to this set.
|
boolean |
NumberRange.contains(Range<?> range)
Returns
true if the supplied range is fully contained within this range. |
boolean |
Range.contains(Range<?> range)
Returns
true if this range contains fully the given range. |
SortedSet<Range<T>> |
RangeSet.headSet(Range<T> upper)
Returns a view of the portion of this sorted set whose elements are strictly less than
upper . |
MeasurementRange |
MeasurementRange.intersect(Range range)
Returns the intersection of this range with the given range.
|
NumberRange<?> |
NumberRange.intersect(Range<?> range)
Returns the intersection of this range with the given range.
|
Range<?> |
Range.intersect(Range<?> range)
Returns the intersection between this range and the provided range.
|
boolean |
NumberRange.intersects(Range<?> range)
Returns
true if this range intersects the given range. |
boolean |
Range.intersects(Range<?> range)
Returns
true if this range intersects the given range. |
SortedSet<Range<T>> |
RangeSet.subSet(Range<T> lower,
Range<T> upper)
Returns a view of the portion of this sorted set whose elements range from
lower ,
inclusive, to upper , exclusive. |
SortedSet<Range<T>> |
RangeSet.subSet(Range<T> lower,
Range<T> upper)
Returns a view of the portion of this sorted set whose elements range from
lower ,
inclusive, to upper , exclusive. |
MeasurementRange[] |
MeasurementRange.subtract(Range range)
Returns the range of values that are in this range but not in the given range.
|
NumberRange<?>[] |
NumberRange.subtract(Range<?> range)
Returns the range of values that are in this range but not in the given range.
|
Range<?>[] |
Range.subtract(Range<?> range)
Returns the range of values that are in this range but not in the given range.
|
SortedSet<Range<T>> |
RangeSet.tailSet(Range<T> lower)
Returns a view of the portion of this sorted set whose elements are greater than or equal to
lower . |
MeasurementRange |
MeasurementRange.union(Range range)
Returns the union of this range with the given range.
|
NumberRange<?> |
NumberRange.union(Range<?> range)
Returns the union of this range with the given range.
|
Range<?> |
Range.union(Range<?> range)
Returns the union of this range with the given range.
|
static <N extends Number & Comparable<? super N>> |
NumberRange.wrap(Range<N> range)
Wraps the specified
Range in a NumberRange object. |
Constructor and Description |
---|
MeasurementRange(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.
|
Copyright © 1996–2019 Geotools. All rights reserved.