Releases: ropensci/rerddap
Releases · ropensci/rerddap
rerddap v0.7.4
MINOR IMPROVEMENTS
- fix a broken test
rerddap v0.7.0
MINOR IMPROVEMENTS
- vignettes only on package documentation site now (#87)
server()
(to fetch known ERDDAP server URLs) now uses the list maintained byirishmarineinstitute/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 togriddap()
, to which the output ofinfo()
was also passed, then we can check if the dataset has griddap data or not, and fail saying so if not (#91) griddap()
andtabledap()
: ifinfo()
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
BUG FIXES
- fix a
convert_units
test that was failing because remote service had changed the response
rerddap v0.6.4
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
MINOR IMPROVEMENTS
- change all
tibble::as_data_frame
/tibble::data_frame
totibble::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
rerddap v0.5.0
MINOR IMPROVEMENTS
- added new
Caching
section to package level manual file (?rerddap
) about caching (#52) - use markdown docs in package (#75)
- replace
httr
withcrul
(#54) - cache most tests with HTTP requests using
vcr
(#76) - add test for
read
parameter ingriddap()
(#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 ingriddap()
wasn't working. fixed now (#77)
rerddap v0.4.2
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, andcache_setup()
to set cache path. - Related to above,
cache_details()
,cache_list()
, andcache_delete()
lose theircache_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()
andtabledap()
examples to use
datasets that still exist (previous examples used datasets that are no
gone)
rerddap v0.4.0
NEW FEATURES
- New vignette added that goes in to much more depth than
the original vignette (#51) thx to @rmendels info()
function gains new attributeurl
with the
base url for the ERDDAP server used (#42)- Replaced usage of internal compact data.frame code to
usetibble
package (#45)
MINOR IMPROVEMENTS
rerddap v0.3.4
MINOR IMPROVEMENTS
- Removed use of
ncdf
package, which has been taken off CRAN.
Usingncdf4
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 offile.size()
to be
backwards compatible with R versions < 3.2
rerddap v0.3.0
NEW FEATURES
- Cache functions accept the outputs of
griddap()
andtabledap()
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)