R/readLU.R

Defines functions readLU

### read land-use data: This is a wrapper function for the different read functions
# specify which years to read
# specify whether it should interpolate for all years that are missing; a function is needed that does this



readLU <- function(dataset=NULL, type=NULL, file=NULL, years=NULL) {
  
  # if no dataset is specified that the default configutarion from config.cfg
  if (is.null(dataset)) {dataset <- geodata$default$dataset} # this is not existing yet
  
  # if there is no file specified than read the one that is specified in the config
  file <- NULL
  
  
    
}
pik-piam/geodata documentation built on Nov. 5, 2019, 12:21 a.m.