parseTimeseries: parse timeseries file into R environment

View source: R/util-parseTimeseries.R

parseTimeseriesR Documentation

parse timeseries file into R environment

Description

a function for loading data into R from a file (or URL) from a completed processing request

Usage

parseTimeseries(file, delim, with.units = FALSE)

Arguments

file

a geojob timeseries processing result file location (See download).

delim

the file delimiter

with.units

boolean for including a units column in returned data.frame (default = FALSE)

Value

a data.frame of timeseries values.

Author(s)

Luke A. Winslow, Jordan S. Read

See Also

check, download, parseCategorical

Examples

local_file <- system.file('extdata','tsv_linear_ring.tsv', package = 'geoknife')
output <- parseTimeseries(local_file, delim = '\t')

geoknife documentation built on July 9, 2023, 5:31 p.m.