| java.lang.Object com.vividsolutions.jump.util.io.SimpleGMLReader
SimpleGMLReader | public class SimpleGMLReader (Code) | | Provides an easy way to read spatial data from a GML document. Attributes
are not read. Simply pass in a Reader on the GML, and the names of the
various tags. A List of Geometries will be returned.
|
SimpleGMLReader | public SimpleGMLReader()(Code) | | |
readFMEFile | public FeatureCollection readFMEFile(File file) throws Exception(Code) | | Reads a GML file that is in FME format.
the contents of the file, including both spatial and attribute data |
toGeometries | public List toGeometries(Reader gml, String collectionElement, String featureElement, String geometryElement) throws Exception(Code) | | Parameters: gml - a Reader on an XML document containing GML Parameters: collectionElement - the name of the feature-collection tag Parameters: featureElement - the name of the feature tag Parameters: geometryElement - the name of the geometry tag a List of Geometries |
|
|