Skip to content

Commit

Permalink
only style railway=station
Browse files Browse the repository at this point in the history
  • Loading branch information
ian29 committed Dec 18, 2012
1 parent 2703fc0 commit f02dfe1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion osm-bright/osm-bright.imposm.mml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion osm-bright/osm-bright.osm2pgsql.mml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f02dfe1

Please sign in to comment.