@@ -253,7 +253,6 @@ local stations = osm2pgsql.define_table({
253253 { column = ' operator' , type = ' text' },
254254 { column = ' network' , type = ' text' },
255255 { column = ' position' , sql_type = ' text[]' },
256- { column = ' yard_size' , type = ' text' },
257256 { column = ' yard_purpose' , sql_type = ' text[]' },
258257 { column = ' yard_hump' , type = ' boolean' },
259258 { column = ' wikidata' , type = ' text' },
@@ -988,7 +987,6 @@ function osm2pgsql.process_node(object)
988987 operator = tags .operator ,
989988 network = tags .network ,
990989 position = to_sql_array (map (parse_railway_positions (position , position_exact , line_positions ), format_railway_position )),
991- yard_size = tags [' railway:yard:size' ],
992990 yard_purpose = split_semicolon_to_sql_array (tags [' railway:yard:purpose' ]),
993991 yard_hump = tags [' railway:yard:hump' ] == ' yes' or nil ,
994992 wikidata = tags .wikidata ,
@@ -1267,7 +1265,6 @@ function osm2pgsql.process_way(object)
12671265 name_tags = name_tags (tags ),
12681266 operator = tags .operator ,
12691267 network = tags .network ,
1270- yard_size = tags [' railway:yard:size' ],
12711268 yard_purpose = split_semicolon_to_sql_array (tags [' railway:yard:purpose' ]),
12721269 yard_hump = tags [' railway:yard:hump' ] == ' yes' or nil ,
12731270 wikidata = tags .wikidata ,
0 commit comments