+
+ Scenario: Landuses are only imported when named
+ Given the osm nodes:
+ | id | geometry
+ | 100 | 0 0
+ | 101 | 0 0.1
+ | 102 | 0.1 0.1
+ | 200 | 0 0
+ | 202 | 1 1
+ | 203 | 1 0
+ And the osm ways:
+ | id | tags | nodes
+ | 1 | 'landuse' : 'residential', 'name' : 'rainbow' | 100 101 102 100
+ | 2 | 'landuse' : 'residential' | 200 202 203 200
+ When loading osm data
+ Then table place contains
+ | object | class | type
+ | W1 | landuse | residential
+ And table place has no entry for W2