-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Election source files that include more than one election #40
Comments
To clarify: The reason these elections should be in separate results files is not because one is partisan and the other non-partisan, or because one is legislative and one judicial. They should be separate because the state senate district 20 election is a special primary, and the circuit court election is a regular primary. Is that correct? I could not find a reference to check the election types. I'd prefer we not implement some special kludge for this case. Let's ask WEC if they can provide separate files. http://elections.wi.gov/elections-voting/results/2015/spring-primary We can make a new id in the metadata for the regular primary, linking to the same spreadsheet file. (Correct the offices checkboxes in id 1573.) This will generate a new output file, 20150217__wi__primary__ward.csv, containing the same results as 20150217__wi__special__primary__ward.csv. Both will contain the results for both elections. Not correct, but document the problem. We could split the spreadsheet into two files manually. So far, all our input data comes directly from the WI Election Commission files, so this would break that. We could implement a check in the parser, for every election, that verifies that all offices processed match the office checkboxes in the metadata, producing errors if not. This is probably worth doing anyway, it may reveal other discrepancies. We could filter output results by offices specified in metadata. This would remove the state senate data from 20150217__wi__primary__ward.csv, but the circuit court results would remain in 20150217__wi__special__primary__ward.csv because we have no metadata checkbox for judicial offices. Can we add such a field to the metadata database? |
Election 413 (2012-04-03) is a similar situation: there is a single source file that contains partisan primary results and non-partisan general results: |
Elections 1893/1894 are a similar situation too: The regularly-scheduled non-partisan primary occurred on the same day as a special partisan primary. WEC lists them on a single page: |
This will be fixed for elections 1893/1894 in PR #56. The solution (for now at least) is to split the Excel source file into two copies (one for the special House results, one for the nonpartisan judicial results), include those in the |
For election 1573 on 2015-02-17, WEC has only one portal page and one ward-level Excel results file:
http://elections.wi.gov/sites/default/files/Spring%20Primary%202.17.15%20Results%20by%20Ward%20Report.xlsx
This file includes results for a partisan primary for state senate, and the non-partisan primary for judicial offices. These two things should be defined as two separate elections, but there's only the one source file.
So one the following would be needed:
The text was updated successfully, but these errors were encountered: