public class WKBReader extends Object
Geometry
from a byte stream in Well-Known Binary format.
Supports use of an InStream
, which allows easy use
with arbitrary byte stream sources.
This class reads the format describe in WKBWriter
.
It partially handles
the Extended WKB format used by PostGIS,
by parsing and storing optional SRID values.
If a SRID is not specified in an element geometry, it is inherited
from the parent's SRID.
The default SRID value is 0.
Although not defined in the WKB specification, empty points
are handled if they are represented as a Point with NaN
X and Y ordinates.
The reader repairs structurally-invalid input (specifically, LineStrings and LinearRings which contain too few points have vertices added, and non-closed rings are closed).
The reader handles most errors caused by malformed or malicious WKB data.
It checks for obviously excessive values of the fields
numElems
, numRings
, and numCoords
.
It also checks that the reader does not read beyond the end of the data supplied.
A ParseException
is thrown if this situation is detected.
This class is designed to support reuse of a single instance to read multiple geometries. This class is not thread-safe; each thread should create its own instance.
As of version 1.15, the reader can read geometries following the OGC 06-103r4 Simple Features Access 1.2.1 specification, which aligns with the ISO 19125 standard. This format is used by Spatialite and Geopackage.
The difference between PostGIS EWKB format and the new ISO/OGC specification is that Z and M coordinates are detected with a bit mask on the higher byte in the former case (0x80 for Z and 0x40 for M) while new OGC specification use specific int ranges for 2D geometries, Z geometries (2D code+1000), M geometries (2D code+2000) and ZM geometries (2D code+3000).
Note that the WKBWriter
is not changed and still writes the PostGIS EWKB
geometry format.
for a formal format specification
Constructor and Description |
---|
WKBReader() |
WKBReader(GeometryFactory geometryFactory) |
Modifier and Type | Method and Description |
---|---|
static byte[] |
hexToBytes(String hex)
Converts a hexadecimal string to a byte array.
|
Geometry |
read(byte[] bytes)
Reads a single
Geometry in WKB format from a byte array. |
Geometry |
read(InStream is)
|
public WKBReader()
public WKBReader(GeometryFactory geometryFactory)
public static byte[] hexToBytes(String hex)
hex
- a string containing hex digitspublic Geometry read(byte[] bytes) throws ParseException
Geometry
in WKB format from a byte array.bytes
- the byte array to read fromParseException
- if the WKB is ill-formedpublic Geometry read(InStream is) throws IOException, ParseException
is
- the stream to read fromIOException
- if the underlying stream creates an errorParseException
- if the WKB is ill-formedCopyright © 2024. All rights reserved.