Skip to content

Commit

Permalink
change F to FALSE and T to TRUE
Browse files Browse the repository at this point in the history
  • Loading branch information
tghoward committed Nov 12, 2019
1 parent 026ef63 commit 03c12c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 1_pointsInPolys_cleanBkgPts.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 03c12c6

Please sign in to comment.