Skip to content

Commit

Permalink
Changes for CRAN compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
bpbond committed Oct 15, 2014
1 parent 64f0366 commit b9d1654
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: RCMIP5
Title: Tools for manipulating and summarizing CMIP5 data
Title: Tools for Manipulating and Summarizing CMIP5 Data
Description: Working with CMIP5 data can be tricky, forcing scientists to write
custom scripts and programs. The `RCMIP5` package aims to ease this
process, providing a standard, robust, and high-performance set of scripts
Expand Down
2 changes: 1 addition & 1 deletion R/RCMIP5.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#' Exploration, manipulation, and summarizing of CMIP5 data
#' Tools for Manipulating and Summarizing CMIP5 Data
#'
#' Working with CMIP5 data can be tricky, forcing scientists to
#' write custom scripts and programs. The `RCMIP5` package aims
Expand Down
2 changes: 2 additions & 0 deletions R/checkTimePeriod.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
#' @note Unfortunately it's impossible to automatically check the time signature for
#' sub-monthly frequencies quickly without opening the netcdf file.
#' @examples
#' \dontrun{
#' checkTimePeriod(getFileInfo())
#' }
#' @seealso \code{\link{getFileInfo}}
#' @export
checkTimePeriod <- function(fileInfo_df) {
Expand Down
2 changes: 1 addition & 1 deletion R/worldPlot.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ worldPlot <- function(x, time=1, splitPacific=TRUE, capMinMax=TRUE, verbose=FALS
# Plot
value <- 1 # this is here only to avoid a CRAN warning (no visible binding inside geom_raster)
p <- ggplot2::ggplot(val_df, ggplot2::aes(lon, lat))
p <- p + ggplot2::geom_raster(aes(fill=value))
p <- p + ggplot2::geom_raster(ggplot2::aes(fill=value))
p <- p + ggplot2::scale_x_continuous(expand=c(0,0))
p <- p + ggplot2::scale_y_continuous(expand=c(0,0))
p <- p + ggplot2::scale_fill_gradientn(colours=rainbow(4))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RCMIP5
RCMIP5: Tools for Manipulating and Summarizing CMIP5 Data
=======

This package provides R functions for exploring, manipulating, and summarizing model outputs from the Coupled Model Intercomparison Project Phase 5 (CMIP5).
Expand Down

0 comments on commit b9d1654

Please sign in to comment.