Skip to content

Releases: ropensci/rerddap

rerddap v0.7.4

05 Mar 22:37
4984db0
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • fix a broken test

rerddap v0.7.0

03 Nov 00:59
a9e66d5
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • vignettes only on package documentation site now (#87)
  • server() (to fetch known ERDDAP server URLs) now uses the list maintained by irishmarineinstitute/awesome-erddap on GitHub (#86)
  • better error handling for griddap(): if no dimension arguments passed, we error saying so (and no http requests made); in addition, if a dataset is passed to griddap(), to which the output of info() was also passed, then we can check if the dataset has griddap data or not, and fail saying so if not (#91)
  • griddap() and tabledap(): if info() output passed to these two funcitons, we will now use the url within that info output, and use a message telling the user we are doing so; now you don't have to set the url if you pass info output (#92)

rerddap v0.6.5

19 Jul 22:52
Compare
Choose a tag to compare

BUG FIXES

  • fix a convert_units test that was failing because remote service had changed the response

rerddap v0.6.4

01 Jul 19:27
Compare
Choose a tag to compare

BUG FIXES

  • fix to internal fxn err_handle() for handling http errors - ERDDAP servers changed to some weird JSON-ish type format (#85)

rerddap v0.6.0

08 May 00:17
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • change all tibble::as_data_frame/tibble::data_frame to tibble::as_tibble (#79)
  • info() gains new element in its output list, base_url, the base url for the ERDDAP server under consideration (#80)
  • improved docs for griddap() with respect to what's returned from the function (#81)
  • fix some test fixtures to use preserve exact bytes so that cran checks on debian clang devel don't fail (#83)
  • add .github files: contributing, issue template, pull request template

BUG FIXES

  • fix for lat/lon parsing within griddap() to account for cases when min and max are reversed from the order they should be in (#78)
  • fix to griddap() to parse additioanl dimensions returned; previously we were only returning time, lat, and lon, plus one more (#82) thanks @afredstonhermann

rerddap v0.5.0

01 Feb 22:45
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • added new Caching section to package level manual file (?rerddap) about caching (#52)
  • use markdown docs in package (#75)
  • replace httr with crul (#54)
  • cache most tests with HTTP requests using vcr (#76)
  • add test for read parameter in griddap() (#47)
  • use default url via eurl(); used as default in main functions; set default url with env vars, see ?eurl (#41)
  • improve handling and reporting back to user of ERDDAP server errors (#70) (#73)
  • change to griddap(): when nc format gridded datasets have latitude and longitude we "melt" them into a data.frame for easy downstream consumption. When nc format gridded datasets do not have latitude and longitude components, we do not read in the data, throw a warning saying so. You can readin the nc file yourself with the file path (#74)
  • for for griddap() to support cases in wihch lat/lon runs north to south and south to north (#68)

BUG FIXES

  • memory() usage in griddap() wasn't working. fixed now (#77)

rerddap v0.4.2

11 May 17:57
Compare
Choose a tag to compare

NEW FEATURES

  • Now using hoardr to manage caching paths and such (#60). Also
    now asking users where they want to cache files, either in a
    rappdirs user cache dir or a temp directory. Now on tests and examples
    we use temp dirs.
  • Related to above, new functions cache_info() to get cache path and
    number of cached files, and cache_setup() to set cache path.
  • Related to above, cache_details(), cache_list(), and cache_delete()
    lose their cache_path parameter - now cache path is set package wide and
    we use the same cache path, so no need to set in the fxn call.

MINOR IMPROVEMENTS

  • Fixes to a number of griddap() and tabledap() examples to use
    datasets that still exist (previous examples used datasets that are no
    gone)

rerddap v0.4.0

25 Apr 23:26
Compare
Choose a tag to compare

NEW FEATURES

  • New vignette added that goes in to much more depth than
    the original vignette (#51) thx to @rmendels
  • info() function gains new attribute url with the
    base url for the ERDDAP server used (#42)
  • Replaced usage of internal compact data.frame code to
    use tibble package (#45)

MINOR IMPROVEMENTS

  • Added another ERDDAP server to servers() function (#49)
  • Changed base URLs for default ERDDAP server from http
    to https (#50)
  • Added note to docs for griddap() and tabledap() for how
    to best deal with 500 server errors (#48)
  • Replaced all dplyr::rbind_all uses with dplyr::bind_rows (#46)

rerddap v0.3.4

14 Jan 16:42
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • Removed use of ncdf package, which has been taken off CRAN.
    Using ncdf4 now for all NetCDF file manipulation. (#35)
  • Failing better now with custom error catching (#31)
  • Added many internal checks for parameter inputs, warning or
    stopping as necessary - ERDDAP servers silently drop with no
    informative messages (#32)

BUG FIXES

  • Using now file.info()$size instead of file.size() to be
    backwards compatible with R versions < 3.2

rerddap v0.3.0

09 Oct 16:40
Compare
Choose a tag to compare

NEW FEATURES

  • Cache functions accept the outputs of griddap() and tabledap()
    so that the user can easily see cache details or delete the file from
    the cache without having to manually get the file name. (#30)

MINOR IMPROVEMENTS

  • All package dependencies now use importFrom so we only import
    functions we need instead of their global namespaces.

BUG FIXES

  • Fixed bug in parsing data from netcdf files, affected the
    griddap() function (#28)