Skip to content
Jeff Meyer edited this page Aug 11, 2013 · 9 revisions

OHM stylesheet location

/home/ohm/ohm-carto

created by: git clone https://github.com/OpenHistoricalMap/ohm-carto

Carto Installation

For carto installation using node (for dummies)... not found easily elsewhere on the web (afaicg). Tested on Ubuntu 12.04

# make sure you have nodejs ready
apt-get install nodejs
apt-get install npm

# install carto & be sure to do it globally -g
cd <your working directory>
git clone https://github.com/mapbox/carto
cd carto
npm install -g

# carto has a dependency on millstone not covered by npm - also -g
cd <your working directory>
git clone https://github.com/mapbox/millstone
cd millstone
npm install -g

# now, test it
cd <your carto working directory>
carto project.mml > mapnik.xml
cat mapnik.xml
# the output should look like nasty mapnik.xml

Clone this wiki locally