https://github.com/smartlogic/audit_baltimore
https://github.com/smartlogic/audit_baltimore
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/smartlogic/audit_baltimore
- Owner: smartlogic
- Created: 2014-02-25T17:48:02.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-10T19:07:18.000Z (over 12 years ago)
- Last Synced: 2025-10-26T07:35:46.554Z (8 months ago)
- Language: Ruby
- Size: 773 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AuditBaltimore
## Import
```sql
COPY voters(
vtrid,
lastname,
firstname,
middlename,
suffix,
dob,
gender,
party,
house_number,
house_suffix,
street_predirection,
streetname,
streettype,
street_postdirection,
unittype,
unitnumber,
address,
non_std_address,
residentialcity,
residentialstate,
residentialzip5,
residentialzip4,
mailingaddress,
mailingcity,
mailingstate,
mailingzip5,
mailingzip4,
country,
status_code,
state_registration_date,
county_registration_date,
precinct,
split,
county,
congressional_districts,
legislative_districts,
councilmanic_districts,
ward_districts,
municipal_districts,
commissioner_districts,
school_districts
)
FROM '/home/deploy/apps/audit_baltimore/current/voterfile.txt' DELIMITER E'\t' CSV HEADER;
```