This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NEWS
125 lines (66 loc) · 4.35 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
BANEScarparking has retired (2020-04-13)
========================================
It's been a blast, but all good things must come to an end.
See README.md for more details.
BANEScarparking v0.2.0 (Release date: 2018-01-20)
=================================================
Additions:
* All available car parking records up to end of 2017 added to `full_dataset` (the sensors on both SouthGate car parks have been out of action since November 2016 so there's no new data for either of those)
* `rugby` dataset updated: now contains dates/results of all Bath Rugby home games from September 2014 to end of 2017
* `events` dataset updated: now contains event counts for each day from 2014-10-17 to 2017-12-31
* `weather` dataset updated: now contains daily weather report for each day from 2014-10-17 to 2017-12-31, and the format is a bit nicer
* `get_daily_weather` produces the nicer-format weather table for any given date range (no longer limited to retrieving 398 records in one go...)
* Added code tests for all main functionality (and add `covr` reporting to Travis)
BANEScarparking v0.1.5 (Release date: 2017-08-27)
=================================================
Additions:
* Individual by-month/by-carpark datasets removed, because:
- Names containing numbers, underscores and plus-signs were difficult to use (often needed to be enclosed in backticks) and were also causing R CMD check (and hence Travis build) to fail;
- These datasets were just subsets of `full_dataset` and so were somewhat unnecessarily increasing the size of the package. It's simple enough to filter `full_dataset` to a specific carpark or date range if needed.
* Travis CI is now being used to check the build
* Updated to MIT license
* @rkenning has proper credit as an author/contributor
* NEWS file added to keep a record of changes
Bugfixes:
* `get_events_detail` now correctly references functions from other packages, and it has a shiny new progress bar.
* `get_events` would fail if you tried to start from the first day of a month. It doesn't do that any more. And it was jealous of `get_events_detail`'s progress bar, so it has one too.
* `get_rugby` just plain wasn't working. It is now.
* Examples in documentation have been corrected
BANEScarparking v0.1.4 (Release date: 2017-08-18)
=================================================
Additions:
* `get_daily_weather` grabs a daily weather summary from [wunderground.com](https://www.wunderground.com/) for each day in a range of dates
* `get_events_detail` (written by Ryan Kenning @rkenning) expands on `get_events` by grabbing more information about each event in a range of dates
Bugfixes:
* Bugfixes for `get_events` and `get_rugby`, which had stopped working due to strange redirects on the websites they scrape
* Updates to associated documentation
BANEScarparking v0.1.3 (Release date: 2017-04-06)
=================================================
Additions:
* `get_events` is now more specific: it can bring in counts from any date range, rather than being restricted to month-long blocks
Bugfixes:
* Bugfixes for webscraping functions (i.e. they now work as expected)
* Full dataset of parking records renamed `full_dataset` (intuitive, right? I don't know why it wasn't called that already)
* Updates to associated documentation
BANEScarparking v0.1.2 (Release date: 2017-02-12)
=================================================
Additions:
* `get_range_crude` for retrieving a subset of raw records
BANEScarparking v0.1.1 (Release date: 2017-01-11)
=================================================
Additions:
* New datasets:
- Daily weather summary from 2014-10-17 to 2016-12-27
- Dates and kick-off times for Bath Rugby home matches from 2014-09 to 2016-12
- Daily count of events advertised at [www.bath.co.uk/events] from 2014-10 to 2016-12
* Web-scraping functions for obtaining rugby and event count info:
- `get_rugby`
- `get_events`
* Welcome messages displayed when package is loaded
BANEScarparking v0.1.0 (Release date: 2017-01-10)
=================================================
Additions:
* Initial release. Datasets of parking records from 2014-16, basic parking record manipulation functions:
- `get_all_crude` for retrieving dataset of records from Bath: Hacked datastore
- `refine` for processing the raw records
- `refuel` and `refuel_crude` for updating existing data frames with recent records