File: multipolygon.feature

package info (click to toggle)
osm2pgsql 2.2.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,772 kB
  • sloc: cpp: 60,940; python: 1,115; ansic: 763; sh: 25; makefile: 14
file content (186 lines) | stat: -rw-r--r-- 8,111 bytes parent folder | download | duplicates (4)
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
Feature: Import and update of multipolygon areas

    Background:
        Given the input file 'test_multipolygon.osm'

    Scenario Outline: Import and update slim
        Given <lua> lua tagtransform
        When running osm2pgsql pgsql with parameters
            | --slim   |
            | <param1> |

        Then there are tables planet_osm_nodes

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name      | round(ST_Area(way)) |
            | -1     | residential | Name_rel  | 12895               |
            | 4      | farmland    | Name_way3 | 3144                |
            | -8     | residential | Name_rel2 | 12894               |
            | 5      | farmland    | Name_way4 | 3144                |
            | -14    | residential | Name_way5 | 12894               |
            | -11    | residential | Name_rel6 | 11529               |
            | -3     | residential | Name_rel11| 9286                |
            | 83     | farmland    | NULL      | 24859               |

        Then table planet_osm_polygon contains
            | osm_id | "natural" | round(ST_Area(way)) |
            | -24    | water     | 18501               |
            | 102    | water     | 12994               |

        Then table planet_osm_line contains
            | osm_id | highway     | name      | round(ST_Length(way)) |
            | 6      | residential | Name_way6 | 228                   |

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name       | ST_NumInteriorRing(way) |
            | -3     | residential | Name_rel11 | 2                       |

        Then SELECT osm_id, round(sum(ST_Area(way))), round(sum(way_area::numeric)) FROM planet_osm_polygon GROUP BY osm_id
            | osm_id | area  | way_area |
            | -13    | 17581 | 17581    |
            | -7     | 16169 | 16169    |
            | -29    | 68494 | 68494    |
            | -39    | 10377 | 10378    |
            | -40    | 12397 | 12397    |

        Then SELECT osm_id, count(*) FROM planet_osm_polygon GROUP BY osm_id
            | osm_id | count |
            | -25    | 1     |
            | 113    | 1     |
            | 118    | 1     |
            | 114    | 1     |
            | 107    | 1     |
            | 102    | 1     |
            | 138    | 1     |
            | 140    | 1     |

        Then table planet_osm_polygon has 0 rows with condition
            """
            osm_id IN (109, 104)
            """

        Then table planet_osm_polygon has 0 rows with condition
            """
            osm_id = -33 and "natural" = 'water'
            """

        Then SELECT osm_id, CASE WHEN '<param1>' = '-G' THEN min(ST_NumGeometries(way)) ELSE count(*) END FROM planet_osm_polygon GROUP BY osm_id
           | osm_id | count |
           | -13    | 2     |
           | -7     | 2     |


        Given the input file 'test_multipolygon_diff.osc'
        When running osm2pgsql pgsql with parameters
            | --slim |
            | -a |
            | <param1> |

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name      | round(ST_Area(way)) |
            | -1     | residential | Name_rel  | 13949               |
            | 4      | farmland    | Name_way3 | 3144                |
            | -8     | residential | Name_rel2 | 12894               |
            | 5      | farmland    | Name_way4 | 3144                |
            | -14    | residential | Name_way5 | 12894               |
            | -11    | residential | Name_rel6 | 11529               |
            | -3     | residential | Name_rel11| 9286                |
            | 83     | farmland    | NULL      | 24859               |

        Then table planet_osm_polygon contains
            | osm_id | "natural" | round(ST_Area(way)) |
            | -24    | water     | 18501               |
            | 102    | water     | 12994               |

        Then table planet_osm_line contains
            | osm_id | highway     | name      | round(ST_Length(way)) |
            | 6      | residential | Name_way6 | 228                   |

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name       | ST_NumInteriorRing(way) |
            | -3     | residential | Name_rel11 | 2                       |

        Then SELECT osm_id, round(sum(ST_Area(way))), round(sum(way_area::numeric)) FROM planet_osm_polygon GROUP BY osm_id
            | osm_id | area  | way_area |
            | -13    | 17581 | 17581    |
            | -7     | 16169 | 16169    |
            | -29    | 29155 | 29155    |
            | -39    | 10377 | 10378    |
            | -40    | 12397 | 12397    |

        Then SELECT osm_id, count(*) FROM planet_osm_polygon GROUP BY osm_id
            | osm_id | count |
            | 113    | 1     |
            | 118    | 1     |
            | 114    | 1     |
            | 107    | 1     |
            | 102    | 1     |
            | 138    | 1     |
            | 140    | 1     |

        Then table planet_osm_polygon has 0 rows with condition
            """
            osm_id IN (-25, 109, 104)
            """

        Then table planet_osm_polygon has 0 rows with condition
            """
            osm_id = -33 and "natural" = 'water'
            """

        Examples:
            | param1 | lua         |
            |        | no          |
            | -G     | no          |
            | -k     | no          |
            |        | the default |
            | -k     | the default |


     Scenario: Import with flat-node option
        When running osm2pgsql pgsql with parameters
            | -F | flat.store | --drop |

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name      | round(ST_Area(way)) |
            | -1     | residential | Name_rel  | 12895               |
            | 4      | farmland    | Name_way3 | 3144                |
            | -8     | residential | Name_rel2 | 12894               |
            | 5      | farmland    | Name_way4 | 3144                |
            | -14    | residential | Name_way5 | 12894               |
            | -11    | residential | Name_rel6 | 11529               |
            | -3     | residential | Name_rel11| 9286                |
            | 83     | farmland    | NULL      | 24859               |


     Scenario: Import and update with flat-node option
        When running osm2pgsql pgsql with parameters
            | --slim | -F | flat.store |

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name      | round(ST_Area(way)) |
            | -1     | residential | Name_rel  | 12895               |
            | 4      | farmland    | Name_way3 | 3144                |
            | -8     | residential | Name_rel2 | 12894               |
            | 5      | farmland    | Name_way4 | 3144                |
            | -14    | residential | Name_way5 | 12894               |
            | -11    | residential | Name_rel6 | 11529               |
            | -3     | residential | Name_rel11| 9286                |
            | 83     | farmland    | NULL      | 24859               |


        Given the input file 'test_multipolygon_diff.osc'
        When running osm2pgsql pgsql with parameters
            | --slim | -a | -F | flat.store |

        Then table planet_osm_polygon contains
            | osm_id | landuse     | name      | round(ST_Area(way)) |
            | -1     | residential | Name_rel  | 13949               |
            | 4      | farmland    | Name_way3 | 3144                |
            | -8     | residential | Name_rel2 | 12894               |
            | 5      | farmland    | Name_way4 | 3144                |
            | -14    | residential | Name_way5 | 12894               |
            | -11    | residential | Name_rel6 | 11529               |
            | -3     | residential | Name_rel11| 9286                |
            | 83     | farmland    | NULL      | 24859               |