Skip to content

weeksie/agitate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Agitate

First set up your development config files. For the default case this is:

cp config/dev.example.exs config/dev.exs
cp config/test.example.exs config/test.exs

Edit as necessary to fit your local environment.

# Configure your database
config :agitate, Agitate.Repo,
  adapter: Ecto.Adapters.Postgres,
  types: Agitate.PostgresTypes,
  username: "weeksie",
  database: "agitate_test",
  hostname: "localhost",
  pool: Ecto.Adapters.SQL.Sandbox

Now make sure your database is up to date

mix ecto.create
mix ecto.migrate

Make sure PostGIS is installed (http://postgis.net/install/) but really, you'll probably just do a brew install postgis. Then run the migrations mix ecto.migrate

Import Zipcode Shapefiles

Download zip shapes from www2.census.gov

Sure would like to get zip codes in 20m format but the only thing they seem to have is 500k.

curl -O http://www2.census.gov/geo/tiger/GENZ2015/shp/cb_2015_us_zcta510_500k.zip
mv cb_2015_us_zcta510_500k.zip priv/data
cd priv/data
unzip cb_2015_us_zcta510_500k.zip

Now (from project root) run the sql scripts to seed your data:

./priv/data/seeds.sh agitate_dev

For non dev environments sub out the database name, e.g. ./priv/data/seeds.sh agitate_prod

et viola!

To do a quick reset of your db

dropdb agitate_dev && mix ecto.create && mix ecto.migrate && ./priv/data/seeds.sh agitate_dev

Acknowledgements

I've been scraping data from anywhere and everywhere.

Most of these have been munged and transformed through a series of very ad hoc ruby scripts peppered throughout the priv/data directory, outputting big sql scripts.

Real fancy.

About

Our aim here is not to solve partisan redistricting on our own. Rather, it is to give people the tools they need to do it themselves.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published