-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to 0.18.3 to put package back on CRAN
* update to 0.18.1 to delete rhdf5 package reference EVERY WHERE * delete package suggest dependencies hexbin * clean reference to rhdf5 package EVERYWHERE * delete in doc function "\link" to prevent CRAN NOTE + build site updated * up version to fix last reference to rhdf5 pacakge * Bump to 0.18.3 revdep check ok * update licence file to GLP 3 * exchangesStack() documentation example updated + cran comments + news * revdep check ok
- Loading branch information
1 parent
2f801e6
commit 4d17d74
Showing
128 changed files
with
12,253 additions
and
6,874 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 |
---|---|---|
|
@@ -13,3 +13,4 @@ inst/examples | |
^revdep$ | ||
^README\.Rmd$ | ||
^CRAN-SUBMISSION$ | ||
^LICENSE\.md$ |
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,14 +1,14 @@ | ||
Package: antaresViz | ||
Type: Package | ||
Title: Antares Visualizations | ||
Version: 0.18.0 | ||
Version: 0.18.3 | ||
Authors@R: c( | ||
person("Tatiana", "Vargas", email = "[email protected]", role = c("aut", "cre")), | ||
person("Jalal-Edine", "Zawam", role = "aut"), | ||
person("Francois", "Guillem", role = "aut"), | ||
person("Benoit", "Thieurmel", role = "aut"), | ||
person("Titouan", "Robert", role = "aut"), | ||
person("Paul", "Plessiez", role = "aut"), | ||
person("Jalal-Edine", "Zawam", role = "ctb"), | ||
person("Francois", "Guillem", role = "ctb"), | ||
person("Benoit", "Thieurmel", role = "ctb"), | ||
person("Titouan", "Robert", role = "ctb"), | ||
person("Paul", "Plessiez", role = "ctb"), | ||
person("Baptiste", "Seguinot", role = "ctb"), | ||
person("RTE", role = "cph") | ||
) | ||
|
@@ -19,7 +19,7 @@ Description: Visualize results generated by Antares, a powerful open source soft | |
'Antares' users visually explore the results of their simulations. | ||
URL: https://github.com/rte-antares-rpackage/antaresViz | ||
BugReports: https://github.com/rte-antares-rpackage/antaresViz/issues | ||
License: GPL (>= 2) | file LICENSE | ||
License: GPL (>= 3) | ||
Encoding: UTF-8 | ||
Depends: | ||
antaresRead (>= 2.2.9), | ||
|
@@ -45,14 +45,13 @@ Imports: | |
leaflet.minicharts (>= 0.5.3), | ||
assertthat, | ||
rAmCharts, | ||
utils | ||
utils, | ||
lifecycle | ||
RoxygenNote: 7.2.2 | ||
Suggests: | ||
testthat, | ||
covr, | ||
rhdf5 (>= 2.20.2), | ||
ggplot2, | ||
hexbin, | ||
knitr, | ||
visNetwork, | ||
rmarkdown | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,20 +1,20 @@ | ||
|
||
|
||
|
||
.getstructure <- function(fid, strgp){ | ||
gid <- rhdf5::H5Gopen(fid, strgp) | ||
data <- rhdf5::h5dump(gid) | ||
rhdf5::H5Gclose(gid) | ||
if(length(which(data$reCalcVar!="")) > 0) | ||
{ | ||
data$reCalcVar <- data$reCalcVar[which(data$reCalcVar!="")] | ||
data$variable <- c(data$variable, data$reCalcVar) | ||
data$reCalcVar <- NULL | ||
} | ||
data | ||
} | ||
|
||
.tryCloseH5 <- function(){ | ||
try(rhdf5::H5close(), silent = TRUE) | ||
} | ||
# .getstructure <- function(fid, strgp){ | ||
# gid <- rhdf5::H5Gopen(fid, strgp) | ||
# data <- rhdf5::h5dump(gid) | ||
# rhdf5::H5Gclose(gid) | ||
# if(length(which(data$reCalcVar!="")) > 0) | ||
# { | ||
# data$reCalcVar <- data$reCalcVar[which(data$reCalcVar!="")] | ||
# data$variable <- c(data$variable, data$reCalcVar) | ||
# data$reCalcVar <- NULL | ||
# } | ||
# data | ||
# } | ||
# | ||
# .tryCloseH5 <- function(){ | ||
# try(rhdf5::H5close(), silent = TRUE) | ||
# } | ||
|
Oops, something went wrong.