package geojson import ( "github.com/tidwall/tile38/geojson/geohash" "github.com/tidwall/tile38/geojson/poly" ) // MultiPoint is a geojson object with the type "MultiPoint" type MultiPoint struct { Coordinates []Position BBox *BBox } func fillMultiPoint(coordinates []Position, bbox *BBox, b []byte, err error) (MultiPoint, []byte, error) { return MultiPoint{ Coordinates: coordinates, BBox: bbox, }, b, err } // CalculatedBBox is exterior bbox containing the object. func (g MultiPoint) CalculatedBBox() BBox { return level2CalculatedBBox(g.Coordinates, g.BBox) } // CalculatedPoint is a point representation of the object. func (g MultiPoint) CalculatedPoint() Position { return g.CalculatedBBox().center() } // Geohash converts the object to a geohash value. func (g MultiPoint) Geohash(precision int) (string, error) { p := g.CalculatedPoint() return geohash.Encode(p.Y, p.X, precision) } // PositionCount return the number of coordinates. func (g MultiPoint) PositionCount() int { return level2PositionCount(g.Coordinates, g.BBox) } // Weight returns the in-memory size of the object. func (g MultiPoint) Weight() int { return level2Weight(g.Coordinates, g.BBox) } // MarshalJSON allows the object to be encoded in json.Marshal calls. func (g MultiPoint) MarshalJSON() ([]byte, error) { return []byte(g.JSON()), nil } // JSON is the json representation of the object. This might not be exactly the same as the original. func (g MultiPoint) JSON() string { return level2JSON("MultiPoint", g.Coordinates, g.BBox) } // Bytes is the bytes representation of the object. func (g MultiPoint) Bytes() []byte { return level2Bytes(multiPoint, g.Coordinates, g.BBox) } func (g MultiPoint) bboxPtr() *BBox { return g.BBox } func (g MultiPoint) hasPositions() bool { return g.BBox != nil || len(g.Coordinates) > 0 } // WithinBBox detects if the object is fully contained inside a bbox. func (g MultiPoint) WithinBBox(bbox BBox) bool { if g.BBox != nil { return rectBBox(g.CalculatedBBox()).InsideRect(rectBBox(bbox)) } if len(g.Coordinates) == 0 { return false } for _, p := range g.Coordinates { if !poly.Point(p).InsideRect(rectBBox(bbox)) { return false } } return true } // IntersectsBBox detects if the object intersects a bbox. func (g MultiPoint) IntersectsBBox(bbox BBox) bool { if g.BBox != nil { return rectBBox(g.CalculatedBBox()).IntersectsRect(rectBBox(bbox)) } for _, p := range g.Coordinates { if poly.Point(p).InsideRect(rectBBox(bbox)) { return true } } return false } // Within detects if the object is fully contained inside another object. func (g MultiPoint) Within(o Object) bool { return withinObjectShared(g, o, func(v Polygon) bool { if len(g.Coordinates) == 0 { return false } for _, p := range g.Coordinates { if !poly.Point(p).Inside(polyExteriorHoles(v.Coordinates)) { return false } } return true }, func(v MultiPolygon) bool { if len(g.Coordinates) == 0 { return false } for _, c := range v.Coordinates { for _, p := range g.Coordinates { if !poly.Point(p).Inside(polyExteriorHoles(c)) { return false } } } return true }, ) } // Intersects detects if the object intersects another object. func (g MultiPoint) Intersects(o Object) bool { return intersectsObjectShared(g, o, func(v Polygon) bool { if len(g.Coordinates) == 0 { return false } for _, p := range g.Coordinates { if poly.Point(p).Intersects(polyExteriorHoles(v.Coordinates)) { return true } } return true }, func(v MultiPolygon) bool { if len(g.Coordinates) == 0 { return false } for _, c := range v.Coordinates { for _, p := range g.Coordinates { if poly.Point(p).Intersects(polyExteriorHoles(c)) { return true } } } return true }, ) } // Nearby detects if the object is nearby a position. func (g MultiPoint) Nearby(center Position, meters float64) bool { return nearbyObjectShared(g, center.X, center.Y, meters) } // IsBBoxDefined returns true if the object has a defined bbox. func (g MultiPoint) IsBBoxDefined() bool { return g.BBox != nil }