A small GO parser for the TWKB specification
go get github.com/devork/twkb
data, _:=hex.DecodeString("01000204")
geom, err:=Decode(bytes.NewReader(data))
iferr!=nil {
t.Fatalf("Failed to decode point geometry: err = %s", err)
}
// Do something magical with the geometry returnedThe library is usable, but could do with some optimisations.
