Package com.vividsolutions.jump.feature
Class FeatureDatasetFactory
- java.lang.Object
-
- com.vividsolutions.jump.feature.FeatureDatasetFactory
-
public class FeatureDatasetFactory extends Object
Utility functions to create different kinds of FeatureDatasets
-
-
Constructor Summary
Constructors Constructor Description FeatureDatasetFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureCollection
createFromGeometry(Collection geoms)
Creates a FeatureCollection from a Collection ofGeometry
sstatic FeatureDataset
createFromGeometry(Collection geoms, FeatureSchema featureSchema)
static FeatureDataset
createFromGeometryWithLength(Collection geoms, String attrName)
Creates a FeatureCollection from a Collection ofGeometry
s and adds an attribute containing the length of the Geometry.static FeatureDataset
createFromGeometryWithLengthAndArea(Collection geoms, String attrNameLen, String attrNameArea)
Creates a FeatureCollection from a Collection ofGeometry
s and adds optional attributes containing the length and area of the Geometry.
-
-
-
Method Detail
-
createFromGeometry
public static FeatureCollection createFromGeometry(Collection geoms)
Creates a FeatureCollection from a Collection ofGeometry
s- Parameters:
geoms
- a collection ofGeometry
s
-
createFromGeometryWithLength
public static FeatureDataset createFromGeometryWithLength(Collection geoms, String attrName)
Creates a FeatureCollection from a Collection ofGeometry
s and adds an attribute containing the length of the Geometry. The attribute name is given by the argumentattrName
- Parameters:
geoms
- a collection ofGeometry
sattrName
- the name to use for the length attribute
-
createFromGeometry
public static FeatureDataset createFromGeometry(Collection geoms, FeatureSchema featureSchema)
- Parameters:
geoms
- a collection ofGeometry
sfeatureSchema
- the schema to use for the feature collection- Returns:
- a FeatureDataset containing features for the geometries
-
createFromGeometryWithLengthAndArea
public static FeatureDataset createFromGeometryWithLengthAndArea(Collection geoms, String attrNameLen, String attrNameArea)
Creates a FeatureCollection from a Collection ofGeometry
s and adds optional attributes containing the length and area of the Geometry.- Parameters:
geoms
- a collection ofGeometry
sattrNameLen
- the name to use for the length attribute (ornull
if not required)attrNameArea
- the name to use for the length attribute (ornull
if not required)
-
-