Skip to content

generalelection/UK-Polling-Stations

 
 

Repository files navigation

Stories in Ready

Build Status Coverage Status

UK-Polling-Stations

This is a work in progress project that needs help in a number of ways:

  1. Importing the data we have collected from councils (See Below)
  2. If you are a developer (python, django, frontend, etc) or designer, we need help making the site itself.
  3. If you are interested in helping us gather this data, or if you know a lot about the strange world of the UK geographic system.

If you are interested in helping out in any way at all, please contact sym@democracyclub.org.uk

Getting Started

Python

UK-Polling-Stations requires python 3.4 or 3.5

Install system dependencies

UK-Polling-Stations requires Postgres, PostGIS, libgeos and GDAL.

On Mac OSX, run:

brew install postgresql
brew install postgis
brew install geos
brew install gdal

From a clean install of Ubuntu 14.04 (Trusty):

sudo apt-get install postgresql-9.3 postgresql-server-dev-9.3 python-psycopg2 python3-dev postgis postgresql-9.3-postgis-2.1 libxml2-dev libxslt-dev

or on Ubuntu 16.04 (Xenial):

sudo apt-get install postgresql-9.5 postgresql-server-dev-9.5 python-psycopg2 python3-dev postgis postgresql-9.5-postgis-2.2 libxml2-dev libxslt1-dev

For other linux distributions, see here for details on installing geospatial libraries for use with Django.

Install project requirements

pip install -r requirements/base.txt

Install testing dependencies

The integration tests require PhantomJS.

On Mac OSX, this can be installed by running

brew install phantomjs

On Ubunutu, run:

sudo apt-get install nodejs npm
sudo ln -s /usr/bin/nodejs /usr/bin/node
sudo npm install -g phantomjs-prebuilt

Install testing requirements

pip install -r requirements/testing.txt

Create local config

cp polling_stations/settings/local.example.py polling_stations/settings/local.py

Fill in database credentials and MORPH_API_KEY - you can get an API key from https://morph.io/ using your github account.

Create database

sudo -u postgres createdb polling_stations
sudo -u postgres createuser dc -P -s
sudo -u postgres psql polling_stations
psql (9.3.6)
Type "help" for help.

polling_stations=# CREATE EXTENSION postgis;
CREATE EXTENSION
polling_stations=#

Run migrations

python manage.py migrate

Import initial data

Import Councils

python manage.py import_councils

Import some Polling District/Station data

For development purposes, you will need to seed your database with some data. Most of our import scripts reference data is hosted privately, but there are a number of councils who publish their data at a public location.

For example:

  • python manage.py import_barrow_in_furness
  • python manage.py import_canterbury
  • python manage.py import_doncaster
  • python manage.py import_dover
  • python manage.py import_dundee
  • python manage.py import_eden
  • python manage.py import_edinburgh
  • python manage.py import_epsom_and_ewell
  • python manage.py import_fife
  • python manage.py import_guildford
  • python manage.py import_hastings
  • python manage.py import_lancaster
  • python manage.py import_salford
  • python manage.py import_shepway
  • python manage.py import_thanet
  • python manage.py import_tonbridge
  • python manage.py import_tunbridge_wells
  • python manage.py import_wolverhampton

all reference data which is publicly available.

Importing the data we have from councils

Each council that has unimported data has a Github Issue with the Data Import label.

You can see the current status in the Waffle Board.

We make a Django manage.py command in the data_collection app for each council which imports the raw data. If you are interested in helping the project by writing an import script, see the issues tagged recommended for beginners for more info.

About

A website to help people find their UK polling station

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 68.4%
  • HTML 30.0%
  • CSS 1.3%
  • Other 0.3%