Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

Releases: ropensci-archive/rbison

rbison v1.0.0

08 Jun 17:52
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • add explanation to bison_solr() docs on the start parameter for offsetting pagination results (#65)
  • vignette/readme figures location change within package (#66)

BUG FIXES

  • bison_stats() fixes: returned data structure had slightly changed, fixes for that; and add unit tests (#67)

rbison v0.8.0

03 May 20:26
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • update readme and vignette regarding relationship between GBIF and BISON (#63)
  • fix a test fixture that had non-ascii characters (#64)

rbison v0.7.0

25 Oct 16:05
Compare
Choose a tag to compare

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 the count parameter so that requests larger than 1000 are handled with a while loop until we get all the data requested (#58)
  • to simplify bison() the what 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 the bison() 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 importing data.table (#60)

BUG FIXES

  • fixed bug in bisonmap() that was causing a problem when a state was given in the bison() call that was passed to bisonmap(tomap = "county"); maps were not right, fixed now (#57) thanks @bomeara

rbison v0.6.0

11 Apr 05:31
Compare
Choose a tag to compare

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 in spocc) (#53)

MINOR IMPROVEMENTS

  • Added some missing parameters to bison_solr(), e.g., ITISscientificName, higherGeographyID, and countryCode. See ?bison_solr for details. (#54)
  • Updated docs for count parameter in bison(): default is now 25, and max is 500. Also, default for start set to 0, so we pass that by default now. We check to make sure count is not greater than 500 since the BISON API does not fail gracefully if it is greater than 500.

rbison v0.5.4

10 Apr 20:32
Compare
Choose a tag to compare

NEW FEATURES

  • now using crul http client instead of httr (#47)

MINOR IMPROVEMENTS

  • put readme images in tools/ dir as requested by CRAN (#48)
  • tidy docs and code to 80 line width (#49)
  • use markdown docs (#50)

rbison v0.5.0

05 Oct 04:21
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • Replace dplyr::rbind_all() with dplyr::bind_rows() (#39)
  • Base URLs changd for the BISON API (#34) (#43)
  • Fixed a URL in the docs (#44) thanks @esellers-usgs

BUG FIXES

  • Fixes for a new ggplot2 version in mapping function
    rbison::bisonmap() (#38)

rbison 0.4.8

01 Jul 22:45
Compare
Choose a tag to compare

MINOR IMPROVEMENTS

  • Now explicitly importing all non-base R package functions that ship with R, in this case from stats and methods packages (#36)
  • .Rbuildignore the vignettes/figure directory (#37)
  • Using @importFrom across all package imports.
  • The query parameter in bison_tax() is now required.
  • Startup message is gone.
  • Changed to new base URLs for BISON APIs.

v0.4.3

15 Oct 07:17
Compare
Choose a tag to compare

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 covers bison() 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 to httr::GET calls instead of through callopts, except in functions that interact with a SOLR engine, in which case ... is reserved for passing on additional SOLR parameters, and then callopts is still used.
  • No longer importing data.table, importing dplyr now, and assertthat
  • Changed to MIT license.
  • Changed to jsonlite from rjson for JSON parsing.
  • bison() loses parameter itis, as it only has one possible value; gains parameter params that accepts further parameters to modify the search; changed parameter callopts to ....
  • Add many examples of using the params parameter in the bison() function.
  • Changed parameter callopts to ... in bison_providers().
    Changed parameter callopts to ... in bison_tax().
  • In bison_solr(): BISONProviderID changed to providerID; BISONResourceID changed to resourceID; occurrence_date changed to eventDate; collector changed to recordedBy; gains parameters catalogNumber, ITIScommonName, kingdom, and verbose. Adde a bunch of examples.
  • Startup message contains reference to citation function.

v0.2.4

02 Dec 19:04
Compare
Choose a tag to compare

taxize 0.2.4

NEW FEATURES

  • Pushed first version to CRAN.