Class ShapefileHeader
- java.lang.Object
-
- org.h2gis.functions.io.shp.internal.ShapefileHeader
-
public class ShapefileHeader extends Object
- Author:
- jamesm, Ian Schneider
- See Also:
- ShapefileHeader.java
-
-
Constructor Summary
Constructors Constructor Description ShapefileHeader()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFileLength()ShapeTypegetShapeType()intgetVersion()doublemaxX()doublemaxY()doubleminX()doubleminY()voidread(ByteBuffer file)StringtoString()voidwrite(WriteBufferManager shapeBuffer, 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) throws IOException
- Throws:
IOException
-
write
public void write(WriteBufferManager shapeBuffer, 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()
-
-