Questions tagged [wkb]

The recognized as a standard Binary (WKB) representation for geometric values is outlined by the OpenGIS specification.

Converting hexadecimal string to a double value in Java

Currently, I am working on decoding the value of the "Well-known Binary" format using Java. The Node script below accomplishes this task: Buffer.from('A4C0A7DEBFC657C0', 'hex').readDoubleLE() // returns -95.1054608 I am struggling to f ...