-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathparse-geojson.go
90 lines (81 loc) · 2.48 KB
/
parse-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
87
88
89
90
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"os"
)
// Property Geojson Property
type Property struct {
ID string `json:"id"`
Type string `json:"type"`
Highway string `json:"highway"`
Access string `json:"access"`
Lit string `json:"lit"`
Sidewalk string `json:"sidewalk"`
}
// Coordinate pair of lng, lat
type Coordinate [2]float64
// Geometry Geojson Geometry
type Geometry struct {
Type string `json:"type"`
Coordinates []Coordinate `json:"coordinates"`
}
// Feature Geojson Feature
type Feature struct {
Type string `json:"type"`
ID string `json:"id"`
Properties Property `json:"properties"`
Geometry Geometry `json:"geometry"`
}
// GeoJSON data structure
type GeoJSON struct {
Type string `json:"type"`
Features []Feature `json:"features"`
}
func createGraph(geojson GeoJSON) Graph {
var graph Graph
graph.Init()
for i := 0; i < len(geojson.Features); i++ {
var feature = geojson.Features[i]
var prev *Node
for j := 0; j < len(feature.Geometry.Coordinates); j++ {
var coords = feature.Geometry.Coordinates[j]
node := Node{coords[0], coords[1]}
if j != 0 {
graph.AddEdge(node, prev)
graph.AddEdge(*prev, &node)
}
prev = &node
}
}
fmt.Println("geojson Graph created with", len(graph.edges), "nodes and", graph.numEdges, "edges")
return graph
}
func loadGeoJSON(filename string) Graph {
// GeoJSON for Greater London
// from http://download.geofabrik.de/europe/great-britain/england/greater-london.html
// geoJsonDownloadLink := "https://ucb7e1be7e59700bb615fc052d06.dl.dropboxusercontent.com/cd/0/get/ApeoomlSroMi4LLrd88j2O1YyfZcz-fnOcR-BMu7Ca3F-aclMpnyLmlzJPZtgze6QSfiGh_SZAcCl-TzGSrcNR14iFsaOBl-vs7CsUzWnL6UbsaH7V_CR-apDThjG8fUH78/file?dl=1DownloadLink"
// resp, err := http.Get(geoJsonDownloadLink)
// if err != nil {
// // handle error
// }
// defer resp.Body.Close()
// jsonFile := resp.Body
// GeoJSON for central london around highbury islington
// jsonFile, err := os.Open("./data/central.geojson")
// jsonFile, err := os.Open("./data/greater-london-latest.geojson")
// 2.73GB
jsonFile, err := os.Open(filename)
if err != nil {
fmt.Println(err)
}
fmt.Println("Successfully Opened geojson")
byteValue, _ := ioutil.ReadAll(jsonFile)
fmt.Println("Successfully ReadAll geojson")
var geojson GeoJSON
json.Unmarshal(byteValue, &geojson)
fmt.Println("Successfully Unmarshalled geojson with N features", len(geojson.Features))
defer jsonFile.Close()
return createGraph(geojson)
}