aboutsummaryrefslogtreecommitdiff
path: root/reader.go
blob: c273d3f2e11575e3cdd9796e3cc18b817072fec7 (plain) (blame)
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
package main

import (
	"context"
	"log"
	"os"

	"github.com/paulmach/osm"
	"github.com/paulmach/osm/osmpbf"
)

func read(ctx context.Context, file string, insertCh chan Object, concurrency int, layers []string) error {
	f, err := os.Open(file)
	if err != nil {
		return err
	}
	defer f.Close()
	scanner := osmpbf.New(context.Background(), f, concurrency)
	defer scanner.Close()

	layersToImport := map[string]bool{
		"ways":      false,
		"nodes":     false,
		"relations": false,
	}

	for _, l := range layers {
		layersToImport[l] = true
	}

	for scanner.Scan() {
		if ctx.Err() != nil {
			return ctx.Err()
		}
		o := scanner.Object()
		switch o := o.(type) {
		case *osm.Way:
			if !layersToImport["ways"] || !o.Visible {
				continue
			}
			nodes := make([]int64, 0, len(o.Nodes))
			for _, v := range o.Nodes {
				nodes = append(nodes, int64(v.ID))
			}

			w := Object{
				ID:        ID{ID: int64(o.ID), Type: WayType, Version: o.Version},
				Tags:      convertTags(o.Tags),
				Timestamp: o.Timestamp,
				Nodes:     nodes,
			}
			insertCh <- w
		case *osm.Node:
			if !layersToImport["nodes"] || !o.Visible {
				continue
			}
			w := Object{
				ID:        ID{ID: int64(o.ID), Type: NodeType, Version: o.Version},
				Tags:      convertTags(o.Tags),
				Timestamp: o.Timestamp,
				Location: Coords{
					Type: "Point",
					Coordinates: []float64{
						o.Lon,
						o.Lat,
					}},
			}
			insertCh <- w
		case *osm.Relation:
			if !layersToImport["relations"] || !o.Visible {
				continue
			}
			members := make([]Member, 0, len(o.Members))
			for _, v := range o.Members {
				var location *Coords
				if v.Lat != 0.0 && v.Lon != 0.0 {
					location = &Coords{
						Type: "Point",
						Coordinates: []float64{
							v.Lon,
							v.Lat,
						}}
				}
				members = append(members, Member{
					Type:        v.Type,
					Orientation: v.Orientation,
					Ref:         v.Ref,
					Role:        v.Role,
					Location:    location,
				})
			}
			w := Object{
				ID:        ID{ID: int64(o.ID), Type: RelationType, Version: o.Version},
				Tags:      convertTags(o.Tags),
				Timestamp: o.Timestamp,
				Members:   members,
			}
			insertCh <- w
		}
	}
	log.Println("Read done")
	scanErr := scanner.Err()
	if scanErr != nil {
		return scanErr
	}
	return nil
}