* rail stations * Create 'railway' POI class with 'station' and 'halt' subclasses * Introduce subway stops as POI * Revert unwanted changes in .env and openmaptiles.yaml * Remove halt key from documentation * Distinguish aeroway and railway station, add tram_stop
7 lines
198 B
SQL
7 lines
198 B
SQL
UPDATE osm_poi_point
|
|
SET subclass = 'subway'
|
|
WHERE station = 'subway' and subclass='station';
|
|
UPDATE osm_poi_polygon
|
|
SET subclass = 'subway'
|
|
WHERE station = 'subway' and subclass='station';
|