Skip to content

Commit

Permalink
Upate pakage description, better date format in functions documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
quishqa committed Jul 25, 2020
1 parent 6007c90 commit bb3bfa0
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 22 deletions.
17 changes: 11 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
Package: qualR
Title: A web scrapper for CETESB QUALAR system
Version: 0.0.0.9000
Authors@R:
Title: An R package to download Sao Paulo air pollution data
Version: 0.9.0
Authors@R: c(
person(given = "Mario",
family = "Gavidia-Calderón",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "YOUR-ORCID-ID"))
comment = c(ORCID = "0000-0002-7371-1116")),
person(given = "Maria de Fatima",
family = "Andrade",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-5351-8311")))
Description: A web scrapper to download information from CETESB Qualar
system. It contains function to download a single parameter, a set of
criteria pollutants and the most frequent meteorological parameters used in
model evaluation.
air quality data analysis and air quality model evaluation.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Expand All @@ -20,4 +25,4 @@ Imports:
XML,
RCurl
Depends:
R (>= 2.10)
R (>= 3.5.0)
4 changes: 2 additions & 2 deletions R/CetesbRetrieve.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#' @param password User name's password of CETESB QUALAR
#' @param pol_code Code of parameter
#' @param aqs_code Code of AQS
#' @param start_date Date to start downloading in %dd/%mm/%yyyy
#' @param end_date Date to end downloading in %dd/%mm/%yyyy
#' @param start_date Date to start downloading in dd/mm/yyyy
#' @param end_date Date to end downloading in dd/mm/yyyy
#'
#' @return data.frame with the selected parameter information
#' @export
Expand Down
4 changes: 2 additions & 2 deletions R/CetesbRetrieveMet.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#' @param username User name of CETESB QUALAR
#' @param password User name's password of CETESB QUALAR
#' @param aqs_code Code of AQS
#' @param start_date Date to start downloading in %dd/%mm/%yyyy
#' @param end_date Date to end downloading in %dd/%mm/%yyyy
#' @param start_date Date to start downloading in dd/mm/yyyy
#' @param end_date Date to end downloading in dd/mm/yyyy
#'
#' @return data.frame wth Temperature (C), Relative Humidity (%), Wind Speed (m/s) and Direction (degrees),
#' and Pressure information.
Expand Down
4 changes: 2 additions & 2 deletions R/CetesbRetrieveMetPol.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#' @param username User name of CETESB QUALAR
#' @param password User name's password of CETESB QUALAR
#' @param aqs_code Code of AQS
#' @param start_date Date to start downloading in %dd/%mm/%yyyy
#' @param end_date Date to end downloading in %dd/%mm/%yyyy
#' @param start_date Date to start downloading in dd/mm/yyyy
#' @param end_date Date to end downloading in dd/mm/yyyy
#'
#' @return data.frame with ith Temperature (C), Relative Humidity (%), Wind Speed (m/s) and Direction (degrees),
#' Pressure information (hPa), O3, NO, NO2, PM2.5, PM10 and CO information.
Expand Down
4 changes: 2 additions & 2 deletions R/CetesbRetrievePol.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#' @param username User name of CETESB QUALAR
#' @param password User name's password of CETESB QUALAR
#' @param aqs_code Code of AQS
#' @param start_date Date to start downloading in %dd/%mm/%yyyy
#' @param end_date Date to end downloading in %dd/%mm/%yyyy
#' @param start_date Date to start downloading in dd/mm/yyyy
#' @param end_date Date to end downloading in dd/mm/yyyy
#'
#' @return data.frame wth O3, NO, NO2, PM2.5, PM10 and CO information.
#' Units are ug/m3 except for CO which is in ppm.
Expand Down
4 changes: 2 additions & 2 deletions man/CetesbRetrieve.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/CetesbRetrieveMet.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/CetesbRetrieveMetPol.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/CetesbRetrievePol.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bb3bfa0

Please sign in to comment.