Skip to content

Commit

Permalink
Update members_geocoder.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik-Brown01 committed Nov 22, 2023
1 parent 09d78bc commit 5c46597
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/members_geocoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

members_list = [x['fields'] for x in members]

path = Path("..\public")
path = Path("public")

if os.path.isfile(path / "airtable.pkl"):
with open(path / "airtable.pkl", 'rb') as f:
Expand Down Expand Up @@ -55,10 +55,10 @@

#count = 0

senate_geojson = r"..\public\NYS_Senate_Districts.geojson"
assembly_geojson = r"..\public\NYS_Assembly_Districts.geojson"
counties_geojson = r"..\public\nys_counties.geo.json"
zipcode_geojson = r"..\public\nys_zipcodes.geo.json"
senate_geojson = "public/NYS_Senate_Districts.geojson"
assembly_geojson = "public/NYS_Assembly_Districts.geojson"
counties_geojson = "public/nys_counties.geo.json"
zipcode_geojson = "public/nys_zipcodes.geo.json"

senate_key = 'DISTRICT'
assembly_key = 'District'
Expand Down

0 comments on commit 5c46597

Please sign in to comment.