Wanna know what the legislative election results look like throughout North Carolina? Just pick the chamber you want to view, pan and zoom the map to take a look around, and/or click on the map to get the results for all the districts at that point.
Curious what the results are in your neighborhood? Just enter an address or place in the search box and hit submit.
We can clearly see the effects of gerrymandering on the election. This is most stark in the state legislative elections where Democrats received slightly more votes in each chamber, yet Republicans won 59% of the seats in the House and 62% of the seats in the Senate. With 60% required for a super-majority, the legislature is one seat in the state House away from that super-majority.
There’s a similar effect in the US Congress where Republicans received 55% of the votes but 71% of the seats. This is in particular contrast to the 2022 Congress which was a 7/7 split. The districts were court ordered that year but that court order was rescinded after the State Supreme Court flipped.
Source
These results were processed from the precinct level results released shortly after the election and available on this webpage from the NC SBE.
// detailed_districts and detailed_year are defined// by the radio buttons.// When they change, this block responds by updating// the map.// Chamber has the form "US Congress", "NC House", or "NC Senate".// chamber has the form us_congress, nc_house, or nc_senate.// Chamber is specified by the radio at the top of the page.// chamber is more convenient in code.{const chamber = Chamber.replace(" ","_").toLowerCase();if(map.popup_up) { map.redo_popup(Chamber); map.popup_up=true; }// Add the districts specified by chamber on load.try {// Within a try block, since a style error// is expected on first load.// Thus, the initial districts are added in// the map.on("load", ...) block. map.add_path(chamber);let container = d3.select("#map_container").node(); }catch(err) {// And we catch the error produced on the// first load."pass"; }}
// Process the data and make the map// {// processed_map_data,// data_by_district,// tallies// } = process_data(raw_map_data, results);processed =process_data(raw_map_data, results)