Skip to content

Commit

Permalink
CRAN Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmendels committed Oct 19, 2022
1 parent 3e6ab9f commit 5862565
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
15 changes: 7 additions & 8 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
Package: plotdap
Title: Easily Visualize Data from 'ERDDAP' Servers via the 'rerddap' Package
Version: 0.0.9
Date: 2020-10-28
Version: 1.0.0
Date: 2022-10-17
Authors@R: c(
person("Carson", "Sievert", role = "aut"),
person("Roy", "Mendelssohn", role = c("aut", "ctb", "cre"), email = "[email protected]"))
Description: Easily visualize and animate 'tabledap' and 'griddap' objects obtained via the 'rerddap' package in a simple one-line command, using either base graphics or 'ggplot2' graphics. 'plotdap' handles extracting and reshaping the data, map projections and continental outlines. Optionally the data can be animated through time using the 'gganmiate' package.
License: MIT + file LICENSE
URL: https://github.com/ropensci/plotdap
BugReports: https://github.com/ropensci/plotdap/issues
URL: https://github.com/rmendels/plotdap
BugReports: https://github.com/rmendels/plotdap/issues
Depends:
R (>= 4.0.0)
Imports:
cmocean,
dplyr,
gganimate,
ggnewscale (>= 0.4.1),
ggnewscale,
ggplot2 (>= 3.1.0),
lazyeval,
lubridate,
magrittr,
maps,
raster,
rerddap (>= 0.6.0),
rgeos,
rerddap (>= 0.8.0),
scales,
sf,
tidyr,
Expand All @@ -36,7 +35,7 @@ Suggests:
rgdal,
rmarkdown,
testthat
RoxygenNote: 7.1.1
RoxygenNote: 7.2.1
LazyData: true
Encoding: UTF-8
VignetteBuilder: knitr
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# plotdap 1.0.0

Removed direct dependency on rgeos, rgdal
Fixed Broken URLs in DESCRIPTION, vignette

# plotdap 0.0.9

Vignette changed so it will not fail on CRAN
Expand Down
13 changes: 8 additions & 5 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
## Vignette changed so that rebuild of vignette will not fail
## Various minor fixes

Removed dependency on rgeos, rgdal
Fixed broken URLs in DESCRIPTION, vignette


Quick Re-submission in response to notice from CRAN to fix
error in vignette rebuild


## Test environments
* local OS X install, R 4.0.3
* local Fedora, R 4.0.2
* local OS X install, R 4.2.1
* rhub
* macOS-builder
* win-builder (devel and release)

## R CMD check results
Expand Down
5 changes: 3 additions & 2 deletions vignettes/using_plotdap.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ plotdap("base")
In addition to choosing a plotting method, `plotdap()` is where you can define
properties of the background map, including the target projection using a valid
coordinate reference system (CRS) definition. Projection is performed using the
[PROJ.4 library](https://proj4.org/), and
[PROJ.4 library](https://proj.org/), and
[spatialreference.org](https://www.spatialreference.org) is a great resource for
finding PROJ.4 CRS descriptions. Using the search utility, you can for example,
[search for "South
Expand Down Expand Up @@ -514,7 +514,8 @@ The `plotdap()` interface is designed so that you can plot both tables and grids
```{r overlay, echo = TRUE, eval = FALSE}
p <- add_griddap(plotdap(),
murSST_west,
~analysed_sst
~analysed_sst,
fill = "thermal"
)
p1 <- add_tabledap(p,
sardines,
Expand Down

0 comments on commit 5862565

Please sign in to comment.