Skip to content

Commit d09c5c2

Browse files
committed
added assigning/replacement methods for measurements (#1) and fixed bug that transferred units and band names to new xarrays when using arithmetic operator
1 parent caef4c9 commit d09c5c2

File tree

5 files changed

+78
-17
lines changed

5 files changed

+78
-17
lines changed

DESCRIPTION

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Package: odcr
22
Title: Accessing the Open Data Cube from R
3-
Version: 0.0.1-5
3+
Version: 0.0.1-6
44
Depends:
55
R (>= 3.5.0)
6-
Date: 2021-07-12
6+
Date: 2021-09-10
77
Authors@R: person("Jakob", "Schwalb-Willmann", email = "[email protected]",
88
role = c("aut", "cre"), comment = c(ORCID = "0000-0003-2665-1509"))
99
Description: An R interface to the Open Data Cube.
@@ -20,5 +20,5 @@ Suggests:
2020
knitr,
2121
raster
2222
BugReports: https://github.com/eo2cube/odcr/issues
23-
RoxygenNote: 7.1.1
23+
RoxygenNote: 7.1.2
2424
VignetteBuilder: knitr

NAMESPACE

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Generated by roxygen2: do not edit by hand
22

3+
S3method("$<-",xarray.core.dataset.Dataset)
34
S3method("*",xarray.core.dataarray.DataArray)
45
S3method("+",xarray.core.dataarray.DataArray)
56
S3method("-",xarray.core.dataarray.DataArray)
@@ -8,6 +9,7 @@ S3method("[",xarray.core.dataarray.DataArray)
89
S3method("[",xarray.core.dataset.Dataset)
910
S3method("[[",xarray.core.dataarray.DataArray)
1011
S3method("[[",xarray.core.dataset.Dataset)
12+
S3method("[[<-",xarray.core.dataset.Dataset)
1113
S3method(dim,xarray.core.dataarray.DataArray)
1214
S3method(dim,xarray.core.dataset.Dataset)
1315
S3method(plot,xarray.core.dataarray.DataArray)
@@ -32,6 +34,7 @@ importFrom(reticulate,dict)
3234
importFrom(reticulate,import)
3335
importFrom(reticulate,py_config)
3436
importFrom(reticulate,py_get_item)
37+
importFrom(reticulate,py_set_item)
3538
importFrom(reticulate,use_python)
3639
importFrom(sf,st_crs)
3740
importFrom(sf,st_set_crs)

R/internal.R

+14
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,20 @@ out <- function(input, type = 1, ll = NULL, msg = FALSE, sign = "", verbose = ge
107107
return(y)
108108
}
109109

110+
#' @keywords internal
111+
#' @noRd
112+
.rm_name <- function(x){
113+
x$name <- NULL
114+
x
115+
}
116+
117+
#' @keywords internal
118+
#' @noRd
119+
.rm_attr <- function(x, attr){
120+
x$attrs[[attr]] <- NULL
121+
x
122+
}
123+
110124
#' @importFrom reticulate import
111125
#' @keywords internal
112126
#' @noRd

R/xarray_methods.R

+45-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,33 @@
1-
#' select var with this method
2-
#' @importFrom reticulate py_get_item
1+
#' convert index into name
32
#' @keywords internal
43
#' @noRd
5-
.index_var <- function(x, ...) {
4+
.index2name <- function(x, ...){
65
i <- list(...)[[1]]
7-
86
if(is.numeric(i)){
97
i <- .get_measurements(x)[i]
108
}
9+
return(i)
10+
}
11+
12+
#' select var with this method
13+
#' @importFrom reticulate py_get_item
14+
#' @keywords internal
15+
#' @noRd
16+
.index_var <- function(x, ...) {
17+
i <- .index2name(x, ...)
1118
return(py_get_item(x, i))
1219
}
1320

21+
#' assign/set var with this method
22+
#' @importFrom reticulate py_set_item
23+
#' @keywords internal
24+
#' @noRd
25+
.set_var <- function(x, ..., value){
26+
i <- .index2name(x, ...)
27+
py_set_item(x, i, value)
28+
return(x)
29+
}
30+
1431
#' select dim with this method
1532
#' @keywords internal
1633
#' @noRd
@@ -45,7 +62,7 @@
4562
return(dims)
4663
}
4764

48-
#' @title Methods to extract from \code{odcr} classes
65+
#' @title Methods to extract from or assign to \code{odcr} classes
4966
#'
5067
#' @description `[` allows to subset an `xarray` object by its dimensions (see [`dim()`])
5168
#'
@@ -115,7 +132,7 @@
115132
#' @rdname Extract
116133
#' @md
117134
#'
118-
#' @param ... numeric or character, index or indices by which to extract (additional) elements
135+
#' @param ... numeric or character, index or indices by which to extract/assign (additional) elements
119136
#'
120137
#' @export
121138
"[[.xarray.core.dataset.Dataset" <- .index_var
@@ -128,7 +145,7 @@
128145
#' @rdname Extract
129146
#' @md
130147
#'
131-
#' @param x `xarray` object, the dataset to be subsetted
148+
#' @param x `xarray` object, the dataset to be subsetted from or assigned to
132149
#' @param query character vector, one or more time/date character vectors in the format of the time dimension of `x` or an abbreviated form of it (e.g. only the date component)
133150
#' @param exact_match logical, whether to return only exact matches (default) or to search for closest elements to each element in `query` using `[difftime()]`
134151
#'
@@ -150,6 +167,19 @@ xar_sel_time <- function(x, query, exact_match = T){
150167
}
151168
}
152169

170+
#' @description `[[<-` allows to assign a measurement/variable (e.g. spectral band), either named (character) or indexed (numeric), to an existing `xarray` object.
171+
#' @md
172+
#'
173+
#' @param value `xarray` object, the dataset that should be assigned to `x`
174+
#' @rdname Extract
175+
#'
176+
#' @export
177+
"[[<-.xarray.core.dataset.Dataset" <- .set_var
178+
179+
#' @rdname Extract
180+
#'
181+
#' @export
182+
"$<-.xarray.core.dataset.Dataset" <- .set_var
153183

154184

155185
#' Dimensions of \code{odcr} classes
@@ -295,25 +325,29 @@ plot.xarray.core.dataarray.DataArray <- function(x, ...) {
295325
#' }
296326
#' @export
297327
"+.xarray.core.dataarray.DataArray" <- function(xds, yds) {
298-
np$add(xds, yds)
328+
y <- np$add(xds, yds)
329+
.rm_attr(.rm_name(y), "units")
299330
}
300331

301332
#' @rdname Arithmetic
302333
#' @export
303334
"-.xarray.core.dataarray.DataArray" <- function(xds, yds) {
304-
np$subtract(xds, yds)
335+
y <- np$subtract(xds, yds)
336+
.rm_attr(.rm_name(y), "units")
305337
}
306338

307339
#' @rdname Arithmetic
308340
#' @export
309341
"/.xarray.core.dataarray.DataArray" <- function(xds, yds) {
310-
np$divide(xds, yds)
342+
y <- np$divide(xds, yds)
343+
.rm_attr(.rm_name(y), "units")
311344
}
312345

313346
#' @rdname Arithmetic
314347
#' @export
315348
"*.xarray.core.dataarray.DataArray" <- function(xds, yds) {
316-
np$multiply(xds, yds)
349+
y <- np$multiply(xds, yds)
350+
.rm_attr(.rm_name(y), "units")
317351
}
318352

319353
#' "xarray.core.dataset.Dataset" class

man/Extract.Rd

+13-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)