Commit ddd3d1c 1 parent 0fe724a commit ddd3d1c Copy full SHA for ddd3d1c
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 88
88
# ' @title Get bands of time series samples
89
89
# ' @noRd
90
90
# ' @param samples Data.frame with samples
91
+ # ' @param dots Other parameters to be included
92
+ # ' @param include_base Include base bands?
91
93
# ' @return Bands for the first sample
92
94
.samples_bands <- function (samples , ... ) {
93
95
# Bands of the first sample governs whole samples data
100
102
return (bands )
101
103
}
102
104
# ' @export
103
- .samples_bands.sits_base <- function (samples , include_base = TRUE ) {
105
+ .samples_bands.sits_base <- function (samples , ... , include_base = TRUE ) {
104
106
# Bands of the first sample governs whole samples data
105
107
bands <- .samples_bands.sits(samples )
106
108
113
115
bands
114
116
}
115
117
# ' @export
116
- .samples_bands.default <- function (samples ) {
118
+ .samples_bands.default <- function (samples , ... ) {
117
119
# Bands of the first sample governs whole samples data
118
120
ts_bands <- .samples_bands.sits(samples )
119
121
return (ts_bands )
You can’t perform that action at this time.
0 commit comments