-
Notifications
You must be signed in to change notification settings - Fork 0
/
geojson.go
86 lines (73 loc) · 1.71 KB
/
geojson.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
package geometry
import (
"encoding/binary"
"encoding/json"
"fmt"
)
type Geometry interface {
WKT() string
WKB(binary.ByteOrder) []byte
MarshalWKB(uint8) []byte
UnmarshalWKB([]byte) error
MarshalWKT() string
UnmarshalWKT(string) error
MarshalJSON() ([]byte, error)
UnmarshalJSON([]byte) error
}
type TypeExtractor struct {
Type string `json:"type"`
Geometry *json.RawMessage `json:"geometry"`
}
type Feature struct {
Type string `json:"type"`
Geometry Geometry `json:"geometry"`
}
type FeatureCollection struct {
Type string `json:"type"`
Features []Feature `json:"features"`
}
func (f *Feature) UnmarshalJSON(in []byte) error {
featType := TypeExtractor{}
err := json.Unmarshal(in, &featType)
if err != nil {
return err
}
geomType := TypeExtractor{}
err = json.Unmarshal(*featType.Geometry, &geomType)
if err != nil {
return err
}
switch geomType.Type {
case "Point":
var point Point
err = json.Unmarshal(*featType.Geometry, &point)
if err != nil {
return err
}
*f = Feature{Type: "Feature", Geometry: &point}
case "LineString":
var ls LineString
err = json.Unmarshal(*featType.Geometry, &ls)
if err != nil {
return err
}
*f = Feature{Type: "Feature", Geometry: &ls}
case "Polygon":
var poly Polygon
err = json.Unmarshal(*featType.Geometry, &poly)
if err != nil {
return err
}
*f = Feature{Type: "Feature", Geometry: &poly}
case "MultiPolygon":
var mpoly MultiPolygon
err = json.Unmarshal(*featType.Geometry, &mpoly)
if err != nil {
return err
}
*f = Feature{Type: "Feature", Geometry: &mpoly}
default:
return fmt.Errorf("json Unmarshal Feature: Geometry %s not recognised", string(*featType.Geometry))
}
return nil
}