Im attempting to decode the value of "Well-known Binary" format in Java. The following Node script does what I need
Buffer.from('A4C0A7DEBFC657C0', 'hex').readDoubleLE() // returns -95.1054608
My question is, what is the equivalent Java code? Nothing I have tried has given the same result.
See: https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry
I am running this as part of an ingest pipeline in OpenSearch, so I can't use 3rd party libraries.