Write LiPD data onto disk as LiPD files

writeLipd(
  D,
  path = NULL,
  ignore.warnings = FALSE,
  removeNamesFromLists = FALSE,
  jsonOnly = FALSE
)

Arguments

D

LiPD datasets list

path

Destination path char

jsonOnly

Write data to jsonld only? The data will be included and the json file might be large (Typically only used for web connections)

Value

none

Author

Chris Heiser

Examples

if (FALSE) { # \dontrun{
# write - without path argument
writeLipd(D)

# write - with path argument
writeLipd(D, "/Users/bobsmith/Desktop/lipd_files")
} # }