@@ -157,6 +157,27 @@ def _vera_name_fixes(name: str, city: str) -> Tuple[str, bool]:
157157 "replace" : "Chittenden Regional Correctional Facility" ,
158158 "city" : "South Burlington" ,
159159 },
160+ {
161+ "match" : "NW Regional Corrections Center" ,
162+ "replace" : "Northwest Regional Corrections Center" ,
163+ "city" : "Crookston" ,
164+ },
165+ {
166+ "match" : "Lasalle ICE Processing Center" ,
167+ "replace" : "Central Louisiana ICE Processing Center (CLIPC)" ,
168+ "city" : "Jena" ,
169+ },
170+ {
171+ "match" : "La Salle Co Regional Det. Center" ,
172+ "replace" : "La Salle County Regional Detention Center" ,
173+ "city" : "Encinal" ,
174+ },
175+ {
176+ "match" : "Hancock Co Pub Sfty Cplx" ,
177+ "replace" : "Hancock County Public Safety Complex" ,
178+ "city" : "Bay St. Louis" ,
179+ },
180+ {"match" : "Brooks County Jail (Contract)" , "replace" : "Brooks County Jail" , "city" : "Falfurrias" },
160181 ]
161182 fixed = False
162183 for m in matches :
@@ -196,7 +217,7 @@ def collect_vera_facility_data(facilities_data: dict, keep_sheet: bool = True, f
196217 df = polars .read_csv (has_header = True , raise_if_empty = True , source = filename , use_pyarrow = True )
197218 if df .is_empty ():
198219 raise ValueError ("Empty CSV loaded somehow! %s" , df )
199- # first step to removing duplicates is easy
220+ # first step to removing duplicates is easy, but unlikely to actually filter anything
200221 df = df .unique ()
201222 logger .debug ("Extracted data: %s" , df )
202223 """
0 commit comments