| orderly_location_list | R Documentation |
List known locations. The special name local will always be
present within the output from this function (this is packets
known at the current root), though you will typically be
interested in other locations.
orderly_location_list(verbose = FALSE, root = NULL)
verbose |
Logical, indicating if we should return a data.frame that includes more information about the location. |
root |
The path to the root directory, or |
Depending on the value of verbose:
verbose = FALSE: A character vector of location names. This is the
default behaviour.
verbose = TRUE: A data.frame with columns name, type and
args. The args column is a list column, with each element
being the key-value pair arguments to the location.
orderly_location_fetch_metadata(), which can
update your outpack index with metadata from any of the
locations listed here.
# Two roots, one local and one representing some remote orderly location:
local <- orderly_example()
remote <- orderly_example()
# No locations at first
orderly_location_list(root = local)
# Add a location
orderly_location_add_path("remote", remote, root = local)
# Here it is!
orderly_location_list(root = local)
# Add vebose = TRUE to find more about the location
orderly_location_list(root = local)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.