2018-10-11 00:25:40 +03:00
|
|
|
package geojson
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/tidwall/geojson/geo"
|
|
|
|
"github.com/tidwall/geojson/geometry"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Circle ...
|
|
|
|
type Circle struct {
|
|
|
|
Object
|
|
|
|
center geometry.Point
|
|
|
|
meters float64
|
|
|
|
steps int
|
|
|
|
km bool
|
|
|
|
extra *extra
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewCircle returns an circle object
|
|
|
|
func NewCircle(center geometry.Point, meters float64, steps int) *Circle {
|
|
|
|
if steps < 3 {
|
|
|
|
steps = 3
|
|
|
|
}
|
|
|
|
g := new(Circle)
|
|
|
|
g.center = center
|
|
|
|
g.meters = meters
|
|
|
|
g.steps = steps
|
|
|
|
if meters <= 0 {
|
|
|
|
g.Object = NewPoint(center)
|
|
|
|
} else {
|
|
|
|
var points []geometry.Point
|
|
|
|
step := 360.0 / float64(steps)
|
|
|
|
i := 0
|
|
|
|
for deg := 360.0; deg > 0; deg -= step {
|
|
|
|
lat, lon := geo.DestinationPoint(center.Y, center.X, meters, deg)
|
|
|
|
points = append(points, geometry.Point{X: lon, Y: lat})
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
// TODO: account for the pole and antimerdian. In most cases only a polygon
|
|
|
|
// is needed, but when the circle bounds passes the 90/180 lines, we need
|
|
|
|
// to create a multipolygon
|
|
|
|
points = append(points, points[0])
|
|
|
|
g.Object = NewPolygon(
|
|
|
|
geometry.NewPoly(points, nil, geometry.DefaultIndex),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return g
|
|
|
|
}
|
|
|
|
|
|
|
|
// AppendJSON ...
|
|
|
|
func (g *Circle) AppendJSON(dst []byte) []byte {
|
|
|
|
dst = append(dst, `{"type":"Feature","geometry":`...)
|
|
|
|
dst = append(dst, `{"type":"Point","coordinates":[`...)
|
|
|
|
dst = strconv.AppendFloat(dst, g.center.X, 'f', -1, 64)
|
|
|
|
dst = append(dst, ',')
|
|
|
|
dst = strconv.AppendFloat(dst, g.center.Y, 'f', -1, 64)
|
|
|
|
dst = append(dst, `]},"properties":{"type":"Circle","radius":`...)
|
|
|
|
dst = strconv.AppendFloat(dst, g.meters, 'f', -1, 64)
|
2018-10-16 18:55:26 +03:00
|
|
|
dst = append(dst, `,"radius_units":"m"}}`...)
|
2018-10-11 00:25:40 +03:00
|
|
|
return dst
|
|
|
|
}
|
|
|
|
|
|
|
|
// JSON ...
|
|
|
|
func (g *Circle) JSON() string {
|
|
|
|
return string(g.AppendJSON(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
// String ...
|
|
|
|
func (g *Circle) String() string {
|
|
|
|
return string(g.AppendJSON(nil))
|
|
|
|
}
|