From 03c12c6011c81b909437c6c7386c225288aeb24e Mon Sep 17 00:00:00 2001 From: Tim Howard Date: Tue, 12 Nov 2019 11:15:58 -0500 Subject: [PATCH] change F to FALSE and T to TRUE --- 1_pointsInPolys_cleanBkgPts.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1_pointsInPolys_cleanBkgPts.R b/1_pointsInPolys_cleanBkgPts.R index dfe6d2a..3a83d0e 100644 --- a/1_pointsInPolys_cleanBkgPts.R +++ b/1_pointsInPolys_cleanBkgPts.R @@ -21,14 +21,14 @@ library(dplyr) setwd(loc_model) # set up folder system for inputs -dir.create(paste0(model_species,"/inputs/presence"), recursive = T, showWarnings = F) -dir.create(paste0(model_species,"/inputs/model_input"), showWarnings = F) +dir.create(paste0(model_species,"/inputs/presence"), recursive = TRUE, showWarnings = FALSE) +dir.create(paste0(model_species,"/inputs/model_input"), showWarnings = FALSE) # setwd(paste0(loc_model,"/",model_species,"/inputs/presence")) # changing to this WD temporarily allows for presence file to be either in presence folder or specified with full path name # load data, QC ---- -presPolys <- st_zm(st_read(nm_presFile, quiet = T)) +presPolys <- st_zm(st_read(nm_presFile, quiet = TRUE)) #check for proper column names. If no error from next code block, then good to go #presPolys$RA <- presPolys$SFRACalc