-
Notifications
You must be signed in to change notification settings - Fork 39
/
DESCRIPTION
64 lines (64 loc) · 2.2 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Package: dtwSat
Type: Package
Title: Time-Weighted Dynamic Time Warping for Satellite Image Time Series Analysis
Version: 1.0-1
Date: 2023-09-25
Authors@R:
c(person(given = "Victor",
family = "Maus",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-7385-4723")),
person(given = "Marius",
family = "Appel",
role = c("ctb"),
comment = c(ORCID = "0000-0001-5281-3896")),
person(given = "Nikolas",
family = "Kuschnig",
role = c("ctb"),
comment = c(ORCID = "0000-0002-6642-2543")),
person(given = "Toni",
family = "Giorgino",
role = c("ctb"),
comment = c(ORCID = "0000-0002-6642-2543"))
)
Description: Provides a robust approach to land use mapping using multi-dimensional
(multi-band) satellite image time series. By leveraging the Time-Weighted Dynamic
Time Warping (TWDTW) distance metric in tandem with a 1 Nearest-Neighbor (1-NN) Classifier,
this package offers functions to produce land use maps based on distinct seasonality patterns,
commonly observed in the phenological cycles of vegetation. The approach is described in
Maus et al. (2016) <doi:10.1109/JSTARS.2016.2517118> and Maus et al. (2019) <doi:10.18637/jss.v088.i05>.
A primary advantage of TWDTW is its capability to handle irregularly sampled and noisy time series,
while also requiring minimal training sets. The package includes tools for training the 1-NN-TWDTW model,
visualizing temporal patterns, producing land use maps, and visualizing the results.
License: GPL (>= 3)
URL: https://github.com/vwmaus/dtwSat/
BugReports: https://github.com/vwmaus/dtwSat/issues/
Maintainer: Victor Maus <[email protected]>
VignetteBuilder:
knitr
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Depends:
twdtw,
sf,
stars,
ggplot2
Imports:
mgcv,
stats,
tidyr,
proxy
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
Config/testthat/edition: 3
Collate:
'plot.R'
'predict.R'
'prepare_time_series.R'
'shift_dates.R'
'train.R'
'zzz.R'