You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+25-25Lines changed: 25 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
- Add source and references to documentation for data
6
6
7
-
- Create function aliases that use all lower case, *e.g.*, `get_cru_stack()` vs `get_CRU_stack()`
7
+
- Create function aliases that use all lower case, _e.g._, `get_cru_stack()` vs `get_CRU_stack()`
8
8
9
9
- Improved documentation with linting, ensuring consistency in units of measurement, etc.
10
10
@@ -32,7 +32,7 @@
32
32
33
33
## Major changes
34
34
35
-
- The cache is now where ever `tools::R_user_dir(package = "getCRUCLdata", which = "cache")` is defined by R (>= 4.0.0) and *should* align with CRAN standards, so it *might* be possible to get this back on CRAN
35
+
- The cache is now where ever `tools::R_user_dir(package = "getCRUCLdata", which = "cache")` is defined by R (>= 4.0.0) and _should_ align with CRAN standards, so it _might_ be possible to get this back on CRAN
36
36
37
37
- Depends on R (>= 4.0.0)
38
38
@@ -105,14 +105,14 @@
105
105
- Removes startup message, instead placing information in CITATION file
106
106
107
107
- Reorganises internal functions consolidating functions all in a single file
108
-
and following a standard naming scheme for all internal functions
108
+
and following a standard naming scheme for all internal functions
109
109
110
110
# getCRUCLdata 0.2.4
111
111
112
112
## Bug fixes
113
113
114
114
- Fix bug where `tmp` and `dtr` could not be returned with `tmn` or `tmx` raster
115
-
stacks
115
+
stacks
116
116
117
117
- Move `rappdirs` to SUGGESTS to fix NOTEs
118
118
@@ -121,7 +121,7 @@ stacks
121
121
- Fix documentation formatting issues
122
122
123
123
- Enhance `stop` messages for user, just print message, not the function that
124
-
called it to clarify
124
+
called it to clarify
125
125
126
126
# getCRUCLdata 0.2.3
127
127
@@ -154,9 +154,9 @@ called it to clarify
154
154
- Use _hoardr_ for managing cached files
155
155
156
156
- Fixed a bug where the file cache was not in the proper subdirectory. The file
157
-
cache has moved to the proper location in a `R/getCRUCLdata` location rather
158
-
than `getCRUCLdata`. You may wish to move files externally to R in order to keep
159
-
them in the cache where the package will find them
157
+
cache has moved to the proper location in a `R/getCRUCLdata` location rather
158
+
than `getCRUCLdata`. You may wish to move files externally to R in order to keep
159
+
them in the cache where the package will find them
160
160
161
161
- Use `lapply` in place of `purrr::map`, _purrr_ is no longer imported
162
162
@@ -178,7 +178,7 @@ them in the cache where the package will find them
178
178
- Add startup message regarding data source, use and citation
179
179
180
180
- Include Scott Chamberlain as copyright holder and contributor for file
181
-
caching functionality
181
+
caching functionality
182
182
183
183
# getCRUCLdata 0.1.9
184
184
@@ -191,18 +191,18 @@ caching functionality
191
191
## Bug Fixes
192
192
193
193
- Fix bug where `cache` was not specified in internal function, `.set_cache()`,
194
-
this caused either of the functions fetching data from CRU to fail
194
+
this caused either of the functions fetching data from CRU to fail
195
195
196
196
- Fix bug where `cache` directory could not be created on Windows OS machines
197
197
198
-
- Fix bug where tmx was returned when *either* tmn *or* tmx was requested for
199
-
data frame, tmn now returned when requested and tmx now returned when requested.
200
-
Raster stacks were not affected by this bug
198
+
- Fix bug where tmx was returned when _either_ tmn _or_ tmx was requested for
199
+
data frame, tmn now returned when requested and tmx now returned when requested.
200
+
Raster stacks were not affected by this bug
201
201
202
202
## Minor Changes
203
203
204
204
- Replaced `for f in 1:length()` with `for f in seq_along()` for better
205
-
programming practices
205
+
programming practices
206
206
207
207
# getCRUCLdata 0.1.7
208
208
@@ -213,7 +213,7 @@ programming practices
213
213
## Bug Fixes
214
214
215
215
- Fix bug where `rappdirs::user_config_dir()` was incorrectly used in place of
216
-
`rappdirs::user_cache_dir()`
216
+
`rappdirs::user_cache_dir()`
217
217
218
218
# getCRUCLdata 0.1.6
219
219
@@ -236,27 +236,27 @@ programming practices
236
236
## Major Changes
237
237
238
238
-`create_CRU_stack()` and `create_CRU_df()` now only work with locally
239
-
available files. If you need to fetch and create a data frame or raster stack
240
-
of the data, please use the new functions, `get_CRU_stack()` and
241
-
`get_CRU_stack()`
239
+
available files. If you need to fetch and create a data frame or raster stack
240
+
of the data, please use the new functions, `get_CRU_stack()` and
241
+
`get_CRU_stack()`
242
242
243
243
- R >=3.2.0 now required
244
244
245
245
- Data can be cached using either `get_CRU_stack()` or `get_CRU_df()` for later
246
-
use
246
+
use
247
247
248
248
## Minor Changes
249
249
250
250
- Improved documentation with examples on mapping and graphing and more detail
251
-
regarding the data itself
251
+
regarding the data itself
252
252
253
253
- Change the method in which files are downloaded to use `httr::GET()`
254
254
255
255
- Ingest data using `data.table::fread` to decrease the amount of time necessary
256
-
to run the functions
256
+
to run the functions
257
257
258
258
- Functions check to see if data file(s) have already been downloaded during
259
-
current R session, if so data file(s) are not requested for download again
259
+
current R session, if so data file(s) are not requested for download again
260
260
261
261
- Months are returned as a factor object in the tidy data frame
262
262
@@ -265,14 +265,14 @@ current R session, if so data file(s) are not requested for download again
265
265
## Minor Changes
266
266
267
267
- Correct fix bug in data frame object generation where elevation was improperly
268
-
handled and function would stop
268
+
handled and function would stop
269
269
270
270
# getCRUCLdata 0.1.3
271
271
272
272
## Minor Changes
273
273
274
274
- Correct fix bug in raster object generation where the objects were incorrectly
275
-
cropped
275
+
cropped
276
276
277
277
- Update documentation with ROxygen 6.0.0
278
278
@@ -283,7 +283,7 @@ cropped
283
283
## Minor Changes
284
284
285
285
- Correct documentation to read that the data resolution is 10 minute, not 10
0 commit comments