Package with utilities for building vizlab pages
The most recent versions of vizlab
require the remake
package. The devtools
package (available on CRAN) is needed to install:
devtools::install_github("richfitz/remake")
The most cutting edge version of the package can be installed also with the devtools
package:
devtools::install_github("USGS-VIZLAB/vizlab")
It's often preferred to use a tagged release. For instance, if the current tagged release is "v0.3.1.0", you could install like this:
devtools::install_github("USGS-VIZLAB/vizlab", ref = "v0.3.1.0")
Some packages are only suggested and will need to be installed manually to open up that functionality. One example is sbtools
which can be used if project data is stored on sciencebase.
To setup a new project, use the following functions. createProfile
creates a profile.yaml
which is necessary to run make, initializeVizRepo
creates a GitHub repo on the specified organization ("USGS-VIZLAB" by default) with common issues, vizSkeleton
creates the necessary directories for this project, and createMakefiles
will setup all the makefiles. createProfile
only needs to happen once (the file should not be stored in your project directory, but in some home directory instead). createMakefiles
only needs to happen once per project. Then you can use make
at the command line to run the whole process.
library(vizlab)
#optional, profile.yaml only needs to exist in one place on your computer
createProfile()
# to create and initialize the GitHub repository (includes standard issues)
initializeVizRepo(repo_name="myFirstViz", description="This is the GitHub repo for my first viz.")
# to setup each project
vizSkeleton(name="my awesome viz")
createMakefiles()
To specify your own mimetypes (or override defaults), create a .yaml
to specify the mimetype and it's corresponding reader, publisher, or resource (see inst/mimetypes.default.yaml for example structure). Then add the filename to your viz.yaml
file under info with the name mimetypeDictionary
.
This software is in the public domain because it contains materials that originally came from the U.S. Geological Survey, an agency of the United States Department of Interior. For more information, see the official USGS copyright policy at http://www.usgs.gov/visual-id/credit_usgs.html#copyright
This information is preliminary or provisional and is subject to revision. It is being provided to meet the need for timely best science. The information has not received final approval by the U.S. Geological Survey (USGS) and is provided on the condition that neither the USGS nor the U.S. Government shall be held liable for any damages resulting from the authorized or unauthorized use of the information. Although this software program has been used by the USGS, no warranty, expressed or implied, is made by the USGS or the U.S. Government as to the accuracy and functioning of the program and related program material nor shall the fact of distribution constitute any such warranty, and no responsibility is assumed by the USGS in connection therewith.
This software is provided "AS IS."