Skip to content

Commit

Permalink
Update to 2020 Census geometries
Browse files Browse the repository at this point in the history
  • Loading branch information
ansoncfit committed Dec 30, 2023
1 parent f349656 commit 5d53072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void load (ShapeDataStore store) throws Exception {
for (SimpleFeatureIterator it = sfc.features(); it.hasNext();) {
GeobufFeature feat = new GeobufFeature(it.next());
feat.id = null;
feat.numericId = Long.parseLong((String) feat.properties.get("GEOID10"));
feat.numericId = Long.parseLong((String) feat.properties.get("GEOID20"));
feat.properties = new HashMap<>();
store.add(feat);
}
Expand Down

0 comments on commit 5d53072

Please sign in to comment.