-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- as.RasterBrick fix for multi-layer objects
- ifelse fix (hopefully) fixing exotic test failures on windows systems
- Loading branch information
1 parent
014596d
commit 12a00e5
Showing
4 changed files
with
21 additions
and
16 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
This package was submitted to CRAN on 2021-02-24. | ||
Once it is accepted, delete this file and tag the release (commit a642ba8). | ||
This package was submitted to CRAN on 2021-09-28. | ||
Once it is accepted, delete this file and tag the release (commit 014596d). |
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
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
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
FEATURES: | ||
- added coordinates support | ||
- added conversion functions raster <-> magclass | ||
- added collapseDim | ||
|
||
NOTES: | ||
* checking dependencies in R code ... NOTE | ||
Missing or unexported object: 'units::install_unit' | ||
|
||
This note might occur if an older version of the "units" package is installed on the test system. The magclass package is already prepared for the changes which come with version 0.7.0 of package "units", but it also still works with older versions of the "units" package. | ||
CHANGES: | ||
- removed experimental metadata code (stored in magclass version with tag "metadata" for later reintegration) | ||
- added tests so that the package has now >90% unit test line coverage | ||
- fixed coding style issues | ||
- deprecated function `fulldim` and removed it from all functions in magclass where it had been used. | ||
- dimSums as well as magpply, `add_columns`, `add_dimension` and `getCPR` work now for all (sub-dimension) | ||
- `getItems` can now be used to replace values or even remove dimensions and it supports named vectors (to define element-wise what should be substituted with what) | ||
- `read.magpie` and `write.magpie` have been streamlined (e.g. ncdf support is no longer coupled to 59199 cells) which might lead to slightly different behavior than before in some instances | ||
- added `dim` argument for magclass subsetting (e.g. `x[1, dim = 2]` which is identical to `x[,1,]` - useful for generalization of functions that should act on all main dimensions) | ||
- removed `old_dim_convention` function | ||
- deprecated `getRegionList` (use `getItems` instead) | ||
- replaced `write.report` with `write.report2` and deprecated `write.report2` |