- bump minimum R version to 4.2.0
- dropped httr in favour of httr2
- fix bug where
download_hydat()
fails iftempdir()
is on a different device thanhydat_path
(@mpdavison, #192) - fix bug where
download_hydat()
wasn't checking alternative paths for success (@Travis-Simmons)
- Add
...
to print methods so you can pass arguments all the way down. - Add workaround for vroom#519 bug that prevents
realtime_*
functions from working realtime_ws
now returns theApproval/Approbation
column as a character vector rather than a integer. ECCC is now putting non-integers in that column so this is a less strict formatting solution.
- Add capability to access ECCC webservice. The return of
realtime_ws
!
- drop
.data
pronoun throughout - fixed failing CRAN test
- fix bug where hydat folder was not being created
- new
hy_remote
function which looks to see what version is available from ECCC (#183) - Improved logic to download HYDAT even if there is some clutter present (@gdelaplante #180)
- Updated to work with coming changes to dbplyr (#179)
- Use testthat 3rd edition and update a bunch of tests
- Make tinyhydat even tinier to remove R CMD check note
- fixed CRAN document issue
- fixed bug created by HYDAT database name (#175)
download_hydat()
now has anask
parameter that can be used to bypass the keypress confirmation when downloading the HYDAT database (@rchlumsk, #165).- Change maintainer email.
- Precompile vignettes for CRAN
- Minor tweaks to vignettes
- When add a local timezone column, use the most common timezone in the data rather than the first one. This just seems more likely to be useful to users
- Add more documentation to
realtime_add_local_datetime
to make how timezones are dealt with clearer (#157) - Expose the query time for realtime functions as an attribute (#160)
- Add Government of Canada as data contributor (#156)
- Allow pkg to loaded without internet and rather just issue an message when it is not. (#149)
- Added
add = TRUE
to allon.exit
call so add not to overwrite previous call (#151) - Remove redundant and ill-advised
closeAllConnections
(#153) - Update internal data
- Convert most of the docs to markdown (#121)
- add internal function
hy_check
to verify that HYDAT contains all the right tables and that those tables contain data.
- Replace
class(x) ==
withinherits
- Fix bug and added corresponding tests where a request for multiple stations to
realtime_dd
would fail if any data was missing - Update internal data
- Fix all non-secure or borken links
- Revise multi prov test to realtime because of network load and prone to intermittent failure
- Adding rOpenSci doc site to DESCRIPTION
- Fix character NA's in
hy_stations
(#125) - Allow downloading HYDAT to alternative locations (#129)
- Provide better documentation of how change default db location in
hy_set_default_db()
- All functions now return either "hy" or "realtime" class with associated print and plot methods (#119)
- prov_terr_state_loc now accepts a "CA" value to specify only stations located in Canada (#112)
- functions that access internet resources now fail with an informative error message (#116)
- tests that require internet resources are skipped when internet is down
- Add small join example to calculate runoff to introduction vignette (#120)
pull_station_number
now only returns unique values (#109)- Adding a offset column that reflects OlsonNames() and is thus DST independent (#110)
- Caught all
R_CHECK_LENGTH_1_CONDITION
instances
- New function:
realtime_add_local_datetime()
adds a local datetime column torealtime_dd()
tibble (#64) - New function:
pull_station_number()
wrapspull(STATION_NUMBER)
for convenience
- In effort to standardize, the case of column names for some rarely used function outputs were changed to reflect more commonly used function outputs. This may impact some workflows where columns are referenced by names (#99).
- Functions that have a
start_date
andend_date
actually work with said argument (#98) hy_annual_instant_peaks()
now parses the date correctly into UTC and includes a datetime and time zone column. (#64)hy_stn_data_range()
now returns actualNA
's rather than string NA's (#97)
download_hydat()
now returns an informative error if the download fails due to proxy-related connection issues (@rywhale, #101).
- Added rlang as a dependency and applied tidyeval idiom to more safety control variable environments
- 15% speed improvement in
realtime_dd
by eliminating loop (#91) - 40% speed improvement when querying full provinces (#89)
- reorganized file naming so that helper functions are placed in utils-* files
- Fixed
hy_monthly_flows
andhy_monthly_levels
date issue (#24)
- realtime tidying now not duplicated and is handled by a function
- simplified
tidyhydat:::station_choice
and added more unit testing - no longer outputting a message when
station_number = "ALL"
. - Exporting pipe (
%>%
)
- Open a connection to the HYDAT database directly using
hy_src()
for advanced functionality (PR#77). - New vignette outlining
hy_src()
(PR#77) - Add some tools to improve the usability of the test database (PR#77).
download_hydat()
now useshttr::GET()
- Better downloading messages
- Fixed package startup message so it can be supressed. (#79)
- Fixed bug that resulted in
download_hydat
choice wasn't respected. onAttach()
now checks 115 days after last HYDAT release to prevent slow package load times if HYDAT is longer than 3 months between RELEASES.- Fixed margin error in
hy_plot()
- Fixed a bug in
realtime_plot()
that prevented a lake level station from being called - Fixed a bug in
hy_daily()
that threw an error when only a level station was called - Added new tests for
hy_daily()
andrealtime_plot()
- Added
HYD_STATUS
andREAL_TIME
columns toallstations
.
- New
hy_daily()
function which combines all daily data into one dataframe. - Add a quick base R plotting feature for quick visualization of realtime and historical data.
- Add
realtime_daily_mean
function that quickly converts higher resolution data into daily means. - New vignette outlining some example usage.
- Fixed bug in
download_hydat()
that create a path that wasn't OS-independent. - Fixed a bug on
download_hydat()
where by sometimes R had trouble overwriting an existing version of existing database. Now the old database is simply deleted before the new one is downloaded. hy_annual_instant_peaks()
now returns a date object with HOUR, MINUTE and TIME_ZONE returned as separed columns. (#10)- All variable values of LEVEL and FLOW have been changed to Level and Flow to match the output of
hy_data_types
. (#60) - Tidier and coloured error messages throughout.
- Review field incorrectly specified the rOpenSci review page. Removed the link from the DESCRIPTION.
- When package is loaded, tidyhydat checks to see if HYDAT is even present
- When package is loaded, it now tests to see if their a new version of HYDAT if the current date is greater than 3 months after the last release date of HYDAT.
- Prep for CRAN release
- Starting to use raw SQL for table queries
- Removing 2nd vignette from build. Still available on github
- New NEWS template!
- Moved
station_number
to first argument to facilitate piped analysis (#54) search_stn_name
andsearch_stn_number
now query both realtime and historical data sources and have tests for a more complete list (#56)- With credential stored in .Renviron file,
ws_token
can successfully be called byws_token()
. .onAttach()
checks if HYDAT is downloaded on package load.
- Significant function and argument name changes (see below)
- Adding
rappdirs
to imports and using to generate download path fordownload_hydat()
(#44) - Adding
rappdirs
so that all the hy_* functions access hydat fromrappdirs::user_data_dir()
viahy_dir()
(#44) - Revised and cleaned up documentation including two vignettes (#48)
FULL MONTH
evaluate to a logic (#51)- All download tests are skipped on cran (#53)
- Removed time limit for
download_realtime_ws()
with some documentation on actual limits. (3234c22)
- Add informative error message for a single missing station input (#38)
- No longer trying to build .Rd file for
.onload
(#47) - Fixed
SED_MONTHLY_LOADS
(#51)
- hy_agency_list <- AGENCY_LIST
- hy_annual_instant_peaks <- ANNUAL_INSTANT_PEAKS
- hy_annual_stats <- ANNUAL_STATISTICS
- hy_daily_flows <- DLY_FLOWS
- hy_daily_levels <- DLY_LEVELS
- hy_monthly_flows <- MONTHLY_FLOWS
- hy_monthly_levels <- MONTHLY_LEVELS
- hy_sed_daily_loads <- SED_DLY_LOADS
- hy_sed_daily_suscon <- SED_DLY_SUSCON
- hy_sed_monthly_loads <- SED_MONTHLY_LOADS
- hy_sed_monthly_suscon <- SED_MONTHLY_SUSCON
- hy_sed_samples <- SED_SAMPLES
- hy_sed_samples_psd <- SED_SAMPLES_PSD
- hy_stations <- STATIONS
- hy_stn_remarks <- STN_REMARKS
- hy_stn_datum_conv <- STN_DATUM_CONVERSION
- hy_stn_datum_unrelated <- STN_DATUM_UNRELATED
- hy_stn_data_range <- STN_DATA_RANGE
- hy_stn_data_coll <- STN_DATA_COLLECTION
- hy_stn_op_schedule <- STN_OPERATION_SCHEDULE
- hy_stn_regulation <- STN_REGULATION
- hy_agency_list <- AGENCY_LIST
- hy_reg_office_list <- REGIONAL_OFFICE_LIST
- hy_datum_list <- DATUM_LIST
- hy_version <- VERSION
- realtime_dd <- download_realtime_dd
- realtime_stations <- realtime_network_meta
- search_stn_name <- search_name
- search_stn_number <- search_number
- station_number <- STATION_NUMBER
- prov_terr_state_loc <- PROV_TERR_STATE_LOC
- Explicitly state in docs that time is in UTC (#32)
- Added test for realtime_network_meta and moved to httr to download.
- download functions all use httr now
- removed need for almost all @import statement by referencing them all directly (#34)
- Fixed error message when directly calling some tidyhydat function using :: (#31)
- To reduce overhead,
output_symbol
has been added as an argument so code can be produced if desired (#33)
- Added examples to every function
- Completed test suite including
download_realtime_ws
(#27) - Fixed bugs in several
STN_*
functions - Added
STN_DATUM_RELATED
- Updated documentation
- Updated documentation
- Updated README
- Created a small database so that unit testing occurs remotely (#1)
- Fixed
STN_DATA_RANGE
bug (#26)
- using
styler
package to format code to tidyverse style guide - added
PROV_TERR_STATE_LOC
toallstations
- added
search_number
function - added
MONTHLY
functions - created function families
- added
on.exit()
to internal code; a better way to disconnect - Updated documentation
- fixed minor bug in download_realtime_ws so that better error message is outputted when no data is returned
- download_realtime_dd can now accept stations from multiple provinces or simply select multiple provinces
- better error messages for get_ws_token and download_realtime_ws
- All functions that previously accepted STATION_NUMBER == "ALL" now throw an error.
- Added function to download hydat
- Remove significant redundancy in station selecting mechanism
- Added package startup message when HYDAT is out of date
- Add internal allstations data
- Added all the tables as functions or data from HYDAT
- Made missing station ouput truncated at 10 missing stations
- Adding several new tables
- removed need for both prov and stn args
- reduced some repetition in code
- added STN_REGULATION
- tidied ANNUAL_STATISTICS
- added a series of lookup tables (DATUM_LIST, AGENCY_LIST, REGIONAL_OFFICE_LIST)
- cleared up output of STATIONS
- standardize hydat outputs to consistent tibble structure
- Adding search_name function
- final names for download functions
- functions output an information message about stations retrieved
*Renamed real-time function as download_realtime and download_realtime2 *Added more units tests *Wrote vignette for package utilization *Brought all data closer to a "tidy" state
*Added ability for STATIONS to retrieve ALL stations in the HYDAT database *Added ability for STATIONS to retrieve ALL stations in the HYDAT database *Standardize documentation; remove hydat_path default *Better error handling for download_realtime *Update documentation *Adding param_id data, data-raw and documentation *Dates filter to ANNUAL_STATISTICS and DLY_FLOWS; func and docs *DLY_LEveLS function and docs *download_ws and get_ws_token function and docs *UPDATE README
*Added ability for STATIONS to retrieve ALL stations in the HYDAT database *Added ability for STATIONS to retrieve ALL stations in the HYDAT database *Standardize documentation; remove hydat_path default *Better error handling for download_realtime *Update documentation *Adding param_id data, data-raw and documentation *Dates filter to ANNUAL_STATISTICS and DLY_FLOWS; func and docs *DLY_LEveLS function and docs *download_ws and get_ws_token function and docs *UPDATE README
*fixed db connection problem; more clear documentation *better error handling; more complete realtime documentation *harmonized README with standardized arguments
*Added example analysis to README *Added devex badge; license to all header; import whole readr package *Able to take other protidyhydat inces than BC now *Update documentation; README
*Initial package commit *Add license and include bcgotidyhydat files in RBuildIgnore *Two base working function; package level R file and associated documentation *Only importing functions used in the function *Update README with example *Added download_ functions *Added ANNUAL_STATISTICS query/table and docs *Updated docs and made DLY_FLOWS more rigorous