localhost
5432
postgres
kumamoto_map
landuse
postgis
localhost
5432
postgres
kumamoto_map
(SELECT way, landuse, natural, leisure FROM planet_osm_polygon WHERE landuse IS NOT NULL OR natural IS NOT NULL OR leisure IS NOT NULL) as landuse
way
3857
water
postgis
localhost
5432
postgres
kumamoto_map
(SELECT way, natural, waterway FROM planet_osm_polygon WHERE natural = 'water' UNION SELECT way, natural, waterway FROM planet_osm_line WHERE waterway IN ('river', 'stream')) as water
way
3857
buildings
postgis
localhost
5432
postgres
kumamoto_map
(SELECT way, building FROM planet_osm_polygon WHERE building IS NOT NULL) as buildings
way
3857
roads
postgis
localhost
5432
postgres
kumamoto_map
(SELECT way, highway FROM planet_osm_line WHERE highway IS NOT NULL) as roads
way
3857
tourism
postgis
localhost
5432
postgres
kumamoto_map
(SELECT way, tourism FROM planet_osm_point WHERE tourism IS NOT NULL) as tourism
way
3857
place_labels
postgis
localhost
5432
postgres
kumamoto_map
(SELECT way, name, place FROM planet_osm_point WHERE place IN ('city', 'town') AND name IS NOT NULL) as places
way
3857