git clone [email protected]:New-Bamboo/mapit.git
cd mapit
git checkout which-care
https://pypi.python.org/pypi/setuptools#installation-instructions
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py
sudo python ez_setup.py
sudo easy_install pip
pip install numpy
brew install gdal postgresql memcached postgis libgeoip
pip install virtualenv
virtualenv .venv
source .venv/bin/activate
pip install -r requirements.txt
On heroku postgis is only available on the production-level plans (crane/$50per month and above)
createdb mapit
pgsql mapit
CREATE EXTENSION postgis;
CREATE EXTENSION postgis_topology;
All python commands should be prefixed by "foreman run"
./manage.py syncdb
./manage.py migrate mapit
Set DEBUG to False in conf/general.yml.
./bin/mapit_make_css
mkdir ./staticfiles
./manage.py collectstatic
foreman start
Download and extract the following files from http://parlvid.mysociety.org:81/os/ into ./data
- ONSPD (as ./data/ONSPD.csv)
- Boundary line (as ./data/Boundary-Line/)
- Code point open (as ./data/Code-Point-Open/)
To import them
./manage.py mapit_generation_create --commit --desc "Initial import."
./manage.py loaddata uk
./manage.py mapit_UK_import_boundary_line \
--control=mapit.controls.first-gss --commit \
`ls ./data/Boundary-Line/Data/*.shp|grep -v high_water`
./manage.py mapit_UK_find_parents
./manage.py mapit_UK_import_codepoint ./data/Code-Point-Open/Data/CSV/*.csv
./manage.py mapit_UK_scilly ./data/Code-Point-Open/Data/CSV/tr.csv
./manage.py mapit_UK_import_nspd_ni_areas
./manage.py mapit_UK_import_nspd_ni ./data/ONSPD.csv
./manage.py mapit_UK_import_nspd_crown_dependencies ./data/ONSPD.csv
./manage.py mapit_generation_activate --commit