Skip to content

Commit

Permalink
version 2.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dannycbowman authored and cran-robot committed Jan 15, 2018
1 parent e349a94 commit 28f052b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
10 changes: 5 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Package: rNOMADS
Type: Package
Title: An Interface to the NOAA Operational Model Archive and
Distribution System
Version: 2.3.8
Date: 2017-11-27
Version: 2.3.9
Date: 2018-1-13
Authors@R: c(person(given="Daniel C.",family="Bowman", role=c("aut", "cre"),
email="danny.c.bowman@gmail.com"))
Depends: R (>= 3.4.2), rvest (>= 0.3.2)
Depends: R (>= 3.4.0), rvest (>= 0.3.2)
Imports: scrapeR (>= 0.1.6), stringr (>= 1.2.0), fields (>= 9.0),
GEOmap (>= 2.3-5), MBA, RCurl (>= 1.95-4.7), XML (>= 3.98.1.9),
xml2 (>= 1.1.1)
Expand All @@ -18,7 +18,7 @@ URL: <https://bovineaerospace.wordpress.com/category/r/ >,
<https://r-forge.r-project.org/projects/rnomads/ >,
<https://www.r-project.org >
NeedsCompilation: no
Packaged: 2017-11-28 05:25:57 UTC; dantayaga
Packaged: 2018-01-15 03:59:13 UTC; dantayaga
Author: Daniel C. Bowman [aut, cre]
Repository: CRAN
Date/Publication: 2017-11-28 09:55:24 UTC
Date/Publication: 2018-01-15 04:55:08 UTC
6 changes: 3 additions & 3 deletions MD5
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
764e0bf0da3946aa97903244a93543a6 *DESCRIPTION
ce30b67eb3e2160d6b9cd2ce611959a6 *DESCRIPTION
390e84088e5d6fef202002db75860464 *NAMESPACE
74ebfc3f40f11b74c0836641965c26ce *NEWS
00ebe9b1f82a4e608e495174aa6ad541 *NEWS
25d1b075adf63d775b2003a6b13f7f3c *R/GetArchiveGrib.R
3d3616ae851730c99ca81b34c9add562 *R/GetDODS.R
573e507bae1e1f85f4ff251ecff230dc *R/GetRealTimeGrib.R
350c74c638277ac783906247a4a8fb4c *R/Models.R
9a4cd02bb95fe1bb070ee928915afdd1 *R/RNomadsTools.R
d2ad53700bfd3e3fe4a8be174ac6cca7 *R/ReadGrib.R
312bf9dec3e4e9b7b92b4f6252ffa87d *R/ReadGrib.R
52f408d5e1ed74804c5d5a4408a11e40 *R/onAttach.R
e1094799c652a311619b92483183a5fc *inst/CITATION
81c30cc1ca803cde5a9e254641a31d46 *man/ArchiveGribGrab.Rd
Expand Down
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,6 @@ This makes reading historic wave watch grib2 files a lot faster, for example.
Fixed issues with ReadGrib, such as difficulty using level names with special characters and problems reading grib2 files on windows.
I am planning a major revamp to ReadGrib soon, so this is an interim release.
I expect the next release to be 2-4.1

2-3.9
Big plans for 2-4.1 have been deferred; this is a release to fix a bug in wgrib inventory reading requests
2 changes: 1 addition & 1 deletion R/ReadGrib.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ GribInfo <- function(grib.file, file.type = "grib2") {
stop("wgrib does not appear to be installed, or it is not on the PATH variable.
You can find wgrib here: http://www.cpc.ncep.noaa.gov/products/wesley/wgrib.html.")
}
inv <- system(paste0("wgrib ", grib.file), " -s", intern = TRUE)
inv <- system(paste0("wgrib ", grib.file, " -s"), intern = TRUE)
grid <- NULL
} else {
stop(paste0("Did not recognise file type ", file.type, ". Please use \"grib2\" or \"grib1\"."))
Expand Down

0 comments on commit 28f052b

Please sign in to comment.