diff --git a/osm-bright/osm-bright.imposm.mml b/osm-bright/osm-bright.imposm.mml index 6b76110..8d8d84e 100644 --- a/osm-bright/osm-bright.imposm.mml +++ b/osm-bright/osm-bright.imposm.mml @@ -557,7 +557,7 @@ "geometry": "point", "Datasource": { "type": "postgis", - "table": "( SELECT geometry, type, name \n FROM osm_transport_points \n WHERE type in ('station', 'subway_entrance', 'tram_stop')\n) AS DATA ", + "table": "( SELECT geometry, type, name \n FROM osm_transport_points \n WHERE type='station'\n) AS DATA ", "key_field": "", "geometry_field": "geometry", "extent": "-20037508.34 -20037508.34 20037508.34 20037508.34", diff --git a/osm-bright/osm-bright.osm2pgsql.mml b/osm-bright/osm-bright.osm2pgsql.mml index 1552bb5..a9c6a58 100644 --- a/osm-bright/osm-bright.osm2pgsql.mml +++ b/osm-bright/osm-bright.osm2pgsql.mml @@ -553,7 +553,7 @@ ], "Datasource": { "type": "postgis", - "table": "( SELECT way, railway AS type, name, z_order \n FROM planet_osm_point \n WHERE railway in ('station', 'subway_entrance', 'tram_stop')\n ORDER BY z_order NULLS LAST\n) AS DATA \n", + "table": "( SELECT way, railway AS type, name, z_order \n FROM planet_osm_point \n WHERE railway = 'station'\n ORDER BY z_order NULLS LAST\n) AS DATA \n", "key_field": "", "geometry_field": "way", "extent": "-20037508.34 -20037508.34 20037508.34 20037508.34",