@google/earthengine 0.1.310 → 0.1.311
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 +4 -0
- package/.tmp/METADATA +3 -3
- package/build/browser.js +47 -50
- package/build/ee_api_js.js +11 -11
- package/build/ee_api_js_debug.js +33 -35
- package/build/ee_api_js_npm.js +47 -50
- package/build/main.js +47 -50
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/eeapiclient/domain_object.ts +4 -4
package/.tmp/BUILD
CHANGED
|
@@ -336,6 +336,10 @@ Fileset(
|
|
|
336
336
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.310:public",
|
|
337
337
|
destdir = "0.1.310",
|
|
338
338
|
),
|
|
339
|
+
FilesetEntry(
|
|
340
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.311:public",
|
|
341
|
+
destdir = "0.1.311",
|
|
342
|
+
),
|
|
339
343
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
340
344
|
],
|
|
341
345
|
)
|
package/.tmp/METADATA
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Format: google3/devtools/metadata/metadata.proto (go/google3metadata)
|
|
2
2
|
|
|
3
|
-
name: "0.1.
|
|
3
|
+
name: "0.1.311"
|
|
4
4
|
description:
|
|
5
5
|
"Google Earth Engine is a cloud-based platform for planetary-scale "
|
|
6
6
|
"environmental data analysis. The Earth Engine JavaScript API allows "
|
|
@@ -12,10 +12,10 @@ third_party {
|
|
|
12
12
|
type: GIT
|
|
13
13
|
value: "https://github.com/google/earthengine-api.git"
|
|
14
14
|
}
|
|
15
|
-
version: "v0.1.
|
|
15
|
+
version: "v0.1.311"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2022
|
|
18
18
|
month: 5
|
|
19
|
-
day:
|
|
19
|
+
day: 25
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -3009,7 +3009,7 @@ function module$contents$goog$labs$userAgent$browser_getFullVersionFromUserAgent
|
|
|
3009
3009
|
}
|
|
3010
3010
|
return "";
|
|
3011
3011
|
}
|
|
3012
|
-
function module$contents$goog$labs$userAgent$
|
|
3012
|
+
function module$contents$goog$labs$userAgent$browser_versionOf_(browser) {
|
|
3013
3013
|
if (module$contents$goog$labs$userAgent$browser_useUserAgentDataBrand() && browser !== module$contents$goog$labs$userAgent$browser_Brand.SILK) {
|
|
3014
3014
|
var matchingBrand = module$contents$goog$labs$userAgent$util_getUserAgentData().brands.find(function($jscomp$destructuring$var2) {
|
|
3015
3015
|
return $jscomp$destructuring$var2.brand === browser;
|
|
@@ -3027,14 +3027,13 @@ function module$contents$goog$labs$userAgent$browser_versionOf(browser) {
|
|
|
3027
3027
|
}
|
|
3028
3028
|
return 0 === versionParts.length ? NaN : Number(versionParts[0]);
|
|
3029
3029
|
}
|
|
3030
|
-
goog.labs.userAgent.browser.versionOf = module$contents$goog$labs$userAgent$browser_versionOf;
|
|
3031
3030
|
goog.labs.userAgent.browser.isAtLeast = function module$contents$goog$labs$userAgent$browser_isAtLeast(brand, majorVersion) {
|
|
3032
3031
|
goog.asserts.assert(Math.floor(majorVersion) === majorVersion, "Major version must be an integer");
|
|
3033
|
-
return module$contents$goog$labs$userAgent$
|
|
3032
|
+
return module$contents$goog$labs$userAgent$browser_versionOf_(brand) >= majorVersion;
|
|
3034
3033
|
};
|
|
3035
3034
|
goog.labs.userAgent.browser.isAtMost = function module$contents$goog$labs$userAgent$browser_isAtMost(brand, majorVersion) {
|
|
3036
3035
|
goog.asserts.assert(Math.floor(majorVersion) === majorVersion, "Major version must be an integer");
|
|
3037
|
-
return module$contents$goog$labs$userAgent$
|
|
3036
|
+
return module$contents$goog$labs$userAgent$browser_versionOf_(brand) <= majorVersion;
|
|
3038
3037
|
};
|
|
3039
3038
|
var module$contents$goog$labs$userAgent$browser_HighEntropyBrandVersion = function(brand) {
|
|
3040
3039
|
this.brand_ = brand;
|
|
@@ -6480,7 +6479,7 @@ module$contents$goog$html$SafeScript_SafeScript.stringify_ = function(val) {
|
|
|
6480
6479
|
return JSON.stringify(val).replace(/</g, "\\x3c");
|
|
6481
6480
|
};
|
|
6482
6481
|
module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse = function(script) {
|
|
6483
|
-
var policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedScript = policy ? policy.createScript(
|
|
6482
|
+
var noinlineScript = script, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedScript = policy ? policy.createScript(noinlineScript) : noinlineScript;
|
|
6484
6483
|
return new module$contents$goog$html$SafeScript_SafeScript(trustedScript, module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
6485
6484
|
};
|
|
6486
6485
|
module$contents$goog$html$SafeScript_SafeScript.prototype.toString = function() {
|
|
@@ -6737,7 +6736,7 @@ goog.html.TrustedResourceUrl.fromSafeScript = function(safeScript) {
|
|
|
6737
6736
|
};
|
|
6738
6737
|
goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_ = {};
|
|
6739
6738
|
goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse = function(url) {
|
|
6740
|
-
var policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), value = policy ? policy.createScriptURL(
|
|
6739
|
+
var noinlineUrl = url, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), value = policy ? policy.createScriptURL(noinlineUrl) : noinlineUrl;
|
|
6741
6740
|
return new goog.html.TrustedResourceUrl(value, goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_);
|
|
6742
6741
|
};
|
|
6743
6742
|
goog.html.TrustedResourceUrl.stringifyParams_ = function(prefix, currentString, params) {
|
|
@@ -7238,7 +7237,7 @@ module$contents$goog$html$SafeHtml_SafeHtml.concatWithDir = function(dir, var_ar
|
|
|
7238
7237
|
return html;
|
|
7239
7238
|
};
|
|
7240
7239
|
module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse = function(html, dir) {
|
|
7241
|
-
var policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedHtml = policy ? policy.createHTML(
|
|
7240
|
+
var noinlineHtml = html, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedHtml = policy ? policy.createHTML(noinlineHtml) : noinlineHtml;
|
|
7242
7241
|
return new module$contents$goog$html$SafeHtml_SafeHtml(trustedHtml, dir, module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
7243
7242
|
};
|
|
7244
7243
|
module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse = function(tagName, attributes, content) {
|
|
@@ -14132,14 +14131,14 @@ module$exports$eeapiclient$promise_request_service.PromiseRequestService.prototy
|
|
|
14132
14131
|
});
|
|
14133
14132
|
};
|
|
14134
14133
|
goog.async = {};
|
|
14135
|
-
goog
|
|
14134
|
+
var module$contents$goog$async$FreeList_FreeList = function(create, reset, limit) {
|
|
14136
14135
|
this.limit_ = limit;
|
|
14137
14136
|
this.create_ = create;
|
|
14138
14137
|
this.reset_ = reset;
|
|
14139
14138
|
this.occupants_ = 0;
|
|
14140
14139
|
this.head_ = null;
|
|
14141
14140
|
};
|
|
14142
|
-
goog
|
|
14141
|
+
module$contents$goog$async$FreeList_FreeList.prototype.get = function() {
|
|
14143
14142
|
if (0 < this.occupants_) {
|
|
14144
14143
|
this.occupants_--;
|
|
14145
14144
|
var item = this.head_;
|
|
@@ -14150,13 +14149,14 @@ goog.async.FreeList.prototype.get = function() {
|
|
|
14150
14149
|
}
|
|
14151
14150
|
return item;
|
|
14152
14151
|
};
|
|
14153
|
-
goog
|
|
14152
|
+
module$contents$goog$async$FreeList_FreeList.prototype.put = function(item) {
|
|
14154
14153
|
this.reset_(item);
|
|
14155
14154
|
this.occupants_ < this.limit_ && (this.occupants_++, item.next = this.head_, this.head_ = item);
|
|
14156
14155
|
};
|
|
14157
|
-
goog
|
|
14156
|
+
module$contents$goog$async$FreeList_FreeList.prototype.occupants = function() {
|
|
14158
14157
|
return this.occupants_;
|
|
14159
14158
|
};
|
|
14159
|
+
goog.async.FreeList = module$contents$goog$async$FreeList_FreeList;
|
|
14160
14160
|
goog.dom.BrowserFeature = {};
|
|
14161
14161
|
goog.dom.BrowserFeature.ASSUME_NO_OFFSCREEN_CANVAS = !1;
|
|
14162
14162
|
goog.dom.BrowserFeature.ASSUME_OFFSCREEN_CANVAS = !1;
|
|
@@ -15203,7 +15203,7 @@ module$contents$goog$async$WorkQueue_WorkQueue.prototype.getUnusedItem_ = functi
|
|
|
15203
15203
|
return module$contents$goog$async$WorkQueue_WorkQueue.freelist_.get();
|
|
15204
15204
|
};
|
|
15205
15205
|
module$contents$goog$async$WorkQueue_WorkQueue.DEFAULT_MAX_UNUSED = 100;
|
|
15206
|
-
module$contents$goog$async$WorkQueue_WorkQueue.freelist_ = new goog
|
|
15206
|
+
module$contents$goog$async$WorkQueue_WorkQueue.freelist_ = new module$contents$goog$async$FreeList_FreeList(function() {
|
|
15207
15207
|
return new module$contents$goog$async$WorkQueue_WorkItem();
|
|
15208
15208
|
}, function(item) {
|
|
15209
15209
|
return item.reset();
|
|
@@ -15266,25 +15266,26 @@ goog.async.run.processWorkQueue = function() {
|
|
|
15266
15266
|
goog.promise = {};
|
|
15267
15267
|
goog.promise.Resolver = function() {
|
|
15268
15268
|
};
|
|
15269
|
-
goog
|
|
15270
|
-
}
|
|
15271
|
-
goog.
|
|
15269
|
+
function module$contents$goog$Thenable_Thenable() {
|
|
15270
|
+
}
|
|
15271
|
+
module$contents$goog$Thenable_Thenable.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
15272
15272
|
};
|
|
15273
|
-
goog.
|
|
15274
|
-
goog.
|
|
15275
|
-
ctor.prototype[goog.
|
|
15273
|
+
module$contents$goog$Thenable_Thenable.IMPLEMENTED_BY_PROP = "$goog_Thenable";
|
|
15274
|
+
module$contents$goog$Thenable_Thenable.addImplementation = function(ctor) {
|
|
15275
|
+
ctor.prototype[module$contents$goog$Thenable_Thenable.IMPLEMENTED_BY_PROP] = !0;
|
|
15276
15276
|
};
|
|
15277
|
-
goog.
|
|
15277
|
+
module$contents$goog$Thenable_Thenable.isImplementedBy = function(object) {
|
|
15278
15278
|
if (!object) {
|
|
15279
15279
|
return !1;
|
|
15280
15280
|
}
|
|
15281
15281
|
try {
|
|
15282
|
-
return !!object[goog.
|
|
15282
|
+
return !!object[module$contents$goog$Thenable_Thenable.IMPLEMENTED_BY_PROP];
|
|
15283
15283
|
return !!object.$goog_Thenable;
|
|
15284
15284
|
} catch (e) {
|
|
15285
15285
|
return !1;
|
|
15286
15286
|
}
|
|
15287
15287
|
};
|
|
15288
|
+
goog.Thenable = module$contents$goog$Thenable_Thenable;
|
|
15288
15289
|
goog.Promise = function(resolver, opt_context) {
|
|
15289
15290
|
this.state_ = goog.Promise.State_.PENDING;
|
|
15290
15291
|
this.result_ = void 0;
|
|
@@ -15326,7 +15327,7 @@ goog.Promise.CallbackEntry_.prototype.reset = function() {
|
|
|
15326
15327
|
this.always = !1;
|
|
15327
15328
|
};
|
|
15328
15329
|
goog.Promise.DEFAULT_MAX_UNUSED = 100;
|
|
15329
|
-
goog.Promise.freelist_ = new goog
|
|
15330
|
+
goog.Promise.freelist_ = new module$contents$goog$async$FreeList_FreeList(function() {
|
|
15330
15331
|
return new goog.Promise.CallbackEntry_();
|
|
15331
15332
|
}, function(item) {
|
|
15332
15333
|
item.reset();
|
|
@@ -15430,7 +15431,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15430
15431
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15431
15432
|
return this.addChildPromise_("function" === typeof opt_onFulfilled ? opt_onFulfilled : null, "function" === typeof opt_onRejected ? opt_onRejected : null, opt_context);
|
|
15432
15433
|
};
|
|
15433
|
-
goog.
|
|
15434
|
+
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15434
15435
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
15435
15436
|
null != opt_onFulfilled && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15436
15437
|
null != opt_onRejected && goog.asserts.assertFunction(opt_onRejected, "opt_onRejected should be a function. Did you pass opt_context as the second argument instead of the third?");
|
|
@@ -15514,7 +15515,7 @@ goog.Promise.maybeThen_ = function(value, onFulfilled, onRejected, context) {
|
|
|
15514
15515
|
if (value instanceof goog.Promise) {
|
|
15515
15516
|
return value.thenVoid(onFulfilled, onRejected, context), !0;
|
|
15516
15517
|
}
|
|
15517
|
-
if (goog.
|
|
15518
|
+
if (module$contents$goog$Thenable_Thenable.isImplementedBy(value)) {
|
|
15518
15519
|
return value.then(onFulfilled, onRejected, context), !0;
|
|
15519
15520
|
}
|
|
15520
15521
|
if (goog.isObject(value)) {
|
|
@@ -15871,7 +15872,7 @@ goog.async.Deferred.prototype.then = function(opt_onFulfilled, opt_onRejected, o
|
|
|
15871
15872
|
});
|
|
15872
15873
|
return promise.then(opt_onFulfilled, opt_onRejected, opt_context);
|
|
15873
15874
|
};
|
|
15874
|
-
goog.
|
|
15875
|
+
module$contents$goog$Thenable_Thenable.addImplementation(goog.async.Deferred);
|
|
15875
15876
|
goog.async.Deferred.prototype.chainDeferred = function(otherDeferred) {
|
|
15876
15877
|
this.addCallbacks(otherDeferred.callback, otherDeferred.errback, otherDeferred);
|
|
15877
15878
|
return this;
|
|
@@ -15910,7 +15911,7 @@ goog.async.Deferred.prototype.fire_ = function() {
|
|
|
15910
15911
|
try {
|
|
15911
15912
|
var ret = f.call(scope || this.defaultScope_, res);
|
|
15912
15913
|
void 0 !== ret && (this.hadError_ = this.hadError_ && (ret == res || this.isError(ret)), this.result_ = res = ret);
|
|
15913
|
-
if (goog.
|
|
15914
|
+
if (module$contents$goog$Thenable_Thenable.isImplementedBy(res) || "function" === typeof goog.global.Promise && res instanceof goog.global.Promise) {
|
|
15914
15915
|
this.blocked_ = isNewlyBlocked = !0;
|
|
15915
15916
|
}
|
|
15916
15917
|
} catch (ex) {
|
|
@@ -16093,7 +16094,6 @@ goog.json = {};
|
|
|
16093
16094
|
goog.json.Replacer = {};
|
|
16094
16095
|
goog.json.Reviver = {};
|
|
16095
16096
|
goog.json.USE_NATIVE_JSON = !1;
|
|
16096
|
-
goog.json.TRY_NATIVE_JSON = !0;
|
|
16097
16097
|
goog.json.isValid = function(s) {
|
|
16098
16098
|
return /^\s*$/.test(s) ? !1 : /^[\],:{}\s\u2028\u2029]*$/.test(s.replace(/\\["\\\/bfnrtu]/g, "@").replace(/(?:"[^"\\\n\r\u2028\u2029\x00-\x08\x0a-\x1f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)[\s\u2028\u2029]*(?=:|,|]|}|$)/g, "]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g, ""));
|
|
16099
16099
|
};
|
|
@@ -16103,12 +16103,10 @@ goog.json.setErrorLogger = function(errorLogger) {
|
|
|
16103
16103
|
goog.json.errorLogger_ = errorLogger;
|
|
16104
16104
|
};
|
|
16105
16105
|
goog.json.parse = goog.json.USE_NATIVE_JSON ? goog.global.JSON.parse : function(s) {
|
|
16106
|
-
|
|
16107
|
-
|
|
16108
|
-
|
|
16109
|
-
|
|
16110
|
-
var error = ex;
|
|
16111
|
-
}
|
|
16106
|
+
try {
|
|
16107
|
+
return goog.global.JSON.parse(s);
|
|
16108
|
+
} catch (ex) {
|
|
16109
|
+
var error = ex;
|
|
16112
16110
|
}
|
|
16113
16111
|
var o = String(s);
|
|
16114
16112
|
if (goog.json.isValid(o)) {
|
|
@@ -16971,7 +16969,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
16971
16969
|
ee.apiclient = {};
|
|
16972
16970
|
var module$contents$ee$apiclient_apiclient = {};
|
|
16973
16971
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
16974
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
16972
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.311";
|
|
16975
16973
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
16976
16974
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
16977
16975
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17252,8 +17250,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17252
17250
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17253
17251
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17254
17252
|
method = method || "POST";
|
|
17255
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17256
|
-
"0.1.
|
|
17253
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.311";
|
|
17254
|
+
"0.1.311" === version && (version = "latest");
|
|
17257
17255
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17258
17256
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17259
17257
|
if (null != authToken) {
|
|
@@ -24617,24 +24615,23 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24617
24615
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24618
24616
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24619
24617
|
(function() {
|
|
24620
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
24621
|
-
orderedParamLists = [["name"], ["name", "var_args"], ["name"
|
|
24618
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction._call ee.ApiFunction.lookup ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.classifier.toAsset ee.Collection.prototype.filterMetadata ee.Collection.prototype.sort ee.Collection.prototype.limit ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.data.getMapId ee.data.getTileUrl ee.data.setAssetProperties ee.data.authenticateViaPopup ee.data.getAssetRootQuota ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.computeValue ee.data.getThumbId ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.data.startIngestion ee.data.listAssets ee.data.renameAsset ee.data.updateTask ee.data.authenticateViaOauth ee.data.authenticateViaPrivateKey ee.data.authenticate ee.data.copyAsset ee.data.startProcessing ee.data.listImages ee.data.getTaskList ee.data.getDownloadId ee.data.deleteAsset ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.makeDownloadUrl ee.data.startTableIngestion ee.data.getAssetAcl ee.data.getAssetRoots ee.data.getTableDownloadId ee.data.listOperations ee.data.cancelOperation ee.data.createAssetHome ee.data.getAsset ee.data.makeTableDownloadUrl ee.data.createAsset ee.data.getInfo ee.data.newTaskId ee.data.getOperation ee.data.updateAsset ee.data.getList ee.data.createFolder ee.data.getTaskStatus ee.data.cancelTask ee.data.setAssetAcl ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.initialize ee.call ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.Element.prototype.set ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.prototype.not ee.Filter.inList ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getThumbURL ee.Image.prototype.getInfo ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.prototype.clip ee.Image.cat ee.Image.prototype.expression ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
24619
|
+
orderedParamLists = [["name", "namedArgs"], ["name", "var_args"], ["name"], "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),
|
|
24622
24620
|
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["collection", "opt_description",
|
|
24623
24621
|
"opt_assetId", "opt_maxVertices"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris".split(" "),
|
|
24624
|
-
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["classifier", "opt_description", "opt_assetId"], ["name", "operator", "value"], ["property", "opt_ascending"], ["max", "opt_property", "opt_ascending"], ["filter"], ["start", "opt_end"], ["geometry"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["
|
|
24625
|
-
"
|
|
24626
|
-
"
|
|
24627
|
-
["opt_callback"], ["params", "opt_callback"], ["
|
|
24628
|
-
|
|
24629
|
-
|
|
24630
|
-
|
|
24631
|
-
|
|
24632
|
-
[
|
|
24633
|
-
[ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.map.toCloudStorage,
|
|
24622
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["classifier", "opt_description", "opt_assetId"], ["name", "operator", "value"], ["property", "opt_ascending"], ["max", "opt_property", "opt_ascending"], ["filter"], ["start", "opt_end"], ["geometry"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["assetId",
|
|
24623
|
+
"properties", "opt_callback"], ["opt_success", "opt_error"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["obj", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id"], ["taskId", "request", "opt_callback"], ["parent", "params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["taskId", "action", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
|
|
24624
|
+
["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "params", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["id"], ["taskId", "request", "opt_callback"], ["assetId",
|
|
24625
|
+
"opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["id", "opt_callback"], ["id"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["id", "opt_callback"], ["opt_count", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "opt_callback"],
|
|
24626
|
+
["taskId", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["func", "namedArgs"], [], [], [], [], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename",
|
|
24627
|
+
"opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], [], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "operator", "value"], ["name", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], ["coords", "opt_proj"], ["west", "south", "east",
|
|
24628
|
+
"north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["var_args"], ["opt_args"],
|
|
24629
|
+
["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["params", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["var_args"], ["geometry"], ["var_args"], ["expression", "opt_map"], ["params", "opt_callback"], ["params", "opt_callback"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
24630
|
+
[ee.ApiFunction._apply, ee.ApiFunction._call, ee.ApiFunction.lookup, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.map.toCloudStorage,
|
|
24634
24631
|
module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.classifier.toAsset, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.sort, ee.Collection.prototype.limit, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize,
|
|
24635
|
-
ee.ComputedObject.prototype.evaluate, ee.data.getMapId, ee.data.getTileUrl, ee.data.
|
|
24636
|
-
ee.data.
|
|
24637
|
-
ee.data.
|
|
24632
|
+
ee.ComputedObject.prototype.evaluate, ee.data.getMapId, ee.data.getTileUrl, ee.data.setAssetProperties, ee.data.authenticateViaPopup, ee.data.getAssetRootQuota, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.computeValue, ee.data.getThumbId, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId, ee.data.makeThumbUrl, ee.data.startIngestion, ee.data.listAssets, ee.data.renameAsset, ee.data.updateTask, ee.data.authenticateViaOauth, ee.data.authenticateViaPrivateKey, ee.data.authenticate,
|
|
24633
|
+
ee.data.copyAsset, ee.data.startProcessing, ee.data.listImages, ee.data.getTaskList, ee.data.getDownloadId, ee.data.deleteAsset, ee.data.listBuckets, ee.data.getTaskListWithLimit, ee.data.makeDownloadUrl, ee.data.startTableIngestion, ee.data.getAssetAcl, ee.data.getAssetRoots, ee.data.getTableDownloadId, ee.data.listOperations, ee.data.cancelOperation, ee.data.createAssetHome, ee.data.getAsset, ee.data.makeTableDownloadUrl, ee.data.createAsset, ee.data.getInfo, ee.data.newTaskId, ee.data.getOperation,
|
|
24634
|
+
ee.data.updateAsset, ee.data.getList, ee.data.createFolder, ee.data.getTaskStatus, ee.data.cancelTask, ee.data.setAssetAcl, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.initialize, ee.call, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.Element.prototype.set, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap,
|
|
24638
24635
|
ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.gte, ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.prototype.not, ee.Filter.inList, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.gt, ee.Filter.bounds, ee.Filter.lte, ee.Filter.lt, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.MultiPoint,
|
|
24639
24636
|
ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getThumbURL, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.clip, ee.Image.cat, ee.Image.prototype.expression, ee.ImageCollection.prototype.getFilmstripThumbURL,
|
|
24640
24637
|
ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
package/build/ee_api_js.js
CHANGED
|
@@ -449,7 +449,7 @@ Uc(p,f[m]))});return b?b(l):l};return this.callback?(lj(d,null,function(f,l){ret
|
|
|
449
449
|
nj.prototype.send=function(a,b){var c=[a.A+" "+a.path+" HTTP/1.1"];c.push("Content-Type: application/json; charset=utf-8");var d=pj();null!=d&&c.push("Authorization: "+d);a=a.body?JSON.stringify(a.body):"";return[c.join("\r\n")+"\r\n\r\n"+a,b]};
|
|
450
450
|
var qj=function(a,b,c){a=n(b.split("--"+a.split("; boundary=")[1]));for(b=a.next();!b.done;b=a.next())if(b=b.value.split("\r\n\r\n"),!(3>b.length)){var d=b[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1],e=Number(b[1].match(/^HTTP\S*\s(\d+)\s/)[1]);c(d,e,b.slice(2).join("\r\n\r\n"))}},jj=function(){var a=rj.replace(/\/api$/,"");return"window"in r&&!a.match(/^https?:\/\/content-/)?a.replace(/^(https?:\/\/)(.*\.googleapis\.com)$/,"$1content-$2"):a},tj=function(a,b,c){var d=[];a&&(d=d.concat(sj));
|
|
451
451
|
b&&d.push("https://www.googleapis.com/auth/devstorage.read_write");a=d=d.concat(c);c=b=0;for(var e={};c<a.length;){var g=a[c++],f=t(g)?"o"+wa(g):(typeof g).charAt(0)+g;Object.prototype.hasOwnProperty.call(e,f)||(e[f]=!0,a[b++]=g)}a.length=b;return d},zj=function(a,b,c){uj&&vj&&uj({client_id:String(vj),immediate:!0,scope:wj.join(" ")},function(d){if("immediate_failed"==d.error&&c)c();else if("window"in r)try{xj(function(){try{r.gapi.auth.setToken(d),yj(a,b,d)}catch(e){b(e.toString())}})}catch(e){b(e.toString())}else yj(a,
|
|
452
|
-
b,d)})},pj=function(){Aj&&0<=Date.now()-Aj&&Bj();return Cj},Bj=function(){Aj=Cj=null},gj=function(a,b,c,d){null!=a?rj=a:Dj||(rj="https://earthengine.googleapis.com/api");null!=b?Ej=b:Dj||(Ej="https://earthengine.googleapis.com");void 0!==c&&(Fj=c);fj=null!=d?d:fj||"earthengine-legacy";Dj=!0},lj=function(a,b,c,d,e,g){gj();var f=Gj,l="application/x-www-form-urlencoded";e&&(l="application/json",d&&d.startsWith("multipart")&&(l=d,d="POST"));d=d||"POST";l={"Content-Type":l};var m="0.1.
|
|
452
|
+
b,d)})},pj=function(){Aj&&0<=Date.now()-Aj&&Bj();return Cj},Bj=function(){Aj=Cj=null},gj=function(a,b,c,d){null!=a?rj=a:Dj||(rj="https://earthengine.googleapis.com/api");null!=b?Ej=b:Dj||(Ej="https://earthengine.googleapis.com");void 0!==c&&(Fj=c);fj=null!=d?d:fj||"earthengine-legacy";Dj=!0},lj=function(a,b,c,d,e,g){gj();var f=Gj,l="application/x-www-form-urlencoded";e&&(l="application/json",d&&d.startsWith("multipart")&&(l=d,d="POST"));d=d||"POST";l={"Content-Type":l};var m="0.1.311";"0.1.311"===
|
|
453
453
|
m&&(m="latest");l["x-goog-api-client"]="ee-js/"+m;m=pj();if(null!=m)l.Authorization=m;else if(c&&uj&&vj)return zj(function(){Hj(f,function(){lj(a,b,c,d)})}),null;b=b?b.clone():new Fd;null!=Ij&&b.add("key",Ij);f&&(l["X-Earth-Engine-Computation-Profiling"]="1");fj&&"earthengine-legacy"!==fj&&(l["X-Goog-User-Project"]=fj);b=Jj(b,a);null!=Fj&&(l["X-XSRF-Token"]=Fj);null!=Kj&&(l["X-Earth-Engine-App-ID-Token"]=Kj);m=e||null;var p=b?b.toString():"";"POST"===d&&void 0===e?m=p:/^[\s\xa0]*$/.test(p)||(a+=-1!=
|
|
454
454
|
a.indexOf("?")?"&":"?",a+=p);e=a.startsWith("/")?rj+a:a;if(c)return Lj.push(Mj(e,c,d,m,l,g)),Nj.jf(),null;p=function(D,R){this.setRequestHeader&&this.setRequestHeader(R,D)};var v=0;for(g=null!=g?g:5;;){var B=Si(Qi);B.open(d,e,!1);Db(l,p,B);B.send(m);if(429!=B.status||v>g)break;v++}return Oj(B.status,function(D){try{return B.getResponseHeader(D)}catch(R){return null}},B.responseText,f,void 0,e,d)},Mj=function(a,b,c,d,e,g){var f=0,l={url:a,method:c,content:d,headers:e},m=Gj,p=null!=g?g:10;l.callback=
|
|
455
455
|
function(v){v=v.target;if(429==v.getStatus()&&f<p)return f++,setTimeout(function(){Lj.push(l);Nj.jf()},Math.min(12E4,1E3*Math.pow(2,f))),null;var B=Oj,D=v.getStatus(),R=u(v.getResponseHeader,v);try{var Y=v.o?v.o.responseText:""}catch(U){Li(v.ma,"Can not get responseText: "+U.message),Y=""}return B(D,R,Y,m,b,a,c)};return l},Hj=function(a,b){var c=Gj;try{Gj=a,b.call(void 0)}finally{Gj=c}},Oj=function(a,b,c,d,e,g,f){var l=d?b("X-Earth-Engine-Computation-Profile"):"";l&&d&&d(l);var m=function(Y){try{var U=
|
|
@@ -689,17 +689,17 @@ h.jl=function(){if(!this.lc){var a=u(function(d){this.lc||(Sp(this.ka,this.ja,d)
|
|
|
689
689
|
h.ka=null;h.Pi=null;h.Oa=null;h.li=null;var sq=["load","abort","error"],tq=function(){y.call(this);this.Ja=!1};q(tq,y);tq.prototype.setActive=function(a){this.Ja=a};tq.prototype.Ih=function(){return this.Ja};var nq=function(a,b){hq.call(this,a,b)};q(nq,hq);nq.prototype.Xe=function(){return new tq};nq.prototype.Ad=function(a){a.Xa()};nq.prototype.Mf=function(a){return!a.Ya&&!a.Ih()};var uq=function(a,b,c,d,e){Lc.call(this,a,b,c,d,e);this.minZoom=d.minZoom||0;this.maxZoom=d.maxZoom||20;if(!window.google||!window.google.maps)throw Error("Google Maps API hasn't been initialized.");this.tileSize=d.tileSize||new google.maps.Size(256,256);this.name=d.name;this.sg=new Gc;this.Nf=1;this.ya=e||null};q(uq,Lc);h=uq.prototype;h.Oe=function(a){return $b(this,"tileevent",a)};h.Yf=function(a){hc(a)};
|
|
690
690
|
h.getTile=function(a,b,c){if(b<this.minZoom||0>a.y||a.y>=1<<b)return a=c.createElement("IMG"),a.style.width="0px",a.style.height="0px",a;b=Mc(this,a,b);a=[this.url,b].join("/")+"?token="+this.token;this.ya&&this.ya.isEnabled()&&(a+="&profiling=1");b=[b,this.Bb,this.token].join("/");this.Bb+=1;c=mh("DIV",{id:b});var d=(new Date).getTime()/1E3;this.Db.push(b);rq().send(b,a,d,u(this.Kk,this,c,b));pp(this);return c};h.Sc=function(){return this.Db.length};
|
|
691
691
|
h.releaseTile=function(a){rq().abort(a.id);if(void 0!==a.firstElementChild)var b=a.firstElementChild;else for(b=a.firstChild;b&&1!=b.nodeType;)b=b.nextSibling;this.sg.remove(b);""!==a.id&&(this.rg.remove(a.id),this.ya&&this.ya.bl(a.id))};h.setOpacity=function(a){this.Nf=a;var b=this.sg.Ia();sc(b,function(c){Ap(c,a)})};
|
|
692
|
-
h.Kk=function(a,b,c,d){"error"==c.type?(Va(this.Db,b),this.rg.add(b),this.dispatchEvent(c)):(Va(this.Db,b),c.target&&"load"==c.type&&(c=c.target,this.sg.add(c),1!=this.Nf&&Ap(c,this.Nf),a.appendChild(c)),pp(this));this.ya&&null!==d&&this.ya.yk(b,d)};w("ee.MapLayerOverlay",uq);uq.prototype.removeTileCallback=uq.prototype.Yf;uq.prototype.addTileCallback=uq.prototype.Oe;uq.prototype.getTile=uq.prototype.getTile;uq.prototype.setOpacity=uq.prototype.setOpacity;uq.prototype.releaseTile=uq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction.lookup ee.ApiFunction.
|
|
693
|
-
c=[["name"],["name","
|
|
692
|
+
h.Kk=function(a,b,c,d){"error"==c.type?(Va(this.Db,b),this.rg.add(b),this.dispatchEvent(c)):(Va(this.Db,b),c.target&&"load"==c.type&&(c=c.target,this.sg.add(c),1!=this.Nf&&Ap(c,this.Nf),a.appendChild(c)),pp(this));this.ya&&null!==d&&this.ya.yk(b,d)};w("ee.MapLayerOverlay",uq);uq.prototype.removeTileCallback=uq.prototype.Yf;uq.prototype.addTileCallback=uq.prototype.Oe;uq.prototype.getTile=uq.prototype.getTile;uq.prototype.setOpacity=uq.prototype.setOpacity;uq.prototype.releaseTile=uq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.classifier.toAsset ee.Collection.prototype.filterMetadata ee.Collection.prototype.sort ee.Collection.prototype.limit ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.data.getMapId ee.data.listAssets ee.data.getTileUrl ee.data.renameAsset ee.data.updateTask ee.data.setAssetProperties ee.data.copyAsset ee.data.startProcessing ee.data.listImages ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.listBuckets ee.data.getFeatureViewTilesKey ee.data.getAssetAcl ee.data.getAssetRoots ee.data.listFeatures ee.data.createAssetHome ee.data.computeValue ee.data.createAsset ee.data.getThumbId ee.data.updateAsset ee.data.createFolder ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.startIngestion ee.data.authenticateViaOauth ee.data.authenticateViaPrivateKey ee.data.authenticate ee.data.getTaskList ee.data.getDownloadId ee.data.getTaskListWithLimit ee.data.makeDownloadUrl ee.data.startTableIngestion ee.data.getTableDownloadId ee.data.listOperations ee.data.cancelOperation ee.data.getAsset ee.data.makeTableDownloadUrl ee.data.getInfo ee.data.newTaskId ee.data.getOperation ee.data.getList ee.data.getTaskStatus ee.data.cancelTask ee.data.authenticateViaPopup ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.initialize ee.call ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.Element.prototype.set ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.prototype.not ee.Filter.inList ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getThumbURL ee.Image.prototype.getInfo ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.prototype.clip ee.Image.cat ee.Image.prototype.expression ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
693
|
+
c=[["name"],["name","namedArgs"],["name","var_args"],"image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),"image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "),"image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),
|
|
694
694
|
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),"collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),["collection","opt_description",
|
|
695
695
|
"opt_assetId","opt_maxVertices"],"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "),"image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris".split(" "),"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris".split(" "),
|
|
696
|
-
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),["classifier","opt_description","opt_assetId"],["name","operator","value"],["property","opt_ascending"],["max","opt_property","opt_ascending"],["filter"],["start","opt_end"],["geometry"],["algorithm","opt_dropNulls"],["algorithm","opt_first"],["func","var_args"],["opt_callback"],["legacy"],["callback"],["
|
|
697
|
-
"destinationId","opt_callback"],"
|
|
698
|
-
"
|
|
699
|
-
|
|
696
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),["classifier","opt_description","opt_assetId"],["name","operator","value"],["property","opt_ascending"],["max","opt_property","opt_ascending"],["filter"],["start","opt_end"],["geometry"],["algorithm","opt_dropNulls"],["algorithm","opt_first"],["func","var_args"],["opt_callback"],["legacy"],["callback"],["params","opt_callback"],["parent","params","opt_callback"],["id","x","y","z"],["sourceId",
|
|
697
|
+
"destinationId","opt_callback"],["taskId","action","opt_callback"],["assetId","properties","opt_callback"],["sourceId","destinationId","opt_overwrite","opt_callback"],["taskId","params","opt_callback"],["parent","params","opt_callback"],["rootId","opt_callback"],["assetId","opt_callback"],["project","opt_callback"],["params","opt_callback"],["assetId","opt_callback"],["opt_callback"],["asset","params","opt_callback"],["requestedId","opt_callback"],["obj","opt_callback"],["value","opt_path","opt_force",
|
|
698
|
+
"opt_properties","opt_callback"],["params","opt_callback"],["assetId","asset","updateFields","opt_callback"],["path","opt_force","opt_callback"],["params","opt_callback"],["params","opt_callback"],["id"],["assetId","aclUpdate","opt_callback"],["taskId","request","opt_callback"],"clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),["privateKey","opt_success","opt_error","opt_extraScopes","opt_suppressDefaultScopes"],["clientId","success","opt_error",
|
|
699
|
+
"opt_extraScopes","opt_onImmediateFailed"],["opt_callback"],["params","opt_callback"],["opt_limit","opt_callback"],["id"],["taskId","request","opt_callback"],["params","opt_callback"],["opt_limit","opt_callback"],["operationName","opt_callback"],["id","opt_callback"],["id"],["id","opt_callback"],["opt_count","opt_callback"],["operationName","opt_callback"],["params","opt_callback"],["taskId","opt_callback"],["taskId","opt_callback"],["opt_success","opt_error"],["date","opt_tz"],["json"],["json"],
|
|
700
700
|
["json"],["json"],["opt_dict"],"opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),["func","var_args"],["func","namedArgs"],[],[],[],[],["var_args"],["opt_visParams","opt_callback"],["opt_callback"],["geometry","opt_properties"],["opt_callback"],["opt_visParams","opt_callback"],["opt_format","opt_selectors","opt_filename","opt_callback"],["propertySelectors","opt_newProperties","opt_retainGeometry"],["args","opt_column"],["name","value"],["var_args"],
|
|
701
701
|
["start","opt_end"],["opt_filter"],[],["opt_leftField","opt_rightValue","opt_rightField","opt_leftValue"],["name","operator","value"],["name","value"],["name","value"],["name","value"],["geometry","opt_errorMargin"],["name","value"],["name","value"],["var_args"],["namedArgs"],["var_args"],["coords","opt_proj"],["west","south","east","north"],["coords","opt_proj","opt_geodesic","opt_maxError"],["legacy"],["geoJson","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj"],["coords","opt_proj",
|
|
702
|
-
"opt_geodesic","opt_maxError","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],[],[],["var_args"],["opt_args"],["opt_visParams","opt_callback"],["params","opt_callback"],["r","g","b"],["
|
|
703
|
-
["params","opt_callback"],["params","opt_callback"],[],["opt_visParams","opt_callback"],["opt_callback"],["selectors","opt_names"],["args"],["list"],["number"],["obj","opt_isCompound"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj"],["string"],[]];[Km,O,
|
|
704
|
-
|
|
705
|
-
Wn,L.prototype.
|
|
702
|
+
"opt_geodesic","opt_maxError","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],[],[],["var_args"],["opt_args"],["opt_visParams","opt_callback"],["params","opt_callback"],["r","g","b"],["params","opt_callback"],["opt_callback"],["params","opt_callback"],["var_args"],["geometry"],["var_args"],["expression","opt_map"],
|
|
703
|
+
["params","opt_callback"],["params","opt_callback"],[],["opt_visParams","opt_callback"],["opt_callback"],["selectors","opt_names"],["args"],["list"],["number"],["obj","opt_isCompound"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj"],["string"],[]];[Km,Lm,O,lo,jo,mo,so,to,oo,qo,ro,no,uo,po,vo,V.prototype.hf,V.prototype.sort,V.prototype.limit,V.prototype.filter,V.prototype.gf,V.prototype.th,V.prototype.map,V.prototype.Lh,M.prototype.Cg,M.prototype.V,M.prototype.za,M.prototype.evaluate,wl,im,xl,pm,Sl,
|
|
704
|
+
vm,qm,$l,jm,wm,rm,km,yl,sm,lm,zl,mm,Al,nm,Bl,tm,om,Cl,Dl,El,um,dm,ql,sl,rl,Ol,Gl,Nl,Hl,fm,Il,Pl,Ql,gm,Jl,gm,Kl,Rl,hm,Ml,Tl,pl,Mo,Ro,Po,Vo,Qo,Wo,ep,jp,kp,256,hp,ip,gp,Q.prototype.set,W.prototype.getMap,W.prototype.V,W,X.prototype.V,X.prototype.getMap,X.prototype.vb,X.prototype.select,X,Bn,Fn,Gn,T,T.prototype.vc,Hn,Jn,yn,zn,Cn,In,Dn,An,En,Fm.prototype.apply,Fm.prototype.call,dn,jn,nn,S.prototype.za,S,gn,qn,on,hn,mn,pn,S.prototype.ie,S.prototype.ug,L.prototype.ri,L,L.prototype.getMap,L.prototype.vb,
|
|
705
|
+
Wn,L.prototype.qf,L.prototype.V,L.prototype.Id,L.prototype.select,L.prototype.clip,Xn,L.prototype.l,Z.prototype.nf,Z.prototype.tf,Z.prototype.first,Z.prototype.getMap,Z.prototype.V,Z.prototype.select,Z,Yn,Co,Mk,Nk,Pk,Sk,Wk,Uk,Vk,Fo,Zo].forEach(function(d,e){d&&(a[d.toString()]={name:b[e],paramNames:c[e]})});r.EXPORTED_FN_INFO=a})();}).call(this);
|