tbl_to_rise_json: Convert a tbl_df to the RISE json format

Description Usage Arguments Details Value Examples

View source: R/tbl_to_rise_json.R

Description

tbl_to_rise_json() converts a tbl_df to the RISE json format.

Usage

1

Arguments

tbl

A tbl_df with all required columns (objects for the RISE json file).

Details

The RISE json format is a specific json format that (1) has one complete object per row and (2) does not include any arrays. Each object on a row contains 16 required object-value pairs. The provided tbl should have column names that match the required json objects (see rise_json_req_obj) and the package GitHub site README. The function will error if this is not the case. It is probably best to create the tbl using rwtbl_add_rise_vars(), but it is possible it could be created some other way.

Value

Invisibly returns data in RISE json format, currently just a character vector of length == 1.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
ifile <- system.file(
  'extdata/Scenario/ISM1988_2014,2007Dems,IG,Most',
  "KeySlots.rdf",
 package = "RWDataPlyr"
)

# get the tbl using RWDataPlyr
rwtbl <- RWDataPlyr::rdf_to_rwtbl2(
  ifile,
  scenario = "test",
  keep_cols = rwtbl_cols_for_rise
)

# manually specify some parameters:
ui_vars <- list(
  sourceCode = "CRSS-TestData",
  modelNameSourceCode = "CRSS",
  status = "Finalized Dec. 2012. To RISE v0.0.1",
  modelRunDescription = "desc"
)

# get the rest of the parameters automatically
rise_tbl <- rwtbl_add_rise_vars(rwtbl, ui_vars)

# and then convert to the RISE json format
rise_json <- tbl_to_rise_json(rise_tbl)

BoulderCodeHub/rdf2rise documentation built on Nov. 22, 2019, 5:29 p.m.