Documentation
¶
Overview ¶
Package ewkb implements Extended Well Known Binary encoding and decoding. See https://github.com/postgis/postgis/blob/2.1.0/doc/ZMSgeoms.txt.
If you are encoding geometries in EWKB to send to PostgreSQL/PostGIS, then you must specify binary_parameters=yes in the data source name that you pass to sql.Open.
Example (Scan) ¶
Output: Longitude: 0.1275 Latitude: 51.50722 SRID: 4326
Example (Value) ¶
Output: 1 rows affected
Index ¶
- Variables
- func Marshal(g geom.T, byteOrder binary.ByteOrder) ([]byte, error)
- func Read(r io.Reader) (geom.T, error)
- func Unmarshal(data []byte) (geom.T, error)
- func Write(w io.Writer, byteOrder binary.ByteOrder, g geom.T) error
- type ErrExpectedByteSlice
- type GeometryCollection
- type LineString
- type MultiLineString
- type MultiPoint
- type MultiPolygon
- type Point
- type Polygon
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var ( // XDR is big endian. XDR = wkbcommon.XDR // NDR is little endian. NDR = wkbcommon.NDR )
Functions ¶
Types ¶
type ErrExpectedByteSlice ¶
type ErrExpectedByteSlice struct {
Value interface{}
}
ErrExpectedByteSlice is returned when a []byte is expected.
func (ErrExpectedByteSlice) Error ¶
func (e ErrExpectedByteSlice) Error() string
type GeometryCollection ¶
type GeometryCollection struct {
*geom.GeometryCollection
}
A GeometryCollection is a EWKB-encoded GeometryCollection that implements the sql.Scanner and driver.Value interfaces.
func (*GeometryCollection) Scan ¶
func (gc *GeometryCollection) Scan(src interface{}) error
Scan scans from a []byte.
func (*GeometryCollection) Valid ¶
func (gc *GeometryCollection) Valid() bool
Valid returns true if gc has a value.
type LineString ¶
type LineString struct {
*geom.LineString
}
A LineString is a EWKB-encoded LineString that implements the sql.Scanner and driver.Value interfaces.
func (*LineString) Scan ¶
func (ls *LineString) Scan(src interface{}) error
Scan scans from a []byte.
type MultiLineString ¶
type MultiLineString struct {
*geom.MultiLineString
}
A MultiLineString is a EWKB-encoded MultiLineString that implements the sql.Scanner and driver.Value interfaces.
func (*MultiLineString) Scan ¶
func (mls *MultiLineString) Scan(src interface{}) error
Scan scans from a []byte.
func (*MultiLineString) Valid ¶
func (mls *MultiLineString) Valid() bool
Valid returns true if mls has a value.
type MultiPoint ¶
type MultiPoint struct {
*geom.MultiPoint
}
A MultiPoint is a EWKB-encoded MultiPoint that implements the sql.Scanner and driver.Value interfaces.
func (*MultiPoint) Scan ¶
func (mp *MultiPoint) Scan(src interface{}) error
Scan scans from a []byte.
type MultiPolygon ¶
type MultiPolygon struct {
*geom.MultiPolygon
}
A MultiPolygon is a EWKB-encoded MultiPolygon that implements the sql.Scanner and driver.Value interfaces.
func (*MultiPolygon) Scan ¶
func (mp *MultiPolygon) Scan(src interface{}) error
Scan scans from a []byte.
func (*MultiPolygon) Valid ¶
func (mp *MultiPolygon) Valid() bool
Valid returns true if mp has a value.
type Point ¶
type Point struct {
*geom.Point
}
A Point is a EWKB-encoded Point that implements the sql.Scanner and driver.Value interfaces.