Skip to content

Commit

Permalink
added tribalId for Supplemental dataset (#1804)
Browse files Browse the repository at this point in the history
  • Loading branch information
esfoobar-usds authored Aug 8, 2022
1 parent 8149ac3 commit 781e08f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/data-pipeline/data_pipeline/etl/sources/tribal/etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ def _transform_bia_aian_supplemental(
bia_aian_supplemental_df = gpd.read_file(tribal_geojson_path)

bia_aian_supplemental_df.drop(
["OBJECTID", "GISAcres", "Source", "Shape_Length", "Shape_Area"],
["GISAcres", "Source", "Shape_Length", "Shape_Area"],
axis=1,
inplace=True,
)

bia_aian_supplemental_df.rename(
columns={"Land_Area_": "landAreaName"},
columns={"OBJECTID": "tribalId", "Land_Area_": "landAreaName"},
inplace=True,
)

Expand Down

0 comments on commit 781e08f

Please sign in to comment.