Skip to content

Commit

Permalink
v 0.1.2: Fixed arguments in rerddap::griddap()
Browse files Browse the repository at this point in the history
for rerddap version 1.0.3: x to datasetx; time with as.character(). Fixed article outputs.
  • Loading branch information
bbest committed Jul 20, 2023
1 parent 8269043 commit 3b8feb6
Show file tree
Hide file tree
Showing 23 changed files with 43 additions and 44 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: extractr
Title: Extract data from online dataset APIs
Version: 0.1.1
Version: 0.1.2
URL: https://marinebon.github.io/extractr,
https://github.com/marinebon/extractr
BugReports: https://github.com/marinebon/extractr/issues
Expand Down
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# extractr 0.1.2

* Fixed arguments in `rerddap::griddap()` for rerddap version `1.0.3`: `x` to `datasetx`; `time` with `as.character()`. Fixed article outputs.

# extractr 0.1.1

* fix `get_ed_raster()`, `grds_to_ts()` so working with [noaa-onms/climate-dashboard](https://github.com/noaa-onms/climate-dashboard) ed_var = "CRW_SST" coral reef watch
* Fix `get_ed_raster()`, `grds_to_ts()` so working with [noaa-onms/climate-dashboard](https://github.com/noaa-onms/climate-dashboard) ed_var = "CRW_SST" coral reef watch

# extractr 0.1.0

Expand Down
2 changes: 1 addition & 1 deletion R/read.R
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ get_ed_grds <- function(
url = ed_info$base_url,
longitude = c(bb["xmin"], bb["xmax"]),
latitude = c(bb["ymin"], bb["ymax"]),
time = c(date, date),
time = c(date, date) |> as.character(),
fmt = "nc"))

if ("try-error" %in% class(nc)){
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

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

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

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

2 changes: 1 addition & 1 deletion docs/LICENSE.html

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

32 changes: 12 additions & 20 deletions docs/articles/extractr.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/articles/index.html

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

2 changes: 1 addition & 1 deletion docs/authors.html

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

2 changes: 1 addition & 1 deletion docs/index.html

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

8 changes: 6 additions & 2 deletions docs/news/index.html

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

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 2.0.7
pkgdown_sha: ~
articles:
extractr: extractr.html
last_built: 2023-07-19T18:16Z
last_built: 2023-07-20T08:58Z

2 changes: 1 addition & 1 deletion docs/reference/bbox_ply.html

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

2 changes: 1 addition & 1 deletion docs/reference/get_ed_dates.html

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

2 changes: 1 addition & 1 deletion docs/reference/get_ed_dates_all.html

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

2 changes: 1 addition & 1 deletion docs/reference/get_ed_grds.html

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

2 changes: 1 addition & 1 deletion docs/reference/get_ed_info.html

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

2 changes: 1 addition & 1 deletion docs/reference/get_url_ply.html

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

2 changes: 1 addition & 1 deletion docs/reference/grds_to_ts.html

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

2 changes: 1 addition & 1 deletion docs/reference/grds_to_ts_cat.html

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

2 changes: 1 addition & 1 deletion docs/reference/index.html

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

2 changes: 1 addition & 1 deletion docs/reference/plot_ts.html

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

3 changes: 1 addition & 2 deletions vignettes/extractr.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ knitr::opts_chunk$set(
```

```{r setup}
# library(extractr) # devtools::install_local()
devtools::load_all()
library(extractr) # devtools::install_local(force = T) # devtools::load_all()
```

## Get regions of interests
Expand Down

0 comments on commit 3b8feb6

Please sign in to comment.