Skip to content

Commit

Permalink
Update internal function name
Browse files Browse the repository at this point in the history
  • Loading branch information
jbedia committed Jul 17, 2018
1 parent fcccbb0 commit 656c4df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Suggests:
loadeR,
knitr
Type: Package
Title: Visualizing and Communicating Uncertainty in Seasonal Climate Prediction
Title: Visualizing climate4R data and Communicating Uncertainty in Seasonal Climate Prediction
Version: 1.2.1
Date: 2018-07-12
Date: 2018-07-17
Authors@R: as.person(c(
"Santander Meteorology Group <http://meteo.unican.es> [cph]",
"Maria Dolores Frías <[email protected]> [aut, cre]",
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ importFrom(transformeR,array3Dto2Dmat)
importFrom(transformeR,bindGrid)
importFrom(transformeR,checkDim)
importFrom(transformeR,checkSeason)
importFrom(transformeR,checkTemporalConsistency)
importFrom(transformeR,climatology)
importFrom(transformeR,detrendGrid)
importFrom(transformeR,draw.world.lines)
Expand Down
4 changes: 2 additions & 2 deletions R/climagram.R
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
#' @author J. Bedia
#'
#' @family visualization functions
#' @importFrom transformeR subsetGrid checkDim checkSeason aggregateGrid detrendGrid getYearsAsINDEX getTimeResolution scaleGrid getSeason getGridUnits
#' @importFrom transformeR subsetGrid checkDim checkSeason aggregateGrid detrendGrid getYearsAsINDEX getTimeResolution scaleGrid getSeason getGridUnits checkTemporalConsistency
#' @importFrom stats filter median
#' @importFrom graphics plot axis grid boxplot box legend
#' @importFrom magrittr %>% extract2 %<>%
Expand Down Expand Up @@ -173,7 +173,7 @@ climagram <- function(hindcast,
checkSeason(hindcast, forecast)
}
if (!is.null(obs)) {
temporalCheck(hindcast, obs)
checkTemporalConsistency(hindcast, obs)
transformeR::checkDim(hindcast, obs, dimensions = c("time", "lat", "lon"))
} else {
if (add.eqc.info) add.eqc.info <- FALSE
Expand Down

0 comments on commit 656c4df

Please sign in to comment.