Skip to content

Commit 53bb807

Browse files
committed
mapping: fix (way)zorder for non-int32 layer values
1 parent 4758cf4 commit 53bb807

6 files changed

+55
-7
lines changed

mapping/columns.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,8 @@ func MakeWayZOrder(columnName string, columnType ColumnType, column config.Colum
217217

218218
wayZOrder := func(val string, elem *osm.Element, geom *geom.Geometry, match Match) interface{} {
219219
var z int
220-
layer, _ := strconv.ParseInt(elem.Tags["layer"], 10, 64)
220+
layer, _ := strconv.ParseInt(elem.Tags["layer"], 10, 32)
221+
221222
z += int(layer) * levelOffset
222223

223224
rank, ok := ranks[match.Value]
@@ -236,6 +237,9 @@ func MakeWayZOrder(columnName string, columnType ColumnType, column config.Colum
236237
z += levelOffset
237238
}
238239

240+
if z < math.MinInt32 || z > math.MaxInt32 {
241+
return nil
242+
}
239243
return z
240244
}
241245
return wayZOrder, nil
@@ -285,6 +289,9 @@ func DefaultWayZOrder(val string, elem *osm.Element, geom *geom.Geometry, match
285289
z += 10
286290
}
287291

292+
if z < math.MinInt32 || z > math.MaxInt32 {
293+
return nil
294+
}
288295
return z
289296
}
290297

mapping/columns_test.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ func TestWayZOrder(t *testing.T) {
208208
t.Fatal(err)
209209
}
210210

211+
NIL := 999 // marker value
211212
tests := []struct {
212213
key string
213214
tags osm.Tags
@@ -223,12 +224,18 @@ func TestWayZOrder(t *testing.T) {
223224
{"path", osm.Tags{"tunnel": "yes"}, -10},
224225
{"unknown", osm.Tags{"tunnel": "yes"}, -6},
225226
{"unknown", osm.Tags{"tunnel": "yes", "layer": "1"}, 5},
227+
{"unknown", osm.Tags{"tunnel": "yes", "layer": "123456789123456789"}, NIL},
226228
}
227229
for _, test := range tests {
228230
elem := &osm.Element{Tags: test.tags}
229231
match := Match{Value: test.key}
230232

231-
if v := zOrder("", elem, nil, match); v.(int) != test.expected {
233+
if test.expected == NIL {
234+
if v := zOrder("", elem, nil, match); v != nil {
235+
t.Errorf("%v %v %#v != nil", test.key, test.tags, v)
236+
}
237+
238+
} else if v := zOrder("", elem, nil, match); v.(int) != test.expected {
232239
t.Errorf("%v %v %d != %d", test.key, test.tags, v, test.expected)
233240
}
234241
}

test/complete_db.osc

+11
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,17 @@
9696
</relation>
9797
</modify>
9898

99+
<modify>
100+
<way id="17003" version="2" timestamp="2011-11-11T00:11:11Z">
101+
<nd ref="17001"/>
102+
<nd ref="17002"/>
103+
<nd ref="17003"/>
104+
<tag k="name" v="way 17003"/>
105+
<tag k="layer" v="2"/>
106+
<tag k="highway" v="residential"/>
107+
</way>
108+
</modify>
109+
99110
<!-- test merge relation way -->
100111
<delete>
101112
<way id="16002" version="2" timestamp="2011-11-11T00:11:11Z"/>

test/complete_db.osm

+10
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,16 @@
743743
<tag k="landuse" v="park"/>
744744
</relation>
745745

746+
<!-- way with invalid layer -->
747+
<way id="17003" version="1" timestamp="2011-11-11T00:11:11Z">
748+
<nd ref="17001"/>
749+
<nd ref="17002"/>
750+
<nd ref="17003"/>
751+
<tag k="name" v="way 17003"/>
752+
<tag k="layer" v="11111111111111111"/>
753+
<tag k="highway" v="residential"/>
754+
</way>
755+
746756
<way id="17101" version="1" timestamp="2011-11-11T00:11:11Z">
747757
<nd ref="17001"/>
748758
<nd ref="17002"/>

test/completedb_test.go

+16-5
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,13 @@ import (
55
"fmt"
66
"io/ioutil"
77
"os"
8+
"testing"
89

910
osm "github.com/omniscale/go-osm"
1011
"github.com/omniscale/imposm3/cache"
11-
1212
"github.com/omniscale/imposm3/geom"
13-
"github.com/omniscale/imposm3/proj"
14-
15-
"testing"
16-
1713
"github.com/omniscale/imposm3/geom/geos"
14+
"github.com/omniscale/imposm3/proj"
1815
)
1916

2017
func TestComplete(t *testing.T) {
@@ -171,6 +168,13 @@ func TestComplete(t *testing.T) {
171168
})
172169
})
173170

171+
t.Run("WayWithInvalidLayer", func(t *testing.T) {
172+
// Layer value is not a valid int32.
173+
ts.assertRecords(t, []checkElem{
174+
{"osm_roads", 17003, "residential", map[string]string{"z_order": "NULL"}},
175+
})
176+
})
177+
174178
t.Run("NodeWayInsertedTwice", func(t *testing.T) {
175179
// Way with multiple mappings is inserted twice in same table
176180
rows := ts.queryRows(t, "osm_roads", 18001)
@@ -591,6 +595,13 @@ func TestComplete(t *testing.T) {
591595
ts.assertGeomArea(t, checkElem{"osm_landusages", -16001, "park", nil}, 12779350582)
592596
})
593597

598+
t.Run("WayWithInvalidLayerUpdate", func(t *testing.T) {
599+
// Layer value is now a valid int32.
600+
ts.assertRecords(t, []checkElem{
601+
{"osm_roads", 17003, "residential", map[string]string{"z_order": "23"}},
602+
})
603+
})
604+
594605
t.Run("NodeWayRefAfterDelete2", func(t *testing.T) {
595606
// Node does not referece deleted way
596607

test/helper_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ func (ts *importTestSuite) query(t *testing.T, table string, id int64, keys []st
245245
for k, v := range h.Map {
246246
if v.Valid {
247247
r.tags[k] = v.String
248+
} else {
249+
r.tags[k] = "NULL"
248250
}
249251
}
250252

0 commit comments

Comments
 (0)