Skip to content

Commit

Permalink
version 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcarslaw authored and cran-robot committed Feb 27, 2018
1 parent a60fd0d commit f28943f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
Expand Up @@ -2,8 +2,8 @@ Package: worldmet
Type: Package
Title: Import Surface Meteorological Data from NOAA Integrated Surface
Database (ISD)
Version: 0.8.3
Date: 2018-02-08
Version: 0.8.4
Date: 2018-02-27
Authors@R: c(person("David", "Carslaw", role = c("aut", "cre"), email =
"david.carslaw@york.ac.uk"))
ByteCompile: true
Expand All @@ -21,7 +21,7 @@ LazyLoad: true
LazyData: true
RoxygenNote: 6.0.1
NeedsCompilation: no
Packaged: 2018-02-16 12:02:49 UTC; David
Packaged: 2018-02-27 13:54:35 UTC; David
Author: David Carslaw [aut, cre]
Repository: CRAN
Date/Publication: 2018-02-16 12:42:06 UTC
Date/Publication: 2018-02-27 14:16:34 UTC
8 changes: 4 additions & 4 deletions MD5
@@ -1,8 +1,8 @@
9815f1fa5ba4ad3b3805b63a2d3c1cba *DESCRIPTION
715f470e8b2c21b692c683a516b66576 *NAMESPACE
cf54c0aeb41be2ca443c73c08b0c4793 *DESCRIPTION
0fb1b2ac28a1bb97e4726f2a546c353b *NAMESPACE
fde382d0eda08d1f08aaffa5bb40c92f *R/exportADMS.R
932748d6470eb3d6d84de172bfa4d141 *R/getMeta.R
504b61ccbae9316f503501b53f5c048f *R/metNOAA.R
bd28cb4f44a1a1b19fde283990525289 *R/getMeta.R
5171f60d1c13156a56ebb0847d72c0b6 *R/metNOAA.R
b15a961f15873be7d691ca7eb1dffebf *R/meta.R
7cfccd5e8a36ebd23b3d3b7406507524 *R/sysdata.rda
072fafd8f8db6bf7a3138ea8a2735b16 *R/weatherCodes.R
Expand Down
1 change: 0 additions & 1 deletion NAMESPACE
Expand Up @@ -15,6 +15,5 @@ importFrom(leaflet,addTiles)
importFrom(leaflet,leaflet)
importFrom(utils,download.file)
importFrom(utils,head)
importFrom(utils,read.csv)
importFrom(utils,write.table)
importFrom(zoo,na.approx)
2 changes: 1 addition & 1 deletion R/getMeta.R
Expand Up @@ -164,7 +164,7 @@ getMetaLive <- function(...) {
## downloads the whole thing fresh

url <- "https://www1.ncdc.noaa.gov/pub/data/noaa/isd-history.csv"
meta <- suppressMessages(read.csv(url, skip = 21))
meta <- suppressMessages(read_csv(url, skip = 21, col_names = FALSE))

## names in the meta file
names(meta) <- c(
Expand Down
2 changes: 1 addition & 1 deletion R/metNOAA.R
Expand Up @@ -89,7 +89,7 @@
##' @import openair
##' @import readr
##' @import doParallel parallel foreach dplyr
##' @importFrom utils head read.csv write.table download.file
##' @importFrom utils head write.table download.file
##' @importFrom leaflet addCircles addMarkers addTiles leaflet
##' @return Returns a data frame of surface observations. The data frame is
##' consistent for use with the \code{openair} package. NOTE! the data are
Expand Down

0 comments on commit f28943f

Please sign in to comment.