Skip to content

Commit

Permalink
Merge pull request #7 from ropensci/gganimate
Browse files Browse the repository at this point in the history
v0..0.4
  • Loading branch information
rmendels committed Oct 16, 2019
2 parents be76bad + 9446e4f commit 3294a6d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
12 changes: 6 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: plotdap
Title: Easily Visualize Data from 'ERDDAP' Servers via the 'rerddap' Package
Version: 0.0.3
Date: 2019-07-25
Version: 0.0.4
Date: 2019-10-14
Authors@R: c(
person("Carson", "Sievert", role = "aut"),
person("Roy", "Mendelssohn", role = c("aut", "ctb", "cre"), email = "roy.mendelssohn@noaa.gov"))
Expand All @@ -10,8 +10,7 @@ License: MIT + file LICENSE
URL: https://github.com/ropensci/plotdap
BugReports: https://github.com/ropensci/plotdap/issues
Depends:
R (>= 3.5.0),
rerddap
R (>= 3.6.0)
Imports:
dplyr,
gganimate,
Expand All @@ -20,9 +19,8 @@ Imports:
lubridate,
magrittr,
maps,
maptools,
raster,
rgdal,
rerddap (>= 0.6.0),
rgeos,
scales,
sf,
Expand All @@ -31,6 +29,8 @@ Suggests:
Cairo,
knitr,
mapdata,
maptools,
rgdal,
rmarkdown,
testthat
RoxygenNote: 6.1.1
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# plotdap 0.0.4
* fixed changed SODA datasetid in vignette
* fixed Namespace and Import problems

# plotdap 0.0.3
* fixed small bug in an example that was causing 'pgkdown' to fail
* fixed Namespace and Import problems
Expand Down
4 changes: 2 additions & 2 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
## This is a minor update

- fix small error in docs that was causing pkgdown to fail
- fixed URL change in vignette
- fixed Import and Namespace problems reported on CRAN checks
- On Windows, previous version built with --no-vignettes please continue that
if Vignette build takes too long
- fixed single note on VignetteIndexEntry


## Test environments
* local OS X install, R 3.6.1
Expand Down
6 changes: 3 additions & 3 deletions vignettes/using_plotdap.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -492,13 +492,13 @@ The “Simple Ocean Data Assimilation (SODA)” model (see https://www.atmos.umd

First, get the SODA data:

```{r soda70_get, fig.align = 'center', fig.height = 3, fig.width = 5, message = FALSE, warning = FALSE}
soda70Info <- rerddap::info('hawaii_d90f_20ee_c4cb')
```{r soda70_get, message = FALSE, warning = FALSE}
soda70Info <- rerddap::info('erdSoda331oceanmday')
xpos <- c(135.25, 240.25)
ypos <- c(20.25, 60.25)
zpos <- c(70.02, 70.02)
tpos <- c('2010-12-15', '2010-12-15')
soda70 <- griddap(soda70Info,
soda70 <- rerddap::griddap(soda70Info,
longitude = xpos,
latitude = ypos,
time = tpos,
Expand Down

0 comments on commit 3294a6d

Please sign in to comment.