@google/earthengine 1.3.1 → 1.4.0
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/build/browser.js +41 -34
- package/build/ee_api_js.js +606 -606
- package/build/ee_api_js_debug.js +18 -11
- package/build/ee_api_js_npm.js +41 -34
- package/build/main.js +41 -34
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/layers/featureviewtilesource.js +2 -2
package/build/ee_api_js_debug.js
CHANGED
|
@@ -2079,6 +2079,12 @@ module$exports$tslib.__disposeResources = function(env) {
|
|
|
2079
2079
|
};
|
|
2080
2080
|
var module$exports$enable_goog_asserts = {}, module$contents$enable_goog_asserts_module = module$contents$enable_goog_asserts_module || {id:"javascript/common/asserts/enable_goog_asserts.closure.js"};
|
|
2081
2081
|
module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS = goog.DEBUG;
|
|
2082
|
+
var module$exports$common$async$context$propagate = {}, module$contents$common$async$context$propagate_module = module$contents$common$async$context$propagate_module || {id:"javascript/common/async/context/propagate.closure.js"};
|
|
2083
|
+
module$exports$common$async$context$propagate.propagateAsyncContext = typeof AsyncContext !== "undefined" && typeof AsyncContext.Snapshot === "function" ? function(fn) {
|
|
2084
|
+
return fn && AsyncContext.Snapshot.wrap(fn);
|
|
2085
|
+
} : function(fn) {
|
|
2086
|
+
return fn;
|
|
2087
|
+
};
|
|
2082
2088
|
var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
|
|
2083
2089
|
module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
|
|
2084
2090
|
};
|
|
@@ -14950,6 +14956,7 @@ goog.Promise = function(resolver, opt_context) {
|
|
|
14950
14956
|
}
|
|
14951
14957
|
}
|
|
14952
14958
|
};
|
|
14959
|
+
goog.Promise.wrap_ = module$exports$common$async$context$propagate.propagateAsyncContext;
|
|
14953
14960
|
goog.Promise.LONG_STACK_TRACES = !1;
|
|
14954
14961
|
goog.Promise.UNHANDLED_REJECTION_DELAY = 0;
|
|
14955
14962
|
goog.Promise.State_ = {PENDING:0, BLOCKED:1, FULFILLED:2, REJECTED:3};
|
|
@@ -15064,7 +15071,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15064
15071
|
opt_onFulfilled != null && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15065
15072
|
opt_onRejected != null && goog.asserts.assertFunction(opt_onRejected, "opt_onRejected should be a function. Did you pass opt_context as the second argument instead of the third?");
|
|
15066
15073
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15067
|
-
return this.addChildPromise_(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null, typeof opt_onRejected === "function" ? opt_onRejected : null, opt_context);
|
|
15074
|
+
return this.addChildPromise_(module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null), module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onRejected === "function" ? opt_onRejected : null), opt_context);
|
|
15068
15075
|
};
|
|
15069
15076
|
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15070
15077
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
@@ -15075,14 +15082,14 @@ goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_
|
|
|
15075
15082
|
};
|
|
15076
15083
|
goog.Promise.prototype.thenAlways = function(onSettled, opt_context) {
|
|
15077
15084
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenAlways"));
|
|
15078
|
-
var entry = goog.Promise.getCallbackEntry_(
|
|
15085
|
+
var wrapped = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled), entry = goog.Promise.getCallbackEntry_(wrapped, wrapped, opt_context);
|
|
15079
15086
|
entry.always = !0;
|
|
15080
15087
|
this.addCallbackEntry_(entry);
|
|
15081
15088
|
return this;
|
|
15082
15089
|
};
|
|
15083
15090
|
goog.Promise.prototype.thenCatch = function(onRejected, opt_context) {
|
|
15084
15091
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenCatch"));
|
|
15085
|
-
return this.addChildPromise_(null, onRejected, opt_context);
|
|
15092
|
+
return this.addChildPromise_(null, module$exports$common$async$context$propagate.propagateAsyncContext(onRejected), opt_context);
|
|
15086
15093
|
};
|
|
15087
15094
|
goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
|
|
15088
15095
|
goog.Promise.prototype.cancel = function(opt_message) {
|
|
@@ -19006,10 +19013,10 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19006
19013
|
this.errorDispatched_ = !1;
|
|
19007
19014
|
this.active_ = !0;
|
|
19008
19015
|
this.xhr_ = this.createXhr();
|
|
19009
|
-
this.xhr_.onreadystatechange = goog.bind(this.onReadyStateChange_, this);
|
|
19010
|
-
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = goog.bind(function(e) {
|
|
19016
|
+
this.xhr_.onreadystatechange = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onReadyStateChange_, this));
|
|
19017
|
+
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(function(e) {
|
|
19011
19018
|
this.onProgressHandler_(e, !0);
|
|
19012
|
-
}, this), this.xhr_.upload && (this.xhr_.upload.onprogress = goog.bind(this.onProgressHandler_, this)));
|
|
19019
|
+
}, this)), this.xhr_.upload && (this.xhr_.upload.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onProgressHandler_, this))));
|
|
19013
19020
|
try {
|
|
19014
19021
|
goog.log.fine(this.logger_, this.formatMsg_("Opening Xhr")), this.inOpen_ = !0, this.xhr_.open(method, String(url), !0), this.inOpen_ = !1;
|
|
19015
19022
|
} catch (err) {
|
|
@@ -19274,7 +19281,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19274
19281
|
ee.apiclient = {};
|
|
19275
19282
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19276
19283
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19277
|
-
ee.apiclient.API_CLIENT_VERSION = "1.
|
|
19284
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.0";
|
|
19278
19285
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19279
19286
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19280
19287
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19572,8 +19579,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19572
19579
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19573
19580
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19574
19581
|
method = method || "POST";
|
|
19575
|
-
var headers = {"Content-Type":contentType}, version = "1.
|
|
19576
|
-
version === "1.
|
|
19582
|
+
var headers = {"Content-Type":contentType}, version = "1.4.0";
|
|
19583
|
+
version === "1.4.0" && (version = "latest");
|
|
19577
19584
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19578
19585
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19579
19586
|
if (authToken != null) {
|
|
@@ -25042,10 +25049,10 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
|
|
|
25042
25049
|
};
|
|
25043
25050
|
goog.dom.vendor = {};
|
|
25044
25051
|
goog.dom.vendor.getVendorJsPrefix = function() {
|
|
25045
|
-
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" :
|
|
25052
|
+
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
|
|
25046
25053
|
};
|
|
25047
25054
|
goog.dom.vendor.getVendorPrefix = function() {
|
|
25048
|
-
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" :
|
|
25055
|
+
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
|
|
25049
25056
|
};
|
|
25050
25057
|
goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
|
|
25051
25058
|
if (opt_object && propertyName in opt_object) {
|
package/build/ee_api_js_npm.js
CHANGED
|
@@ -2079,6 +2079,12 @@ module$exports$tslib.__disposeResources = function(env) {
|
|
|
2079
2079
|
};
|
|
2080
2080
|
var module$exports$enable_goog_asserts = {}, module$contents$enable_goog_asserts_module = module$contents$enable_goog_asserts_module || {id:"javascript/common/asserts/enable_goog_asserts.closure.js"};
|
|
2081
2081
|
module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS = goog.DEBUG;
|
|
2082
|
+
var module$exports$common$async$context$propagate = {}, module$contents$common$async$context$propagate_module = module$contents$common$async$context$propagate_module || {id:"javascript/common/async/context/propagate.closure.js"};
|
|
2083
|
+
module$exports$common$async$context$propagate.propagateAsyncContext = typeof AsyncContext !== "undefined" && typeof AsyncContext.Snapshot === "function" ? function(fn) {
|
|
2084
|
+
return fn && AsyncContext.Snapshot.wrap(fn);
|
|
2085
|
+
} : function(fn) {
|
|
2086
|
+
return fn;
|
|
2087
|
+
};
|
|
2082
2088
|
var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
|
|
2083
2089
|
module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
|
|
2084
2090
|
};
|
|
@@ -14950,6 +14956,7 @@ goog.Promise = function(resolver, opt_context) {
|
|
|
14950
14956
|
}
|
|
14951
14957
|
}
|
|
14952
14958
|
};
|
|
14959
|
+
goog.Promise.wrap_ = module$exports$common$async$context$propagate.propagateAsyncContext;
|
|
14953
14960
|
goog.Promise.LONG_STACK_TRACES = !1;
|
|
14954
14961
|
goog.Promise.UNHANDLED_REJECTION_DELAY = 0;
|
|
14955
14962
|
goog.Promise.State_ = {PENDING:0, BLOCKED:1, FULFILLED:2, REJECTED:3};
|
|
@@ -15064,7 +15071,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15064
15071
|
opt_onFulfilled != null && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15065
15072
|
opt_onRejected != null && goog.asserts.assertFunction(opt_onRejected, "opt_onRejected should be a function. Did you pass opt_context as the second argument instead of the third?");
|
|
15066
15073
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15067
|
-
return this.addChildPromise_(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null, typeof opt_onRejected === "function" ? opt_onRejected : null, opt_context);
|
|
15074
|
+
return this.addChildPromise_(module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null), module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onRejected === "function" ? opt_onRejected : null), opt_context);
|
|
15068
15075
|
};
|
|
15069
15076
|
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15070
15077
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
@@ -15075,14 +15082,14 @@ goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_
|
|
|
15075
15082
|
};
|
|
15076
15083
|
goog.Promise.prototype.thenAlways = function(onSettled, opt_context) {
|
|
15077
15084
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenAlways"));
|
|
15078
|
-
var entry = goog.Promise.getCallbackEntry_(
|
|
15085
|
+
var wrapped = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled), entry = goog.Promise.getCallbackEntry_(wrapped, wrapped, opt_context);
|
|
15079
15086
|
entry.always = !0;
|
|
15080
15087
|
this.addCallbackEntry_(entry);
|
|
15081
15088
|
return this;
|
|
15082
15089
|
};
|
|
15083
15090
|
goog.Promise.prototype.thenCatch = function(onRejected, opt_context) {
|
|
15084
15091
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenCatch"));
|
|
15085
|
-
return this.addChildPromise_(null, onRejected, opt_context);
|
|
15092
|
+
return this.addChildPromise_(null, module$exports$common$async$context$propagate.propagateAsyncContext(onRejected), opt_context);
|
|
15086
15093
|
};
|
|
15087
15094
|
goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
|
|
15088
15095
|
goog.Promise.prototype.cancel = function(opt_message) {
|
|
@@ -19006,10 +19013,10 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19006
19013
|
this.errorDispatched_ = !1;
|
|
19007
19014
|
this.active_ = !0;
|
|
19008
19015
|
this.xhr_ = this.createXhr();
|
|
19009
|
-
this.xhr_.onreadystatechange = goog.bind(this.onReadyStateChange_, this);
|
|
19010
|
-
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = goog.bind(function(e) {
|
|
19016
|
+
this.xhr_.onreadystatechange = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onReadyStateChange_, this));
|
|
19017
|
+
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(function(e) {
|
|
19011
19018
|
this.onProgressHandler_(e, !0);
|
|
19012
|
-
}, this), this.xhr_.upload && (this.xhr_.upload.onprogress = goog.bind(this.onProgressHandler_, this)));
|
|
19019
|
+
}, this)), this.xhr_.upload && (this.xhr_.upload.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onProgressHandler_, this))));
|
|
19013
19020
|
try {
|
|
19014
19021
|
goog.log.fine(this.logger_, this.formatMsg_("Opening Xhr")), this.inOpen_ = !0, this.xhr_.open(method, String(url), !0), this.inOpen_ = !1;
|
|
19015
19022
|
} catch (err) {
|
|
@@ -19274,7 +19281,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19274
19281
|
ee.apiclient = {};
|
|
19275
19282
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19276
19283
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19277
|
-
ee.apiclient.API_CLIENT_VERSION = "1.
|
|
19284
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.0";
|
|
19278
19285
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19279
19286
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19280
19287
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19572,8 +19579,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19572
19579
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19573
19580
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19574
19581
|
method = method || "POST";
|
|
19575
|
-
var headers = {"Content-Type":contentType}, version = "1.
|
|
19576
|
-
version === "1.
|
|
19582
|
+
var headers = {"Content-Type":contentType}, version = "1.4.0";
|
|
19583
|
+
version === "1.4.0" && (version = "latest");
|
|
19577
19584
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19578
19585
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19579
19586
|
if (authToken != null) {
|
|
@@ -25042,10 +25049,10 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
|
|
|
25042
25049
|
};
|
|
25043
25050
|
goog.dom.vendor = {};
|
|
25044
25051
|
goog.dom.vendor.getVendorJsPrefix = function() {
|
|
25045
|
-
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" :
|
|
25052
|
+
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
|
|
25046
25053
|
};
|
|
25047
25054
|
goog.dom.vendor.getVendorPrefix = function() {
|
|
25048
|
-
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" :
|
|
25055
|
+
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
|
|
25049
25056
|
};
|
|
25050
25057
|
goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
|
|
25051
25058
|
if (opt_object && propertyName in opt_object) {
|
|
@@ -27095,29 +27102,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27095
27102
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27096
27103
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27097
27104
|
(function() {
|
|
27098
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27099
|
-
orderedParamLists = [["name", "
|
|
27100
|
-
|
|
27101
|
-
"collection opt_description
|
|
27102
|
-
"collection opt_description
|
|
27103
|
-
["
|
|
27104
|
-
|
|
27105
|
-
["
|
|
27106
|
-
"
|
|
27107
|
-
["
|
|
27108
|
-
|
|
27109
|
-
"
|
|
27110
|
-
|
|
27111
|
-
[], ["
|
|
27112
|
-
[ee.ApiFunction.
|
|
27113
|
-
module$contents$ee$batch_Export.
|
|
27114
|
-
ee.ComputedObject.prototype.
|
|
27115
|
-
ee.data.
|
|
27116
|
-
ee.data.
|
|
27117
|
-
ee.
|
|
27118
|
-
ee.Filter, ee.Filter.
|
|
27119
|
-
ee.Image.prototype.
|
|
27120
|
-
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection
|
|
27105
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.limit ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.startProcessing ee.data.createFolder ee.data.authenticateViaOauth ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.getMapId ee.data.listAssets ee.data.renameAsset ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.getTileUrl ee.data.getTableDownloadId ee.data.copyAsset ee.data.makeTableDownloadUrl ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.listOperations ee.data.startTableIngestion ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.listImages ee.data.listFeatures ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.setWorkloadTag ee.data.newTaskId ee.data.computeValue ee.data.getInfo ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.updateTask ee.data.getFilmstripThumbId ee.data.updateAsset ee.data.getList ee.data.startIngestion ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.InitState ee.apply ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.Filter.date ee.Filter ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.neq ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.prototype.not ee.Filter.lte ee.Filter.gte ee.Filter.eq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.BBox ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiLineString ee.Geometry ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.clip ee.Image ee.Image.prototype.expression ee.Image.cat ee.Image.rgb ee.Image.prototype.select ee.Image.prototype.rename ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
|
|
27106
|
+
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "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 opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27107
|
+
"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 opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "),
|
|
27108
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".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 opt_priority".split(" "),
|
|
27109
|
+
["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".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 opt_priority".split(" "),
|
|
27110
|
+
["start", "opt_end"], ["filter"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["max", "opt_property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_first"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["id"], ["assetId", "aclUpdate", "opt_callback"],
|
|
27111
|
+
["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["id"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"],
|
|
27112
|
+
["assetId", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["operationName", "opt_callback"], ["id"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["asset", "params", "opt_callback"], ["assetId", "opt_callback"], [], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"],
|
|
27113
|
+
["tag"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["date", "opt_tz"],
|
|
27114
|
+
["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "namedArgs"], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_format",
|
|
27115
|
+
"opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["start", "opt_end"], ["opt_filter"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], [], ["name", "value"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError",
|
|
27116
|
+
"opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_callback"], ["opt_visParams", "opt_callback"],
|
|
27117
|
+
["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["opt_args"], ["expression", "opt_map"], ["var_args"], ["r", "g", "b"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"],
|
|
27118
|
+
[], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27119
|
+
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset,
|
|
27120
|
+
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.limit, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.evaluate,
|
|
27121
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.startProcessing, ee.data.createFolder, ee.data.authenticateViaOauth, ee.data.makeThumbUrl, ee.data.setAssetAcl, ee.data.getMapId, ee.data.listAssets, ee.data.renameAsset, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.makeTableDownloadUrl, ee.data.listBuckets, ee.data.getTaskListWithLimit,
|
|
27122
|
+
ee.data.listOperations, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.listImages, ee.data.listFeatures, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.newTaskId, ee.data.computeValue,
|
|
27123
|
+
ee.data.getInfo, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.updateTask, ee.data.getFilmstripThumbId, ee.data.updateAsset, ee.data.getList, ee.data.startIngestion, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.InitState, ee.apply, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
|
|
27124
|
+
ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.Filter.date, ee.Filter, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.neq, ee.Filter.gt,
|
|
27125
|
+
ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.prototype.not, ee.Filter.lte, ee.Filter.gte, ee.Filter.eq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiLineString, ee.Geometry, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Image.prototype.getInfo,
|
|
27126
|
+
ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.expression, ee.Image.cat, ee.Image.rgb, ee.Image.prototype.select, ee.Image.prototype.rename, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.select,
|
|
27127
|
+
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27121
27128
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27122
27129
|
});
|
|
27123
27130
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/build/main.js
CHANGED
|
@@ -2081,6 +2081,12 @@ module$exports$tslib.__disposeResources = function(env) {
|
|
|
2081
2081
|
};
|
|
2082
2082
|
var module$exports$enable_goog_asserts = {}, module$contents$enable_goog_asserts_module = module$contents$enable_goog_asserts_module || {id:"javascript/common/asserts/enable_goog_asserts.closure.js"};
|
|
2083
2083
|
module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS = goog.DEBUG;
|
|
2084
|
+
var module$exports$common$async$context$propagate = {}, module$contents$common$async$context$propagate_module = module$contents$common$async$context$propagate_module || {id:"javascript/common/async/context/propagate.closure.js"};
|
|
2085
|
+
module$exports$common$async$context$propagate.propagateAsyncContext = typeof AsyncContext !== "undefined" && typeof AsyncContext.Snapshot === "function" ? function(fn) {
|
|
2086
|
+
return fn && AsyncContext.Snapshot.wrap(fn);
|
|
2087
|
+
} : function(fn) {
|
|
2088
|
+
return fn;
|
|
2089
|
+
};
|
|
2084
2090
|
var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
|
|
2085
2091
|
module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
|
|
2086
2092
|
};
|
|
@@ -14952,6 +14958,7 @@ goog.Promise = function(resolver, opt_context) {
|
|
|
14952
14958
|
}
|
|
14953
14959
|
}
|
|
14954
14960
|
};
|
|
14961
|
+
goog.Promise.wrap_ = module$exports$common$async$context$propagate.propagateAsyncContext;
|
|
14955
14962
|
goog.Promise.LONG_STACK_TRACES = !1;
|
|
14956
14963
|
goog.Promise.UNHANDLED_REJECTION_DELAY = 0;
|
|
14957
14964
|
goog.Promise.State_ = {PENDING:0, BLOCKED:1, FULFILLED:2, REJECTED:3};
|
|
@@ -15066,7 +15073,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15066
15073
|
opt_onFulfilled != null && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15067
15074
|
opt_onRejected != null && goog.asserts.assertFunction(opt_onRejected, "opt_onRejected should be a function. Did you pass opt_context as the second argument instead of the third?");
|
|
15068
15075
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15069
|
-
return this.addChildPromise_(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null, typeof opt_onRejected === "function" ? opt_onRejected : null, opt_context);
|
|
15076
|
+
return this.addChildPromise_(module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null), module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onRejected === "function" ? opt_onRejected : null), opt_context);
|
|
15070
15077
|
};
|
|
15071
15078
|
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15072
15079
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
@@ -15077,14 +15084,14 @@ goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_
|
|
|
15077
15084
|
};
|
|
15078
15085
|
goog.Promise.prototype.thenAlways = function(onSettled, opt_context) {
|
|
15079
15086
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenAlways"));
|
|
15080
|
-
var entry = goog.Promise.getCallbackEntry_(
|
|
15087
|
+
var wrapped = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled), entry = goog.Promise.getCallbackEntry_(wrapped, wrapped, opt_context);
|
|
15081
15088
|
entry.always = !0;
|
|
15082
15089
|
this.addCallbackEntry_(entry);
|
|
15083
15090
|
return this;
|
|
15084
15091
|
};
|
|
15085
15092
|
goog.Promise.prototype.thenCatch = function(onRejected, opt_context) {
|
|
15086
15093
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenCatch"));
|
|
15087
|
-
return this.addChildPromise_(null, onRejected, opt_context);
|
|
15094
|
+
return this.addChildPromise_(null, module$exports$common$async$context$propagate.propagateAsyncContext(onRejected), opt_context);
|
|
15088
15095
|
};
|
|
15089
15096
|
goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
|
|
15090
15097
|
goog.Promise.prototype.cancel = function(opt_message) {
|
|
@@ -19008,10 +19015,10 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
|
|
|
19008
19015
|
this.errorDispatched_ = !1;
|
|
19009
19016
|
this.active_ = !0;
|
|
19010
19017
|
this.xhr_ = this.createXhr();
|
|
19011
|
-
this.xhr_.onreadystatechange = goog.bind(this.onReadyStateChange_, this);
|
|
19012
|
-
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = goog.bind(function(e) {
|
|
19018
|
+
this.xhr_.onreadystatechange = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onReadyStateChange_, this));
|
|
19019
|
+
this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(function(e) {
|
|
19013
19020
|
this.onProgressHandler_(e, !0);
|
|
19014
|
-
}, this), this.xhr_.upload && (this.xhr_.upload.onprogress = goog.bind(this.onProgressHandler_, this)));
|
|
19021
|
+
}, this)), this.xhr_.upload && (this.xhr_.upload.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onProgressHandler_, this))));
|
|
19015
19022
|
try {
|
|
19016
19023
|
goog.log.fine(this.logger_, this.formatMsg_("Opening Xhr")), this.inOpen_ = !0, this.xhr_.open(method, String(url), !0), this.inOpen_ = !1;
|
|
19017
19024
|
} catch (err) {
|
|
@@ -19276,7 +19283,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19276
19283
|
ee.apiclient = {};
|
|
19277
19284
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19278
19285
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19279
|
-
ee.apiclient.API_CLIENT_VERSION = "1.
|
|
19286
|
+
ee.apiclient.API_CLIENT_VERSION = "1.4.0";
|
|
19280
19287
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19281
19288
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19282
19289
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19574,8 +19581,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19574
19581
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19575
19582
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19576
19583
|
method = method || "POST";
|
|
19577
|
-
var headers = {"Content-Type":contentType}, version = "1.
|
|
19578
|
-
version === "1.
|
|
19584
|
+
var headers = {"Content-Type":contentType}, version = "1.4.0";
|
|
19585
|
+
version === "1.4.0" && (version = "latest");
|
|
19579
19586
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19580
19587
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19581
19588
|
if (authToken != null) {
|
|
@@ -25044,10 +25051,10 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
|
|
|
25044
25051
|
};
|
|
25045
25052
|
goog.dom.vendor = {};
|
|
25046
25053
|
goog.dom.vendor.getVendorJsPrefix = function() {
|
|
25047
|
-
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" :
|
|
25054
|
+
return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
|
|
25048
25055
|
};
|
|
25049
25056
|
goog.dom.vendor.getVendorPrefix = function() {
|
|
25050
|
-
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" :
|
|
25057
|
+
return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
|
|
25051
25058
|
};
|
|
25052
25059
|
goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
|
|
25053
25060
|
if (opt_object && propertyName in opt_object) {
|
|
@@ -27097,29 +27104,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27097
27104
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27098
27105
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27099
27106
|
(function() {
|
|
27100
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27101
|
-
orderedParamLists = [["name", "
|
|
27102
|
-
|
|
27103
|
-
"collection opt_description
|
|
27104
|
-
"collection opt_description
|
|
27105
|
-
["
|
|
27106
|
-
|
|
27107
|
-
["
|
|
27108
|
-
"
|
|
27109
|
-
["
|
|
27110
|
-
|
|
27111
|
-
"
|
|
27112
|
-
|
|
27113
|
-
[], ["
|
|
27114
|
-
[ee.ApiFunction.
|
|
27115
|
-
module$contents$ee$batch_Export.
|
|
27116
|
-
ee.ComputedObject.prototype.
|
|
27117
|
-
ee.data.
|
|
27118
|
-
ee.data.
|
|
27119
|
-
ee.
|
|
27120
|
-
ee.Filter, ee.Filter.
|
|
27121
|
-
ee.Image.prototype.
|
|
27122
|
-
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection
|
|
27107
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.limit ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.startProcessing ee.data.createFolder ee.data.authenticateViaOauth ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.getMapId ee.data.listAssets ee.data.renameAsset ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.getTileUrl ee.data.getTableDownloadId ee.data.copyAsset ee.data.makeTableDownloadUrl ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.listOperations ee.data.startTableIngestion ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.listImages ee.data.listFeatures ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.setWorkloadTag ee.data.newTaskId ee.data.computeValue ee.data.getInfo ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.updateTask ee.data.getFilmstripThumbId ee.data.updateAsset ee.data.getList ee.data.startIngestion ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.InitState ee.apply ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.Filter.date ee.Filter ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.neq ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.prototype.not ee.Filter.lte ee.Filter.gte ee.Filter.eq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.BBox ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiLineString ee.Geometry ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.clip ee.Image ee.Image.prototype.expression ee.Image.cat ee.Image.rgb ee.Image.prototype.select ee.Image.prototype.rename ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
|
|
27108
|
+
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "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 opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27109
|
+
"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 opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "),
|
|
27110
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".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 opt_priority".split(" "),
|
|
27111
|
+
["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".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 opt_priority".split(" "),
|
|
27112
|
+
["start", "opt_end"], ["filter"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["max", "opt_property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_first"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["id"], ["assetId", "aclUpdate", "opt_callback"],
|
|
27113
|
+
["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["id"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"],
|
|
27114
|
+
["assetId", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["operationName", "opt_callback"], ["id"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["asset", "params", "opt_callback"], ["assetId", "opt_callback"], [], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"],
|
|
27115
|
+
["tag"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["date", "opt_tz"],
|
|
27116
|
+
["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "namedArgs"], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_format",
|
|
27117
|
+
"opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["start", "opt_end"], ["opt_filter"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], [], ["name", "value"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError",
|
|
27118
|
+
"opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_callback"], ["opt_visParams", "opt_callback"],
|
|
27119
|
+
["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["opt_args"], ["expression", "opt_map"], ["var_args"], ["r", "g", "b"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"],
|
|
27120
|
+
[], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27121
|
+
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset,
|
|
27122
|
+
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.limit, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.evaluate,
|
|
27123
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.startProcessing, ee.data.createFolder, ee.data.authenticateViaOauth, ee.data.makeThumbUrl, ee.data.setAssetAcl, ee.data.getMapId, ee.data.listAssets, ee.data.renameAsset, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.makeTableDownloadUrl, ee.data.listBuckets, ee.data.getTaskListWithLimit,
|
|
27124
|
+
ee.data.listOperations, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.listImages, ee.data.listFeatures, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.newTaskId, ee.data.computeValue,
|
|
27125
|
+
ee.data.getInfo, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.updateTask, ee.data.getFilmstripThumbId, ee.data.updateAsset, ee.data.getList, ee.data.startIngestion, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.InitState, ee.apply, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
|
|
27126
|
+
ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.Filter.date, ee.Filter, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.neq, ee.Filter.gt,
|
|
27127
|
+
ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.prototype.not, ee.Filter.lte, ee.Filter.gte, ee.Filter.eq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiLineString, ee.Geometry, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Image.prototype.getInfo,
|
|
27128
|
+
ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.expression, ee.Image.cat, ee.Image.rgb, ee.Image.prototype.select, ee.Image.prototype.rename, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.select,
|
|
27129
|
+
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27123
27130
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27124
27131
|
});
|
|
27125
27132
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|