Skip to content

Commit bbc7daa

Browse files
author
Adam H. Sparks
committed
address CRAN check issues and increment version number
1 parent 6a025de commit bbc7daa

10 files changed

+33
-33
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: getCRUCLdata
33
Title: 'CRU' 'CL' v. 2.0 Climatology Client
4-
Version: 1.0.0
4+
Version: 1.0.1
55
Authors@R:
66
person("Adam H.", "Sparks", , "[email protected]", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0002-0061-8359"))

R/create_CRU_df.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#' Create a data of climatology variables from local disk files
1+
#' Create a data.table of Climatology Variables From Local Disk Files
22
#'
33
#' Automates importing \acronym{CRU} \acronym{CL} v.2.0 climatology
44
#' data and creates a tidy data frame of the data. If requested, minimum and

R/create_CRU_stack.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#' Create a list of terra rast objects from local disk files
1+
#' Create a List of terra rast Objects From Local Disk Files
22
#'
33
#' Automates importing \acronym{CRU} \acronym{CL} v.2.0 climatology
44
#' data and creates a [terra()] [terra::rast()] of the

R/get_CRU_df.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
#' Download and create a data frame of climatology parameters
1+
#' Download and Dreate a data.table of Climatology Parameters
22
#'
33
#' This function automates downloading and importing \acronym{CRU}
4-
#' \acronym{CL} v. 2.0 climatology data and creates a data frame of the data.
5-
#' If requested, minimum and maximum temperature may also be automatically
6-
#' calculated as described in the data readme.txt file. Data may be cached for
7-
#' later use by this function, saving time downloading files in future use of
8-
#' the function.
4+
#' \acronym{CL} v. 2.0 climatology data and creates a \CRANpkg{data.table} of
5+
#' the data. If requested, minimum and maximum temperature may also be
6+
#' automatically calculated as described in the data readme.txt file. Data may
7+
#' be cached for later use by this function, saving time downloading files in
8+
#' future use of this function.
99
#'
1010
#' @section Nomenclature and Units:
1111
#' \describe{

R/get_CRU_stack.R

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
#' Download and create a list of terra rast objects of climatology parameters
1+
#' Download and Create a List of terra rast Objects of Climatology Parameters
22
#'
33
#' This function automates downloading and importing CRU CL v. 2.0
4-
#' climatology data into \R and creates a list of [terra()]
5-
#' [terra::rast()] of the data. If requested, minimum and maximum
6-
#' temperature may also be automatically calculated as described in the data
7-
#' readme.txt file. Data may be cached for later use by this function, saving
8-
#' time downloading files in future use of the function.
4+
#' climatology data into \R and creates a list of \CRANpkg{terra}
5+
#' [terra::rast()] objects of the data. If requested, minimum and maximum
6+
#' temperature may also be automatically calculated as described in the data
7+
#' readme.txt file. Data may be cached for later use by this function, saving
8+
#' time downloading files in future using this function.
99
#'
1010
#' @inheritSection get_CRU_df Nomenclature and Units
1111
#' @inheritParams get_CRU_df
1212
#' @examplesIf interactive()
1313
#'
14-
#' # Download data and create a [terra()] [terra::rast()]
14+
#' # Download data and create a {terra} `rast`
1515
#' # object of precipitation and temperature without caching the data files
1616
#' CRU_pre_tmp <- get_CRU_stack(pre = TRUE, tmp = TRUE)
1717
#'
@@ -22,7 +22,7 @@
2222
#' [create_CRU_stack()]
2323
#' [manage_cache()]
2424
#'
25-
#' @return A [base::list()] of \CRANpkg{terra} [terra::rast()] objects of CRU CL
25+
#' @return A [base::list()] of \CRANpkg{terra} [terra::rast] objects of CRU CL
2626
#' v. 2.0 climatology elements
2727
#'
2828
#' @author Adam H. Sparks, \email{adamhsparks@@gmail.com}

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"codeRepository": "https://github.com/ropensci/getCRUCLdata",
88
"issueTracker": "https://github.com/ropensci/getCRUCLdata/issues",
99
"license": "https://spdx.org/licenses/MIT",
10-
"version": "1.0.0",
10+
"version": "1.0.1",
1111
"programmingLanguage": {
1212
"@type": "ComputerLanguage",
1313
"name": "R",
@@ -243,7 +243,7 @@
243243
"applicationCategory": "Tools",
244244
"isPartOf": "https://ropensci.org",
245245
"keywords": ["anglia-cru", "climate-data", "cru-cl2", "temperature", "rainfall", "elevation", "data-access", "wind", "relative-humidity", "solar-radiation", "diurnal-temperature", "frost", "cru", "r", "rstats", "r-package", "peer-reviewed"],
246-
"fileSize": "800.015KB",
246+
"fileSize": "800.034KB",
247247
"citation": [
248248
{
249249
"@type": "ScholarlyArticle",

man/create_CRU_df.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/create_CRU_stack.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/get_CRU_df.Rd

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/get_CRU_stack.Rd

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)