@google/earthengine 0.1.283 → 0.1.284
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.tmp/BUILD +250 -0
- package/.tmp/METADATA +21 -0
- package/build/browser.js +728 -328
- package/build/ee_api_js.js +660 -642
- package/build/ee_api_js_debug.js +707 -308
- package/build/ee_api_js_npm.js +728 -328
- package/build/main.js +728 -328
- package/package.json +1 -1
- package/src/apiclient.js +2 -3
- package/src/examples/CloudMasking/Sentinel2CloudAndShadow.js +4 -0
package/.tmp/BUILD
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
# Description:
|
|
2
|
+
# CDN files for Earth Engine JavaScript API.
|
|
3
|
+
# See https://earthengine.google.com
|
|
4
|
+
#
|
|
5
|
+
# WARNING:
|
|
6
|
+
# Do not copy from these files or link these files into google3. If you
|
|
7
|
+
# want to use Earth Engine in google3, check out:
|
|
8
|
+
# //geo/gestalt/client/javascript
|
|
9
|
+
|
|
10
|
+
load("//tools/build_defs/build_test:build_test.bzl", "build_test")
|
|
11
|
+
|
|
12
|
+
package(default_visibility = [
|
|
13
|
+
"//googledata/html/external_content/ajax_googleapis_com:__pkg__",
|
|
14
|
+
"//third_party/hosted_libraries:__pkg__",
|
|
15
|
+
])
|
|
16
|
+
|
|
17
|
+
licenses(["notice"])
|
|
18
|
+
|
|
19
|
+
# DO NOT CHANGE THIS.
|
|
20
|
+
# This simply exports every file in this directory, excluding google3-specific
|
|
21
|
+
# files (e.g. BUILD and OWNERS). This accounts for all the fully-versioned URLs
|
|
22
|
+
# to library files in SCS.
|
|
23
|
+
Fileset(
|
|
24
|
+
name = "earthengine_fileset",
|
|
25
|
+
out = "earthengine_fs",
|
|
26
|
+
entries = [
|
|
27
|
+
FilesetEntry(
|
|
28
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.219:public",
|
|
29
|
+
destdir = "0.1.219",
|
|
30
|
+
),
|
|
31
|
+
FilesetEntry(
|
|
32
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.221:public",
|
|
33
|
+
destdir = "0.1.221",
|
|
34
|
+
),
|
|
35
|
+
FilesetEntry(
|
|
36
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.222:public",
|
|
37
|
+
destdir = "0.1.222",
|
|
38
|
+
),
|
|
39
|
+
FilesetEntry(
|
|
40
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.223:public",
|
|
41
|
+
destdir = "0.1.223",
|
|
42
|
+
),
|
|
43
|
+
FilesetEntry(
|
|
44
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.224:public",
|
|
45
|
+
destdir = "0.1.224",
|
|
46
|
+
),
|
|
47
|
+
FilesetEntry(
|
|
48
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.226:public",
|
|
49
|
+
destdir = "0.1.226",
|
|
50
|
+
),
|
|
51
|
+
FilesetEntry(
|
|
52
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.227:public",
|
|
53
|
+
destdir = "0.1.227",
|
|
54
|
+
),
|
|
55
|
+
FilesetEntry(
|
|
56
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.228:public",
|
|
57
|
+
destdir = "0.1.228",
|
|
58
|
+
),
|
|
59
|
+
FilesetEntry(
|
|
60
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.229:public",
|
|
61
|
+
destdir = "0.1.229",
|
|
62
|
+
),
|
|
63
|
+
FilesetEntry(
|
|
64
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.230:public",
|
|
65
|
+
destdir = "0.1.230",
|
|
66
|
+
),
|
|
67
|
+
FilesetEntry(
|
|
68
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.232:public",
|
|
69
|
+
destdir = "0.1.232",
|
|
70
|
+
),
|
|
71
|
+
FilesetEntry(
|
|
72
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.233:public",
|
|
73
|
+
destdir = "0.1.233",
|
|
74
|
+
),
|
|
75
|
+
FilesetEntry(
|
|
76
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.235:public",
|
|
77
|
+
destdir = "0.1.235",
|
|
78
|
+
),
|
|
79
|
+
FilesetEntry(
|
|
80
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.236:public",
|
|
81
|
+
destdir = "0.1.236",
|
|
82
|
+
),
|
|
83
|
+
FilesetEntry(
|
|
84
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.237:public",
|
|
85
|
+
destdir = "0.1.237",
|
|
86
|
+
),
|
|
87
|
+
FilesetEntry(
|
|
88
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.238:public",
|
|
89
|
+
destdir = "0.1.238",
|
|
90
|
+
),
|
|
91
|
+
FilesetEntry(
|
|
92
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.239:public",
|
|
93
|
+
destdir = "0.1.239",
|
|
94
|
+
),
|
|
95
|
+
FilesetEntry(
|
|
96
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.240:public",
|
|
97
|
+
destdir = "0.1.240",
|
|
98
|
+
),
|
|
99
|
+
FilesetEntry(
|
|
100
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.241:public",
|
|
101
|
+
destdir = "0.1.241",
|
|
102
|
+
),
|
|
103
|
+
FilesetEntry(
|
|
104
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.242:public",
|
|
105
|
+
destdir = "0.1.242",
|
|
106
|
+
),
|
|
107
|
+
FilesetEntry(
|
|
108
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.243:public",
|
|
109
|
+
destdir = "0.1.243",
|
|
110
|
+
),
|
|
111
|
+
FilesetEntry(
|
|
112
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.244:public",
|
|
113
|
+
destdir = "0.1.244",
|
|
114
|
+
),
|
|
115
|
+
FilesetEntry(
|
|
116
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.245:public",
|
|
117
|
+
destdir = "0.1.245",
|
|
118
|
+
),
|
|
119
|
+
FilesetEntry(
|
|
120
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.246:public",
|
|
121
|
+
destdir = "0.1.246",
|
|
122
|
+
),
|
|
123
|
+
FilesetEntry(
|
|
124
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.247:public",
|
|
125
|
+
destdir = "0.1.247",
|
|
126
|
+
),
|
|
127
|
+
FilesetEntry(
|
|
128
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.248:public",
|
|
129
|
+
destdir = "0.1.248",
|
|
130
|
+
),
|
|
131
|
+
FilesetEntry(
|
|
132
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.249:public",
|
|
133
|
+
destdir = "0.1.249",
|
|
134
|
+
),
|
|
135
|
+
FilesetEntry(
|
|
136
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.250:public",
|
|
137
|
+
destdir = "0.1.250",
|
|
138
|
+
),
|
|
139
|
+
FilesetEntry(
|
|
140
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.251:public",
|
|
141
|
+
destdir = "0.1.251",
|
|
142
|
+
),
|
|
143
|
+
FilesetEntry(
|
|
144
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.252:public",
|
|
145
|
+
destdir = "0.1.252",
|
|
146
|
+
),
|
|
147
|
+
FilesetEntry(
|
|
148
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.253:public",
|
|
149
|
+
destdir = "0.1.253",
|
|
150
|
+
),
|
|
151
|
+
FilesetEntry(
|
|
152
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.255:public",
|
|
153
|
+
destdir = "0.1.255",
|
|
154
|
+
),
|
|
155
|
+
FilesetEntry(
|
|
156
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.256:public",
|
|
157
|
+
destdir = "0.1.256",
|
|
158
|
+
),
|
|
159
|
+
FilesetEntry(
|
|
160
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.257:public",
|
|
161
|
+
destdir = "0.1.257",
|
|
162
|
+
),
|
|
163
|
+
FilesetEntry(
|
|
164
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.258:public",
|
|
165
|
+
destdir = "0.1.258",
|
|
166
|
+
),
|
|
167
|
+
FilesetEntry(
|
|
168
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.260:public",
|
|
169
|
+
destdir = "0.1.260",
|
|
170
|
+
),
|
|
171
|
+
FilesetEntry(
|
|
172
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.261:public",
|
|
173
|
+
destdir = "0.1.261",
|
|
174
|
+
),
|
|
175
|
+
FilesetEntry(
|
|
176
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.262:public",
|
|
177
|
+
destdir = "0.1.262",
|
|
178
|
+
),
|
|
179
|
+
FilesetEntry(
|
|
180
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.263:public",
|
|
181
|
+
destdir = "0.1.263",
|
|
182
|
+
),
|
|
183
|
+
FilesetEntry(
|
|
184
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.264:public",
|
|
185
|
+
destdir = "0.1.264",
|
|
186
|
+
),
|
|
187
|
+
FilesetEntry(
|
|
188
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.265:public",
|
|
189
|
+
destdir = "0.1.265",
|
|
190
|
+
),
|
|
191
|
+
FilesetEntry(
|
|
192
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.266:public",
|
|
193
|
+
destdir = "0.1.266",
|
|
194
|
+
),
|
|
195
|
+
FilesetEntry(
|
|
196
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.268:public",
|
|
197
|
+
destdir = "0.1.268",
|
|
198
|
+
),
|
|
199
|
+
FilesetEntry(
|
|
200
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.269:public",
|
|
201
|
+
destdir = "0.1.269",
|
|
202
|
+
),
|
|
203
|
+
FilesetEntry(
|
|
204
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.270:public",
|
|
205
|
+
destdir = "0.1.270",
|
|
206
|
+
),
|
|
207
|
+
FilesetEntry(
|
|
208
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.272:public",
|
|
209
|
+
destdir = "0.1.272",
|
|
210
|
+
),
|
|
211
|
+
FilesetEntry(
|
|
212
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.275:public",
|
|
213
|
+
destdir = "0.1.275",
|
|
214
|
+
),
|
|
215
|
+
FilesetEntry(
|
|
216
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.278:public",
|
|
217
|
+
destdir = "0.1.278",
|
|
218
|
+
),
|
|
219
|
+
FilesetEntry(
|
|
220
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.279:public",
|
|
221
|
+
destdir = "0.1.279",
|
|
222
|
+
),
|
|
223
|
+
FilesetEntry(
|
|
224
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.280:public",
|
|
225
|
+
destdir = "0.1.280",
|
|
226
|
+
),
|
|
227
|
+
FilesetEntry(
|
|
228
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.281:public",
|
|
229
|
+
destdir = "0.1.281",
|
|
230
|
+
),
|
|
231
|
+
FilesetEntry(
|
|
232
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.282:public",
|
|
233
|
+
destdir = "0.1.282",
|
|
234
|
+
),
|
|
235
|
+
FilesetEntry(
|
|
236
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.283:public",
|
|
237
|
+
destdir = "0.1.283",
|
|
238
|
+
),
|
|
239
|
+
FilesetEntry(
|
|
240
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.284:public",
|
|
241
|
+
destdir = "0.1.284",
|
|
242
|
+
),
|
|
243
|
+
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
244
|
+
],
|
|
245
|
+
)
|
|
246
|
+
|
|
247
|
+
build_test(
|
|
248
|
+
name = "earthengine_fileset_test",
|
|
249
|
+
targets = [":earthengine_fileset"],
|
|
250
|
+
)
|
package/.tmp/METADATA
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Format: google3/devtools/metadata/metadata.proto (go/google3metadata)
|
|
2
|
+
|
|
3
|
+
name: "0.1.284"
|
|
4
|
+
description:
|
|
5
|
+
"Google Earth Engine is a cloud-based platform for planetary-scale "
|
|
6
|
+
"environmental data analysis. The Earth Engine JavaScript API allows "
|
|
7
|
+
"developers to make requests to the Earth Engine servers from their own"
|
|
8
|
+
"applications."
|
|
9
|
+
|
|
10
|
+
third_party {
|
|
11
|
+
url {
|
|
12
|
+
type: GIT
|
|
13
|
+
value: "https://github.com/google/earthengine-api.git"
|
|
14
|
+
}
|
|
15
|
+
version: "v0.1.284"
|
|
16
|
+
last_upgrade_date: {
|
|
17
|
+
year: 2021
|
|
18
|
+
month: 9
|
|
19
|
+
day: 24
|
|
20
|
+
}
|
|
21
|
+
}
|