# The folder where we will be saving our maps, used later on
foldername = 'Maps'
# the name we'll be giving to our maps, also used later on
filename = '2020Results'
# Open the 2020 precinct shape files with results, from the Harvard website, found in the Shapefiles/results folder.
# Because the NAME column is sometimes letters, sometimes numbers, specifying the dtype of the column is important.
Precincts20 = gpd.read_file('Shapefiles/results/pa_2020/pa_2020.shp', dtype={'NAME': str})
# PA district shapefiles found on the PA redistricting site: https://www.redistricting.state.pa.us/maps/
CDDists = gpd.read_file('Shapefiles/districts/pa_cong/carter_boundaries.shp')
HDDists = gpd.read_file('Shapefiles/districts/pa_shouse/2022 LRC-House-Final.shp')
SDDists = gpd.read_file('Shapefiles/districts/pa_ssen/2022 LRC-Senate-Final.shp')