added tribalId for Supplemental dataset (#1804)

This commit is contained in:
Jorge Escobar 2022-08-08 17:42:14 -04:00 committed by GitHub
parent 8149ac31c5
commit 781e08f559
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,13 +81,13 @@ class TribalETL(ExtractTransformLoad):
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,
)