You need OpenStreetMap data loaded into a PostGIS database (see below for dependencies). These stylesheets currently work only with the osm2pgsql defaults (i.e. database name is gis
, table names are planet_osm_point
, etc).
It's probably easiest to grab an PBF of OSM data from Mapzen or geofabrik. Once you've set up your PostGIS database, import with osm2pgsql:
osm2pgsql -d gis ~/path/to/data.osm.pbf --style openstreetmap-carto.style
You can find a more detailed guide to setting up a database and loading data with osm2pgsql at switch2osm.org.
Additionally you need some shapefiles.
To download the shapefiles you can run the following script from this directory. No further steps should be needed as the data has been processed and placed in the requisite directories.
./get-shapefiles.sh
You can also download them manually at the following paths:
simplified-water-polygons.shp
(updated daily)water-polygon.shp
(updated daily)builtup_area.shp
ne_110m_admin_0_boundary_lines_land.shp
The repeated www.naturalearthdata.com in the Natural Earth shapefiles is correct.
Put these shapefiles at path/to/openstreetmap-carto/data
.
The stylesheet depends on a number of openly licensed fonts for support of all the languages found on the map. The package which supplies these fonts on Ubuntu is indicated.
If a font is missing, it will skip to the next available font which contains those characters. If you are not concerned with a particular language, you do not need its fonts. DejaVu Sans and Unifont are the two required fonts, and included on most systems.
- DejaVu Sans, for most languages (
ttf-dejavu
) - Droid Sans Fallback, as a reasonable fallback (
fonts-droid
) - Unifont, as a last resort fallback (
ttf-unifont
)
- Arundina Sans, for Thai (
fonts-sipa-arundina
) - Padauk, for Burmese (
fonts-sil-padauk
) - Khmer OS Metal Chrieng Regular, for Khmer (
fonts-khmeros
)
- Mukti Narrow, for Bangali (
ttf-indic-fonts-core
) - Gargi Medium, for Devanagari (
ttf-indic-fonts-core
) - TSCu_Paranar, for Tamil (
ttf-tamil-fonts
orfonts-taml-tscu
, depending on your Ubuntu version) - Mallige, for Kannada (
ttf-indic-fonts-core
for normal and bold andttf-kannada-fonts
for oblique) The filename uses "Malige" but the font name uses "Mallige"
On Ubuntu you can install all the fonts with
sudo apt-get install ttf-dejavu fonts-droid ttf-unifont fonts-sipa-arundina fonts-sil-padauk fonts-khmeros \
ttf-indic-fonts-core fonts-taml-tscu ttf-kannada-fonts
In Ubuntu 13.10 (Saucy) and lower, replace fonts-taml-tscu with ttf-tamil-fonts.
For development, a style design studio is needed.
- Kosmtik - Kosmtik can be launched with
node index.js serve path/to/openstreetmap-carto/project.yaml
- TileMill - This is a TileMill project you can copy (or symlink) directly into your Mapbox/project directory
For deployment, carto
and Mapnik are required.
- carto >= 0.9.5 (we're using instances with cascading rules and min/max zoom properties)
- mapnik >= 2.1.0. Mapnik 3.0 is supported, but not required.
For both development and deployment, a database and some utilities are required
- osm2pgsql to import your data into a PostGIS database
- PostgreSQL
- PostGIS
curl
andunzip
for downloading and decompressing files- shapeindex (a companion utility to Mapnik found in the mapnik-utils package) for indexing downloaded shapefiles
Some colours, SVGs and other files are generated with helper scripts. Not all users will need these dependencies
- Python and Ruby to run helper scripts
- PyYAML if editing the MML (layer definition) file (packaged as
python-yaml
on Ubuntu, or installed withpip install pyyaml
) - Color Math and numpy if running generate_road_colors.py helper script (may be obtained with
pip install colormath numpy
)