From 8c91d27463f5639bc6369d3b57ea42f75eeddee7 Mon Sep 17 00:00:00 2001
From: Andy Bock <abock@usgs.gov>
Date: Fri, 1 Oct 2021 10:19:49 -0600
Subject: [PATCH] Needed to fix one thing

---
 workspace/02_NHD_navigate.Rmd | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/workspace/02_NHD_navigate.Rmd b/workspace/02_NHD_navigate.Rmd
index 5541e1c..77e4686 100644
--- a/workspace/02_NHD_navigate.Rmd
+++ b/workspace/02_NHD_navigate.Rmd
@@ -40,12 +40,10 @@ atts <- readRDS(file.path(data_paths$nhdplus_dir, "nhdplus_flowline_attributes.r
 # Create full cat dataset
 if(!file.exists(file.path(data_paths$nhdplus_dir, cat_table))){
   if(substr(rpu_code, 1, 2) == "20") {
-    #nhd_gdb <- data_paths$islands_gdb
-    fl <- read_sf(data_paths$islands_gdb, "NHDFlowline_Network") %>%
-      align_nhdplus_names()
+    nhd_gdb <- data_paths$islands_gdb
     cat_rds <- readRDS(file.path(data_paths$islands_dir, "nhdplus_catchment.rds"))
   } else {
-    fl <- read_sf(data_paths$nhdplus_gdb, "NHDFlowline_Network")
+    nhd_gdb <- data_paths$nhdplus_gdb
     cat_rds <- readRDS(file.path(data_paths$nhdplus_dir, "nhdplus_catchment.rds"))
   }
   
-- 
GitLab