pfrater / arcpullr

21 stars 9 forks source link

remove rgdal #14

Open mdsumner opened 1 year ago

mdsumner commented 1 year ago

I did a search for any functions used from rgdal and can't find any. I think you can just drop the import.

to check this I did

xseek <- lsf.str("package:rgdal")

allcode <- unlist(lapply(fs::dir_ls("R", regexp = "\\.R$"), readLines))
for (i in seq_along(xseek)) {
  if (any(grepl(xseek[i], allcode))) {
    print(xseek[i])
  }

}

the only thing printed out is "project", but that's just in the code not using the rgdal package