Skip to content

Commit

Permalink
Fix small geocoding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bendnorman committed Nov 14, 2024
1 parent 03aa1c2 commit e4677a9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dbcp/transform/local_opposition.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Transform functions for local opposition data."""

from typing import Dict

import pandas as pd
Expand Down Expand Up @@ -101,6 +102,7 @@ def _transform_local_ordinances(local_ord_df: pd.DataFrame) -> pd.DataFrame:
"Town of Charlton (Worcester County)": "Charlton (Worcester County)",
"City of Owasso (Rogers and Tulsa Counties)": "Owasso (Rogers and Tulsa Counties)",
"City of Burleson (Tarrant and Johnson Counties)": "Burleson (Tarrant and Johnson Counties)",
"Montrose City (Genesee County)": "Montrose (Genesee County)",
}
local.loc[:, "locality"].replace(location_corrections, inplace=True)

Expand Down

0 comments on commit e4677a9

Please sign in to comment.