Recent Releases of getCRUCLdata

getCRUCLdata - Pasta Salad

Back on CRAN!

Minor changes

  • Add source and references to documentation for data

  • Create function aliases that use all lower case, e.g., get_cru_stack() vs get_CRU_stack()

  • Improved documentation with linting, ensuring consistency in units of measurement, etc.

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks 3 months ago

getCRUCLdata - Chickpea Chorizo Spinach Frittata

Minor changes

  • Reknit vignette with proper values

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks 5 months ago

getCRUCLdata - Cucumber Salad

Minor changes

  • Fix CITATION to align with current CRAN standards

  • Update URLs to ensure all are valid

  • Correct grammar in several parts of documentation and README

Bug fixes

  • Fix cross references in documentation

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks 5 months ago

getCRUCLdata - Lychee Curry

getCRUCLdata 1.0.0

Major changes

  • The cache is now where ever tools::R_user_dir(package = "getCRUCLdata", which = "cache") is defined by R (>= 4.0.0) and should align with CRAN standards, so it might be possible to get this back on CRAN

  • Depends on R (>= 4.0.0)

  • {data.table} is no longer imported as a whole

Minor changes

  • {cli} is used for errors that are emitted to the user

  • Many internal changes including code linting and styling to improve code smells

  • Improved documentation

  • Use {roxyglobals} for undefined globals

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks 5 months ago

getCRUCLdata - Chicken Pot Pie

Minor changes

  • Replace raster package with terra

  • Update URLs

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 2 years ago

getCRUCLdata - Roasted chook

getCRUCLdata 0.3.2

Minor changes

  • Correct link redirects in README

  • Correct formatting in documentation

  • Precompile main vignette

  • Add second vignette to illustrate advanced usage

  • Remove {pkgdown} from Suggests

  • Move CI to GitHub Actions

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 4 years ago

getCRUCLdata - Ramen

Minor changes

  • Remove Imports for dplyr, tibble and tidyr to lessen dependencies

  • Remove Suggests for readr and sp

  • Enhance documentation

Bug fixes

  • Update tests that spuriously failed on some systems due to tolerances

  • Update package to follow CRAN policies

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks about 6 years ago

getCRUCLdata - Egg sandwich

  • Removes startup message, instead placing information in CITATION file

  • Reorganises internal functions consolidating functions all in a single file and following a standard naming scheme for all internal functions

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 6 years ago

getCRUCLdata - Banana pudding

Bug fixes

Minor changes

  • Fix documentation formatting issues

  • Enhance stop messages for user, just print message, not the function that
    called it to clarify

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks almost 7 years ago

getCRUCLdata - Poached Eggs

getCRUCLdata 0.2.3

Bug fixes

  • Fix missing import for rappdirs

Minor changes

  • Remove the use of plyr in tests

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks almost 7 years ago

getCRUCLdata - Fried Tofu

getCRUCLdata 0.2.0 (16/11/2017)

Major changes

  • Use hoardr for managing cached files

  • Fixed a bug where the file cache was not in the proper subdirectory. The file
    cache has moved to the proper location in a R/getCRUCLdata location rather
    than getCRUCLdata. You may wish to move files externally to R in order to keep
    them in the cache where the package will find them

  • Use lapply in place of purrr::map, purrr is no longer imported

Minor changes

  • Correct documentation where examples pointed to a non-existent list

Deprecated functions

CRU_cache_list() now superceded bymanage_cache$list()
CRU_cache_details() now superceded by manage_cache$details()
CRU_cache_delete() now superceded by manage_cache$delete()
CRU_cache_delete_all() now superceded by manage_cache$delete_all()

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 7 years ago

getCRUCLdata - Sumai

getCRUCLdata 0.1.10

Major changes

  • Add startup message regarding data source, use and citation

  • Include Scott Chamberlain as copyright holder and contributor for file
    caching functionality

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 7 years ago

getCRUCLdata - Dumplings

Bug Fixes

  • Fix bug where cache was not specified in internal function, .set_cache(),
    this caused either of the functions fetching data from CRU to fail

  • Fix bug where cache directory could not be created on Windows OS machines

  • Fix bug where tmx was returned when either tmn or tmx was requested for
    data frame, tmn now returned when requested and tmx now returned when requested.
    Raster stacks were not affected by this bug

Minor Changes

  • Replaced for f in 1:length() with for f in seq_along() for better
    programming practices

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks almost 8 years ago

getCRUCLdata - Shepherds Pie

getCRUCLdata 0.1.7

Minor Changes

  • Use file.path in place of paste0

  • ccafs is now Suggested

Bug fixes

  • Fix bug where rappdirs::user_config_dir() was incorrectly used in place of
    rappdirs::user_cache_dir()

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks almost 8 years ago

getCRUCLdata - Black bean soup

getCRUCLdata 0.1.6

Minor Changes

  • Use purrr in place of plyr functions

  • Update DESCRIPTION file to be more complete

  • Remove use of "%>%" in functions and remove magrittr import

Bug fixes

  • Fix bugs in CITATION file

  • Format NEWS.md to be more markdown standards compliant

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks almost 8 years ago

getCRUCLdata - Buffalo Wings

getCRUCLdata 0.1.5

Major Changes

  • create_CRU_stack() and create_CRU_df() now only work with locally available files. If you need to fetch and create a data frame or raster stack of the data, please use the new functions, get_CRU_stack() and get_CRU_stack()
  • R >=3.2.0 now required
  • Data can be cached using either get_CRU_stack() or get_CRU_df() for later use

Minor Changes

  • Improved documentation with examples on mapping and graphing and more detail regarding the data itself
  • Change the method in which files are downloaded to use httr::GET()
  • Ingest data using data.table::fread to decrease the amount of time necessary to run the functions
  • Functions check to see if data file(s) have already been downloaded during current R session, if so data file(s) are not requested for download again
  • Months are returned as a factor object in the tidy data frame

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks about 8 years ago

getCRUCLdata - Pulled Pork

Major Changes

  • create_CRU_stack() and create_CRU_df() now only work with locally available files. If you need to fetch and create a data frame or raster stack of the data, please use the new functions, get_CRU_stack() and create_CRU_stack()
  • R >=3.2.0 now required

Minor Changes

  • Improved documentation with examples on mapping and graphing and more detail regarding the data itself
  • Change the method in which files are downloaded to use httr::GET()
  • Ingest data using data.table::fread to decrease the amount of time necessary to run the functions
  • Functions check to see if data file(s) have already been downloaded during current R session, if so data file(s) are not requested for download again
  • Months are returned as a factor object in the tidy data frame

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks about 8 years ago

getCRUCLdata - ribs

Enhanced documentation

Submission to ROpenSci for review

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 8 years ago

getCRUCLdata - chicken

Minor Changes

  • Correct documentation to read that the data resolution is 10 minute, not 10 seconds
  • Correct URLs in DESCRIPTION file
  • Add required version for PURRR
  • Add required version for R
  • Corrected URL pointing to CRU readme.txt file

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 8 years ago

getCRUCLdata - brisket

Fully functional and documented. No changes past this release are anticipated.

Climate Change - Climate Data Processing and Analysis - R
Published by adamhsparks over 8 years ago