Learn R Programming

geoknife (version 1.6.11)

geojob: create geojob object

Description

A class representing a geoknife job (geojob).

Usage

geojob(xml, ...)

# S4 method for missing geojob(xml, ...)

# S4 method for xml_document geojob(xml, ...)

# S4 method for character geojob(xml, ...)

xml(.Object) <- value

xml(.Object)

id(.Object) id(.Object) <- value

id(.Object)

# S4 method for geojob id(.Object) <- value

# S4 method for geojob id(.Object)

# S4 method for character id(.Object)

Value

the geojob object

Arguments

xml

location of xml (URL or local path)

...

additional arguments passed to initialize method

.Object

a geojob object

value

a character string of xml

Author

Jordan S Read

Examples

Run this code
xml <- "  text   "
gj <- geojob()
xml(gj) <- xml
xml(gj)
xml <- "  text   "
gj <- geojob(xml = xml)
xml(gj)
id(gj)

Run the code above in your browser using DataLab