Uses of Interface
org.geotools.feature.FeatureCollection
-
-
Uses of FeatureCollection in net.opengis.wfs.impl
Methods in net.opengis.wfs.impl that return FeatureCollection Modifier and Type Method Description FeatureCollection
WfsFactoryImpl. createFeatureCollectionFromString(EDataType eDataType, String initialValue)
-
Uses of FeatureCollection in net.opengis.wfs20
Methods in net.opengis.wfs20 that return types with arguments of type FeatureCollection Modifier and Type Method Description EList<FeatureCollection>
SimpleFeatureCollectionType. getMember()
Returns the value of the 'Member' containment reference list. -
Uses of FeatureCollection in net.opengis.wfs20.impl
Fields in net.opengis.wfs20.impl with type parameters of type FeatureCollection Modifier and Type Field Description protected EList<FeatureCollection>
SimpleFeatureCollectionTypeImpl. member
The cached value of the 'Member
' attribute list.Methods in net.opengis.wfs20.impl that return FeatureCollection Modifier and Type Method Description FeatureCollection
Wfs20FactoryImpl. createFeatureCollectionFromString(EDataType eDataType, String initialValue)
Methods in net.opengis.wfs20.impl that return types with arguments of type FeatureCollection Modifier and Type Method Description EList<FeatureCollection>
SimpleFeatureCollectionTypeImpl. getMember()
-
Uses of FeatureCollection in net.opengis.wfs20.util
Methods in net.opengis.wfs20.util with parameters of type FeatureCollection Modifier and Type Method Description boolean
Wfs20Validator. validateFeatureCollection(FeatureCollection featureCollection, DiagnosticChain diagnostics, Map<Object,Object> context)
-
Uses of FeatureCollection in net.opengis.wfs20.validation
Method parameters in net.opengis.wfs20.validation with type arguments of type FeatureCollection Modifier and Type Method Description boolean
SimpleFeatureCollectionTypeValidator. validateMember(EList<FeatureCollection> value)
-
Uses of FeatureCollection in org.geotools.api.data
Methods in org.geotools.api.data that return FeatureCollection Modifier and Type Method Description FeatureCollection<T,F>
FeatureSource. getFeatures()
Retrieves all features in the form of aFeatureCollection
.FeatureCollection<T,F>
FeatureSource. getFeatures(Query query)
Retrieves features, in the form of aFeatureCollection
, based on aQuery
.FeatureCollection<T,F>
FeatureSource. getFeatures(Filter filter)
Retrieves features, in the form of aFeatureCollection
, based on an OGCFilter
.Methods in org.geotools.api.data with parameters of type FeatureCollection Modifier and Type Method Description List<FeatureId>
FeatureStore. addFeatures(FeatureCollection<T,F> featureCollection)
Adds all features from the feature collection. -
Uses of FeatureCollection in org.geotools.appschema.resolver.data
Classes in org.geotools.appschema.resolver.data that implement FeatureCollection Modifier and Type Class Description class
SampleDataAccessFeatureCollection
Collection of features from aSampleDataAccess
.Methods in org.geotools.appschema.resolver.data that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>
SampleDataAccessFeatureSource. getFeatures()
Return aFeatureCollection
containing the sample features.FeatureCollection<FeatureType,Feature>
SampleDataAccessFeatureSource. getFeatures(Query query)
Not yet implemented.FeatureCollection<FeatureType,Feature>
SampleDataAccessFeatureSource. getFeatures(Filter filter)
Not yet implemented.FeatureCollection<FeatureType,Feature>
SampleDataAccessFeatureCollection. sort(SortBy order)
Unsupported operation.FeatureCollection<FeatureType,Feature>
SampleDataAccessFeatureCollection. subCollection(Filter filter)
Unsupported operation. -
Uses of FeatureCollection in org.geotools.data
Classes in org.geotools.data that implement FeatureCollection Modifier and Type Class Description class
DefaultFeatureResults
Generic "results" of a query, class.Methods in org.geotools.data with parameters of type FeatureCollection Modifier and Type Method Description static ReferencedEnvelope
DataUtilities. bounds(FeatureCollection<? extends FeatureType,? extends Feature> collection)
Manually calculates the bounds of a feature collection usingfeatures()
.static DefaultFeatureCollection
DataUtilities. collection(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
Copies the provided features into a FeatureCollection.static <F extends Feature>
Collection<F>DataUtilities. collectionCast(FeatureCollection<?,F> featureCollection)
Used to quickly cast to a java.util.Collection.static int
DataUtilities. count(FeatureCollection<? extends FeatureType,? extends Feature> collection)
Manually count the number of features in a feature collection using usingfeatures()
.static Set<String>
DataUtilities. fidSet(FeatureCollection<?,?> featureCollection)
Copies the feature ids from each and every feature into a set.static <F extends Feature>
FDataUtilities. first(FeatureCollection<?,F> featureCollection)
Obtain the first feature from the collection as an exemplar.static <F extends Feature>
List<F>DataUtilities. list(FeatureCollection<?,F> featureCollection)
Copies the provided features into a List.static <F extends Feature>
List<F>DataUtilities. list(FeatureCollection<?,F> featureCollection, int maxFeatures)
Copies the provided fetaures into a List.static SimpleFeatureReader
DataUtilities. reader(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Adapt a collection to a reader for use with FeatureStore.setFeatures( reader ).static SimpleFeatureCollection
DataUtilities. simple(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
A safe cast to SimpleFeatureCollection; that will introduce a wrapper if it has to.static SimpleFeatureSource
DataUtilities. source(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Wraps up the provided feature collection in as a SimpleFeatureSource.static void
DataUtilities. visit(FeatureCollection<?,?> collection, FeatureVisitor visitor, ProgressListener progress)
Manually visit each feature usingfeatures()
. -
Uses of FeatureCollection in org.geotools.data.collection
Classes in org.geotools.data.collection that implement FeatureCollection Modifier and Type Class Description protected class
CollectionFeatureSource.SubCollection
SubCollection for CollectionFeatureSource.class
ListFeatureCollection
FeatureCollection implementation wrapping around a java.util.List.class
SpatialIndexFeatureCollection
FeatureCollection used to stage information for display using a SpatialIndex.class
TreeSetFeatureCollection
Origional implementation of FeatureCollection using a TreeMap for internal storage.Methods in org.geotools.data.collection with parameters of type FeatureCollection Modifier and Type Method Description boolean
SpatialIndexFeatureCollection. addAll(FeatureCollection<? extends SimpleFeatureType,? extends SimpleFeature> collection)
boolean
TreeSetFeatureCollection. addAll(FeatureCollection<?,?> collection)
Constructors in org.geotools.data.collection with parameters of type FeatureCollection Constructor Description TreeSetFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
This constructor should not be used by client code. -
Uses of FeatureCollection in org.geotools.data.complex
Classes in org.geotools.data.complex that implement FeatureCollection Modifier and Type Class Description class
MappingFeatureCollection
FeatureCollection
for aMappingFeatureIterator
.Fields in org.geotools.data.complex declared as FeatureCollection Modifier and Type Field Description protected FeatureCollection<? extends FeatureType,? extends Feature>
DataAccessMappingFeatureIterator. sourceFeatures
Methods in org.geotools.data.complex that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>
MappingFeatureSource. getFeatures()
FeatureCollection<FeatureType,Feature>
MappingFeatureSource. getFeatures(Query query)
FeatureCollection<FeatureType,Feature>
MappingFeatureSource. getFeatures(Filter filter)
FeatureCollection<FeatureType,Feature>
MappingFeatureSource. getFeatures(Filter filter, Hints hints)
FeatureCollection<FeatureType,Feature>
MappingFeatureCollection. sort(SortBy order)
FeatureCollection<FeatureType,Feature>
MappingFeatureCollection. subCollection(Filter filter)
Methods in org.geotools.data.complex with parameters of type FeatureCollection Modifier and Type Method Description boolean
MappingFeatureCollection. addAll(FeatureCollection<? extends FeatureType,? extends Feature> resource)
Query
IndexQueryManager.PartialIndexQueryManager. buildCombinedQuery(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection)
Constructors in org.geotools.data.complex with parameters of type FeatureCollection Constructor Description IndexUniqueVisitorIterator(FeatureCollection<SimpleFeatureType,SimpleFeature> fc, Query idQuery, String idFieldName)
-
Uses of FeatureCollection in org.geotools.data.complex.xml
Subinterfaces of FeatureCollection in org.geotools.data.complex.xml Modifier and Type Interface Description interface
XmlFeatureCollection
-
Uses of FeatureCollection in org.geotools.data.crs
Classes in org.geotools.data.crs that implement FeatureCollection Modifier and Type Class Description class
ForceCoordinateSystemFeatureResults
ForceCoordinateSystemFeatureResults provides a CoordinateReferenceSystem for FeatureTypes.class
ReprojectFeatureResults
ReprojectFeatureReader provides a reprojection for FeatureTypes.Methods in org.geotools.data.crs that return FeatureCollection Modifier and Type Method Description FeatureCollection<SimpleFeatureType,SimpleFeature>
ForceCoordinateSystemFeatureResults. getOrigin()
Returns the feature results wrapped by this ForceCoordinateSystemFeatureResultsFeatureCollection<SimpleFeatureType,SimpleFeature>
ReprojectFeatureResults. getOrigin()
Returns the feature results wrapped by this reprojecting feature resultsConstructors in org.geotools.data.crs with parameters of type FeatureCollection Constructor Description ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem forcedCS)
ForceCoordinateSystemFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem forcedCS, boolean forceOnlyMissing)
ReprojectFeatureResults(FeatureCollection<SimpleFeatureType,SimpleFeature> results, CoordinateReferenceSystem destinationCS)
Creates a new reprojecting feature results -
Uses of FeatureCollection in org.geotools.data.directory
Methods in org.geotools.data.directory with parameters of type FeatureCollection Modifier and Type Method Description List<FeatureId>
DirectoryFeatureStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
-
Uses of FeatureCollection in org.geotools.data.gen
Classes in org.geotools.data.gen that implement FeatureCollection Modifier and Type Class Description class
PreGeneralizedFeatureCollection
-
Uses of FeatureCollection in org.geotools.data.geojson
Classes in org.geotools.data.geojson that implement FeatureCollection Modifier and Type Class Description class
PagingFeatureCollection
A GeoJSON specific feature collection that can follow "next" links in order to retrieve all data -
Uses of FeatureCollection in org.geotools.data.memory
Classes in org.geotools.data.memory that implement FeatureCollection Modifier and Type Class Description class
MemoryFeatureCollection
Implement a SimpleFeatureCollection by burning memory!Methods in org.geotools.data.memory with parameters of type FeatureCollection Modifier and Type Method Description void
MemoryDataStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Constructors in org.geotools.data.memory with parameters of type FeatureCollection Constructor Description MemoryDataStore(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
-
Uses of FeatureCollection in org.geotools.data.simple
Subinterfaces of FeatureCollection in org.geotools.data.simple Modifier and Type Interface Description interface
SimpleFeatureCollection
Access to "simple" Feature content where each feature has the same SimpleFeatureType. -
Uses of FeatureCollection in org.geotools.data.store
Classes in org.geotools.data.store that implement FeatureCollection Modifier and Type Class Description class
ContentFeatureCollection
A FeatureCollection that completely delegates to a backing FetaureSource#getReaderclass
DataFeatureCollection
A starting point for implementing FeatureCollection's backed onto a FeatureReader.class
EmptyFeatureCollection
class
FilteringFeatureCollection<T extends FeatureType,F extends Feature>
Decorates a feature collection with one that filters content.class
MaxFeaturesFeatureCollection<T extends FeatureType,F extends Feature>
SimpleFeatureCollection wrapper which limits the number of features returned.class
ReprojectingFeatureCollection
SimpleFeatureCollection decorator that reprojects all geometries of the features within the feature collection.class
ReTypingFeatureCollection
SimpleFeatureCollection decorator which decorates a feature collection "re-typing" its schema based on attributes specified in a query.Methods in org.geotools.data.store that return FeatureCollection Modifier and Type Method Description FeatureCollection<T,F>
FilteringFeatureCollection. sort(SortBy order)
FeatureCollection<T,F>
MaxFeaturesFeatureCollection. sort(SortBy order)
FeatureCollection<T,F>
FilteringFeatureCollection. subCollection(Filter filter)
FeatureCollection<T,F>
MaxFeaturesFeatureCollection. subCollection(Filter filter)
Methods in org.geotools.data.store with parameters of type FeatureCollection Modifier and Type Method Description boolean
DataFeatureCollection. addAll(FeatureCollection resource)
List<FeatureId>
ContentFeatureStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> featureCollection)
Adds a collection of features to the store.Constructors in org.geotools.data.store with parameters of type FeatureCollection Constructor Description FilteringFeatureCollection(FeatureCollection<T,F> delegate, Filter filter)
MaxFeaturesFeatureCollection(FeatureCollection<T,F> delegate, long max)
ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, CoordinateReferenceSystem target)
ReprojectingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, CoordinateReferenceSystem source, CoordinateReferenceSystem target)
ReTypingFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, SimpleFeatureType featureType)
-
Uses of FeatureCollection in org.geotools.data.transform
Methods in org.geotools.data.transform with parameters of type FeatureCollection Modifier and Type Method Description List<FeatureId>
TransformFeatureStore. addFeatures(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
-
Uses of FeatureCollection in org.geotools.data.util
Methods in org.geotools.data.util with parameters of type FeatureCollection Modifier and Type Method Description static <T extends Feature,K extends FeatureType>
Stream<T>FeatureStreams. toFeatureStream(FeatureCollection<K,T> fc)
Converts FeatureCollection to Stream of Features Use with try-with-resources clause for auto closing -
Uses of FeatureCollection in org.geotools.data.wfs.impl
Methods in org.geotools.data.wfs.impl that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>
WFSContentComplexFeatureSource. getFeatures()
Get features using the default Query.ALL.FeatureCollection<FeatureType,Feature>
WFSContentComplexFeatureSource. getFeatures(Query query)
Get features based on the query specified.FeatureCollection<FeatureType,Feature>
WFSContentComplexFeatureSource. getFeatures(Filter filter)
Get features based on the specified filter. -
Uses of FeatureCollection in org.geotools.data.wfs.internal
Classes in org.geotools.data.wfs.internal that implement FeatureCollection Modifier and Type Class Description class
WFSContentComplexFeatureCollection
Feature collection for parsing complex features.Methods in org.geotools.data.wfs.internal that return FeatureCollection Modifier and Type Method Description FeatureCollection<FeatureType,Feature>
WFSContentComplexFeatureCollection. subCollection(Filter filter)
Issue a new request for subCollection -
Uses of FeatureCollection in org.geotools.feature
Classes in org.geotools.feature that implement FeatureCollection Modifier and Type Class Description class
DefaultFeatureCollection
A basic implementation of SimpleFeatureCollection which use aTreeMap
for its internal storage.Methods in org.geotools.feature that return FeatureCollection Modifier and Type Method Description FeatureCollection<? extends FeatureType,? extends Feature>
CollectionEvent. getCollection()
provides access to the SimpleFeatureCollection which fired the eventFeatureCollection<T,F>
FeatureCollection. sort(SortBy order)
Obtained sorted contents.FeatureCollection<T,F>
FeatureCollection. subCollection(Filter filter)
SimpleFeatureCollection "view" indicated by provided filter.Methods in org.geotools.feature with parameters of type FeatureCollection Modifier and Type Method Description boolean
DefaultFeatureCollection. addAll(FeatureCollection<?,?> collection)
void
FeatureCollectionIteration.Handler. endFeatureCollection(FeatureCollection<?,?> fc)
The handler is done visiting a FeatureCollection.void
FeatureCollectionIteration.Handler. handleFeatureCollection(FeatureCollection<?,?> fc)
The handler is visiting a FeatureCollection.static void
FeatureCollectionIteration. iteration(FeatureCollectionIteration.Handler handler, FeatureCollection<?,?> collection)
A convienience method for obtaining a new iteration and calling iterate.protected void
FeatureCollectionIteration. walker(FeatureCollection<?,?> collection)
Perform the iterative behavior on the given collection.Constructors in org.geotools.feature with parameters of type FeatureCollection Constructor Description CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> collection, FeatureEvent event)
CollectionEvent(FeatureCollection<? extends FeatureType,? extends Feature> source, SimpleFeature[] involvedFeatures, int type)
Constructs a new CollectionEvent.DefaultFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> collection)
Used to stage content in memory.FeatureCollectionIteration(FeatureCollectionIteration.Handler handler, FeatureCollection<?,?> collection)
Create a new FeatureCollectionIteration with the given handler and collection. -
Uses of FeatureCollection in org.geotools.feature.collection
Subinterfaces of FeatureCollection in org.geotools.feature.collection Modifier and Type Interface Description interface
RandomFeatureAccess
Access Feature content using Feature "Id".Classes in org.geotools.feature.collection that implement FeatureCollection Modifier and Type Class Description class
AbstractFeatureCollection
Implement a feature collection just based on provision of anIterator
.class
AdaptorFeatureCollection
Implement a feature collection just based on provision of iterator.class
BaseFeatureCollection<T extends FeatureType,F extends Feature>
Implement a feature collection just based on provision of aFeatureIterator
.class
BaseSimpleFeatureCollection
class
ClippedFeatureCollection
SimpleFeatureCollection wrapper that clip (crops) features according to the clip geometry passed.class
ClippingFeatureCollection
The class decorates a SimpleFeatureCollection with one that returns features that intersect the geometry passed with a Hints.GEOMETRY_CLIPclass
DecoratingFeatureCollection<T extends FeatureType,F extends Feature>
A FeatureCollection which completely delegates to another FeatureCollection.class
DecoratingSimpleFeatureCollection
A FeatureCollection which completely delegates to another FeatureCollection.class
FilteringSimpleFeatureCollection
Decorates a feature collection with one that filters content.class
MaxSimpleFeatureCollection
SimpleFeatureCollection wrapper which limits the number of features returned.class
SortedSimpleFeatureCollection
A wrapper that will sort a feature collection using a size sensitive algorithm, in main memory for small collections, using secondary memory otherwise.class
SubFeatureCollection
Reasonable default implementation for subCollection making use of parentSimpleFeatureCollection.features()
and provided Filter.class
SubFeatureList
Default implementation ofsort(SortBy)
.Fields in org.geotools.feature.collection declared as FeatureCollection Modifier and Type Field Description protected FeatureCollection<T,F>
DecoratingFeatureCollection. delegate
the delegateMethods in org.geotools.feature.collection that return FeatureCollection Modifier and Type Method Description FeatureCollection<T,F>
BaseFeatureCollection. sort(SortBy order)
Obtained sorted contents, only implemented for SimpleFeature at present.FeatureCollection<T,F>
DecoratingFeatureCollection. sort(SortBy order)
FeatureCollection<T,F>
BaseFeatureCollection. subCollection(Filter filter)
Convenience implementation that just wraps this collection into aFilteringFeatureCollection
.FeatureCollection<T,F>
DecoratingFeatureCollection. subCollection(Filter filter)
Constructors in org.geotools.feature.collection with parameters of type FeatureCollection Constructor Description DecoratingFeatureCollection(FeatureCollection<T,F> delegate)
DecoratingSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate)
FilteringSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, Filter filter)
MaxSimpleFeatureCollection(FeatureCollection<SimpleFeatureType,SimpleFeature> delegate, long max)
-
Uses of FeatureCollection in org.geotools.filter.function
Methods in org.geotools.filter.function with parameters of type FeatureCollection Modifier and Type Method Description protected double[]
ClassificationFunction. computeGroupByPercentages(FeatureCollection collection, double[] percentages, int totalSize, double min, double classWidth)
This method return percentages by using a single groupBy query to retrieve class members. -
Uses of FeatureCollection in org.geotools.geojson.feature
Methods in org.geotools.geojson.feature that return FeatureCollection Modifier and Type Method Description FeatureCollection
FeatureJSON. readFeatureCollection(InputStream input)
Reads a feature collection from GeoJSON.FeatureCollection
FeatureJSON. readFeatureCollection(Object input)
Reads a feature collection from GeoJSON.Methods in org.geotools.geojson.feature with parameters of type FeatureCollection Modifier and Type Method Description String
FeatureJSON. toString(FeatureCollection features)
Writes a feature collection as GeoJSON returning the result as a string.void
FeatureJSON. writeFeatureCollection(FeatureCollection features, OutputStream output)
Writes a feature collection as GeoJSON.void
FeatureJSON. writeFeatureCollection(FeatureCollection features, Object output)
Writes a feature collection as GeoJSON. -
Uses of FeatureCollection in org.geotools.gml.producer
Methods in org.geotools.gml.producer with parameters of type FeatureCollection Modifier and Type Method Description void
FeatureTransformer.FeatureTranslator. endFeatureCollection(FeatureCollection<?,?> collection)
Sends sax for the ending of a feature collection.void
FeatureTransformer.FeatureTranslator. handleFeatureCollection(FeatureCollection<?,?> collection)
Prints up the gml for a featurecollection. -
Uses of FeatureCollection in org.geotools.map
Constructors in org.geotools.map with parameters of type FeatureCollection Constructor Description FeatureLayer(FeatureCollection collection, Style style)
FeatureLayer(FeatureCollection collection, Style style, String title)
-
Uses of FeatureCollection in org.geotools.process.feature
Fields in org.geotools.process.feature with type parameters of type FeatureCollection Modifier and Type Field Description static Parameter<FeatureCollection>
AbstractFeatureCollectionProcessFactory. FEATURES
Features for operationstatic Parameter<FeatureCollection>
FeatureToFeatureProcessFactory. RESULT
Result of the operation is a FeatureCollection. -
Uses of FeatureCollection in org.geotools.process.vector
Classes in org.geotools.process.vector that implement FeatureCollection Modifier and Type Class Description class
ProcessingCollection<T extends FeatureType,F extends Feature>
Abstract base class to ease the implementation of a streaming processing collection, that is, one that tries to compute the results on the fly as the iterator is traversed.class
SimpleProcessingCollection
The simple feature version ofProcessingCollection
.Methods in org.geotools.process.vector that return FeatureCollection Modifier and Type Method Description FeatureCollection
GroupCandidateSelectionProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> features, String aggregation, String operationAttribute, List<String> groupingAttributes)
FeatureCollection<? extends FeatureType,? extends Feature>
LRSGeocodeProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double measure)
Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>
LRSMeasureProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Point point, CoordinateReferenceSystem crs)
Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>
LRSSegmentProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double fromMeasure, Double toMeasure)
Process the input data set.FeatureCollection
NearestProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)
Process the input data set.FeatureCollection
SnapProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)
Process the input data set.Methods in org.geotools.process.vector with parameters of type FeatureCollection Modifier and Type Method Description SimpleFeatureCollection
Contours. contour(FeatureCollection features, String elevation)
ReferencedEnvelope
BoundsProcess. execute(FeatureCollection features)
GeometryCollection
CollectGeometries. execute(FeatureCollection features, ProgressListener progressListener)
SimpleFeatureCollection
ContourProcess. execute(FeatureCollection features, String propertyName, double[] levels, Double interval, Boolean simplify, Boolean smooth, ProgressListener progressListener)
FeatureClassStats.Results
FeatureClassStats. execute(FeatureCollection features, String attribute, Set<Statistic> stats, Integer classes, ClassificationMethod method, Double noData, ProgressListener progressListener)
FeatureCollection
GroupCandidateSelectionProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> features, String aggregation, String operationAttribute, List<String> groupingAttributes)
FeatureCollection<? extends FeatureType,? extends Feature>
LRSGeocodeProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double measure)
Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>
LRSMeasureProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Point point, CoordinateReferenceSystem crs)
Process the input data set.FeatureCollection<? extends FeatureType,? extends Feature>
LRSSegmentProcess. execute(FeatureCollection<? extends FeatureType,? extends Feature> featureCollection, String fromMeasureAttb, String toMeasureAttb, Double fromMeasure, Double toMeasure)
Process the input data set.FeatureCollection
NearestProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)
Process the input data set.FeatureCollection
SnapProcess. execute(FeatureCollection featureCollection, Point point, CoordinateReferenceSystem crs)
Process the input data set. -
Uses of FeatureCollection in org.geotools.renderer
Methods in org.geotools.renderer with parameters of type FeatureCollection Modifier and Type Method Description void
Renderer. render(FeatureCollection<? extends FeatureType,? extends Feature> fc, Envelope viewport, Style style)
Renders the provided features using the specified style. -
Uses of FeatureCollection in org.geotools.renderer.lite
Classes in org.geotools.renderer.lite that implement FeatureCollection Modifier and Type Class Description class
IndexedFeatureResults
IndexedFeatureReader -
Uses of FeatureCollection in org.geotools.wfs
Classes in org.geotools.wfs that implement FeatureCollection Modifier and Type Class Description class
CompositeFeatureCollection
Wraps multiple feature collections into a single.Constructors in org.geotools.wfs with parameters of type FeatureCollection Constructor Description PropertyValueCollection(FeatureCollection delegate, AttributeDescriptor descriptor, PropertyName propName)
Constructor parameters in org.geotools.wfs with type arguments of type FeatureCollection Constructor Description CompositeFeatureCollection(List<FeatureCollection> collections)
-
Uses of FeatureCollection in org.geotools.wfs.bindings
Methods in org.geotools.wfs.bindings that return types with arguments of type FeatureCollection Modifier and Type Method Description static List<FeatureCollection>
WFSParsingUtils. features(EObject obj)
-
Uses of FeatureCollection in org.geotools.xml.gml
Classes in org.geotools.xml.gml that implement FeatureCollection Modifier and Type Class Description class
GMLFeatureCollection
-