forked from r-spatial/rgee
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDESCRIPTION
executable file
·137 lines (137 loc) · 4.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
Package: rgee
Title: R Bindings for Calling the 'Earth Engine' API
Version: 1.0.8.9999
Authors@R:
c(person(given = "Cesar",
family = "Aybar",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-2745-9535")),
person(given = "Wu",
family = "Qiusheng",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-5437-4073")),
person(given = "Lesly",
family = "Bautista",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-3523-8687")),
person(given = "Roy",
family = "Yali",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-4542-3755")),
person(given = "Antony",
family = "Barja",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-5921-2858")),
person(given = "Kevin",
family = "Ushey",
role = c("ctb"),
email = "[email protected]"),
person(given = "Jeroen",
family = "Ooms",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-4035-0289")),
person(given = "Tim",
family = "Appelhans",
role = c("ctb"),
email = "[email protected]"),
person(given = "JJ",
family = "Allaire",
role = c("ctb"),
email = "[email protected]"),
person(given = "Yuan",
family = "Tang",
role = c("ctb"),
email = "[email protected]"),
person(given = "Samapriya",
family = "Roy",
role = c("ctb"),
email = "[email protected]"),
person(given = "MariaElena",
family = "Adauto",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-2154-2429")),
person(given = "Gabriel",
family = "Carrasco",
role = c("ctb"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-6945-0419")),
person(given = "Henrik",
family = "Bengtsson",
role = c("ctb"),
email = "[email protected]"),
person(given = "Jeffrey",
family = "Hollister",
role = c("rev"),
email = "[email protected]",
comment = "Hollister reviewed the package for JOSS, see
https://github.com/openjournals/joss-reviews/issues/2272/"),
person(given = "Gennadii",
family = "Donchyts",
role = c("rev"),
comment = "Gena reviewed the package for JOSS, see
https://github.com/openjournals/joss-reviews/issues/2272/"),
person(given = "Marius",
family = "Appel",
role = c("rev"),
email = "[email protected]",
comment = "Appel reviewed the package for JOSS, see
https://github.com/openjournals/joss-reviews/issues/2272/"))
Description: Earth Engine <https://earthengine.google.com/> client library for R. All of the 'Earth Engine' API classes,
modules, and functions are made available. Additional functions implemented include importing (exporting) of Earth Engine
spatial objects, extraction of time series, interactive map display, assets management interface, and metadata display.
See <https://r-spatial.github.io/rgee/> for further details.
License: Apache License (>= 2.0)
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Depends:
R (>= 3.3.0)
Imports:
methods,
reticulate (>= 1.15),
magrittr,
R6,
processx,
crayon,
cli
Suggests:
leaflet (>= 2.0.2),
leaflet.extras2,
magick,
geojsonio,
sf,
stars,
googledrive (>= 1.0.0),
googleCloudStorageR (>= 0.5.1),
rstudioapi (>= 0.7),
jsonlite,
leafem,
raster,
rgdal,
httr,
digest,
spelling,
testthat,
future,
covr,
knitr,
rmarkdown,
png
URL: https://github.com/r-spatial/rgee/, https://r-spatial.github.io/rgee/, https://github.com/google/earthengine-api/
BugReports: https://github.com/r-spatial/rgee/issues/
VignetteBuilder: knitr
Language: en-US
Config/reticulate:
list(
packages = list(
list(package = "earthengine-api", pip = TRUE)
)
)