This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2b6faf
commit daad56a
Showing
1 changed file
with
25 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,18 +9,36 @@ _bomrang_: Australian Government Bureau of Meteorology (BOM) Data Client <img al | |
|
||
Provides functions to interface with Australian Government Bureau of Meteorology (BOM) data, fetching data and returning a tidy data frame of précis forecasts, current weather data from stations, ag information bulletins, historical weather data and downloading and importing radar or satellite imagery. | ||
|
||
Credit for the name, *bomrang*, goes to [Di Cook](http://dicook.org/), who suggested it while attending the rOpenSci AUUnconf in Brisbane, 2016. | ||
Credit for the name, _bomrang_, goes to [Di Cook](http://dicook.org/), who suggested it while attending the rOpenSci AUUnconf in Brisbane, 2016. | ||
|
||
Quick Start | ||
NOTE | ||
----------- | ||
BOM have decided that the data that they provide should not all be easily available. | ||
Therefore, some portions of this package (any that depend on HTTP requests) are now broken. | ||
These include: | ||
|
||
Install the stable release from CRAN. | ||
* `get_historical_weather()`, | ||
* `get_weather_bulletins()`, and | ||
* `get_current_weather()` | ||
|
||
``` r | ||
install.packages("bomrang") | ||
``` | ||
All other functions in the package work as advertise assuming server availability as they rely on FTP requests. | ||
|
||
BOM's official statement | ||
|
||
> Website notification of change | ||
Scheduled Release Date: 3 March 2021 | ||
A web application firewall policy has been implemented for www.bom.gov.au which will block screen scraping activity. | ||
The Bureau is monitoring screen scraping activity on the site and will commence interrupting, and eventually blocking, this activity on www.bom.gov.au from Wednesday, 3 March 2021. This is aimed at protecting infrastructure, system access and security, intellectual property and server/service load. | ||
Web or screen scraping is the act of copying information that shows on a digital display so it can be used for another purpose. This activity has always been at odds with the Bureau's terms and conditions. | ||
We understand www.bom.gov.au contributes significantly to the work of many individuals and organisations and we are committed to continuing to provide access through our registered user’s channel. | ||
For further information, or to discuss the ongoing use of our materials, please make contact with us via [email protected]. | ||
|
||
Quick Start | ||
----------- | ||
|
||
Or from GitHub for the version in development. | ||
_bomrang_ has been archived from CRAN for reasons beyond _bomrang_ actually being broken. | ||
As such at this time I've declined to "fix" the package. | ||
It can still be installed using the following commands. | ||
|
||
``` r | ||
if (!require("remotes")) { | ||
|