| IndexFile |
IndexFile parser for .shx files.
For now, the creation of index files is done in the ShapefileWriter.
|
| MultiLineHandler |
The default JTS handler for shapefile.
|
| MultiPointHandler |
|
| PointHandler |
Wrapper for a Shapefile point.
|
| PolygonHandler |
Wrapper for a Shapefile polygon.
|
| ShapefileHeader |
|
| ShapefileReader |
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 |
ShapefileWriter allows for the storage of geometries in esris shp format.
|
| ShapeType |
Not much but a type safe enumeration of file types as ints and names.
|
| SHPDriver |
Merge ShapeFileReader and DBFReader.
|