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

elevation case sensitivity fix in non denritic

parent 9808961b
No related branches found
No related tags found
1 merge request!127Miscelaneous updates
......@@ -57,7 +57,7 @@ full_nhd <- full_nhd %>%
vpu_WBD <- readRDS(file.path(data_paths$nhdplus_dir, "HUC12.rds")) %>%
filter(grepl(paste0("^", grep_exp, ".*"), .data$HUC_12))
elev <- data_paths$elev_cm[grepl(paste0("Ned", vpu), data_paths$elev_cm)]
elev <- data_paths$elev_cm[grepl(paste0("Ned", vpu), data_paths$elev_cm, ignore.case = TRUE)]
nhd <- st_transform(read_sf(gf_gpkg, nhd_flowline), crs)
cats <- st_transform(read_sf(gf_gpkg, nhd_catchment), crs)
......
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