Skip to content

Commit

Permalink
Fix columns names for Health Facilities
Browse files Browse the repository at this point in the history
  • Loading branch information
Rub21 committed Jan 19, 2024
1 parent b1829bb commit 2cec7da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ingest/datasets/health_facilities/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ def run(path_local):
gdf = gdf.to_crs(4326)
gdf["id"] = list(range(gdf.shape[0]))
gdf = gdf.rename(columns={'addr:city': 'addr_city'})

gdf = gdf.rename(columns={'capacity:persons':'capacity_persons'})
gdf = gdf.rename(columns={'healthcare:speciality':'healthcare_speciality'})
gdf = gdf.rename(columns={'operator:type':'operator_type'})
gdf = gdf.rename(columns={'addr:full':'addr_full'})

# ##############
# metadata
# ##############
Expand Down

0 comments on commit 2cec7da

Please sign in to comment.