R/bind_lonlat.R

Defines functions bind_lonlat

bind_lonlat <- function(files,name){
  nums <- which(str_detect(files, paste(name, sep = '')))
  data <- llply(nums, function(i){
    data <- nc3(file = files[i], varid = c('lon', 'lat'))
    data
  })
}
fengshy/sypaper documentation built on Jan. 25, 2024, 2:14 p.m.