This repository has been archived by the owner on May 10, 2022. It is now read-only.
Releases: ropensci-archive/rbison
Releases · ropensci-archive/rbison
rbison v1.0.0
rbison v0.8.0
rbison v0.7.0
NEW FEATURES
bison()
pagination: previous max as far as we knew was 500 per a single request, but apparently is now 1000. In addition, we no loop internally over thecount
parameter so that requests larger than 1000 are handled with awhile
loop until we get all the data requested (#58)- to simplify
bison()
thewhat
parameter is defunct/removed. It let the user pick what part of the results they wanted, but it is super simple to do this once the data is returned. (#59)
MINOR IMPROVEMENTS
- clean up description of USGS BISON in README (#56) thanks @esellers-usgs
- tests now caching HTTP requests via
vcr
(#61) - changed internal processing of the occurrence records output in the
points
slot of thebison()
function. previously we were filtering the records to only those with lat and lon values. now we return all. this means some records may not have lat/lon data, and may have other missing data. along with this, now importingdata.table
(#60)
BUG FIXES
rbison v0.6.0
NEW FEATURES
rbison::bison_solr
now supports range queries for certain parameters. It doesn't make sense to do a range query for a character string parameter (e.g., range between Asteraceae and Juncaceae), but you can do them for any parameters that are numeric/integer/date. See examples in?bison_solr
. (this was added originally to facilitate date based searching inspocc
) (#53)
MINOR IMPROVEMENTS
- Added some missing parameters to
bison_solr()
, e.g.,ITISscientificName
,higherGeographyID
, andcountryCode
. See?bison_solr
for details. (#54) - Updated docs for
count
parameter inbison()
: default is now 25, and max is 500. Also, default forstart
set to 0, so we pass that by default now. We check to make surecount
is not greater than 500 since the BISON API does not fail gracefully if it is greater than 500.
rbison v0.5.4
rbison v0.5.0
rbison 0.4.8
MINOR IMPROVEMENTS
- Now explicitly importing all non-base R package functions that ship with R, in this case from
stats
andmethods
packages (#36) .Rbuildignore
thevignettes/figure
directory (#37)- Using
@importFrom
across all package imports. - The
query
parameter inbison_tax()
is now required. - Startup message is gone.
- Changed to new base URLs for BISON APIs.
v0.4.3
NEW FEATURES
- New function
bison_stats()
to query the statistics about BISON downloads. - New function
citation_datause()
to get information on data use rules, and citation for using BISON data. - New vignette other_functions that goes over the other functions in
rbison
. The main vignette coversbison()
only.
BUG FIXES
- Changed output of all data to have
stringsAsFactors=FALSE
.
MINOR IMPROVEMENTS
- Changed all
callopts
parameters to...
, so you can pass in named options tohttr::GET
calls instead of throughcallopts
, except in functions that interact with a SOLR engine, in which case...
is reserved for passing on additional SOLR parameters, and thencallopts
is still used. - No longer importing
data.table
, importingdplyr
now, andassertthat
- Changed to MIT license.
- Changed to
jsonlite
fromrjson
for JSON parsing. bison()
loses parameteritis
, as it only has one possible value; gains parameterparams
that accepts further parameters to modify the search; changed parametercallopts
to...
.- Add many examples of using the
params
parameter in thebison()
function. - Changed parameter
callopts
to...
inbison_providers()
.
Changed parametercallopts
to...
inbison_tax()
. - In
bison_solr()
:BISONProviderID
changed toproviderID
;BISONResourceID
changed toresourceID
;occurrence_date
changed toeventDate
;collector
changed torecordedBy
; gains parameterscatalogNumber
,ITIScommonName
,kingdom
, andverbose
. Adde a bunch of examples. - Startup message contains reference to citation function.