EncodeGeoValue encodes a geopb.SpatialObject value with its value tag, appends it to the supplied buffer, and returns the final buffer.
(appendTo []byte, colIDDelta uint32, so *geopb.SpatialObject)
| 2709 | // EncodeGeoValue encodes a geopb.SpatialObject value with its value tag, appends it to |
| 2710 | // the supplied buffer, and returns the final buffer. |
| 2711 | func EncodeGeoValue(appendTo []byte, colIDDelta uint32, so *geopb.SpatialObject) ([]byte, error) { |
| 2712 | appendTo = EncodeValueTag(appendTo, colIDDelta, Geo) |
| 2713 | return EncodeUntaggedGeoValue(appendTo, so) |
| 2714 | } |
| 2715 | |
| 2716 | // EncodeUntaggedGeoValue encodes a geopb.SpatialObject value, appends it to the supplied buffer, |
| 2717 | // and returns the final buffer. |
nothing calls this directly
no test coverage detected
searching dependent graphs…