Skip to content

Commit 0a33c6d

Browse files
Merge branch 'dev' of https://github.com/e-sensing/sits into dev
2 parents 7a3f7e9 + 7a40294 commit 0a33c6d

4 files changed

+0
-13
lines changed

NAMESPACE

-6
Original file line numberDiff line numberDiff line change
@@ -393,9 +393,6 @@ S3method(sits_cube,default)
393393
S3method(sits_cube,local_cube)
394394
S3method(sits_cube,sar_cube)
395395
S3method(sits_cube,stac_cube)
396-
S3method(sits_detect_change,default)
397-
S3method(sits_detect_change,raster_cube)
398-
S3method(sits_detect_change,sits)
399396
S3method(sits_get_data,csv)
400397
S3method(sits_get_data,data.frame)
401398
S3method(sits_get_data,default)
@@ -501,9 +498,6 @@ export(sits_config_show)
501498
export(sits_config_user_file)
502499
export(sits_cube)
503500
export(sits_cube_copy)
504-
export(sits_detect_change)
505-
export(sits_detect_change_method)
506-
export(sits_dtw)
507501
export(sits_factory_function)
508502
export(sits_filter)
509503
export(sits_formula_linear)

R/sits_detect_change.R

-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
#' each point (tibble of class "sits")
3939
#' or a data cube indicating detections in each pixel
4040
#' (tibble of class "detections_cube").
41-
#' @export
4241
sits_detect_change <- function(data,
4342
cd_method,
4443
...,
@@ -49,7 +48,6 @@ sits_detect_change <- function(data,
4948
}
5049

5150
#' @rdname sits_detect_change
52-
#' @export
5351
sits_detect_change.sits <- function(data,
5452
cd_method,
5553
...,
@@ -74,7 +72,6 @@ sits_detect_change.sits <- function(data,
7472
}
7573

7674
#' @rdname sits_detect_change
77-
#' @export
7875
sits_detect_change.raster_cube <- function(data,
7976
cd_method, ...,
8077
roi = NULL,
@@ -180,7 +177,6 @@ sits_detect_change.raster_cube <- function(data,
180177
}
181178

182179
#' @rdname sits_detect_change
183-
#' @export
184180
sits_detect_change.default <- function(data, cd_method, ...) {
185181
stop("Input should be a sits tibble or a data cube")
186182
}

R/sits_detect_change_method.R

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#' @return Change detection method prepared
1313
#' to be passed to
1414
#' \code{\link[sits]{sits_detect_change}}
15-
#' @export
1615
sits_detect_change_method <- function(samples, cd_method = sits_dtw()) {
1716
# set caller to show in errors
1817
.check_set_caller("sits_detect_change_method")

R/sits_dtw.R

-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
#' `samples`.
2626
#' @return Change detection method prepared to be passed to
2727
#' \code{\link[sits]{sits_detect_change_method}}
28-
#' @export
29-
#'
3028
sits_dtw <-
3129
function(samples = NULL,
3230
...,

0 commit comments

Comments
 (0)