R/rpsg_importfromtext.R

Defines functions rpsg_importfromtext

Documented in rpsg_importfromtext

rpsg_importfromtext <- function(path_tofiles, rpsg_suppress.Messages = FALSE)
{
  if (!is.character(path_tofiles)) {
    stop("path_tofiles expected as string")
    return (FALSE)
  }
  if (!file.exists(path_tofiles)) {
    stop(paste(path_tofiles, "not exist", sep=" "))
    return (FALSE)
  }
  loutput<-.Call("crpsg_importfromtext", path_tofiles, rpsg_suppress.Messages)
  return (loutput)
}

Try the PSGExpress package in your browser

Any scripts or data that you put into this service are public.

PSGExpress documentation built on July 26, 2019, 5:02 p.m.