You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
added assigning/replacement methods for measurements (#1) and fixed bug that transferred units and band names to new xarrays when using arithmetic operator
Copy file name to clipboardexpand all lines: R/xarray_methods.R
+45-11
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,33 @@
1
-
#' select var with this method
2
-
#' @importFrom reticulate py_get_item
1
+
#' convert index into name
3
2
#' @keywords internal
4
3
#' @noRd
5
-
.index_var<-function(x, ...){
4
+
.index2name<-function(x, ...){
6
5
i<-list(...)[[1]]
7
-
8
6
if(is.numeric(i)){
9
7
i<- .get_measurements(x)[i]
10
8
}
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, ...)
11
18
return(py_get_item(x, i))
12
19
}
13
20
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
+
14
31
#' select dim with this method
15
32
#' @keywords internal
16
33
#' @noRd
@@ -45,7 +62,7 @@
45
62
return(dims)
46
63
}
47
64
48
-
#' @title Methods to extract from \code{odcr} classes
65
+
#' @title Methods to extract from or assign to \code{odcr} classes
49
66
#'
50
67
#' @description `[` allows to subset an `xarray` object by its dimensions (see [`dim()`])
51
68
#'
@@ -115,7 +132,7 @@
115
132
#' @rdname Extract
116
133
#' @md
117
134
#'
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
119
136
#'
120
137
#' @export
121
138
"[[.xarray.core.dataset.Dataset"<-.index_var
@@ -128,7 +145,7 @@
128
145
#' @rdname Extract
129
146
#' @md
130
147
#'
131
-
#' @param x `xarray` object, the dataset to be subsetted
148
+
#' @param x `xarray` object, the dataset to be subsetted from or assigned to
132
149
#' @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)
133
150
#' @param exact_match logical, whether to return only exact matches (default) or to search for closest elements to each element in `query` using `[difftime()]`
#' @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`
0 commit comments