Skip to content
Snippets Groups Projects
Commit 893c3ed4 authored by Blodgett, David L.'s avatar Blodgett, David L.
Browse files

remove degenerate networks

parent 29d76640
No related branches found
No related tags found
1 merge request!133Fixes for degenerate networks and add mainstem lookup table.
......@@ -49,6 +49,10 @@ RNetCDF::close.nc(nwm_nc)
nhd_net <- nhdplusTools::get_vaa()
degen_networks <- nhd_net[nhd_net$totdasqkm == 0 & nhd_net$terminalfl == 1, ]$terminalpa
nhd_net <- filter(nhd_net, !terminalpa %in% degen_networks)
names(nhd_net) <- tolower(names(nhd_net))
names(enhd) <- tolower(names(enhd))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment