Package org.locationtech.jts.jump.io
Class WKTReader
- java.lang.Object
-
- org.locationtech.jts.jump.io.WKTReader
-
- All Implemented Interfaces:
JUMPReader
public class WKTReader extends Object implements JUMPReader
WKTReader is aJUMPReader
specialized to read WTK (Well Known Text) files.DataProperties for the JUMPReader load(DataProperties) interface:
Parameter Meaning File or DefaultValue File name for the input WKT file CompressedFile File name (a .zip or .gz) with a .jml/.xml/.gml inside (specified by File)
-
-
Constructor Summary
Constructors Constructor Description WKTReader()
constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FeatureCollection
read(Reader reader)
Reads in the actual WKT geometriesFeatureCollection
read(DriverProperties dp)
Main function -read in a file containing a list of WKT geometries
-
-
-
Method Detail
-
read
public FeatureCollection read(DriverProperties dp) throws IllegalParametersException, Exception
Main function -read in a file containing a list of WKT geometries- Specified by:
read
in interfaceJUMPReader
- Parameters:
dp
- 'InputFile' or 'DefaultValue' to specify where the WKT file is.- Throws:
IllegalParametersException
Exception
-
read
public FeatureCollection read(Reader reader) throws Exception
Reads in the actual WKT geometries- Parameters:
reader
- where to read the geometries from- Throws:
Exception
-
-