Uses of Interface
org.locationtech.jts.jump.feature.FeatureCollection
-
Packages that use FeatureCollection Package Description org.locationtech.jts.jump.feature Features and FeatureCollections -- the layer of abstraction between Geometries in JTS and Layers in the JUMP Workbench.org.locationtech.jts.jump.io org.locationtech.jts.jump.io.datasource The DataSource API is the core API for input and output of data.org.locationtech.jts.jump.tools org.locationtech.jts.jump.util.feature org.locationtech.jts.jump.util.io org.locationtech.jts.jump.warp org.locationtech.jts.jump.workbench.model Layers, Categories, and Layer Managers -- the top level of abstraction in the JUMP data model, wrapping Features and FeatureCollections, which in turn wrap Geometries.org.locationtech.jts.jump.workbench.plugin The API for "plug-ins", which are code modules that can be assigned to buttons and menu items.org.locationtech.jts.jump.workbench.ui.plugin The built-in JUMP "plug-ins" (code modules that can be assigned to buttons and menu items).org.locationtech.jts.jump.workbench.ui.toolbox org.locationtech.jts.jump.workbench.ui.warp -
-
Uses of FeatureCollection in org.locationtech.jts.jump.feature
Classes in org.locationtech.jts.jump.feature that implement FeatureCollection Modifier and Type Class Description classFeatureCollectionWrapperDelegates to another instance of FeatureCollection.classFeatureDatasetDefault implementation of FeatureCollection.classIndexedFeatureCollectionAn IndexedFeatureCollection creates a new collection which is backed by a FeatureCollection, but which is indexed for query purposes.Methods in org.locationtech.jts.jump.feature that return FeatureCollection Modifier and Type Method Description static FeatureCollectionFeatureDatasetFactory. createFromGeometry(Collection geoms)Creates a FeatureCollection from a Collection ofGeometrysFeatureCollectionFeatureCollectionWrapper. getUltimateWrappee()Returns the non-wrapper FeatureCollection wrapped by this wrapper and possibly by other wrappers in-between.FeatureCollectionFeatureCollectionWrapper. getWrappee()Returns the FeatureCollection that this wrapper delegates to (possibly another FeatureCollectionWrapper).Methods in org.locationtech.jts.jump.feature with parameters of type FeatureCollection Modifier and Type Method Description FeatureDatasetFeatureUpdateRecorder. applyUpdates(FeatureCollection fc)Applies updates to an existing FeatureCollection.Constructors in org.locationtech.jts.jump.feature with parameters of type FeatureCollection Constructor Description FeatureCollectionWrapper(FeatureCollection fc)Constructs a FeatureCollectionWrapper that delegates to the given FeatureCollection.IndexedFeatureCollection(FeatureCollection fc)Constructs an IndexedFeatureCollection wrapping the given FeatureCollection and using the default spatial index.IndexedFeatureCollection(FeatureCollection fc, org.locationtech.jts.index.SpatialIndex spatialIndex)Constructs an IndexedFeatureCollection wrapping the given FeatureCollection and using the given empty spatial index. -
Uses of FeatureCollection in org.locationtech.jts.jump.io
Methods in org.locationtech.jts.jump.io that return FeatureCollection Modifier and Type Method Description FeatureCollectionFMEGMLReader. read(DriverProperties dp)Main method - reads in FMEGML file specified in the DriverProperties ('InputFile' or 'DefaultValue')FeatureCollectionGMLReader. read(Reader r)Helper function - calls read(java.io.Reader r,String readerName) with the readerName "Unknown Stream".FeatureCollectionGMLReader. read(Reader r, String readerName)Main function to read a GML file.FeatureCollectionGMLReader. read(DriverProperties dp)Main Entry - load in a GML fileFeatureCollectionJMLReader. read(DriverProperties dp)Read a JML file - passes the work off toGMLReader.FeatureCollectionJUMPReader. read(DriverProperties dp)Read the specified file using the filename given by the "File" property and any other parameters.FeatureCollectionShapefileReader. read(DriverProperties dp)Main method to read a shapefile.FeatureCollectionWKTReader. read(Reader reader)Reads in the actual WKT geometriesFeatureCollectionWKTReader. read(DriverProperties dp)Main function -read in a file containing a list of WKT geometriesMethods in org.locationtech.jts.jump.io with parameters of type FeatureCollection Modifier and Type Method Description org.locationtech.jts.geom.GeometryCollectionShapefileWriter. makeSHAPEGeometryCollection(FeatureCollection fc)return a single geometry collection
result.GeometryN(i) = the i-th feature in the FeatureCollection
All the geometry types will be the same type (ie.voidFMEGMLWriter. write(FeatureCollection featureCollection, DriverProperties dp)Cause a featureCollection to be written using the outputfile (and format) specified in the dp parameter.
A GMLOutputTemplate will be autogenerated, then the write request passed off to theGMLWriter.voidGMLWriter. write(FeatureCollection featureCollection, Writer writer)Actual evaluator/writer - you should have already called setOutputTemplatevoidGMLWriter. write(FeatureCollection featureCollection, DriverProperties dp)Main entry function - write the GML file.voidJMLWriter. write(FeatureCollection featureCollection, DriverProperties dp)Writes the feature collection to the specified file in JML format.voidJUMPWriter. write(FeatureCollection featureCollection, DriverProperties dp)Write the specified file (dp property 'OutputFile' or 'DefaultValue') with any other specific parameters.voidShapefileWriter. write(FeatureCollection featureCollection, DriverProperties dp)Main method - write the featurecollection to a shapefile (2d, 3d or 4d).voidWKTWriter. write(FeatureCollection featureCollection, Writer writer)Function that actually does the writingvoidWKTWriter. write(FeatureCollection featureCollection, DriverProperties dp)Main method - writes a list of wkt features (no attributes). -
Uses of FeatureCollection in org.locationtech.jts.jump.io.datasource
Methods in org.locationtech.jts.jump.io.datasource that return FeatureCollection Modifier and Type Method Description FeatureCollectionConnection. executeQuery(String query, Collection exceptions, TaskMonitor monitor)Returns from a DataSource a dataset specified using a query string (the format of which is implementation-dependent).FeatureCollectionConnection. executeQuery(String query, TaskMonitor monitor)Returns from a DataSource a dataset specified using a query string (the format of which is implementation-dependent).FeatureCollectionDataSource. installCoordinateSystem(FeatureCollection queryResult, CoordinateSystemRegistry registry)FeatureCollectionDelegatingCompressedFileHandler. read(DriverProperties dp)Methods in org.locationtech.jts.jump.io.datasource with parameters of type FeatureCollection Modifier and Type Method Description voidConnection. executeUpdate(String query, FeatureCollection featureCollection, TaskMonitor monitor)Modifies data in the DataSource accordinate to a query string (the format of which is implementation-dependent).FeatureCollectionDataSource. installCoordinateSystem(FeatureCollection queryResult, CoordinateSystemRegistry registry) -
Uses of FeatureCollection in org.locationtech.jts.jump.tools
Methods in org.locationtech.jts.jump.tools that return FeatureCollection Modifier and Type Method Description FeatureCollectionOverlayEngine. overlay(FeatureCollection a, FeatureCollection b, TaskMonitor monitor)Creates the overlay of the two datasets.FeatureCollectionOverlayEngine. overlay(FeatureCollection a, FeatureCollection b, AttributeMapping mapping, TaskMonitor monitor)Creates the overlay of the two datasets.Methods in org.locationtech.jts.jump.tools with parameters of type FeatureCollection Modifier and Type Method Description protected voidOverlayEngine. addFeature(org.locationtech.jts.geom.Geometry intersection, FeatureCollection overlay, AttributeMapping mapping, Feature a, Feature b)FeatureCollectionOverlayEngine. overlay(FeatureCollection a, FeatureCollection b, TaskMonitor monitor)Creates the overlay of the two datasets.FeatureCollectionOverlayEngine. overlay(FeatureCollection a, FeatureCollection b, AttributeMapping mapping, TaskMonitor monitor)Creates the overlay of the two datasets. -
Uses of FeatureCollection in org.locationtech.jts.jump.util.feature
Methods in org.locationtech.jts.jump.util.feature with parameters of type FeatureCollection Modifier and Type Method Description static double[]FeatureStatistics. minMaxValue(FeatureCollection fc, String col) -
Uses of FeatureCollection in org.locationtech.jts.jump.util.io
Methods in org.locationtech.jts.jump.util.io that return FeatureCollection Modifier and Type Method Description FeatureCollectionSimpleGMLReader. readFMEFile(File file)Reads a GML file that is in FME format. -
Uses of FeatureCollection in org.locationtech.jts.jump.warp
Methods in org.locationtech.jts.jump.warp that return FeatureCollection Modifier and Type Method Description FeatureCollectionCoordinateTransform. transform(FeatureCollection featureCollection)Methods in org.locationtech.jts.jump.warp with parameters of type FeatureCollection Modifier and Type Method Description FeatureCollectionCoordinateTransform. transform(FeatureCollection featureCollection) -
Uses of FeatureCollection in org.locationtech.jts.jump.workbench.model
Classes in org.locationtech.jts.jump.workbench.model that implement FeatureCollection Modifier and Type Class Description classObservableFeatureCollectionNotifies listeners when features are added to or removed from a FeatureCollection.classOneItemFeatureCollectionRestricts the number of Features in a FeatureCollection to 1.Methods in org.locationtech.jts.jump.workbench.model with parameters of type FeatureCollection Modifier and Type Method Description LayerLayerManager. addLayer(String categoryName, String layerName, FeatureCollection featureCollection)LayerLayerManager. addOrReplaceLayer(String categoryName, String layerName, FeatureCollection featureCollection)voidLayer. setFeatureCollection(FeatureCollection featureCollection)Constructors in org.locationtech.jts.jump.workbench.model with parameters of type FeatureCollection Constructor Description Layer(String name, Color fillColor, FeatureCollection featureCollection, LayerManager layerManager)ObservableFeatureCollection(FeatureCollection fc)OneItemFeatureCollection(FeatureCollection fc) -
Uses of FeatureCollection in org.locationtech.jts.jump.workbench.plugin
Methods in org.locationtech.jts.jump.workbench.plugin with parameters of type FeatureCollection Modifier and Type Method Description LayerPlugInContext. addLayer(String categoryName, String layerName, FeatureCollection featureCollection) -
Uses of FeatureCollection in org.locationtech.jts.jump.workbench.ui.plugin
Methods in org.locationtech.jts.jump.workbench.ui.plugin that return FeatureCollection Modifier and Type Method Description static FeatureCollectionAddNewLayerPlugIn. createBlankFeatureCollection()Methods in org.locationtech.jts.jump.workbench.ui.plugin with parameters of type FeatureCollection Modifier and Type Method Description protected voidAddNewFeaturesPlugIn. apply(FeatureCollection c, PlugInContext context)protected voidEditSelectedFeaturePlugIn. apply(FeatureCollection c, PlugInContext context)protected abstract voidWKTPlugIn. apply(FeatureCollection c, PlugInContext context) -
Uses of FeatureCollection in org.locationtech.jts.jump.workbench.ui.toolbox
Methods in org.locationtech.jts.jump.workbench.ui.toolbox with parameters of type FeatureCollection Modifier and Type Method Description protected LayerMainButtonPlugIn. generateLayer(String name, String category, Color color, LayerManagerProxy proxy, FeatureCollection featureCollection, String description)protected LayerMainButtonPlugIn. generateLineLayer(String name, String category, Color color, LayerManagerProxy proxy, FeatureCollection featureCollection, String description) -
Uses of FeatureCollection in org.locationtech.jts.jump.workbench.ui.warp
Methods in org.locationtech.jts.jump.workbench.ui.warp with parameters of type FeatureCollection Modifier and Type Method Description static voidAffineTransformPlugIn. checkValid(FeatureCollection featureCollection, PlugInContext context)
-