-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgeometry.go
237 lines (200 loc) · 5.72 KB
/
geometry.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
package topojson
import (
"encoding/json"
"errors"
"fmt"
"github.com/paulmach/go.geojson"
)
type Geometry struct {
ID string `json:"id,omitempty"`
Type geojson.GeometryType `json:"type"`
Properties map[string]interface{} `json:"properties"`
BoundingBox []float64 `json:"bbox,omitempty"`
Point []float64
MultiPoint [][]float64
LineString []int
MultiLineString [][]int
Polygon [][]int
MultiPolygon [][][]int
Geometries []*Geometry
}
// MarshalJSON converts the geometry object into the correct JSON.
// This fulfills the json.Marshaler interface.
func (g *Geometry) MarshalJSON() ([]byte, error) {
// defining a struct here lets us define the order of the JSON elements.
type geometry struct {
ID string `json:"id,omitempty"`
Type geojson.GeometryType `json:"type"`
Properties map[string]interface{} `json:"properties"`
BoundingBox []float64 `json:"bbox,omitempty"`
Coordinates interface{} `json:"coordinates,omitempty"`
Arcs interface{} `json:"arcs,omitempty"`
Geometries interface{} `json:"geometries,omitempty"`
}
geo := &geometry{
ID: g.ID,
Type: g.Type,
Properties: g.Properties,
BoundingBox: g.BoundingBox,
}
switch g.Type {
case geojson.GeometryPoint:
geo.Coordinates = g.Point
case geojson.GeometryMultiPoint:
geo.Coordinates = g.MultiPoint
case geojson.GeometryLineString:
geo.Arcs = g.LineString
case geojson.GeometryMultiLineString:
geo.Arcs = g.MultiLineString
case geojson.GeometryPolygon:
geo.Arcs = g.Polygon
case geojson.GeometryMultiPolygon:
geo.Arcs = g.MultiPolygon
case geojson.GeometryCollection:
geo.Geometries = g.Geometries
}
return json.Marshal(geo)
}
// UnmarshalJSON decodes the data into a TopoJSON geometry.
// This fulfills the json.Unmarshaler interface.
func (g *Geometry) UnmarshalJSON(data []byte) error {
var object map[string]interface{}
err := json.Unmarshal(data, &object)
if err != nil {
return err
}
return decodeGeometry(g, object)
}
func decodeGeometry(g *Geometry, object map[string]interface{}) error {
t, ok := object["type"]
if !ok {
return errors.New("type property not defined")
}
if s, ok := t.(string); ok {
g.Type = geojson.GeometryType(s)
} else {
return errors.New("type property not string")
}
if p, ok := object["properties"].(map[string]interface{}); ok {
g.Properties = p
}
if id, ok := object["id"].(string); ok {
g.ID = id
}
var err error
switch g.Type {
case geojson.GeometryPoint:
g.Point, err = decodePosition(object["coordinates"])
case geojson.GeometryMultiPoint:
g.MultiPoint, err = decodePositionSet(object["coordinates"])
case geojson.GeometryLineString:
g.LineString, err = decodeArcs(object["arcs"])
case geojson.GeometryMultiLineString:
g.MultiLineString, err = decodeArcsSet(object["arcs"])
case geojson.GeometryPolygon:
g.Polygon, err = decodeArcsSet(object["arcs"])
case geojson.GeometryMultiPolygon:
g.MultiPolygon, err = decodePolygonArcs(object["arcs"])
case geojson.GeometryCollection:
g.Geometries, err = decodeGeometries(object["geometries"])
}
return err
}
func decodePosition(data interface{}) ([]float64, error) {
coords, ok := data.([]interface{})
if !ok {
return nil, fmt.Errorf("not a valid position, got %v", data)
}
result := make([]float64, 0, len(coords))
for _, coord := range coords {
if f, ok := coord.(float64); ok {
result = append(result, f)
} else {
return nil, fmt.Errorf("not a valid coordinate, got %v", coord)
}
}
return result, nil
}
func decodePositionSet(data interface{}) ([][]float64, error) {
points, ok := data.([]interface{})
if !ok {
return nil, fmt.Errorf("not a valid set of positions, got %v", data)
}
result := make([][]float64, 0, len(points))
for _, point := range points {
if p, err := decodePosition(point); err == nil {
result = append(result, p)
} else {
return nil, err
}
}
return result, nil
}
func decodeArcs(data interface{}) ([]int, error) {
arcs, ok := data.([]interface{})
if !ok {
return nil, fmt.Errorf("not a valid set of arcs, got %v", data)
}
result := make([]int, 0, len(arcs))
for _, arc := range arcs {
if i, ok := arc.(int); ok {
result = append(result, i)
} else if i, ok := arc.(float64); ok {
result = append(result, int(i))
} else {
return nil, fmt.Errorf("not a valid arc index, got %#v", arc)
}
}
return result, nil
}
func decodeArcsSet(data interface{}) ([][]int, error) {
sets, ok := data.([]interface{})
if !ok {
return nil, fmt.Errorf("not a valid set of arcs, got %v", data)
}
result := make([][]int, 0, len(sets))
for _, arcs := range sets {
if s, err := decodeArcs(arcs); err == nil {
result = append(result, s)
} else {
return nil, err
}
}
return result, nil
}
func decodePolygonArcs(data interface{}) ([][][]int, error) {
rings, ok := data.([]interface{})
if !ok {
return nil, fmt.Errorf("not a valid set of rings, got %v", data)
}
result := make([][][]int, 0, len(rings))
for _, sets := range rings {
if s, err := decodeArcsSet(sets); err == nil {
result = append(result, s)
} else {
return nil, err
}
}
return result, nil
}
func decodeGeometries(data interface{}) ([]*Geometry, error) {
if vs, ok := data.([]interface{}); ok {
geometries := make([]*Geometry, 0, len(vs))
for _, v := range vs {
g := &Geometry{}
vmap, ok := v.(map[string]interface{})
if !ok {
break
}
err := decodeGeometry(g, vmap)
if err != nil {
return nil, err
}
geometries = append(geometries, g)
}
if len(geometries) == len(vs) {
return geometries, nil
}
}
return nil, fmt.Errorf("not a valid set of geometries, got %v", data)
}