diff --git a/workspace/00_enhd_nwm_network.Rmd b/workspace/00_enhd_nwm_network.Rmd index 1f4a2451179e86d32078de8f781dc96acc8ad846..4c4951c569c863b771333b393d4a1837ff13bc3c 100644 --- a/workspace/00_enhd_nwm_network.Rmd +++ b/workspace/00_enhd_nwm_network.Rmd @@ -151,12 +151,18 @@ net_new$dnlevelpat[is.na(net_new$dnlevelpat)] <- 0 coastal_comids <- nhd_net$comid[nhd_net$terminalfl == 1 & nhd_net$streamleve == 1] -net_new$streamleve <-select(net_new, levelpathi, dnlevelpat, comid) %>% +net_new$streamleve <- select(net_new, levelpathi, dnlevelpat, comid) %>% mutate(coastal = comid %in% coastal_comids) %>% get_streamlevel() net_new$streamorde <- nhdplusTools::get_streamorder(select(net_new, ID = comid, toID = tocomid), status = TRUE) +net_new <- left_join(net_new, + select(nhd_net, comid, vpuin, vpuout, wbareatype, + slope, slopelenkm, ftype, gnis_name, + gnis_id, wbareacomi, hwnodesqkm, rpuid, + vpuid, roughness), by = "comid") + data.table::fwrite(net_new, file = "cache/enhd_nhdplusatts.csv", sep = ",") @@ -204,7 +210,6 @@ arrow::write_parquet(net_new, "cache/enhd_nhdplusatts.parquet") # sbtools::item_replace_files("60c92503d34e86b9389df1c9", "cache/enhd_nhdplusatts.fst") # sbtools::item_replace_files("60c92503d34e86b9389df1c9", "cache/enhd_nhdplusatts.parquet") - ``` ```{r}