Learn R Programming

geoknife (version 1.6.11)

result: parse process output into R environment

Description

a geojob method for loading data into R from a completed processing request

Usage

result(.Object, ...)

# S4 method for geojob result(.Object, ...)

# S4 method for character result(.Object, ...)

Value

data.frame of timeseries values.

Arguments

.Object

a geojob object with a successful processID, or a character URL of a completed job. (See check).

...

additional arguments passed to parsers (e.g., with.units = TRUE)

Author

Jordan S. Read

Examples

Run this code
if (FALSE) {
job <- geoknife(stencil = c(-89,42), fabric = 'prism', wait = TRUE)
result(job, with.units = TRUE) # load and print output

# or use the job id:
id <- id(job)
result(id, with.units = TRUE) # load and print output
}

Run the code above in your browser using DataLab