Skip to content

Commit 73e13b2

Browse files
committed
Preparing for release 2
1 parent a0ae15b commit 73e13b2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+142
-289
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ Date: 2017-03-15
55
Version: 3.1.1
66
Encoding: UTF-8
77
Authors@R: c(
8-
person("Leo", "Lahti", email = "louhos@googlegroups.com", role = c("aut", "cre")),
8+
person("Leo", "Lahti", email = "leo.lahti@iki.fi", role = c("aut", "cre")),
99
person("Przemyslaw" , "Biecek", role = "aut"),
1010
person("Markus", "Kainu", role = "aut"),
1111
person("Janne", "Huovari", role = "aut"),
1212
person("Joona", "Lehtomaki", role = "ctb"),
1313
person("Francois", "Briatte", role = "ctb"),
1414
person("Oliver", "Reiter", role = "ctb"))
15-
Maintainer: Leo Lahti <louhos@googlegroups.com>
15+
Maintainer: Leo Lahti <leo.lahti@iki.fi>
1616
MailingList: rOpenGov <ropengov-forum@googlegroups.com>
1717
Description: Tools to download data from the Eurostat database
1818
<http://ec.europa.eu/eurostat> together with search and
@@ -44,7 +44,7 @@ Suggests:
4444
rvest,
4545
testthat
4646
LazyData: true
47-
URL: https://github.com/ropengov/eurostat
47+
URL: https://ropengov.github.io/eurostat
4848
BugReports: https://github.com/ropengov/eurostat/issues
4949
VignetteBuilder: knitr
5050
NeedsCompilation: no

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
## Minor features
99

10+
* Changed maintainer email address from louhos to leo
1011
* Added ./docs/ (automated package website generated with pkgdown)
1112
* Expanded unit tests
1213
* Gitter badge added to README

R/clean_eurostat_cache.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#' @param cache_dir A path to cache directory. If \code{NULL} (default)
55
#' tries to clean default temporary cache directory.
66
#' @export
7+
#' @author Przemyslaw Biecek, Leo Lahti, Janne Huovari and Markus Kainu \email{ropengov-forum@@googlegroups.com} \url{http://github.com/ropengov/eurostat}
78
#' @examples clean_eurostat_cache()
89
clean_eurostat_cache <- function(cache_dir = NULL){
910
if (is.null(cache_dir)){

R/dic_order.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#' \code{\link{get_eurostat_dic}}.
99
#' @param type a type of the x. Could be \code{code} or \code{label}.
1010
#' @export
11+
#' @author Przemyslaw Biecek, Leo Lahti, Janne Huovari and Markus Kainu \email{ropengov-forum@@googlegroups.com} \url{http://github.com/ropengov/eurostat}
1112
#' @return A numeric vector of orders.
1213
dic_order <- function(x, dic, type) {
1314
if (!is_tibble(dic)) dic <- get_eurostat_dic(dic)

R/eurostat-package.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#' Package: \tab eurostat\cr
55
#' Type: \tab Package\cr
66
#' Version: \tab See sessionInfo() or DESCRIPTION file\cr
7-
#' Date: \tab 2014-2016\cr
7+
#' Date: \tab 2014-2017\cr
88
#' License: \tab BSD_2_clause + LICENSE\cr
99
#' LazyLoad: \tab yes\cr
1010
#' }
@@ -16,10 +16,10 @@
1616
#' @docType package
1717
#' @title R Tools for Eurostat open data
1818
#'
19-
#' @author Leo Lahti, Janne Huovari, Markus Kainu, Przemyslaw Biecek \email{ropengov-forum@@googlegroups.com} \url{http://github.com/ropengov/eurostat}
19+
#' @author Leo Lahti, Janne Huovari, Markus Kainu, Przemyslaw Biecek \email{ropengov-forum@@googlegroups.com} \url{https://ropengov.github.io/eurostat}
2020
#' @references
2121
#' See citation("eurostat")
22-
#' \url{http://github.com/ropengov/eurostat}
22+
#' \url{https://ropengov.github.io/eurostat}
2323
#' @examples library(eurostat)
2424
#' @keywords package
2525
NULL

R/eurostat_url.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#' @param ... Arguments to be passed
44
#' @return url
55
#' @references see citation("eurostat").
6-
#' @author Leo Lahti \email{ropengov-forum@@googlegroups.com}
6+
#' @author Leo Lahti \email{leo.lahti@iki.fi}
77
#' @keywords internal
88
eurostat_url <- function(...) {
99
"http://ec.europa.eu/eurostat/"

R/eurotime2date.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' the date is the last date of the period.
99
#' @export
1010
#' @return an object of class \code{\link{Date}}.
11-
#' @author Janne Huovari \email{ropengov-forum@@googlegroups.com} \url{http://github.com/ropengov/eurostat}
11+
#' @author Janne Huovari \email{janne.huovari@@ptt.fi}
1212
#' @examples \dontrun{
1313
#' lp <- get_eurostat("namq_aux_lp", time_format = "raw")
1414
#' lp$time <- eurotime2date(x = lp$time)

R/eurotime2num.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
#' @param x a charter string with time information in Eurostat time format.
55
#' @export
66
#' @return see \code{\link{as.numeric}}.
7-
#' @author Janne Huovari \email{ropengov-forum@@googlegroups.com}
8-
#' \url{http://github.com/ropengov/eurostat}
7+
#' @author Janne Huovari \email{janne.huovari@@ptt.fi}
98
#' @examples \dontrun{
109
#' lp <- get_eurostat("namq_aux_lp", time_format = "raw")
1110
#' lp$time <- eurotime2num(x = lp$time)

R/get_eurostat.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
#' can be removed. Default is \code{FALSE}.
4444
#' @param ... further argument for \code{\link{get_eurostat_json}}.
4545
#' @export
46+
#' @author Przemyslaw Biecek, Leo Lahti, Janne Huovari and Markus Kainu \email{ropengov-forum@@googlegroups.com} \url{http://github.com/ropengov/eurostat}
4647
#' @details Data sets are downloaded from
4748
#' \href{http://ec.europa.eu/eurostat/estat-navtree-portlet-prod/BulkDownloadListing}{the Eurostat bulk download facility} or from The Eurostat Web Services
4849
#' \href{http://ec.europa.eu/eurostat/web/json-and-unicode-web-services}{JSON API}.

R/get_eurostat_json.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#'
2424
#' @return A dataset as a data_frame.
2525
#' @export
26+
#' @author Przemyslaw Biecek, Leo Lahti, Janne Huovari and Markus Kainu \email{ropengov-forum@@googlegroups.com} \url{http://github.com/ropengov/eurostat}
2627
#' @examples
2728
#' \dontrun{
2829
#' tmp <- get_eurostat_json("cdh_e_fos")

0 commit comments

Comments
 (0)