Skip to content

Commit

Permalink
Merge pull request #1 from Datawheel/dev
Browse files Browse the repository at this point in the history
expanded ACS geography support
  • Loading branch information
jspeis authored Mar 8, 2018
2 parents 9cd9f76 + ee10c90 commit 0c65fc4
Show file tree
Hide file tree
Showing 4 changed files with 6,912 additions and 15 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ Required Environment variables:
|GSA_DB_PW|Postgres Database Password|
|GSA_DB_USER|Postgres Database Username|
|GSA_DB_HOST|Postgres Database Host|
|GSA_DB_PORT|Postgres Database Port|

# geoservice-api
8 changes: 8 additions & 0 deletions config/acs_levels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"state": {"schema": "shapes2017", "table": "states", "id": "geoid", "parent": "state", "columns": ["name", "geoid"]},
"county": {"schema": "shapes2017", "table": "counties", "id": "geoid", "parent": "state", "columns": ["name", "geoid"], "nameColumn": "namelsad"},
"place": {"schema": "shapes2017", "table": "places", "id": "geoid", "parent": "county", "columns": ["name", "geoid"]},
"tract": {"schema": "shapes2017", "table": "tracts", "id": "geoid", "parent": "county", "columns": ["name", "geoid"], "nameColumn": "namelsad"},
"msa": {"schema": "shapes2017", "table": "msas", "id": "geoid", "parent": "state", "columns": ["name", "geoid"]},
"puma": {"schema": "shapes2017", "table": "pumas", "id": "geoid", "parent": "state", "columns": ["name", "geoid"], "nameColumn": "namelsad10"}
}
Loading

0 comments on commit 0c65fc4

Please sign in to comment.