Skip to content

Commit d073240

Browse files
committed
Minor comment update
1 parent 64f920c commit d073240

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_delphi_utils_python/data_proc/geomap/geo_data_proc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def create_jhu_uid_fips_crosswalk():
225225
"fips": "36085",
226226
"weight": 476143 / 8336817,
227227
}, # 476,143
228-
# Aggregate Utah into a "State FIPS"
228+
# Aggregate Utah territories into a "State FIPS"
229229
{"jhu_uid": "84070015", "fips": "49000", "weight": 1.0},
230230
{"jhu_uid": "84070016", "fips": "49000", "weight": 1.0},
231231
{"jhu_uid": "84070017", "fips": "49000", "weight": 1.0},
@@ -236,7 +236,7 @@ def create_jhu_uid_fips_crosswalk():
236236
)
237237
unassigned_states = pd.DataFrame(
238238
[
239-
# Map the Unassigned states FIPS to XX000
239+
# Map the Unassigned states FIPS to a custom megaFIPS XX000
240240
{"jhu_uid": str(x), "fips": str(x)[-2:].ljust(5, "0"), "weight": 1.0}
241241
for x in range(84090001, 84090099)
242242
]

0 commit comments

Comments
 (0)