|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of FeatureCollection in com.vividsolutions.jump.feature |
|---|
| Classes in com.vividsolutions.jump.feature that implement FeatureCollection | |
|---|---|
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. |
| Methods in com.vividsolutions.jump.feature that return FeatureCollection | |
|---|---|
static FeatureCollection |
FeatureDatasetFactory.createFromGeometry(java.util.Collection geoms)
Creates a FeatureCollection from a Collection of Geometrys |
protected FeatureCollection |
FeatureCollectionWrapper.getFeatureCollection()
|
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). |
| Methods in com.vividsolutions.jump.feature with parameters of type FeatureCollection | |
|---|---|
FeatureDataset |
FeatureUpdateRecorder.applyUpdates(FeatureCollection fc)
Applies updates to an existing FeatureCollection. |
protected void |
FeatureCollectionWrapper.setFeatureCollection(FeatureCollection featureCollection)
|
| Constructors in com.vividsolutions.jump.feature with parameters of type FeatureCollection | |
|---|---|
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. |
|
| Uses of FeatureCollection in com.vividsolutions.jump.io |
|---|
| Methods in com.vividsolutions.jump.io that return FeatureCollection | |
|---|---|
FeatureCollection |
JUMPReader.read(DriverProperties dp)
Read the specified file using the filename given by the "File" property and any other parameters. |
FeatureCollection |
FMEGMLReader.read(DriverProperties dp)
Main method - reads in FMEGML file specified in the DriverProperties ('InputFile' or 'DefaultValue') |
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 |
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 |
WKTReader.read(java.io.Reader reader)
Reads in the actual WKT geometries |
FeatureCollection |
GMLReader.read(java.io.Reader r)
Helper function - calls read(java.io.Reader r,String readerName) with the readerName "Unknown Stream". |
FeatureCollection |
GMLReader.read(java.io.Reader r,
java.lang.String readerName)
Main function to read a GML file. |
| Methods in com.vividsolutions.jump.io with parameters of type FeatureCollection | |
|---|---|
void |
ShapefileWriter.checkIfGeomsAreMixed(FeatureCollection featureCollection)
|
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 |
ShapefileWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Main method - write the featurecollection to a shapefile (2d, 3d or 4d). |
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 |
JUMPWriter.write(FeatureCollection featureCollection,
DriverProperties dp)
Write the specified file (dp property 'OutputFile' or 'DefaultValue') with any other specific parameters. |
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,
DriverProperties dp)
Main method - writes a list of wkt features (no attributes). |
void |
GMLWriter.write(FeatureCollection featureCollection,
java.io.Writer writer)
Actual evaluator/writer - you should have already called setOutputTemplate |
void |
WKTWriter.write(FeatureCollection featureCollection,
java.io.Writer writer)
Function that actually does the writing |
| Uses of FeatureCollection in com.vividsolutions.jump.io.datasource |
|---|
| Methods in com.vividsolutions.jump.io.datasource that return FeatureCollection | |
|---|---|
FeatureCollection |
Connection.executeQuery(java.lang.String query,
java.util.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(java.lang.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)
|
| Methods in com.vividsolutions.jump.io.datasource with parameters of type FeatureCollection | |
|---|---|
void |
Connection.executeUpdate(java.lang.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)
|
| Uses of FeatureCollection in com.vividsolutions.jump.plugin.edit |
|---|
| Methods in com.vividsolutions.jump.plugin.edit with parameters of type FeatureCollection | |
|---|---|
void |
UniqueSegmentsExtracter.add(FeatureCollection fc)
|
void |
SegmentsExtracter.add(FeatureCollection fc)
|
| Constructors in com.vividsolutions.jump.plugin.edit with parameters of type FeatureCollection | |
|---|---|
AffineTransControlPointExtracter(FeatureCollection fcSrc,
FeatureCollection fcDest)
|
|
| Uses of FeatureCollection in com.vividsolutions.jump.plugin.qa |
|---|
| Methods in com.vividsolutions.jump.plugin.qa that return FeatureCollection | |
|---|---|
FeatureCollection[] |
DiffGeometryPlugIn.diffSegments(FeatureCollection[] diffFC,
TaskMonitor monitor)
|
| Methods in com.vividsolutions.jump.plugin.qa with parameters of type FeatureCollection | |
|---|---|
FeatureCollection[] |
DiffGeometryPlugIn.diffSegments(FeatureCollection[] diffFC,
TaskMonitor monitor)
|
| Uses of FeatureCollection in com.vividsolutions.jump.qa.diff |
|---|
| Methods in com.vividsolutions.jump.qa.diff that return FeatureCollection | |
|---|---|
FeatureCollection |
DiffSegments.computeDiffEdges(int index)
Returns all the subedges from fc which are unmatched. |
FeatureCollection[] |
DiffGeometryComponents.diff()
|
FeatureCollection[] |
DiffGeometry.diff()
|
FeatureCollection[] |
DiffSegmentsWithTolerance.diff()
|
FeatureCollection |
MatchCollection.getUnmatchedFeatures()
|
| Methods in com.vividsolutions.jump.qa.diff with parameters of type FeatureCollection | |
|---|---|
void |
DiffSegments.setSegments(int index,
FeatureCollection fc)
|
| Constructors in com.vividsolutions.jump.qa.diff with parameters of type FeatureCollection | |
|---|---|
DiffGeometry(FeatureCollection fc0,
FeatureCollection fc1,
TaskMonitor monitor)
|
|
DiffGeometryComponents(FeatureCollection fc0,
FeatureCollection fc1,
TaskMonitor monitor)
|
|
DiffGeometryIndex(FeatureCollection fc,
DiffGeometryMatcher diffMatcher,
boolean splitIntoComponents)
|
|
DiffSegmentsWithTolerance(FeatureCollection fc0,
FeatureCollection fc1,
double tolerance)
|
|
MatchCollection(FeatureCollection fc,
boolean splitIntoComponents)
|
|
SegmentIndex(FeatureCollection fc)
|
|
UniqueSegmentsWithToleranceFinder(FeatureCollection fc0,
FeatureCollection fc1)
|
|
| Uses of FeatureCollection in com.vividsolutions.jump.tools |
|---|
| Methods in com.vividsolutions.jump.tools that return FeatureCollection | |
|---|---|
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. |
| Methods in com.vividsolutions.jump.tools with parameters of type FeatureCollection | |
|---|---|
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. |
| Uses of FeatureCollection in com.vividsolutions.jump.util.feature |
|---|
| Methods in com.vividsolutions.jump.util.feature with parameters of type FeatureCollection | |
|---|---|
static double[] |
FeatureStatistics.minMaxValue(FeatureCollection fc,
java.lang.String col)
|
| Uses of FeatureCollection in com.vividsolutions.jump.util.io |
|---|
| Methods in com.vividsolutions.jump.util.io that return FeatureCollection | |
|---|---|
FeatureCollection |
SimpleGMLReader.readFMEFile(java.io.File file)
Reads a GML file that is in FME format. |
| Uses of FeatureCollection in com.vividsolutions.jump.warp |
|---|
| Methods in com.vividsolutions.jump.warp that return FeatureCollection | |
|---|---|
FeatureCollection |
CoordinateTransform.transform(FeatureCollection featureCollection)
|
| Methods in com.vividsolutions.jump.warp with parameters of type FeatureCollection | |
|---|---|
FeatureCollection |
CoordinateTransform.transform(FeatureCollection featureCollection)
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.model |
|---|
| Classes in com.vividsolutions.jump.workbench.model that implement FeatureCollection | |
|---|---|
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. |
| Methods in com.vividsolutions.jump.workbench.model with parameters of type FeatureCollection | |
|---|---|
Layer |
LayerManager.addLayer(java.lang.String categoryName,
java.lang.String layerName,
FeatureCollection featureCollection)
|
Layer |
LayerManager.addOrReplaceLayer(java.lang.String categoryName,
java.lang.String layerName,
FeatureCollection featureCollection)
|
void |
Layer.setFeatureCollection(FeatureCollection featureCollection)
|
| Constructors in com.vividsolutions.jump.workbench.model with parameters of type FeatureCollection | |
|---|---|
Layer(java.lang.String name,
java.awt.Color fillColor,
FeatureCollection featureCollection,
LayerManager layerManager)
|
|
ObservableFeatureCollection(FeatureCollection fc)
|
|
OneItemFeatureCollection(FeatureCollection fc)
|
|
SystemLayerFinder.NonSavePromptingLayer(java.lang.String name,
java.awt.Color fillColor,
FeatureCollection featureCollection,
LayerManager layerManager)
|
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.model.cache |
|---|
| Classes in com.vividsolutions.jump.workbench.model.cache that implement FeatureCollection | |
|---|---|
class |
CachingFeatureCollection
Caches features to prevent unnecessary queries. |
class |
DynamicFeatureCollection
|
class |
ThreadSafeFeatureCollectionWrapper
Thread safety is achieved by (1) synchronizing the methods, and (2) creating new Collections in #getFeatures, #query, and #iterator to prevent ConcurrentModificationExceptions. |
| Constructors in com.vividsolutions.jump.workbench.model.cache with parameters of type FeatureCollection | |
|---|---|
CachingFeatureCollection(FeatureCollection featureCollection)
|
|
ThreadSafeFeatureCollectionWrapper(FeatureCollection featureCollection)
|
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.plugin |
|---|
| Methods in com.vividsolutions.jump.workbench.plugin with parameters of type FeatureCollection | |
|---|---|
Layer |
PlugInContext.addLayer(java.lang.String categoryName,
java.lang.String layerName,
FeatureCollection featureCollection)
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.ui.plugin |
|---|
| Methods in com.vividsolutions.jump.workbench.ui.plugin that return FeatureCollection | |
|---|---|
static FeatureCollection |
AddNewLayerPlugIn.createBlankFeatureCollection()
|
| Methods in com.vividsolutions.jump.workbench.ui.plugin with parameters of type FeatureCollection | |
|---|---|
protected void |
EditSelectedFeaturePlugIn.apply(FeatureCollection c,
PlugInContext context)
|
protected abstract void |
WKTPlugIn.apply(FeatureCollection c,
PlugInContext context)
|
protected void |
AddNewFeaturesPlugIn.apply(FeatureCollection c,
PlugInContext context)
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.ui.plugin.analysis |
|---|
| Methods in com.vividsolutions.jump.workbench.ui.plugin.analysis that return FeatureCollection | |
|---|---|
FeatureCollection |
SpatialQueryExecuter.getResultFC()
|
FeatureCollection |
SpatialJoinExecuter.getResultFC()
|
| Methods in com.vividsolutions.jump.workbench.ui.plugin.analysis with parameters of type FeatureCollection | |
|---|---|
void |
SpatialQueryExecuter.execute(TaskMonitor monitor,
GeometryPredicate func,
double[] params,
FeatureCollection resultFC)
Computes geomSrc.func(geomMask) |
void |
SpatialJoinExecuter.execute(TaskMonitor monitor,
GeometryPredicate func,
double[] params,
FeatureCollection resultFC)
Computes geomSrc.func(geomMask) |
| Constructors in com.vividsolutions.jump.workbench.ui.plugin.analysis with parameters of type FeatureCollection | |
|---|---|
SpatialJoinExecuter(FeatureCollection srcAFC,
FeatureCollection srcBFC)
|
|
SpatialQueryExecuter(FeatureCollection maskFC,
FeatureCollection sourceFC)
|
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.ui.toolbox |
|---|
| Methods in com.vividsolutions.jump.workbench.ui.toolbox with parameters of type FeatureCollection | |
|---|---|
protected Layer |
MainButtonPlugIn.generateLayer(java.lang.String name,
java.lang.String category,
java.awt.Color color,
LayerManagerProxy proxy,
FeatureCollection featureCollection,
java.lang.String description)
|
protected Layer |
MainButtonPlugIn.generateLineLayer(java.lang.String name,
java.lang.String category,
java.awt.Color color,
LayerManagerProxy proxy,
FeatureCollection featureCollection,
java.lang.String description)
|
| Uses of FeatureCollection in com.vividsolutions.jump.workbench.ui.warp |
|---|
| Methods in com.vividsolutions.jump.workbench.ui.warp with parameters of type FeatureCollection | |
|---|---|
static void |
AffineTransformPlugIn.checkValid(FeatureCollection featureCollection,
PlugInContext context)
|
| Uses of FeatureCollection in org.openjump.core.apitools |
|---|
| Fields in org.openjump.core.apitools declared as FeatureCollection | |
|---|---|
protected FeatureCollection |
FeatureCollectionTools.fc
|
| Methods in org.openjump.core.apitools that return FeatureCollection | |
|---|---|
static FeatureCollection |
IOTools.load(java.lang.String filename)
|
static FeatureCollection |
IOTools.load(java.lang.String filename,
java.lang.String zipFileName)
|
static FeatureCollection |
IOTools.loadFMEGML(java.lang.String filename)
|
static FeatureCollection |
IOTools.loadJMLFile(java.lang.String filename)
|
static FeatureCollection |
IOTools.loadShapefile(java.lang.String filename)
|
static FeatureCollection |
IOTools.loadShapefile(java.lang.String filename,
java.lang.String zipFileName)
|
static FeatureCollection |
IOTools.loadWKT(java.lang.String filename)
|
| Methods in org.openjump.core.apitools with parameters of type FeatureCollection | |
|---|---|
static Layer |
LayerTools.addAndSelectStandardResultLayer(java.lang.String title,
FeatureCollection featCollection,
java.awt.Color color,
PlugInContext context,
FeatureCollectionRole role)
|
static Layer |
LayerTools.addAndSelectStandardResultLayer(java.lang.String title,
FeatureCollection featCollection,
PlugInContext context,
FeatureCollectionRole role)
|
static PirolFeatureCollection |
FeatureCollectionTools.addAttributesToFeatureCollection(FeatureCollection fc,
AttributeInfo[] attributeInfos)
|
static PirolFeatureCollection |
FeatureCollectionTools.addAttributesToFeatureCollection(FeatureCollection fc,
AttributeInfo[] attributeInfos,
boolean clearOriginalFeatureCollection)
Adds multiple attributes to a FeatureCollection |
static PirolFeatureCollection |
FeatureCollectionTools.addAttributesToFeatureCollection(FeatureCollection fc,
java.util.List<AttributeInfo> attributeInfos)
Adds multiple attributes to a FeatureCollection |
static PirolFeatureCollection |
FeatureCollectionTools.addAttributeToFeatureCollection(FeatureCollection fc,
AttributeInfo attrInfo)
|
static PirolFeatureCollection |
FeatureCollectionTools.addAttributeToFeatureCollection(FeatureCollection fc,
AttributeInfo attrInfo,
boolean clearOldFeatureCollection)
|
static PirolFeatureCollection |
FeatureCollectionTools.addAttributeToFeatureCollection(FeatureCollection fc,
java.lang.String attr,
AttributeType at,
java.lang.Object defaultVal)
Method to add a new attribute to an existing FeatureCollection. |
static PirolFeatureCollection |
FeatureCollectionTools.addAttributeToFeatureCollection(FeatureCollection fc,
java.lang.String attr,
AttributeType at,
java.lang.Object defaultVal,
boolean clearOldFeatureCollection)
Method to add a new attribute to an existing FeatureCollection. |
static Layer |
LayerTools.addStandardResultLayer(java.lang.String title,
FeatureCollection featCollection,
java.awt.Color color,
PlugInContext context,
boolean select,
FeatureCollectionRole role)
|
static Layer |
LayerTools.addStandardResultLayer(java.lang.String title,
FeatureCollection featCollection,
java.awt.Color color,
PlugInContext context,
FeatureCollectionRole role)
|
Layer |
LayerTools.addStandardResultLayer(java.lang.String title,
FeatureCollection featCollection,
FeatureCollectionRole role)
|
static Layer |
LayerTools.addStandardResultLayer(java.lang.String title,
FeatureCollection featCollection,
PlugInContext context,
FeatureCollectionRole role)
|
static PirolFeatureCollection |
FeatureCollectionTools.applyFormulaToFeatureCollection(FeatureCollection oldFc,
AttributeInfo attrInfo,
FormulaValue formula,
boolean clearOldFeatureCollection)
Method to apply a given formula to the given, new attribute of the given featureCollection |
static PirolFeatureCollection |
FeatureCollectionTools.cloneFeatureCollection(FeatureCollection fc)
deep copies a the FeatureSchema, the Features and their Geometries |
static Feature[] |
FeatureCollectionTools.FeatureCollection2FeatureArray(FeatureCollection fc)
Converts a given FeatureCollection into an array of Feature, that can - by far - be faster iterated. |
static Feature |
FeatureCollectionTools.getFeatureFromCollection(FeatureCollection features,
int fid)
Get the feature with the specified ID from the FeatureCollection |
static double[] |
FeatureCollectionTools.getMinMaxAttributeValue(FeatureCollection features,
java.lang.String attr)
|
static java.lang.String |
FeatureCollectionTools.getUniqueAttributeName(FeatureCollection fc,
java.lang.String attr)
|
static void |
IOTools.print(FeatureCollection fc)
|
static void |
IOTools.save(FeatureCollection fc,
java.lang.String filename)
|
static void |
IOTools.saveJMLFile(FeatureCollection fc,
java.lang.String filename)
|
static void |
IOTools.saveShapefile(FeatureCollection fc,
java.lang.String filename)
|
| Constructors in org.openjump.core.apitools with parameters of type FeatureCollection | |
|---|---|
FeatureCollectionTools(FeatureCollection fc)
|
|
| Uses of FeatureCollection in org.openjump.core.apitools.objecttyperoles |
|---|
| Classes in org.openjump.core.apitools.objecttyperoles that implement FeatureCollection | |
|---|---|
class |
PirolFeatureCollection
Class that wraps a FeatureDataset and adds methods to get and set meta information objects. |
| Fields in org.openjump.core.apitools.objecttyperoles declared as FeatureCollection | |
|---|---|
protected FeatureCollection |
PirolFeatureCollection.featureDataSet
|
| Methods in org.openjump.core.apitools.objecttyperoles that return FeatureCollection | |
|---|---|
FeatureCollection |
PirolFeatureCollection.getFeatureDataSet()
for java2xml |
FeatureCollection |
PirolFeatureCollection.getWrappee()
the PirolFeatureCollection is a wrapper for other feature collections in some cases one might want to work with the original FC. |
| Methods in org.openjump.core.apitools.objecttyperoles with parameters of type FeatureCollection | |
|---|---|
void |
PirolFeatureCollection.setFeatureDataSet(FeatureCollection featureDataSet)
for java2xml |
| Constructors in org.openjump.core.apitools.objecttyperoles with parameters of type FeatureCollection | |
|---|---|
PirolFeatureCollection(FeatureCollection featureDataSet,
FeatureCollectionRole initRole)
|
|
| Uses of FeatureCollection in org.openjump.core.graph.polygongraph |
|---|
| Methods in org.openjump.core.graph.polygongraph that return FeatureCollection | |
|---|---|
FeatureCollection |
PolygonGraph.getCommonBoundaries(PolygonGraphNode node)
|
FeatureCollection |
PolygonGraph.getEdgesBetweenInterriorPoints()
|
FeatureCollection |
PolygonGraph.getNodesAsInterriorPoint()
|
FeatureCollection |
PolygonGraph.getNonSharedBoundaries()
|
FeatureCollection |
PolygonGraph.getSharedBoundaries()
|
| Constructors in org.openjump.core.graph.polygongraph with parameters of type FeatureCollection | |
|---|---|
PolygonGraph(FeatureCollection polygonFeatures)
|
|
| Uses of FeatureCollection in org.openjump.core.ui.plugin.tools |
|---|
| Methods in org.openjump.core.ui.plugin.tools that return FeatureCollection | |
|---|---|
FeatureCollection |
PlanarGraphPlugIn.createEdgeLayer(FeatureCollection fc,
boolean nodeb,
boolean faceb,
boolean relations,
PlugInContext context)
|
FeatureCollection |
PlanarGraphPlugIn.createFaceLayer(FeatureCollection fcEdge,
PlugInContext context,
boolean relations)
|
FeatureCollection |
PlanarGraphPlugIn.createNodeLayer(FeatureCollection fcEdge,
PlugInContext context,
boolean relations)
|
| Methods in org.openjump.core.ui.plugin.tools with parameters of type FeatureCollection | |
|---|---|
FeatureCollection |
PlanarGraphPlugIn.createEdgeLayer(FeatureCollection fc,
boolean nodeb,
boolean faceb,
boolean relations,
PlugInContext context)
|
FeatureCollection |
PlanarGraphPlugIn.createFaceLayer(FeatureCollection fcEdge,
PlugInContext context,
boolean relations)
|
FeatureCollection |
PlanarGraphPlugIn.createNodeLayer(FeatureCollection fcEdge,
PlugInContext context,
boolean relations)
|
java.util.List |
PlanarGraphPlugIn.getLines(FeatureCollection fc)
|
| Uses of FeatureCollection in org.openjump.core.ui.plugin.tools.generalization |
|---|
| Methods in org.openjump.core.ui.plugin.tools.generalization that return FeatureCollection | |
|---|---|
FeatureCollection |
SimplifyPolygonCoveragePlugIn.transferAttributesFromPolysToPolys(FeatureCollection fcA,
java.util.Collection<com.vividsolutions.jts.geom.Geometry> geometries,
PlugInContext context,
TaskMonitor monitor)
|
| Methods in org.openjump.core.ui.plugin.tools.generalization with parameters of type FeatureCollection | |
|---|---|
FeatureCollection |
SimplifyPolygonCoveragePlugIn.transferAttributesFromPolysToPolys(FeatureCollection fcA,
java.util.Collection<com.vividsolutions.jts.geom.Geometry> geometries,
PlugInContext context,
TaskMonitor monitor)
|
| Uses of FeatureCollection in org.openjump.sigle.utilities.geom |
|---|
| Methods in org.openjump.sigle.utilities.geom with parameters of type FeatureCollection | |
|---|---|
static java.util.ArrayList |
FeatureCollectionUtil.getAttributesList(FeatureCollection fc)
|
static int |
FeatureCollectionUtil.getFeatureCollectionDimension(FeatureCollection fc)
|
| Uses of FeatureCollection in org.openjump.util.metaData |
|---|
| Methods in org.openjump.util.metaData with parameters of type FeatureCollection | |
|---|---|
static PirolFeatureCollection |
MetaInformationHandler.createPirolFeatureCollection(FeatureCollection fc)
creates a PirolFeatureCollection out of a regular FeatureCollection |
static PirolFeatureCollection |
MetaInformationHandler.createPirolFeatureCollection(FeatureCollection fc,
FeatureCollectionRole role)
creates a PirolFeatureCollection out of a regular FeatureCollection |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||