forked from hypermodeinc/dgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths2index.go
237 lines (217 loc) · 7.59 KB
/
s2index.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
/*
* Copyright 2016-2018 Dgraph Labs, Inc. and Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package types
import (
"log"
"github.com/golang/geo/s2"
geom "github.com/twpayne/go-geom"
"github.com/dgraph-io/dgraph/x"
"github.com/pkg/errors"
)
func parentCoverTokens(parents s2.CellUnion, cover s2.CellUnion) []string {
// We index parents and cover using different prefix, that makes it more
// performant at query time to only look up parents/cover depending on what
// kind of query it is.
tokens := make([]string, 0, len(parents)+len(cover))
tokens = append(tokens, createTokens(parents, parentPrefix)...)
tokens = append(tokens, createTokens(cover, coverPrefix)...)
x.AssertTruef(len(tokens) == len(parents)+len(cover), "%d %d %d",
len(tokens), len(parents), len(cover))
return tokens
}
// IndexGeoTokens returns the tokens to be used in a geospatial index for the
// given geometry. If the geometry is not supported it returns an error.
func IndexGeoTokens(g geom.T) ([]string, error) {
parents, cover, err := indexCells(g)
if err != nil {
return nil, err
}
return parentCoverTokens(parents, cover), nil
}
// IndexKeysForCap returns the keys to be used in a geospatial index for a Cap.
/*
func indexCellsForCap(c s2.Cap) s2.CellUnion {
rc := &s2.RegionCoverer{
MinLevel: MinCellLevel,
MaxLevel: MaxCellLevel,
LevelMod: 0,
MaxCells: MaxCells,
}
return rc.Covering(c)
}
*/
const (
parentPrefix = "p/"
coverPrefix = "c/"
)
// IndexCells returns two cellunions. The first is a list of parents, which are all the cells upto
// the min level that contain this geometry. The second is the cover, which are the smallest
// possible cells required to cover the region. This makes it easier at query time to query only the
// parents or only the cover or both depending on whether it is a within, contains or intersects
// query.
func indexCells(g geom.T) (parents, cover s2.CellUnion, err error) {
if g.Stride() != 2 {
return nil, nil, errors.Errorf("Covering only available for 2D co-ordinates.")
}
switch v := g.(type) {
case *geom.Point:
p, c := indexCellsForPoint(v, MinCellLevel, MaxCellLevel)
return p, c, nil
case *geom.Polygon:
l, err := loopFromPolygon(v)
if err != nil {
return nil, nil, err
}
cover := coverLoop(l, MinCellLevel, MaxCellLevel, MaxCells)
parents := getParentCells(cover, MinCellLevel)
return parents, cover, nil
case *geom.MultiPolygon:
var cover s2.CellUnion
// Convert each polygon to loop. Get cover for each and append to cover.
for i := 0; i < v.NumPolygons(); i++ {
p := v.Polygon(i)
l, err := loopFromPolygon(p)
if err != nil {
return nil, nil, err
}
cover = append(cover, coverLoop(l, MinCellLevel, MaxCellLevel, MaxCells)...)
}
// Get parents for all cells in cover.
parents := getParentCells(cover, MinCellLevel)
return parents, cover, nil
default:
return nil, nil, errors.Errorf("Cannot index geometry of type %T", v)
}
}
const (
// MinCellLevel is the smallest cell level (largest cell size) used by indexing
MinCellLevel = 5 // Approx 250km x 380km
// MaxCellLevel is the largest cell level (smallest cell size) used by indexing
MaxCellLevel = 16 // Approx 120m x 180m
// MaxCells is the maximum number of cells to use when indexing regions.
MaxCells = 18
)
func pointFromCoord(r geom.Coord) s2.Point {
// The geojson spec says that coordinates are specified as [long, lat]
// We assume that any data encoded in the database follows that format.
ll := s2.LatLngFromDegrees(r.Y(), r.X())
return s2.PointFromLatLng(ll)
}
// PointFromPoint converts a geom.Point to a s2.Point
func pointFromPoint(p *geom.Point) s2.Point {
return pointFromCoord(p.Coords())
}
// loopFromPolygon converts a geom.Polygon to a s2.Loop. We use loops instead of s2.Polygon as the
// s2.Polygon implemention is incomplete.
func loopFromPolygon(p *geom.Polygon) (*s2.Loop, error) {
// go implementation of s2 does not support more than one loop (and will panic if the size of
// the loops array > 1). So we will skip the holes in the polygon and just use the outer loop.
r := p.LinearRing(0)
n := r.NumCoords()
if n < 4 {
return nil, errors.Errorf("Can't convert ring with less than 4 pts")
}
if !r.Coord(0).Equal(geom.XY, r.Coord(n-1)) {
return nil, errors.Errorf("Last coordinate not same as first for polygon: %+v\n", p)
}
// S2 specifies that the orientation of the polygons should be CCW. However there is no
// restriction on the orientation in WKB (or geojson). To get the correct orientation we assume
// that the polygons are always less than one hemisphere. If they are bigger, we flip the
// orientation.
reverse := isClockwise(r)
l := loopFromRing(r, reverse)
// Since our clockwise check was approximate, we check the cap and reverse if needed.
if l.CapBound().Radius().Degrees() > 90 {
l.Invert()
}
return l, nil
}
// Checks if a ring is clockwise or counter-clockwise. Note: This uses the algorithm for planar
// polygons and doesn't work for spherical polygons that contain the poles or the antimeridan
// discontinuity. We use this as a fast approximation instead.
func isClockwise(r *geom.LinearRing) bool {
// The algorithm is described here https://en.wikipedia.org/wiki/Shoelace_formula
var a float64
n := r.NumCoords()
for i := 0; i < n; i++ {
p1 := r.Coord(i)
p2 := r.Coord((i + 1) % n)
a += (p2.X() - p1.X()) * (p1.Y() + p2.Y())
}
return a > 0
}
func loopFromRing(r *geom.LinearRing, reverse bool) *s2.Loop {
// In WKB, the last coordinate is repeated for a ring to form a closed loop. For s2 the points
// aren't allowed to repeat and the loop is assumed to be closed, so we skip the last point.
n := r.NumCoords()
pts := make([]s2.Point, n-1)
for i := 0; i < n-1; i++ {
var c geom.Coord
if reverse {
c = r.Coord(n - 1 - i)
} else {
c = r.Coord(i)
}
p := pointFromCoord(c)
pts[i] = p
}
return s2.LoopFromPoints(pts)
}
// create cells for point from the minLevel to maxLevel both inclusive.
func indexCellsForPoint(p *geom.Point, minLevel, maxLevel int) (s2.CellUnion, s2.CellUnion) {
if maxLevel < minLevel {
log.Fatalf("Maxlevel should be greater than minLevel")
}
ll := s2.LatLngFromDegrees(p.Y(), p.X())
c := s2.CellIDFromLatLng(ll)
cells := make([]s2.CellID, maxLevel-minLevel+1)
for l := minLevel; l <= maxLevel; l++ {
cells[l-minLevel] = c.Parent(l)
}
return cells, []s2.CellID{c.Parent(maxLevel)}
}
func getParentCells(cu s2.CellUnion, minLevel int) s2.CellUnion {
parents := make(map[s2.CellID]bool)
for _, c := range cu {
for l := c.Level(); l >= minLevel; l-- {
parents[c.Parent(l)] = true
}
}
// convert the parents map to an array
cells := make([]s2.CellID, len(parents))
i := 0
for k := range parents {
cells[i] = k
i++
}
return cells
}
func coverLoop(l *s2.Loop, minLevel int, maxLevel int, maxCells int) s2.CellUnion {
rc := &s2.RegionCoverer{
MinLevel: minLevel,
MaxLevel: maxLevel,
LevelMod: 0,
MaxCells: maxCells,
}
return rc.Covering(l)
}
// appendTokens creates tokens with a certain prefix and append.
func createTokens(cu s2.CellUnion, prefix string) (toks []string) {
for _, c := range cu {
toks = append(toks, prefix+c.ToToken())
}
return toks
}