| Package | Description |
|---|---|
| com.vividsolutions.jump.feature |
Features and FeatureCollections -- the layer of abstraction between
Geometries in JTS and Layers in the JUMP Workbench.
|
| com.vividsolutions.jump.io | |
| com.vividsolutions.jump.io.datasource |
The DataSource API is the core API for input and output of
data.
|
| com.vividsolutions.jump.tools | |
| com.vividsolutions.jump.util.feature | |
| com.vividsolutions.jump.util.io | |
| com.vividsolutions.jump.warp | |
| com.vividsolutions.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.
|
| com.vividsolutions.jump.workbench.plugin |
The API for "plug-ins", which are code modules that can be assigned to
buttons and menu items.
|
| com.vividsolutions.jump.workbench.ui.plugin |
The built-in JUMP "plug-ins" (code modules that can be assigned to
buttons and menu items).
|
| com.vividsolutions.jump.workbench.ui.toolbox | |
| com.vividsolutions.jump.workbench.ui.warp |
| Modifier and Type | Class and Description |
|---|---|
class |
FeatureCollectionWrapper
Delegates to another instance of FeatureCollection.
|
class |
FeatureDataset
Default implementation of FeatureCollection.
|
class |
IndexedFeatureCollection
An IndexedFeatureCollection creates a new collection which is backed by a
FeatureCollection, but which is indexed for query purposes.
|
| Modifier and Type | Method and Description |
|---|---|
static FeatureCollection |
FeatureDatasetFactory.createFromGeometry(Collection geoms)
Creates a FeatureCollection from a Collection of
Geometrys |
FeatureCollection |
FeatureCollectionWrapper.getUltimateWrappee()
Returns the non-wrapper FeatureCollection wrapped by this wrapper and
possibly by other wrappers in-between.
|
FeatureCollection |
FeatureCollectionWrapper.getWrappee()
Returns the FeatureCollection that this wrapper delegates to (possibly
another FeatureCollectionWrapper).
|
| Modifier and Type | Method and Description |
|---|---|
FeatureDataset |
FeatureUpdateRecorder.applyUpdates(FeatureCollection fc)
Applies updates to an existing FeatureCollection.
|
| Constructor and 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,
com.vividsolutions.jts.index.SpatialIndex spatialIndex)
Constructs an IndexedFeatureCollection wrapping the given FeatureCollection
and using the given empty spatial index.
|
| Modifier and Type | Method and Description |
|---|---|
FeatureCollection |
WKTReader.read(DriverProperties dp)
Main function -read in a file containing a list of WKT geometries
|
FeatureCollection |
ShapefileReader.read(DriverProperties dp)
Main method to read a shapefile.
|
FeatureCollection |
JUMPReader.read(DriverProperties dp)
Read the specified file using the filename given by the "File" property
and any other parameters.
|
FeatureCollection |
JMLReader.read(DriverProperties dp)
Read a JML file - passes the work off to
GMLReader. |
FeatureCollection |
GMLReader.read(DriverProperties dp)
Main Entry - load in a GML file
|
FeatureCollection |
FMEGMLReader.read(DriverProperties dp)
Main method - reads in FMEGML file specified in the DriverProperties ('InputFile' or 'DefaultValue')
|
FeatureCollection |
WKTReader.read(Reader reader)
Reads in the actual WKT geometries
|
FeatureCollection |
GMLReader.read(Reader r)
Helper function - calls read(java.io.Reader r,String readerName) with the
readerName "Unknown Stream".
|
FeatureCollection |
GMLReader.read(Reader r,
String readerName)
Main function to read a GML file.
|
| Modifier and Type | Method and Description |
|---|---|
com.vividsolutions.jts.geom.GeometryCollection |
ShapefileWriter.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. all polygons) - or they will be set to NULL geometries GeometryN(i) = {Multipoint,Multilinestring, or Multipolygon) |
void |
WKTWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Main method - writes a list of wkt features (no attributes).
|
void |
ShapefileWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Main method - write the featurecollection to a shapefile (2d, 3d or 4d).
|
void |
JUMPWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Write the specified file (dp property 'OutputFile' or 'DefaultValue') with any other
specific parameters.
|
void |
JMLWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Writes the feature collection to the specified file in JML format.
|
void |
GMLWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Main entry function - write the GML file.
|
void |
FMEGMLWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Cause a featureCollection to be written using the outputfile (and format) specified in the dp parameter.
|
void |
WKTWriter.write(FeatureCollection featureCollection,
Writer writer)
Function that actually does the writing
|
void |
GMLWriter.write(FeatureCollection featureCollection,
Writer writer)
Actual evaluator/writer - you should have already called setOutputTemplate
|
| Modifier and Type | Method and Description |
|---|---|
FeatureCollection |
Connection.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).
|
FeatureCollection |
Connection.executeQuery(String query,
TaskMonitor monitor)
Returns from a DataSource a dataset specified using a query string (the format
of which is implementation-dependent).
|
FeatureCollection |
DataSource.installCoordinateSystem(FeatureCollection queryResult,
CoordinateSystemRegistry registry) |
FeatureCollection |
DelegatingCompressedFileHandler.read(DriverProperties dp) |
| Modifier and Type | Method and Description |
|---|---|
void |
Connection.executeUpdate(String query,
FeatureCollection featureCollection,
TaskMonitor monitor)
Modifies data in the DataSource accordinate to a query string (the format of
which is implementation-dependent).
|
FeatureCollection |
DataSource.installCoordinateSystem(FeatureCollection queryResult,
CoordinateSystemRegistry registry) |
| Modifier and Type | Method and Description |
|---|---|
FeatureCollection |
OverlayEngine.overlay(FeatureCollection a,
FeatureCollection b,
AttributeMapping mapping,
TaskMonitor monitor)
Creates the overlay of the two datasets.
|
FeatureCollection |
OverlayEngine.overlay(FeatureCollection a,
FeatureCollection b,
TaskMonitor monitor)
Creates the overlay of the two datasets.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
OverlayEngine.addFeature(com.vividsolutions.jts.geom.Geometry intersection,
FeatureCollection overlay,
AttributeMapping mapping,
Feature a,
Feature b) |
FeatureCollection |
OverlayEngine.overlay(FeatureCollection a,
FeatureCollection b,
AttributeMapping mapping,
TaskMonitor monitor)
Creates the overlay of the two datasets.
|
FeatureCollection |
OverlayEngine.overlay(FeatureCollection a,
FeatureCollection b,
TaskMonitor monitor)
Creates the overlay of the two datasets.
|
| Modifier and Type | Method and Description |
|---|---|
static double[] |
FeatureStatistics.minMaxValue(FeatureCollection fc,
String col) |
| Modifier and Type | Method and Description |
|---|---|
FeatureCollection |
SimpleGMLReader.readFMEFile(File file)
Reads a GML file that is in FME format.
|
| Modifier and Type | Method and Description |
|---|---|
FeatureCollection |
CoordinateTransform.transform(FeatureCollection featureCollection) |
| Modifier and Type | Method and Description |
|---|---|
FeatureCollection |
CoordinateTransform.transform(FeatureCollection featureCollection) |
| Modifier and Type | Class and Description |
|---|---|
class |
ObservableFeatureCollection
Notifies listeners when features are added to or removed from a
FeatureCollection.
|
class |
OneItemFeatureCollection
Restricts the number of Features in a FeatureCollection to 1.
|
| Modifier and Type | Method and Description |
|---|---|
Layer |
LayerManager.addLayer(String categoryName,
String layerName,
FeatureCollection featureCollection) |
Layer |
LayerManager.addOrReplaceLayer(String categoryName,
String layerName,
FeatureCollection featureCollection) |
void |
Layer.setFeatureCollection(FeatureCollection featureCollection) |
| Constructor and Description |
|---|
Layer(String name,
Color fillColor,
FeatureCollection featureCollection,
LayerManager layerManager) |
ObservableFeatureCollection(FeatureCollection fc) |
OneItemFeatureCollection(FeatureCollection fc) |
| Modifier and Type | Method and Description |
|---|---|
Layer |
PlugInContext.addLayer(String categoryName,
String layerName,
FeatureCollection featureCollection) |
| Modifier and Type | Method and Description |
|---|---|
static FeatureCollection |
AddNewLayerPlugIn.createBlankFeatureCollection() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
WKTPlugIn.apply(FeatureCollection c,
PlugInContext context) |
protected void |
EditSelectedFeaturePlugIn.apply(FeatureCollection c,
PlugInContext context) |
protected void |
AddNewFeaturesPlugIn.apply(FeatureCollection c,
PlugInContext context) |
| Modifier and Type | Method and Description |
|---|---|
protected Layer |
MainButtonPlugIn.generateLayer(String name,
String category,
Color color,
LayerManagerProxy proxy,
FeatureCollection featureCollection,
String description) |
protected Layer |
MainButtonPlugIn.generateLineLayer(String name,
String category,
Color color,
LayerManagerProxy proxy,
FeatureCollection featureCollection,
String description) |
| Modifier and Type | Method and Description |
|---|---|
static void |
AffineTransformPlugIn.checkValid(FeatureCollection featureCollection,
PlugInContext context) |
Copyright © 2015. All rights reserved.