StreamCat
StreamCat copied to clipboard
Re-run point metrics
while scanning the PointInPoly function for python3 updates I noticed that the CRS used was that of the NHDCatchment shapefile in line 571 of StreamCat_functions.py
points.to_crs(polys.crs, inplace=True)
this causes all of the spatial joins made to be in geographic projection 4326, but needs to be in 5070 for accuracy. There are minor differences made in the joins when sjoin is done in projection 5070 and we will need to rerun all point metrics to adjust for this once we switch the line above to ...
polys.to_crs(points.crs, inplace=True)