org.geotools.data.shapefile.shp |
|
Java Source File Name | Type | Comment |
createTestData.java | Class | |
IndexFile.java | Class | IndexFile parser for .shx files.
For now, the creation of index files is done in the ShapefileWriter. |
JTSMultiLineHandlerTest.java | Class | |
JTSMultiPointHandlerTest.java | Class | |
JTSPointHandlerTest.java | Class | |
JTSPolygonHandlerTest.java | Class | |
JTSUtilities.java | Class | A collection of utility methods for use with JTS and the shapefile package. |
MultiLineHandler.java | Class | The default JTS handler for shapefile. |
MultiPointHandler.java | Class | |
PointHandler.java | Class | Wrapper for a Shapefile point. |
PolygonHandler.java | Class | Wrapper for a Shapefile polygon. |
PolygonHandler2Test.java | Class | |
PolygonHandlerTest.java | Class | |
ShapefileException.java | Class | |
ShapefileHeader.java | Class | |
ShapefileReader.java | Class | The general use of this class is: FileChannel in = new FileInputStream("thefile.dbf").getChannel();
ShapefileReader r = new ShapefileReader( in ) while (r.hasNext()) { Geometry
shape = (Geometry) r.nextRecord().shape() // do stuff } r.close();
You don't have to immediately ask for the shape from the record. |
ShapefileWriter.java | Class | ShapefileWriter allows for the storage of geometries in esris shp format.
During writing, an index will also be created. |
ShapeHandler.java | Interface | A ShapeHandler defines what is needed to construct and persist geometries
based upon the shapefile specification. |
ShapeType.java | Class | Not much but a type safe enumeration of file types as ints and names. |
SimpleMultiLineHandlerTest.java | Class | |
SimpleMultiPointHandlerTest.java | Class | |
SimplePointHandlerTest.java | Class | |
SimplePolygonHandlerTest.java | Class | |