Package org.geotools.data.shapefile.shp
Class ShapefileHeader
- Object
-
- ShapefileHeader
-
public class ShapefileHeader extends Object
- Author:
- jamesm, Ian Schneider
-
-
Constructor Summary
Constructors Constructor Description ShapefileHeader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getFileLength()
ShapeType
getShapeType()
int
getVersion()
double
maxX()
double
maxY()
double
minX()
double
minY()
void
read(ByteBuffer file, boolean strict)
String
toString()
void
write(ByteBuffer file, ShapeType type, int numGeoms, int length, double minX, double minY, double maxX, double maxY)
-
-
-
Field Detail
-
MAGIC
public static final int MAGIC
- See Also:
- Constant Field Values
-
VERSION
public static final int VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
read
public void read(ByteBuffer file, boolean strict) throws IOException
- Throws:
IOException
-
write
public void write(ByteBuffer file, ShapeType type, int numGeoms, int length, double minX, double minY, double maxX, double maxY) throws IOException
- Throws:
IOException
-
getShapeType
public ShapeType getShapeType()
-
getVersion
public int getVersion()
-
getFileLength
public int getFileLength()
-
minX
public double minX()
-
minY
public double minY()
-
maxX
public double maxX()
-
maxY
public double maxY()
-
-