Documentation
¶
Index ¶
- Constants
- Variables
- func UnmarshalGeojsonFeature(raw string) (feature *geojson.Feature, err error)
- type Box
- type Coordinate
- type DistError
- type Feature
- func GeojsonFeatureAdapter(gj *geojson.Feature) (feature *Feature, err error)
- func MakeFeature(length int) *Feature
- func NewFeature(geometryType string, geometry ...*Shape) *Feature
- func NewLineFeature(geometry ...*Shape) *Feature
- func NewPointFeature(geometry ...*Shape) *Feature
- func NewPolygonFeature(geometry ...*Shape) *Feature
- type GeojsonSource
- type GeometryType
- type Point
- type Rect
- type Rnode
- type Rtree
- func (r *Rtree) Contains(c Coordinate) []*Rnode
- func (tree *Rtree) Delete(obj Spatial) bool
- func (tree *Rtree) Depth() int
- func (tree *Rtree) Insert(obj Spatial)
- func (r *Rtree) Intersections(q *Shape) []*Rnode
- func (tree *Rtree) NearestNeighbor(p Point) Spatial
- func (tree *Rtree) NearestNeighbors(k int, p Point) []Spatial
- func (tree *Rtree) SearchIntersect(bb *Rect) []Spatial
- func (tree *Rtree) Size() int
- func (tree *Rtree) String() string
- type Shape
- func (s *Shape) Add(c ...Coordinate)
- func (s *Shape) Append(o *Shape)
- func (s *Shape) BoundingBox() Box
- func (s *Shape) Contains(c Coordinate) bool
- func (s *Shape) Edges() <-chan []Coordinate
- func (s *Shape) Head() Coordinate
- func (s *Shape) IsClockwise() bool
- func (s *Shape) IsClosed() bool
- func (s *Shape) Length() int
- func (s *Shape) Reverse()
- func (s *Shape) Tail() Coordinate
- type Spatial
Constants ¶
const ( EarthRad = 6372800 //meters RadToDeg = 180 / math.Pi DegToRad = math.Pi / 180 )
const Dim = 2
Variables ¶
var ( RtreeMinChildren = 25 RtreeMaxChildren = 50 )
Functions ¶
Types ¶
type Box ¶
type Box struct {
// contains filtered or unexported fields
}
func NewBox ¶
func NewBox(min, max Coordinate) (box Box, err error)
func (Box) Contains ¶
func (b Box) Contains(coords ...Coordinate) (in bool)
func (Box) NorthEast ¶
func (b Box) NorthEast() Coordinate
func (Box) SouthWest ¶
func (b Box) SouthWest() Coordinate
type Coordinate ¶
type Coordinate struct {
Lat, Lon float64
}
func (Coordinate) Difference ¶
func (c Coordinate) Difference(o Coordinate) (d Coordinate)
func (Coordinate) Distance ¶
func (cd Coordinate) Distance(od Coordinate) float64
Distance between coordinates in meters
func (Coordinate) String ¶
func (c Coordinate) String() string
func (Coordinate) ToRad ¶
func (c Coordinate) ToRad() Coordinate
func (Coordinate) X ¶
func (c Coordinate) X() float64
func (Coordinate) Y ¶
func (c Coordinate) Y() float64
type DistError ¶
type DistError float64
DistError is an improper distance measurement. It implements the error and is generated when a distance-related assertion fails.
type Feature ¶
type Feature struct { ID interface{} Geometry []*Shape Type string Properties map[string]interface{} }
func GeojsonFeatureAdapter ¶
Flatten all the points of a feature into single list. This can hel in identifying which tiles are going to be created
func MakeFeature ¶
func NewFeature ¶
func NewLineFeature ¶
func NewPointFeature ¶
func NewPolygonFeature ¶
func (*Feature) Center ¶
func (f *Feature) Center() (avg Coordinate)
func (*Feature) Contains ¶
func (f *Feature) Contains(c Coordinate) bool
Only checks as exterior ring
type GeojsonSource ¶
type GeojsonSource struct {
// contains filtered or unexported fields
}
func NewGeojsonSource ¶
func NewGeojsonSource(path string, filter []string) *GeojsonSource
func (*GeojsonSource) Publish ¶
func (gj *GeojsonSource) Publish() (features chan *Feature, err error)
type GeometryType ¶
type GeometryType string
const ( PolygonFeature GeometryType = "polygon" LineFeature GeometryType = "line" PointFeature GeometryType = "point" )
type Rect ¶
type Rect struct {
// contains filtered or unexported fields
}
Rect represents a subset of 3-dimensional Euclidean space of the form [a1, b1] x [a2, b2] x ... x [an, bn], where ai < bi for all 1 <= i <= n.
type Rtree ¶
Rtree represents an R-tree, a balanced search tree for storing and querying spatial objects. MinChildren/MaxChildren specify the minimum/maximum branching factors.
func (*Rtree) Contains ¶
func (r *Rtree) Contains(c Coordinate) []*Rnode
func (*Rtree) Delete ¶
Delete removes an object from the tree. If the object is not found, ok is false; otherwise ok is true.
Implemented per Section 3.3 of "R-trees: A Dynamic Index Structure for Spatial Searching" by A. Guttman, Proceedings of ACM SIGMOD, p. 47-57, 1984.
func (*Rtree) Insert ¶
Insert inserts a spatial object into the tree. If insertion causes a leaf node to overflow, the tree is rebalanced automatically.
Implemented per Section 3.2 of "R-trees: A Dynamic Index Structure for Spatial Searching" by A. Guttman, Proceedings of ACM SIGMOD, p. 47-57, 1984.
func (*Rtree) Intersections ¶
func (*Rtree) NearestNeighbor ¶
NearestNeighbor returns the closest object to the specified point. Implemented per "Nearest Neighbor Queries" by Roussopoulos et al
func (*Rtree) SearchIntersect ¶
SearchIntersectBB returns all objects that intersect the specified rectangle.
Implemented per Section 3.1 of "R-trees: A Dynamic Index Structure for Spatial Searching" by A. Guttman, Proceedings of ACM SIGMOD, p. 47-57, 1984.
type Shape ¶
type Shape struct {
Coordinates []Coordinate
}
func NewShape ¶
func NewShape(coords ...Coordinate) *Shape
func (*Shape) Add ¶
func (s *Shape) Add(c ...Coordinate)
func (*Shape) BoundingBox ¶
func (*Shape) Contains ¶
func (s *Shape) Contains(c Coordinate) bool
func (*Shape) Edges ¶
func (s *Shape) Edges() <-chan []Coordinate
func (*Shape) Head ¶
func (s *Shape) Head() Coordinate
func (*Shape) IsClockwise ¶
func (*Shape) Tail ¶
func (s *Shape) Tail() Coordinate