@google/earthengine 0.1.310 → 0.1.315
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 +12 -0
- package/.tmp/METADATA +4 -4
- package/build/browser.js +233 -220
- package/build/ee_api_js.js +671 -668
- package/build/ee_api_js_debug.js +211 -199
- package/build/ee_api_js_npm.js +233 -220
- package/build/main.js +233 -220
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/computedobject.js +1 -0
- package/src/data.js +18 -10
- package/src/ee.js +12 -6
- package/src/eeapiclient/domain_object.ts +4 -4
- package/src/encodable_batch.js +5 -4
- package/src/feature.js +1 -0
- package/src/featurecollection.js +1 -0
- package/src/geometry.js +1 -0
- package/src/image.js +1 -0
- package/src/imagecollection.js +1 -0
- package/src/maplayeroverlay.js +5 -1
package/build/browser.js
CHANGED
|
@@ -1224,7 +1224,7 @@ goog.FEATURESET_YEAR = 2012;
|
|
|
1224
1224
|
goog.DEBUG = !0;
|
|
1225
1225
|
goog.LOCALE = "en";
|
|
1226
1226
|
goog.getLocale = function() {
|
|
1227
|
-
return
|
|
1227
|
+
return "en";
|
|
1228
1228
|
};
|
|
1229
1229
|
goog.TRUSTED_SITE = !0;
|
|
1230
1230
|
goog.DISALLOW_TEST_ONLY_CODE = !goog.DEBUG;
|
|
@@ -1453,7 +1453,7 @@ goog.removeUid = function(obj) {
|
|
|
1453
1453
|
} catch (ex) {
|
|
1454
1454
|
}
|
|
1455
1455
|
};
|
|
1456
|
-
goog.UID_PROPERTY_ = "closure_uid_" + (
|
|
1456
|
+
goog.UID_PROPERTY_ = "closure_uid_" + (1E9 * Math.random() >>> 0);
|
|
1457
1457
|
goog.uidCounter_ = 0;
|
|
1458
1458
|
goog.cloneObject = function(obj) {
|
|
1459
1459
|
var type = goog.typeOf(obj);
|
|
@@ -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;
|
|
@@ -3414,31 +3413,22 @@ goog.userAgent.DOCUMENT_MODE = function() {
|
|
|
3414
3413
|
return documentMode ? documentMode : parseInt(goog.userAgent.VERSION, 10) || void 0;
|
|
3415
3414
|
}
|
|
3416
3415
|
}();
|
|
3417
|
-
goog.events.
|
|
3418
|
-
goog.events.
|
|
3419
|
-
goog.events.EventTypeHelpers.getVendorPrefixedName_ = function(eventName) {
|
|
3416
|
+
goog.events.eventTypeHelpers = {};
|
|
3417
|
+
goog.events.eventTypeHelpers.getVendorPrefixedName = function(eventName) {
|
|
3420
3418
|
return goog.userAgent.WEBKIT ? "webkit" + eventName : eventName.toLowerCase();
|
|
3421
3419
|
};
|
|
3420
|
+
goog.events.eventTypeHelpers.getPointerFallbackEventName = function(pointerEventName, msPointerEventName, fallbackEventName) {
|
|
3421
|
+
return goog.events.BrowserFeature.POINTER_EVENTS ? pointerEventName : goog.events.BrowserFeature.MSPOINTER_EVENTS ? msPointerEventName : fallbackEventName;
|
|
3422
|
+
};
|
|
3422
3423
|
goog.events.EventType = {CLICK:"click", RIGHTCLICK:"rightclick", DBLCLICK:"dblclick", AUXCLICK:"auxclick", MOUSEDOWN:"mousedown", MOUSEUP:"mouseup", MOUSEOVER:"mouseover", MOUSEOUT:"mouseout", MOUSEMOVE:"mousemove", MOUSEENTER:"mouseenter", MOUSELEAVE:"mouseleave", MOUSECANCEL:"mousecancel", SELECTIONCHANGE:"selectionchange", SELECTSTART:"selectstart", WHEEL:"wheel", KEYPRESS:"keypress", KEYDOWN:"keydown", KEYUP:"keyup", BLUR:"blur", FOCUS:"focus", DEACTIVATE:"deactivate", FOCUSIN:"focusin", FOCUSOUT:"focusout",
|
|
3423
3424
|
CHANGE:"change", RESET:"reset", SELECT:"select", SUBMIT:"submit", INPUT:"input", PROPERTYCHANGE:"propertychange", DRAGSTART:"dragstart", DRAG:"drag", DRAGENTER:"dragenter", DRAGOVER:"dragover", DRAGLEAVE:"dragleave", DROP:"drop", DRAGEND:"dragend", TOUCHSTART:"touchstart", TOUCHMOVE:"touchmove", TOUCHEND:"touchend", TOUCHCANCEL:"touchcancel", BEFOREUNLOAD:"beforeunload", CONSOLEMESSAGE:"consolemessage", CONTEXTMENU:"contextmenu", DEVICECHANGE:"devicechange", DEVICEMOTION:"devicemotion", DEVICEORIENTATION:"deviceorientation",
|
|
3424
3425
|
DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LOSECAPTURE:"losecapture", ORIENTATIONCHANGE:"orientationchange", READYSTATECHANGE:"readystatechange", RESIZE:"resize", SCROLL:"scroll", UNLOAD:"unload", CANPLAY:"canplay", CANPLAYTHROUGH:"canplaythrough", DURATIONCHANGE:"durationchange", EMPTIED:"emptied", ENDED:"ended", LOADEDDATA:"loadeddata", LOADEDMETADATA:"loadedmetadata", PAUSE:"pause", PLAY:"play", PLAYING:"playing", PROGRESS:"progress", RATECHANGE:"ratechange",
|
|
3425
3426
|
SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut", BEFORECOPY:"beforecopy", BEFORECUT:"beforecut", BEFOREPASTE:"beforepaste",
|
|
3426
|
-
ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:goog.events.
|
|
3427
|
-
TRANSITIONEND:goog.events.
|
|
3427
|
+
ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationStart"), ANIMATIONEND:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationEnd"), ANIMATIONITERATION:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationIteration"),
|
|
3428
|
+
TRANSITIONEND:goog.events.eventTypeHelpers.getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture", MSGESTURECHANGE:"MSGestureChange", MSGESTUREEND:"MSGestureEnd", MSGESTUREHOLD:"MSGestureHold", MSGESTURESTART:"MSGestureStart",
|
|
3428
3429
|
MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut", MSPOINTEROVER:"MSPointerOver", MSPOINTERUP:"MSPointerUp", TEXT:"text", TEXTINPUT:goog.userAgent.IE ? "textinput" : "textInput",
|
|
3429
3430
|
COMPOSITIONSTART:"compositionstart", COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive", SIZECHANGED:"sizechanged", UNRESPONSIVE:"unresponsive", VISIBILITYCHANGE:"visibilitychange", STORAGE:"storage", DOMSUBTREEMODIFIED:"DOMSubtreeModified", DOMNODEINSERTED:"DOMNodeInserted", DOMNODEREMOVED:"DOMNodeRemoved",
|
|
3430
3431
|
DOMNODEREMOVEDFROMDOCUMENT:"DOMNodeRemovedFromDocument", DOMNODEINSERTEDINTODOCUMENT:"DOMNodeInsertedIntoDocument", DOMATTRMODIFIED:"DOMAttrModified", DOMCHARACTERDATAMODIFIED:"DOMCharacterDataModified", BEFOREPRINT:"beforeprint", AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled"};
|
|
3431
|
-
goog.events.EventTypeHelpers.getPointerFallbackEventName_ = function(pointerEventName, msPointerEventName, fallbackEventName) {
|
|
3432
|
-
return goog.events.BrowserFeature.POINTER_EVENTS ? pointerEventName : goog.events.BrowserFeature.MSPOINTER_EVENTS ? msPointerEventName : fallbackEventName;
|
|
3433
|
-
};
|
|
3434
|
-
goog.events.PointerFallbackEventType = {POINTERDOWN:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERDOWN, goog.events.EventType.MSPOINTERDOWN, goog.events.EventType.MOUSEDOWN), POINTERUP:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERUP, goog.events.EventType.MSPOINTERUP, goog.events.EventType.MOUSEUP), POINTERCANCEL:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERCANCEL, goog.events.EventType.MSPOINTERCANCEL,
|
|
3435
|
-
goog.events.EventType.MOUSECANCEL), POINTERMOVE:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERMOVE, goog.events.EventType.MSPOINTERMOVE, goog.events.EventType.MOUSEMOVE), POINTEROVER:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTEROVER, goog.events.EventType.MSPOINTEROVER, goog.events.EventType.MOUSEOVER), POINTEROUT:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTEROUT, goog.events.EventType.MSPOINTEROUT,
|
|
3436
|
-
goog.events.EventType.MOUSEOUT), POINTERENTER:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERENTER, goog.events.EventType.MSPOINTERENTER, goog.events.EventType.MOUSEENTER), POINTERLEAVE:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERLEAVE, goog.events.EventType.MSPOINTERLEAVE, goog.events.EventType.MOUSELEAVE)};
|
|
3437
|
-
goog.events.PointerTouchFallbackEventType = {POINTERDOWN:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERDOWN, goog.events.EventType.MSPOINTERDOWN, goog.events.EventType.TOUCHSTART), POINTERUP:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERUP, goog.events.EventType.MSPOINTERUP, goog.events.EventType.TOUCHEND), POINTERCANCEL:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERCANCEL, goog.events.EventType.MSPOINTERCANCEL,
|
|
3438
|
-
goog.events.EventType.TOUCHCANCEL), POINTERMOVE:goog.events.EventTypeHelpers.getPointerFallbackEventName_(goog.events.EventType.POINTERMOVE, goog.events.EventType.MSPOINTERMOVE, goog.events.EventType.TOUCHMOVE)};
|
|
3439
|
-
goog.events.PointerAsMouseEventType = {MOUSEDOWN:goog.events.PointerFallbackEventType.POINTERDOWN, MOUSEUP:goog.events.PointerFallbackEventType.POINTERUP, MOUSECANCEL:goog.events.PointerFallbackEventType.POINTERCANCEL, MOUSEMOVE:goog.events.PointerFallbackEventType.POINTERMOVE, MOUSEOVER:goog.events.PointerFallbackEventType.POINTEROVER, MOUSEOUT:goog.events.PointerFallbackEventType.POINTEROUT, MOUSEENTER:goog.events.PointerFallbackEventType.POINTERENTER, MOUSELEAVE:goog.events.PointerFallbackEventType.POINTERLEAVE};
|
|
3440
|
-
goog.events.MouseAsMouseEventType = {MOUSEDOWN:goog.events.EventType.MOUSEDOWN, MOUSEUP:goog.events.EventType.MOUSEUP, MOUSECANCEL:goog.events.EventType.MOUSECANCEL, MOUSEMOVE:goog.events.EventType.MOUSEMOVE, MOUSEOVER:goog.events.EventType.MOUSEOVER, MOUSEOUT:goog.events.EventType.MOUSEOUT, MOUSEENTER:goog.events.EventType.MOUSEENTER, MOUSELEAVE:goog.events.EventType.MOUSELEAVE};
|
|
3441
|
-
goog.events.PointerAsTouchEventType = {TOUCHCANCEL:goog.events.PointerTouchFallbackEventType.POINTERCANCEL, TOUCHEND:goog.events.PointerTouchFallbackEventType.POINTERUP, TOUCHMOVE:goog.events.PointerTouchFallbackEventType.POINTERMOVE, TOUCHSTART:goog.events.PointerTouchFallbackEventType.POINTERDOWN};
|
|
3442
3432
|
goog.events.BrowserEvent = function(opt_e, opt_currentTarget) {
|
|
3443
3433
|
goog.events.Event.call(this, opt_e ? opt_e.type : "");
|
|
3444
3434
|
this.relatedTarget = this.currentTarget = this.target = null;
|
|
@@ -3507,7 +3497,7 @@ goog.events.BrowserEvent.getPointerType_ = function(e) {
|
|
|
3507
3497
|
};
|
|
3508
3498
|
goog.events.Listenable = function() {
|
|
3509
3499
|
};
|
|
3510
|
-
goog.events.Listenable.IMPLEMENTED_BY_PROP = "closure_listenable_" + (
|
|
3500
|
+
goog.events.Listenable.IMPLEMENTED_BY_PROP = "closure_listenable_" + (1E6 * Math.random() | 0);
|
|
3511
3501
|
goog.events.Listenable.addImplementation = function(cls) {
|
|
3512
3502
|
cls.prototype[goog.events.Listenable.IMPLEMENTED_BY_PROP] = !0;
|
|
3513
3503
|
};
|
|
@@ -3919,7 +3909,7 @@ goog.events.ListenerMap.findListenerIndex_ = function(listenerArray, listener, o
|
|
|
3919
3909
|
};
|
|
3920
3910
|
goog.events.Key = {};
|
|
3921
3911
|
goog.events.ListenableType = {};
|
|
3922
|
-
goog.events.LISTENER_MAP_PROP_ = "closure_lm_" + (
|
|
3912
|
+
goog.events.LISTENER_MAP_PROP_ = "closure_lm_" + (1E6 * Math.random() | 0);
|
|
3923
3913
|
goog.events.onString_ = "on";
|
|
3924
3914
|
goog.events.onStringMap_ = {};
|
|
3925
3915
|
goog.events.CaptureSimulationMode = {OFF_AND_FAIL:0, OFF_AND_SILENT:1, ON:2};
|
|
@@ -4148,7 +4138,7 @@ goog.events.getListenerMap_ = function(src) {
|
|
|
4148
4138
|
var listenerMap = src[goog.events.LISTENER_MAP_PROP_];
|
|
4149
4139
|
return listenerMap instanceof goog.events.ListenerMap ? listenerMap : null;
|
|
4150
4140
|
};
|
|
4151
|
-
goog.events.LISTENER_WRAPPER_PROP_ = "__closure_events_fn_" + (
|
|
4141
|
+
goog.events.LISTENER_WRAPPER_PROP_ = "__closure_events_fn_" + (1E9 * Math.random() >>> 0);
|
|
4152
4142
|
goog.events.wrapListener = function(listener) {
|
|
4153
4143
|
goog.asserts.assert(listener, "Listener can not be null.");
|
|
4154
4144
|
if ("function" === typeof listener) {
|
|
@@ -4171,7 +4161,7 @@ goog.events.EventTarget = function() {
|
|
|
4171
4161
|
};
|
|
4172
4162
|
goog.inherits(goog.events.EventTarget, goog.Disposable);
|
|
4173
4163
|
goog.events.Listenable.addImplementation(goog.events.EventTarget);
|
|
4174
|
-
goog.events.EventTarget.MAX_ANCESTORS_ =
|
|
4164
|
+
goog.events.EventTarget.MAX_ANCESTORS_ = 1E3;
|
|
4175
4165
|
goog.events.EventTarget.prototype.getParentEventTarget = function() {
|
|
4176
4166
|
return this.parentEventTarget_;
|
|
4177
4167
|
};
|
|
@@ -4540,7 +4530,7 @@ goog.math.lerp = function(a, b, x) {
|
|
|
4540
4530
|
return a + x * (b - a);
|
|
4541
4531
|
};
|
|
4542
4532
|
goog.math.nearlyEquals = function(a, b, opt_tolerance) {
|
|
4543
|
-
return Math.abs(a - b) <= (opt_tolerance ||
|
|
4533
|
+
return Math.abs(a - b) <= (opt_tolerance || 1E-6);
|
|
4544
4534
|
};
|
|
4545
4535
|
goog.math.standardAngle = function(angle) {
|
|
4546
4536
|
return goog.math.modulo(angle, 360);
|
|
@@ -4633,11 +4623,11 @@ goog.math.log10Floor = function(num) {
|
|
|
4633
4623
|
};
|
|
4634
4624
|
goog.math.safeFloor = function(num, opt_epsilon) {
|
|
4635
4625
|
goog.asserts.assert(void 0 === opt_epsilon || 0 < opt_epsilon);
|
|
4636
|
-
return Math.floor(num + (opt_epsilon ||
|
|
4626
|
+
return Math.floor(num + (opt_epsilon || 2E-15));
|
|
4637
4627
|
};
|
|
4638
4628
|
goog.math.safeCeil = function(num, opt_epsilon) {
|
|
4639
4629
|
goog.asserts.assert(void 0 === opt_epsilon || 0 < opt_epsilon);
|
|
4640
|
-
return Math.ceil(num - (opt_epsilon ||
|
|
4630
|
+
return Math.ceil(num - (opt_epsilon || 2E-15));
|
|
4641
4631
|
};
|
|
4642
4632
|
goog.iter = {};
|
|
4643
4633
|
goog.iter.Iterable = {};
|
|
@@ -6456,6 +6446,9 @@ var module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$
|
|
|
6456
6446
|
this.privateDoNotAccessOrElseSafeScriptWrappedValue_ = token === module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE ? value : "";
|
|
6457
6447
|
this.implementsGoogStringTypedString = !0;
|
|
6458
6448
|
};
|
|
6449
|
+
module$contents$goog$html$SafeScript_SafeScript.prototype.toString = function() {
|
|
6450
|
+
return this.privateDoNotAccessOrElseSafeScriptWrappedValue_.toString();
|
|
6451
|
+
};
|
|
6459
6452
|
module$contents$goog$html$SafeScript_SafeScript.fromConstant = function(script) {
|
|
6460
6453
|
var scriptString = goog.string.Const.unwrap(script);
|
|
6461
6454
|
return 0 === scriptString.length ? module$contents$goog$html$SafeScript_SafeScript.EMPTY : module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse(scriptString);
|
|
@@ -6480,12 +6473,9 @@ module$contents$goog$html$SafeScript_SafeScript.stringify_ = function(val) {
|
|
|
6480
6473
|
return JSON.stringify(val).replace(/</g, "\\x3c");
|
|
6481
6474
|
};
|
|
6482
6475
|
module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse = function(script) {
|
|
6483
|
-
var policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedScript = policy ? policy.createScript(
|
|
6476
|
+
var noinlineScript = script, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedScript = policy ? policy.createScript(noinlineScript) : noinlineScript;
|
|
6484
6477
|
return new module$contents$goog$html$SafeScript_SafeScript(trustedScript, module$contents$goog$html$SafeScript_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
6485
6478
|
};
|
|
6486
|
-
module$contents$goog$html$SafeScript_SafeScript.prototype.toString = function() {
|
|
6487
|
-
return this.privateDoNotAccessOrElseSafeScriptWrappedValue_.toString();
|
|
6488
|
-
};
|
|
6489
6479
|
module$contents$goog$html$SafeScript_SafeScript.EMPTY = function() {
|
|
6490
6480
|
return module$contents$goog$html$SafeScript_SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse("");
|
|
6491
6481
|
}();
|
|
@@ -6547,10 +6537,7 @@ goog.fs.blob.getBlobWithProperties = function(parts, opt_type, opt_endings) {
|
|
|
6547
6537
|
goog.i18n = {};
|
|
6548
6538
|
goog.i18n.bidi = {};
|
|
6549
6539
|
goog.i18n.bidi.FORCE_RTL = !1;
|
|
6550
|
-
goog.i18n.bidi.IS_RTL = goog.i18n.bidi.FORCE_RTL ||
|
|
6551
|
-
2).toLowerCase()) && (2 == goog.LOCALE.length || "-" == goog.LOCALE.substring(2, 3) || "_" == goog.LOCALE.substring(2, 3)) || 3 <= goog.LOCALE.length && "ckb" == goog.LOCALE.substring(0, 3).toLowerCase() && (3 == goog.LOCALE.length || "-" == goog.LOCALE.substring(3, 4) || "_" == goog.LOCALE.substring(3, 4)) || 7 <= goog.LOCALE.length && ("-" == goog.LOCALE.substring(2, 3) || "_" == goog.LOCALE.substring(2, 3)) && ("adlm" == goog.LOCALE.substring(3, 7).toLowerCase() || "arab" == goog.LOCALE.substring(3,
|
|
6552
|
-
7).toLowerCase() || "hebr" == goog.LOCALE.substring(3, 7).toLowerCase() || "nkoo" == goog.LOCALE.substring(3, 7).toLowerCase() || "rohg" == goog.LOCALE.substring(3, 7).toLowerCase() || "thaa" == goog.LOCALE.substring(3, 7).toLowerCase()) || 8 <= goog.LOCALE.length && ("-" == goog.LOCALE.substring(3, 4) || "_" == goog.LOCALE.substring(3, 4)) && ("adlm" == goog.LOCALE.substring(4, 8).toLowerCase() || "arab" == goog.LOCALE.substring(4, 8).toLowerCase() || "hebr" == goog.LOCALE.substring(4, 8).toLowerCase() ||
|
|
6553
|
-
"nkoo" == goog.LOCALE.substring(4, 8).toLowerCase() || "rohg" == goog.LOCALE.substring(4, 8).toLowerCase() || "thaa" == goog.LOCALE.substring(4, 8).toLowerCase());
|
|
6540
|
+
goog.i18n.bidi.IS_RTL = goog.i18n.bidi.FORCE_RTL || !1;
|
|
6554
6541
|
goog.i18n.bidi.Format = {LRE:"\u202a", RLE:"\u202b", PDF:"\u202c", LRM:"\u200e", RLM:"\u200f"};
|
|
6555
6542
|
goog.i18n.bidi.Dir = {LTR:1, RTL:-1, NEUTRAL:0};
|
|
6556
6543
|
goog.i18n.bidi.RIGHT = "right";
|
|
@@ -6646,7 +6633,7 @@ goog.i18n.bidi.normalizeHebrewQuote = function(str) {
|
|
|
6646
6633
|
};
|
|
6647
6634
|
goog.i18n.bidi.wordSeparatorRe_ = /\s+/;
|
|
6648
6635
|
goog.i18n.bidi.hasNumeralsRe_ = /[\d\u06f0-\u06f9]/;
|
|
6649
|
-
goog.i18n.bidi.rtlDetectionThreshold_ =
|
|
6636
|
+
goog.i18n.bidi.rtlDetectionThreshold_ = .4;
|
|
6650
6637
|
goog.i18n.bidi.estimateDirection = function(str, opt_isHtml) {
|
|
6651
6638
|
for (var rtlCount = 0, totalCount = 0, hasWeaklyLtr = !1, tokens = goog.i18n.bidi.stripHtmlIfNeeded_(str, opt_isHtml).split(goog.i18n.bidi.wordSeparatorRe_), i = 0; i < tokens.length; i++) {
|
|
6652
6639
|
var token = tokens[i];
|
|
@@ -6677,6 +6664,9 @@ goog.i18n.bidi.DirectionalString = function() {
|
|
|
6677
6664
|
goog.html.TrustedResourceUrl = function(value, token) {
|
|
6678
6665
|
this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_ = token === goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_ ? value : "";
|
|
6679
6666
|
};
|
|
6667
|
+
goog.html.TrustedResourceUrl.prototype.toString = function() {
|
|
6668
|
+
return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_ + "";
|
|
6669
|
+
};
|
|
6680
6670
|
goog.html.TrustedResourceUrl.prototype.implementsGoogStringTypedString = !0;
|
|
6681
6671
|
goog.html.TrustedResourceUrl.prototype.getTypedStringValue = function() {
|
|
6682
6672
|
return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_.toString();
|
|
@@ -6689,9 +6679,6 @@ goog.html.TrustedResourceUrl.prototype.cloneWithParams = function(searchParams,
|
|
|
6689
6679
|
var url = goog.html.TrustedResourceUrl.unwrap(this), parts = goog.html.TrustedResourceUrl.URL_PARAM_PARSER_.exec(url), urlHash = parts[3] || "";
|
|
6690
6680
|
return goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(parts[1] + goog.html.TrustedResourceUrl.stringifyParams_("?", parts[2] || "", searchParams) + goog.html.TrustedResourceUrl.stringifyParams_("#", urlHash, opt_hashParams));
|
|
6691
6681
|
};
|
|
6692
|
-
goog.html.TrustedResourceUrl.prototype.toString = function() {
|
|
6693
|
-
return this.privateDoNotAccessOrElseTrustedResourceUrlWrappedValue_ + "";
|
|
6694
|
-
};
|
|
6695
6682
|
goog.html.TrustedResourceUrl.unwrap = function(trustedResourceUrl) {
|
|
6696
6683
|
return goog.html.TrustedResourceUrl.unwrapTrustedScriptURL(trustedResourceUrl).toString();
|
|
6697
6684
|
};
|
|
@@ -6737,7 +6724,7 @@ goog.html.TrustedResourceUrl.fromSafeScript = function(safeScript) {
|
|
|
6737
6724
|
};
|
|
6738
6725
|
goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_ = {};
|
|
6739
6726
|
goog.html.TrustedResourceUrl.createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse = function(url) {
|
|
6740
|
-
var policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), value = policy ? policy.createScriptURL(
|
|
6727
|
+
var noinlineUrl = url, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), value = policy ? policy.createScriptURL(noinlineUrl) : noinlineUrl;
|
|
6741
6728
|
return new goog.html.TrustedResourceUrl(value, goog.html.TrustedResourceUrl.CONSTRUCTOR_TOKEN_PRIVATE_);
|
|
6742
6729
|
};
|
|
6743
6730
|
goog.html.TrustedResourceUrl.stringifyParams_ = function(prefix, currentString, params) {
|
|
@@ -6760,6 +6747,9 @@ goog.html.TrustedResourceUrl.stringifyParams_ = function(prefix, currentString,
|
|
|
6760
6747
|
goog.html.SafeUrl = function(value, token) {
|
|
6761
6748
|
this.privateDoNotAccessOrElseSafeUrlWrappedValue_ = token === goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_ ? value : "";
|
|
6762
6749
|
};
|
|
6750
|
+
goog.html.SafeUrl.prototype.toString = function() {
|
|
6751
|
+
return this.privateDoNotAccessOrElseSafeUrlWrappedValue_.toString();
|
|
6752
|
+
};
|
|
6763
6753
|
goog.html.SafeUrl.INNOCUOUS_STRING = "about:invalid#zClosurez";
|
|
6764
6754
|
goog.html.SafeUrl.prototype.implementsGoogStringTypedString = !0;
|
|
6765
6755
|
goog.html.SafeUrl.prototype.getTypedStringValue = function() {
|
|
@@ -6769,9 +6759,6 @@ goog.html.SafeUrl.prototype.implementsGoogI18nBidiDirectionalString = !0;
|
|
|
6769
6759
|
goog.html.SafeUrl.prototype.getDirection = function() {
|
|
6770
6760
|
return goog.i18n.bidi.Dir.LTR;
|
|
6771
6761
|
};
|
|
6772
|
-
goog.html.SafeUrl.prototype.toString = function() {
|
|
6773
|
-
return this.privateDoNotAccessOrElseSafeUrlWrappedValue_.toString();
|
|
6774
|
-
};
|
|
6775
6762
|
goog.html.SafeUrl.unwrap = function(safeUrl) {
|
|
6776
6763
|
if (safeUrl instanceof goog.html.SafeUrl && safeUrl.constructor === goog.html.SafeUrl) {
|
|
6777
6764
|
return safeUrl.privateDoNotAccessOrElseSafeUrlWrappedValue_;
|
|
@@ -6782,7 +6769,7 @@ goog.html.SafeUrl.unwrap = function(safeUrl) {
|
|
|
6782
6769
|
goog.html.SafeUrl.fromConstant = function(url) {
|
|
6783
6770
|
return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(goog.string.Const.unwrap(url));
|
|
6784
6771
|
};
|
|
6785
|
-
goog.html.SAFE_MIME_TYPE_PATTERN_ = RegExp('^(?:audio/(?:3gpp2|3gpp|aac|L16|midi|mp3|mp4|mpeg|oga|ogg|opus|x-m4a|x-matroska|x-wav|wav|webm)|font/\\w+|image/(?:bmp|gif|jpeg|jpg|png|tiff|webp|x-icon)|video/(?:mpeg|mp4|ogg|webm|quicktime|x-matroska))(?:;\\w+=(?:\\w+|"[\\w;,= ]+"))*$', "i");
|
|
6772
|
+
goog.html.SAFE_MIME_TYPE_PATTERN_ = RegExp('^(?:audio/(?:3gpp2|3gpp|aac|L16|midi|mp3|mp4|mpeg|oga|ogg|opus|x-m4a|x-matroska|x-wav|wav|webm)|font/\\w+|image/(?:bmp|gif|jpeg|jpg|png|tiff|webp|x-icon|heic|heif)|video/(?:mpeg|mp4|ogg|webm|quicktime|x-matroska))(?:;\\w+=(?:\\w+|"[\\w;,= ]+"))*$', "i");
|
|
6786
6773
|
goog.html.SafeUrl.isSafeMimeType = function(mimeType) {
|
|
6787
6774
|
return goog.html.SAFE_MIME_TYPE_PATTERN_.test(mimeType);
|
|
6788
6775
|
};
|
|
@@ -7032,6 +7019,9 @@ var module$contents$goog$html$SafeStyleSheet_CONSTRUCTOR_TOKEN_PRIVATE = {}, mod
|
|
|
7032
7019
|
this.privateDoNotAccessOrElseSafeStyleSheetWrappedValue_ = token === module$contents$goog$html$SafeStyleSheet_CONSTRUCTOR_TOKEN_PRIVATE ? value : "";
|
|
7033
7020
|
this.implementsGoogStringTypedString = !0;
|
|
7034
7021
|
};
|
|
7022
|
+
module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.prototype.toString = function() {
|
|
7023
|
+
return this.privateDoNotAccessOrElseSafeStyleSheetWrappedValue_.toString();
|
|
7024
|
+
};
|
|
7035
7025
|
module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.createRule = function(selector, style) {
|
|
7036
7026
|
if ((0,goog.string.internal.contains)(selector, "<")) {
|
|
7037
7027
|
throw Error("Selector does not allow '<', got: " + selector);
|
|
@@ -7086,18 +7076,11 @@ module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.unwrap = function(safeSt
|
|
|
7086
7076
|
module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.createSafeStyleSheetSecurityPrivateDoNotAccessOrElse = function(styleSheet) {
|
|
7087
7077
|
return new module$contents$goog$html$SafeStyleSheet_SafeStyleSheet(styleSheet, module$contents$goog$html$SafeStyleSheet_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
7088
7078
|
};
|
|
7089
|
-
module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.prototype.toString = function() {
|
|
7090
|
-
return this.privateDoNotAccessOrElseSafeStyleSheetWrappedValue_.toString();
|
|
7091
|
-
};
|
|
7092
7079
|
module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.EMPTY = module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.createSafeStyleSheetSecurityPrivateDoNotAccessOrElse("");
|
|
7093
7080
|
goog.html.SafeStyleSheet = module$contents$goog$html$SafeStyleSheet_SafeStyleSheet;
|
|
7094
|
-
var module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$contents$goog$html$SafeHtml_SafeHtml = function(value,
|
|
7081
|
+
var module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE = {}, module$contents$goog$html$SafeHtml_SafeHtml = function(value, token) {
|
|
7095
7082
|
this.privateDoNotAccessOrElseSafeHtmlWrappedValue_ = token === module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE ? value : "";
|
|
7096
|
-
this.
|
|
7097
|
-
this.implementsGoogStringTypedString = this.implementsGoogI18nBidiDirectionalString = !0;
|
|
7098
|
-
};
|
|
7099
|
-
module$contents$goog$html$SafeHtml_SafeHtml.prototype.getDirection = function() {
|
|
7100
|
-
return this.dir_;
|
|
7083
|
+
this.implementsGoogStringTypedString = !0;
|
|
7101
7084
|
};
|
|
7102
7085
|
module$contents$goog$html$SafeHtml_SafeHtml.prototype.getTypedStringValue = function() {
|
|
7103
7086
|
return this.privateDoNotAccessOrElseSafeHtmlWrappedValue_.toString();
|
|
@@ -7116,29 +7099,24 @@ module$contents$goog$html$SafeHtml_SafeHtml.unwrapTrustedHTML = function(safeHtm
|
|
|
7116
7099
|
return "type_error:SafeHtml";
|
|
7117
7100
|
};
|
|
7118
7101
|
module$contents$goog$html$SafeHtml_SafeHtml.htmlEscape = function(textOrHtml) {
|
|
7119
|
-
|
|
7120
|
-
return textOrHtml;
|
|
7121
|
-
}
|
|
7122
|
-
var textIsObject = "object" == typeof textOrHtml, dir = null;
|
|
7123
|
-
textIsObject && textOrHtml.implementsGoogI18nBidiDirectionalString && (dir = textOrHtml.getDirection());
|
|
7124
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(goog.string.internal.htmlEscape(textIsObject && textOrHtml.implementsGoogStringTypedString ? textOrHtml.getTypedStringValue() : String(textOrHtml)), dir);
|
|
7102
|
+
return textOrHtml instanceof module$contents$goog$html$SafeHtml_SafeHtml ? textOrHtml : module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(goog.string.internal.htmlEscape("object" == typeof textOrHtml && textOrHtml.implementsGoogStringTypedString ? textOrHtml.getTypedStringValue() : String(textOrHtml)));
|
|
7125
7103
|
};
|
|
7126
7104
|
module$contents$goog$html$SafeHtml_SafeHtml.htmlEscapePreservingNewlines = function(textOrHtml) {
|
|
7127
7105
|
if (textOrHtml instanceof module$contents$goog$html$SafeHtml_SafeHtml) {
|
|
7128
7106
|
return textOrHtml;
|
|
7129
7107
|
}
|
|
7130
7108
|
var html = module$contents$goog$html$SafeHtml_SafeHtml.htmlEscape(textOrHtml);
|
|
7131
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(goog.string.internal.newLineToBr(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(html))
|
|
7109
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(goog.string.internal.newLineToBr(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(html)));
|
|
7132
7110
|
};
|
|
7133
7111
|
module$contents$goog$html$SafeHtml_SafeHtml.htmlEscapePreservingNewlinesAndSpaces = function(textOrHtml) {
|
|
7134
7112
|
if (textOrHtml instanceof module$contents$goog$html$SafeHtml_SafeHtml) {
|
|
7135
7113
|
return textOrHtml;
|
|
7136
7114
|
}
|
|
7137
7115
|
var html = module$contents$goog$html$SafeHtml_SafeHtml.htmlEscape(textOrHtml);
|
|
7138
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(goog.string.internal.whitespaceEscape(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(html))
|
|
7116
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(goog.string.internal.whitespaceEscape(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(html)));
|
|
7139
7117
|
};
|
|
7140
7118
|
module$contents$goog$html$SafeHtml_SafeHtml.comment = function(text) {
|
|
7141
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse("\x3c!--" + goog.string.internal.htmlEscape(text) + "--\x3e"
|
|
7119
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse("\x3c!--" + goog.string.internal.htmlEscape(text) + "--\x3e");
|
|
7142
7120
|
};
|
|
7143
7121
|
module$contents$goog$html$SafeHtml_SafeHtml.create = function(tagName, attributes, content) {
|
|
7144
7122
|
module$contents$goog$html$SafeHtml_SafeHtml.verifyTagName(String(tagName));
|
|
@@ -7193,7 +7171,7 @@ module$contents$goog$html$SafeHtml_SafeHtml.createScript = function(script, attr
|
|
|
7193
7171
|
for (var i = 0; i < script.length; i++) {
|
|
7194
7172
|
content += module$contents$goog$html$SafeScript_SafeScript.unwrap(script[i]);
|
|
7195
7173
|
}
|
|
7196
|
-
var htmlContent = module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content
|
|
7174
|
+
var htmlContent = module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content);
|
|
7197
7175
|
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("script", attributes, htmlContent);
|
|
7198
7176
|
};
|
|
7199
7177
|
module$contents$goog$html$SafeHtml_SafeHtml.createStyle = function(styleSheet, attributes) {
|
|
@@ -7202,7 +7180,7 @@ module$contents$goog$html$SafeHtml_SafeHtml.createStyle = function(styleSheet, a
|
|
|
7202
7180
|
for (var i = 0; i < styleSheet.length; i++) {
|
|
7203
7181
|
content += module$contents$goog$html$SafeStyleSheet_SafeStyleSheet.unwrap(styleSheet[i]);
|
|
7204
7182
|
}
|
|
7205
|
-
var htmlContent = module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content
|
|
7183
|
+
var htmlContent = module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content);
|
|
7206
7184
|
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("style", combinedAttrs, htmlContent);
|
|
7207
7185
|
};
|
|
7208
7186
|
module$contents$goog$html$SafeHtml_SafeHtml.createMetaRefresh = function(url, secs) {
|
|
@@ -7210,39 +7188,26 @@ module$contents$goog$html$SafeHtml_SafeHtml.createMetaRefresh = function(url, se
|
|
|
7210
7188
|
(module$contents$goog$labs$userAgent$browser_matchIE() || module$contents$goog$labs$userAgent$browser_matchEdgeHtml()) && goog.string.internal.contains(unwrappedUrl, ";") && (unwrappedUrl = "'" + unwrappedUrl.replace(/'/g, "%27") + "'");
|
|
7211
7189
|
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse("meta", {"http-equiv":"refresh", content:(secs || 0) + "; url=" + unwrappedUrl,});
|
|
7212
7190
|
};
|
|
7213
|
-
module$contents$goog$html$SafeHtml_SafeHtml.createWithDir = function(dir, tagName, attributes, content) {
|
|
7214
|
-
var html = module$contents$goog$html$SafeHtml_SafeHtml.create(tagName, attributes, content);
|
|
7215
|
-
html.dir_ = dir;
|
|
7216
|
-
return html;
|
|
7217
|
-
};
|
|
7218
7191
|
module$contents$goog$html$SafeHtml_SafeHtml.join = function(separator, parts) {
|
|
7219
|
-
var separatorHtml = module$contents$goog$html$SafeHtml_SafeHtml.htmlEscape(separator),
|
|
7192
|
+
var separatorHtml = module$contents$goog$html$SafeHtml_SafeHtml.htmlEscape(separator), content = [], addArgument = function(argument) {
|
|
7220
7193
|
if (Array.isArray(argument)) {
|
|
7221
7194
|
argument.forEach(addArgument);
|
|
7222
7195
|
} else {
|
|
7223
7196
|
var html = module$contents$goog$html$SafeHtml_SafeHtml.htmlEscape(argument);
|
|
7224
7197
|
content.push(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(html));
|
|
7225
|
-
var htmlDir = html.getDirection();
|
|
7226
|
-
dir == goog.i18n.bidi.Dir.NEUTRAL ? dir = htmlDir : htmlDir != goog.i18n.bidi.Dir.NEUTRAL && dir != htmlDir && (dir = null);
|
|
7227
7198
|
}
|
|
7228
7199
|
};
|
|
7229
7200
|
parts.forEach(addArgument);
|
|
7230
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content.join(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(separatorHtml))
|
|
7201
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(content.join(module$contents$goog$html$SafeHtml_SafeHtml.unwrap(separatorHtml)));
|
|
7231
7202
|
};
|
|
7232
7203
|
module$contents$goog$html$SafeHtml_SafeHtml.concat = function(var_args) {
|
|
7233
7204
|
return module$contents$goog$html$SafeHtml_SafeHtml.join(module$contents$goog$html$SafeHtml_SafeHtml.EMPTY, Array.prototype.slice.call(arguments));
|
|
7234
7205
|
};
|
|
7235
|
-
module$contents$goog$html$SafeHtml_SafeHtml.
|
|
7236
|
-
var html =
|
|
7237
|
-
html
|
|
7238
|
-
return html;
|
|
7239
|
-
};
|
|
7240
|
-
module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse = function(html, dir) {
|
|
7241
|
-
var policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedHtml = policy ? policy.createHTML(html) : html;
|
|
7242
|
-
return new module$contents$goog$html$SafeHtml_SafeHtml(trustedHtml, dir, module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
7206
|
+
module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse = function(html) {
|
|
7207
|
+
var noinlineHtml = html, policy = goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse(), trustedHtml = policy ? policy.createHTML(noinlineHtml) : noinlineHtml;
|
|
7208
|
+
return new module$contents$goog$html$SafeHtml_SafeHtml(trustedHtml, module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
7243
7209
|
};
|
|
7244
7210
|
module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNotAccessOrElse = function(tagName, attributes, content) {
|
|
7245
|
-
var dir = null;
|
|
7246
7211
|
var result = "<" + tagName + module$contents$goog$html$SafeHtml_SafeHtml.stringifyAttributes(tagName, attributes);
|
|
7247
7212
|
null == content ? content = [] : Array.isArray(content) || (content = [content]);
|
|
7248
7213
|
if (goog.dom.tags.isVoidTag(tagName.toLowerCase())) {
|
|
@@ -7250,11 +7215,8 @@ module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlTagSecurityPrivateDoNo
|
|
|
7250
7215
|
} else {
|
|
7251
7216
|
var html = module$contents$goog$html$SafeHtml_SafeHtml.concat(content);
|
|
7252
7217
|
result += ">" + module$contents$goog$html$SafeHtml_SafeHtml.unwrap(html) + "</" + tagName + ">";
|
|
7253
|
-
dir = html.getDirection();
|
|
7254
7218
|
}
|
|
7255
|
-
|
|
7256
|
-
dirAttribute && (dir = /^(ltr|rtl|auto)$/i.test(dirAttribute) ? goog.i18n.bidi.Dir.NEUTRAL : null);
|
|
7257
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(result, dir);
|
|
7219
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(result);
|
|
7258
7220
|
};
|
|
7259
7221
|
module$contents$goog$html$SafeHtml_SafeHtml.stringifyAttributes = function(tagName, attributes) {
|
|
7260
7222
|
var result = "";
|
|
@@ -7335,18 +7297,18 @@ function module$contents$goog$html$SafeHtml_getStyleValue(value) {
|
|
|
7335
7297
|
return module$contents$goog$html$SafeStyle_SafeStyle.unwrap(value);
|
|
7336
7298
|
}
|
|
7337
7299
|
module$contents$goog$html$SafeHtml_SafeHtml.DOCTYPE_HTML = function() {
|
|
7338
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse("<!DOCTYPE html>"
|
|
7300
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse("<!DOCTYPE html>");
|
|
7339
7301
|
}();
|
|
7340
|
-
module$contents$goog$html$SafeHtml_SafeHtml.EMPTY = new module$contents$goog$html$SafeHtml_SafeHtml(goog.global.trustedTypes && goog.global.trustedTypes.emptyHTML || "",
|
|
7302
|
+
module$contents$goog$html$SafeHtml_SafeHtml.EMPTY = new module$contents$goog$html$SafeHtml_SafeHtml(goog.global.trustedTypes && goog.global.trustedTypes.emptyHTML || "", module$contents$goog$html$SafeHtml_CONSTRUCTOR_TOKEN_PRIVATE);
|
|
7341
7303
|
module$contents$goog$html$SafeHtml_SafeHtml.BR = function() {
|
|
7342
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse("<br>"
|
|
7304
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse("<br>");
|
|
7343
7305
|
}();
|
|
7344
7306
|
goog.html.SafeHtml = module$contents$goog$html$SafeHtml_SafeHtml;
|
|
7345
7307
|
goog.html.uncheckedconversions = {};
|
|
7346
7308
|
goog.html.uncheckedconversions.safeHtmlFromStringKnownToSatisfyTypeContract = function(justification, html) {
|
|
7347
7309
|
goog.asserts.assertString(goog.string.Const.unwrap(justification), "must provide justification");
|
|
7348
7310
|
goog.asserts.assert(!goog.string.internal.isEmptyOrWhitespace(goog.string.Const.unwrap(justification)), "must provide non-empty justification");
|
|
7349
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(html
|
|
7311
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(html);
|
|
7350
7312
|
};
|
|
7351
7313
|
goog.html.uncheckedconversions.safeScriptFromStringKnownToSatisfyTypeContract = function(justification, script) {
|
|
7352
7314
|
goog.asserts.assertString(goog.string.Const.unwrap(justification), "must provide justification");
|
|
@@ -9039,11 +9001,6 @@ module$exports$eeapiclient$ee_api_client.ITableManifestCsvColumnDataTypeOverride
|
|
|
9039
9001
|
module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum = {CSV_COLUMN_DATA_TYPE_NUMERIC:"CSV_COLUMN_DATA_TYPE_NUMERIC", CSV_COLUMN_DATA_TYPE_STRING:"CSV_COLUMN_DATA_TYPE_STRING", CSV_COLUMN_DATA_TYPE_UNSPECIFIED:"CSV_COLUMN_DATA_TYPE_UNSPECIFIED", values:function() {
|
|
9040
9002
|
return [module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum.CSV_COLUMN_DATA_TYPE_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum.CSV_COLUMN_DATA_TYPE_STRING, module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum.CSV_COLUMN_DATA_TYPE_NUMERIC];
|
|
9041
9003
|
}};
|
|
9042
|
-
module$exports$eeapiclient$ee_api_client.ITableSourceCsvColumnDataTypeOverridesEnum = function module$contents$eeapiclient$ee_api_client_ITableSourceCsvColumnDataTypeOverridesEnum() {
|
|
9043
|
-
};
|
|
9044
|
-
module$exports$eeapiclient$ee_api_client.TableSourceCsvColumnDataTypeOverridesEnum = {CSV_COLUMN_DATA_TYPE_NUMERIC:"CSV_COLUMN_DATA_TYPE_NUMERIC", CSV_COLUMN_DATA_TYPE_STRING:"CSV_COLUMN_DATA_TYPE_STRING", CSV_COLUMN_DATA_TYPE_UNSPECIFIED:"CSV_COLUMN_DATA_TYPE_UNSPECIFIED", values:function() {
|
|
9045
|
-
return [module$exports$eeapiclient$ee_api_client.TableSourceCsvColumnDataTypeOverridesEnum.CSV_COLUMN_DATA_TYPE_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.TableSourceCsvColumnDataTypeOverridesEnum.CSV_COLUMN_DATA_TYPE_STRING, module$exports$eeapiclient$ee_api_client.TableSourceCsvColumnDataTypeOverridesEnum.CSV_COLUMN_DATA_TYPE_NUMERIC];
|
|
9046
|
-
}};
|
|
9047
9004
|
module$exports$eeapiclient$ee_api_client.IThinningOptionsThinningStrategyEnum = function module$contents$eeapiclient$ee_api_client_IThinningOptionsThinningStrategyEnum() {
|
|
9048
9005
|
};
|
|
9049
9006
|
module$exports$eeapiclient$ee_api_client.ThinningOptionsThinningStrategyEnum = {GLOBALLY_CONSISTENT:"GLOBALLY_CONSISTENT", HIGHER_DENSITY:"HIGHER_DENSITY", UNKNOWN_THINNING_STRATEGY:"UNKNOWN_THINNING_STRATEGY", values:function() {
|
|
@@ -10656,18 +10613,23 @@ module$exports$eeapiclient$ee_api_client.FeatureViewDestination = function(param
|
|
|
10656
10613
|
module$exports$eeapiclient$domain_object.Serializable.call(this);
|
|
10657
10614
|
this.Serializable$set("name", null == parameters.name ? null : parameters.name);
|
|
10658
10615
|
this.Serializable$set("assetVersion", null == parameters.assetVersion ? null : parameters.assetVersion);
|
|
10616
|
+
this.Serializable$set("isMapPublic", null == parameters.isMapPublic ? null : parameters.isMapPublic);
|
|
10659
10617
|
};
|
|
10660
10618
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.FeatureViewDestination, module$exports$eeapiclient$domain_object.Serializable);
|
|
10661
10619
|
module$exports$eeapiclient$ee_api_client.FeatureViewDestination.prototype.getConstructor = function() {
|
|
10662
10620
|
return module$exports$eeapiclient$ee_api_client.FeatureViewDestination;
|
|
10663
10621
|
};
|
|
10664
10622
|
module$exports$eeapiclient$ee_api_client.FeatureViewDestination.prototype.getPartialClassMetadata = function() {
|
|
10665
|
-
return {keys:["assetVersion", "name"]};
|
|
10623
|
+
return {keys:["assetVersion", "isMapPublic", "name"]};
|
|
10666
10624
|
};
|
|
10667
10625
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.FeatureViewDestination.prototype, {assetVersion:{configurable:!0, enumerable:!0, get:function() {
|
|
10668
10626
|
return this.Serializable$has("assetVersion") ? this.Serializable$get("assetVersion") : null;
|
|
10669
10627
|
}, set:function(value) {
|
|
10670
10628
|
this.Serializable$set("assetVersion", value);
|
|
10629
|
+
}}, isMapPublic:{configurable:!0, enumerable:!0, get:function() {
|
|
10630
|
+
return this.Serializable$has("isMapPublic") ? this.Serializable$get("isMapPublic") : null;
|
|
10631
|
+
}, set:function(value) {
|
|
10632
|
+
this.Serializable$set("isMapPublic", value);
|
|
10671
10633
|
}}, name:{configurable:!0, enumerable:!0, get:function() {
|
|
10672
10634
|
return this.Serializable$has("name") ? this.Serializable$get("name") : null;
|
|
10673
10635
|
}, set:function(value) {
|
|
@@ -12509,14 +12471,13 @@ module$exports$eeapiclient$ee_api_client.TableSource = function(parameters) {
|
|
|
12509
12471
|
this.Serializable$set("dateFormat", null == parameters.dateFormat ? null : parameters.dateFormat);
|
|
12510
12472
|
this.Serializable$set("csvDelimiter", null == parameters.csvDelimiter ? null : parameters.csvDelimiter);
|
|
12511
12473
|
this.Serializable$set("csvQualifier", null == parameters.csvQualifier ? null : parameters.csvQualifier);
|
|
12512
|
-
this.Serializable$set("csvColumnDataTypeOverrides", null == parameters.csvColumnDataTypeOverrides ? null : parameters.csvColumnDataTypeOverrides);
|
|
12513
12474
|
};
|
|
12514
12475
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.TableSource, module$exports$eeapiclient$domain_object.Serializable);
|
|
12515
12476
|
module$exports$eeapiclient$ee_api_client.TableSource.prototype.getConstructor = function() {
|
|
12516
12477
|
return module$exports$eeapiclient$ee_api_client.TableSource;
|
|
12517
12478
|
};
|
|
12518
12479
|
module$exports$eeapiclient$ee_api_client.TableSource.prototype.getPartialClassMetadata = function() {
|
|
12519
|
-
return {
|
|
12480
|
+
return {keys:"charset crs csvDelimiter csvQualifier dateFormat geodesic maxErrorMeters maxVertices primaryGeometryColumn uris xColumn yColumn".split(" ")};
|
|
12520
12481
|
};
|
|
12521
12482
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableSource.prototype, {charset:{configurable:!0, enumerable:!0, get:function() {
|
|
12522
12483
|
return this.Serializable$has("charset") ? this.Serializable$get("charset") : null;
|
|
@@ -12526,10 +12487,6 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
12526
12487
|
return this.Serializable$has("crs") ? this.Serializable$get("crs") : null;
|
|
12527
12488
|
}, set:function(value) {
|
|
12528
12489
|
this.Serializable$set("crs", value);
|
|
12529
|
-
}}, csvColumnDataTypeOverrides:{configurable:!0, enumerable:!0, get:function() {
|
|
12530
|
-
return this.Serializable$has("csvColumnDataTypeOverrides") ? this.Serializable$get("csvColumnDataTypeOverrides") : null;
|
|
12531
|
-
}, set:function(value) {
|
|
12532
|
-
this.Serializable$set("csvColumnDataTypeOverrides", value);
|
|
12533
12490
|
}}, csvDelimiter:{configurable:!0, enumerable:!0, get:function() {
|
|
12534
12491
|
return this.Serializable$has("csvDelimiter") ? this.Serializable$get("csvDelimiter") : null;
|
|
12535
12492
|
}, set:function(value) {
|
|
@@ -12571,9 +12528,6 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
12571
12528
|
}, set:function(value) {
|
|
12572
12529
|
this.Serializable$set("yColumn", value);
|
|
12573
12530
|
}}});
|
|
12574
|
-
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableSource, {CsvColumnDataTypeOverrides:{configurable:!0, enumerable:!0, get:function() {
|
|
12575
|
-
return module$exports$eeapiclient$ee_api_client.TableSourceCsvColumnDataTypeOverridesEnum;
|
|
12576
|
-
}}});
|
|
12577
12531
|
module$exports$eeapiclient$ee_api_client.TestIamPermissionsRequestParameters = function module$contents$eeapiclient$ee_api_client_TestIamPermissionsRequestParameters() {
|
|
12578
12532
|
};
|
|
12579
12533
|
module$exports$eeapiclient$ee_api_client.TestIamPermissionsRequest = function(parameters) {
|
|
@@ -14132,14 +14086,14 @@ module$exports$eeapiclient$promise_request_service.PromiseRequestService.prototy
|
|
|
14132
14086
|
});
|
|
14133
14087
|
};
|
|
14134
14088
|
goog.async = {};
|
|
14135
|
-
goog
|
|
14089
|
+
var module$contents$goog$async$FreeList_FreeList = function(create, reset, limit) {
|
|
14136
14090
|
this.limit_ = limit;
|
|
14137
14091
|
this.create_ = create;
|
|
14138
14092
|
this.reset_ = reset;
|
|
14139
14093
|
this.occupants_ = 0;
|
|
14140
14094
|
this.head_ = null;
|
|
14141
14095
|
};
|
|
14142
|
-
goog
|
|
14096
|
+
module$contents$goog$async$FreeList_FreeList.prototype.get = function() {
|
|
14143
14097
|
if (0 < this.occupants_) {
|
|
14144
14098
|
this.occupants_--;
|
|
14145
14099
|
var item = this.head_;
|
|
@@ -14150,13 +14104,14 @@ goog.async.FreeList.prototype.get = function() {
|
|
|
14150
14104
|
}
|
|
14151
14105
|
return item;
|
|
14152
14106
|
};
|
|
14153
|
-
goog
|
|
14107
|
+
module$contents$goog$async$FreeList_FreeList.prototype.put = function(item) {
|
|
14154
14108
|
this.reset_(item);
|
|
14155
14109
|
this.occupants_ < this.limit_ && (this.occupants_++, item.next = this.head_, this.head_ = item);
|
|
14156
14110
|
};
|
|
14157
|
-
goog
|
|
14111
|
+
module$contents$goog$async$FreeList_FreeList.prototype.occupants = function() {
|
|
14158
14112
|
return this.occupants_;
|
|
14159
14113
|
};
|
|
14114
|
+
goog.async.FreeList = module$contents$goog$async$FreeList_FreeList;
|
|
14160
14115
|
goog.dom.BrowserFeature = {};
|
|
14161
14116
|
goog.dom.BrowserFeature.ASSUME_NO_OFFSCREEN_CANVAS = !1;
|
|
14162
14117
|
goog.dom.BrowserFeature.ASSUME_OFFSCREEN_CANVAS = !1;
|
|
@@ -15203,7 +15158,7 @@ module$contents$goog$async$WorkQueue_WorkQueue.prototype.getUnusedItem_ = functi
|
|
|
15203
15158
|
return module$contents$goog$async$WorkQueue_WorkQueue.freelist_.get();
|
|
15204
15159
|
};
|
|
15205
15160
|
module$contents$goog$async$WorkQueue_WorkQueue.DEFAULT_MAX_UNUSED = 100;
|
|
15206
|
-
module$contents$goog$async$WorkQueue_WorkQueue.freelist_ = new goog
|
|
15161
|
+
module$contents$goog$async$WorkQueue_WorkQueue.freelist_ = new module$contents$goog$async$FreeList_FreeList(function() {
|
|
15207
15162
|
return new module$contents$goog$async$WorkQueue_WorkItem();
|
|
15208
15163
|
}, function(item) {
|
|
15209
15164
|
return item.reset();
|
|
@@ -15221,70 +15176,69 @@ module$contents$goog$async$WorkQueue_WorkItem.prototype.reset = function() {
|
|
|
15221
15176
|
};
|
|
15222
15177
|
goog.async.WorkQueue = module$contents$goog$async$WorkQueue_WorkQueue;
|
|
15223
15178
|
goog.ASSUME_NATIVE_PROMISE = !1;
|
|
15224
|
-
goog
|
|
15225
|
-
goog
|
|
15226
|
-
goog
|
|
15227
|
-
goog
|
|
15228
|
-
}
|
|
15229
|
-
goog.async.run.initializeRunner_ = function() {
|
|
15179
|
+
var module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
|
|
15180
|
+
module$contents$goog$async$run_schedule || module$contents$goog$async$run_initializeRunner();
|
|
15181
|
+
module$contents$goog$async$run_workQueueScheduled || (module$contents$goog$async$run_schedule(), module$contents$goog$async$run_workQueueScheduled = !0);
|
|
15182
|
+
module$contents$goog$async$run_workQueue.add(callback, context);
|
|
15183
|
+
}, module$contents$goog$async$run_initializeRunner = function() {
|
|
15230
15184
|
if (goog.ASSUME_NATIVE_PROMISE || goog.global.Promise && goog.global.Promise.resolve) {
|
|
15231
15185
|
var promise = goog.global.Promise.resolve(void 0);
|
|
15232
|
-
goog
|
|
15233
|
-
promise.then(goog
|
|
15186
|
+
module$contents$goog$async$run_schedule = function() {
|
|
15187
|
+
promise.then(module$contents$goog$async$run_run.processWorkQueue);
|
|
15234
15188
|
};
|
|
15235
15189
|
} else {
|
|
15236
|
-
goog
|
|
15237
|
-
goog.async.nextTick(goog
|
|
15190
|
+
module$contents$goog$async$run_schedule = function() {
|
|
15191
|
+
(0,goog.async.nextTick)(module$contents$goog$async$run_run.processWorkQueue);
|
|
15238
15192
|
};
|
|
15239
15193
|
}
|
|
15240
15194
|
};
|
|
15241
|
-
goog
|
|
15242
|
-
goog
|
|
15243
|
-
goog.async.nextTick(goog
|
|
15244
|
-
|
|
15195
|
+
module$contents$goog$async$run_run.forceNextTick = function(realSetTimeout) {
|
|
15196
|
+
module$contents$goog$async$run_schedule = function() {
|
|
15197
|
+
(0,goog.async.nextTick)(module$contents$goog$async$run_run.processWorkQueue);
|
|
15198
|
+
realSetTimeout && realSetTimeout(module$contents$goog$async$run_run.processWorkQueue);
|
|
15245
15199
|
};
|
|
15246
15200
|
};
|
|
15247
|
-
goog.async.
|
|
15248
|
-
|
|
15249
|
-
goog
|
|
15250
|
-
|
|
15251
|
-
|
|
15252
|
-
}, goog.async.run.resetSchedulerForTest = function() {
|
|
15253
|
-
goog.async.run.initializeRunner_();
|
|
15201
|
+
goog.DEBUG && (module$contents$goog$async$run_run.resetQueue = function() {
|
|
15202
|
+
module$contents$goog$async$run_workQueueScheduled = !1;
|
|
15203
|
+
module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue();
|
|
15204
|
+
}, module$contents$goog$async$run_run.resetSchedulerForTest = function() {
|
|
15205
|
+
module$contents$goog$async$run_initializeRunner();
|
|
15254
15206
|
});
|
|
15255
|
-
goog
|
|
15256
|
-
for (var item = null; item = goog
|
|
15207
|
+
module$contents$goog$async$run_run.processWorkQueue = function() {
|
|
15208
|
+
for (var item = null; item = module$contents$goog$async$run_workQueue.remove();) {
|
|
15257
15209
|
try {
|
|
15258
15210
|
item.fn.call(item.scope);
|
|
15259
15211
|
} catch (e) {
|
|
15260
15212
|
module$contents$goog$async$throwException_throwException(e);
|
|
15261
15213
|
}
|
|
15262
|
-
goog
|
|
15214
|
+
module$contents$goog$async$run_workQueue.returnUnused(item);
|
|
15263
15215
|
}
|
|
15264
|
-
goog
|
|
15216
|
+
module$contents$goog$async$run_workQueueScheduled = !1;
|
|
15265
15217
|
};
|
|
15218
|
+
goog.async.run = module$contents$goog$async$run_run;
|
|
15266
15219
|
goog.promise = {};
|
|
15267
15220
|
goog.promise.Resolver = function() {
|
|
15268
15221
|
};
|
|
15269
|
-
goog
|
|
15270
|
-
}
|
|
15271
|
-
goog.
|
|
15222
|
+
function module$contents$goog$Thenable_Thenable() {
|
|
15223
|
+
}
|
|
15224
|
+
module$contents$goog$Thenable_Thenable.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
15272
15225
|
};
|
|
15273
|
-
goog.
|
|
15274
|
-
goog.
|
|
15275
|
-
ctor.prototype[goog.
|
|
15226
|
+
module$contents$goog$Thenable_Thenable.IMPLEMENTED_BY_PROP = "$goog_Thenable";
|
|
15227
|
+
module$contents$goog$Thenable_Thenable.addImplementation = function(ctor) {
|
|
15228
|
+
ctor.prototype[module$contents$goog$Thenable_Thenable.IMPLEMENTED_BY_PROP] = !0;
|
|
15276
15229
|
};
|
|
15277
|
-
goog.
|
|
15230
|
+
module$contents$goog$Thenable_Thenable.isImplementedBy = function(object) {
|
|
15278
15231
|
if (!object) {
|
|
15279
15232
|
return !1;
|
|
15280
15233
|
}
|
|
15281
15234
|
try {
|
|
15282
|
-
return !!object[goog.
|
|
15235
|
+
return !!object[module$contents$goog$Thenable_Thenable.IMPLEMENTED_BY_PROP];
|
|
15283
15236
|
return !!object.$goog_Thenable;
|
|
15284
15237
|
} catch (e) {
|
|
15285
15238
|
return !1;
|
|
15286
15239
|
}
|
|
15287
15240
|
};
|
|
15241
|
+
goog.Thenable = module$contents$goog$Thenable_Thenable;
|
|
15288
15242
|
goog.Promise = function(resolver, opt_context) {
|
|
15289
15243
|
this.state_ = goog.Promise.State_.PENDING;
|
|
15290
15244
|
this.result_ = void 0;
|
|
@@ -15326,7 +15280,7 @@ goog.Promise.CallbackEntry_.prototype.reset = function() {
|
|
|
15326
15280
|
this.always = !1;
|
|
15327
15281
|
};
|
|
15328
15282
|
goog.Promise.DEFAULT_MAX_UNUSED = 100;
|
|
15329
|
-
goog.Promise.freelist_ = new goog
|
|
15283
|
+
goog.Promise.freelist_ = new module$contents$goog$async$FreeList_FreeList(function() {
|
|
15330
15284
|
return new goog.Promise.CallbackEntry_();
|
|
15331
15285
|
}, function(item) {
|
|
15332
15286
|
item.reset();
|
|
@@ -15355,7 +15309,7 @@ goog.Promise.reject = function(opt_reason) {
|
|
|
15355
15309
|
});
|
|
15356
15310
|
};
|
|
15357
15311
|
goog.Promise.resolveThen_ = function(value, onFulfilled, onRejected) {
|
|
15358
|
-
goog.Promise.maybeThen_(value, onFulfilled, onRejected, null) || goog
|
|
15312
|
+
goog.Promise.maybeThen_(value, onFulfilled, onRejected, null) || module$contents$goog$async$run_run(goog.partial(onFulfilled, value));
|
|
15359
15313
|
};
|
|
15360
15314
|
goog.Promise.race = function(promises) {
|
|
15361
15315
|
return new goog.Promise(function(resolve, reject) {
|
|
@@ -15430,7 +15384,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
|
|
|
15430
15384
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
|
|
15431
15385
|
return this.addChildPromise_("function" === typeof opt_onFulfilled ? opt_onFulfilled : null, "function" === typeof opt_onRejected ? opt_onRejected : null, opt_context);
|
|
15432
15386
|
};
|
|
15433
|
-
goog.
|
|
15387
|
+
module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
|
|
15434
15388
|
goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
|
|
15435
15389
|
null != opt_onFulfilled && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
|
|
15436
15390
|
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?");
|
|
@@ -15452,7 +15406,7 @@ goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
|
|
|
15452
15406
|
goog.Promise.prototype.cancel = function(opt_message) {
|
|
15453
15407
|
if (this.state_ == goog.Promise.State_.PENDING) {
|
|
15454
15408
|
var err = new goog.Promise.CancellationError(opt_message);
|
|
15455
|
-
goog
|
|
15409
|
+
module$contents$goog$async$run_run(function() {
|
|
15456
15410
|
this.cancelInternal_(err);
|
|
15457
15411
|
}, this);
|
|
15458
15412
|
}
|
|
@@ -15514,7 +15468,7 @@ goog.Promise.maybeThen_ = function(value, onFulfilled, onRejected, context) {
|
|
|
15514
15468
|
if (value instanceof goog.Promise) {
|
|
15515
15469
|
return value.thenVoid(onFulfilled, onRejected, context), !0;
|
|
15516
15470
|
}
|
|
15517
|
-
if (goog.
|
|
15471
|
+
if (module$contents$goog$Thenable_Thenable.isImplementedBy(value)) {
|
|
15518
15472
|
return value.then(onFulfilled, onRejected, context), !0;
|
|
15519
15473
|
}
|
|
15520
15474
|
if (goog.isObject(value)) {
|
|
@@ -15542,7 +15496,7 @@ goog.Promise.tryThen_ = function(thenable, then, onFulfilled, onRejected, contex
|
|
|
15542
15496
|
}
|
|
15543
15497
|
};
|
|
15544
15498
|
goog.Promise.prototype.scheduleCallbacks_ = function() {
|
|
15545
|
-
this.executing_ || (this.executing_ = !0, goog
|
|
15499
|
+
this.executing_ || (this.executing_ = !0, module$contents$goog$async$run_run(this.executeCallbacks_, this));
|
|
15546
15500
|
};
|
|
15547
15501
|
goog.Promise.prototype.hasEntry_ = function() {
|
|
15548
15502
|
return !!this.callbackEntries_;
|
|
@@ -15620,7 +15574,7 @@ goog.Promise.addUnhandledRejection_ = function(promise, reason) {
|
|
|
15620
15574
|
0 < goog.Promise.UNHANDLED_REJECTION_DELAY ? promise.unhandledRejectionId_ = goog.global.setTimeout(function() {
|
|
15621
15575
|
promise.appendLongStack_(reason);
|
|
15622
15576
|
goog.Promise.handleRejection_.call(null, reason);
|
|
15623
|
-
}, goog.Promise.UNHANDLED_REJECTION_DELAY) : 0 == goog.Promise.UNHANDLED_REJECTION_DELAY && (promise.hadUnhandledRejection_ = !0, goog
|
|
15577
|
+
}, goog.Promise.UNHANDLED_REJECTION_DELAY) : 0 == goog.Promise.UNHANDLED_REJECTION_DELAY && (promise.hadUnhandledRejection_ = !0, module$contents$goog$async$run_run(function() {
|
|
15624
15578
|
promise.hadUnhandledRejection_ && (promise.appendLongStack_(reason), goog.Promise.handleRejection_.call(null, reason));
|
|
15625
15579
|
}));
|
|
15626
15580
|
};
|
|
@@ -15651,7 +15605,7 @@ goog.Timer.MAX_TIMEOUT_ = 2147483647;
|
|
|
15651
15605
|
goog.Timer.INVALID_TIMEOUT_ID_ = -1;
|
|
15652
15606
|
goog.Timer.prototype.enabled = !1;
|
|
15653
15607
|
goog.Timer.defaultTimerObject = goog.global;
|
|
15654
|
-
goog.Timer.intervalScale =
|
|
15608
|
+
goog.Timer.intervalScale = .8;
|
|
15655
15609
|
goog.Timer.prototype.timer_ = null;
|
|
15656
15610
|
goog.Timer.prototype.getInterval = function() {
|
|
15657
15611
|
return this.interval_;
|
|
@@ -15871,7 +15825,7 @@ goog.async.Deferred.prototype.then = function(opt_onFulfilled, opt_onRejected, o
|
|
|
15871
15825
|
});
|
|
15872
15826
|
return promise.then(opt_onFulfilled, opt_onRejected, opt_context);
|
|
15873
15827
|
};
|
|
15874
|
-
goog.
|
|
15828
|
+
module$contents$goog$Thenable_Thenable.addImplementation(goog.async.Deferred);
|
|
15875
15829
|
goog.async.Deferred.prototype.chainDeferred = function(otherDeferred) {
|
|
15876
15830
|
this.addCallbacks(otherDeferred.callback, otherDeferred.errback, otherDeferred);
|
|
15877
15831
|
return this;
|
|
@@ -15910,7 +15864,7 @@ goog.async.Deferred.prototype.fire_ = function() {
|
|
|
15910
15864
|
try {
|
|
15911
15865
|
var ret = f.call(scope || this.defaultScope_, res);
|
|
15912
15866
|
void 0 !== ret && (this.hadError_ = this.hadError_ && (ret == res || this.isError(ret)), this.result_ = res = ret);
|
|
15913
|
-
if (goog.
|
|
15867
|
+
if (module$contents$goog$Thenable_Thenable.isImplementedBy(res) || "function" === typeof goog.global.Promise && res instanceof goog.global.Promise) {
|
|
15914
15868
|
this.blocked_ = isNewlyBlocked = !0;
|
|
15915
15869
|
}
|
|
15916
15870
|
} catch (ex) {
|
|
@@ -16002,7 +15956,7 @@ goog.net = {};
|
|
|
16002
15956
|
goog.net.jsloader = {};
|
|
16003
15957
|
goog.net.jsloader.Options = {};
|
|
16004
15958
|
goog.net.jsloader.GLOBAL_VERIFY_OBJS_ = "closure_verification";
|
|
16005
|
-
goog.net.jsloader.DEFAULT_TIMEOUT =
|
|
15959
|
+
goog.net.jsloader.DEFAULT_TIMEOUT = 5E3;
|
|
16006
15960
|
goog.net.jsloader.scriptsToLoad_ = [];
|
|
16007
15961
|
goog.net.jsloader.safeLoadMany = function(trustedUris, opt_options) {
|
|
16008
15962
|
if (!trustedUris.length) {
|
|
@@ -16093,7 +16047,6 @@ goog.json = {};
|
|
|
16093
16047
|
goog.json.Replacer = {};
|
|
16094
16048
|
goog.json.Reviver = {};
|
|
16095
16049
|
goog.json.USE_NATIVE_JSON = !1;
|
|
16096
|
-
goog.json.TRY_NATIVE_JSON = !0;
|
|
16097
16050
|
goog.json.isValid = function(s) {
|
|
16098
16051
|
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
16052
|
};
|
|
@@ -16103,12 +16056,10 @@ goog.json.setErrorLogger = function(errorLogger) {
|
|
|
16103
16056
|
goog.json.errorLogger_ = errorLogger;
|
|
16104
16057
|
};
|
|
16105
16058
|
goog.json.parse = goog.json.USE_NATIVE_JSON ? goog.global.JSON.parse : function(s) {
|
|
16106
|
-
|
|
16107
|
-
|
|
16108
|
-
|
|
16109
|
-
|
|
16110
|
-
var error = ex;
|
|
16111
|
-
}
|
|
16059
|
+
try {
|
|
16060
|
+
return goog.global.JSON.parse(s);
|
|
16061
|
+
} catch (ex) {
|
|
16062
|
+
var error = ex;
|
|
16112
16063
|
}
|
|
16113
16064
|
var o = String(s);
|
|
16114
16065
|
if (goog.json.isValid(o)) {
|
|
@@ -16237,7 +16188,7 @@ third_party$javascript$closure$log$log$classdecl$var0.prototype.toString = funct
|
|
|
16237
16188
|
goog.log.Level = third_party$javascript$closure$log$log$classdecl$var0;
|
|
16238
16189
|
goog.log.Level.OFF = new goog.log.Level("OFF", Infinity);
|
|
16239
16190
|
goog.log.Level.SHOUT = new goog.log.Level("SHOUT", 1200);
|
|
16240
|
-
goog.log.Level.SEVERE = new goog.log.Level("SEVERE",
|
|
16191
|
+
goog.log.Level.SEVERE = new goog.log.Level("SEVERE", 1E3);
|
|
16241
16192
|
goog.log.Level.WARNING = new goog.log.Level("WARNING", 900);
|
|
16242
16193
|
goog.log.Level.INFO = new goog.log.Level("INFO", 800);
|
|
16243
16194
|
goog.log.Level.CONFIG = new goog.log.Level("CONFIG", 700);
|
|
@@ -16971,7 +16922,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
16971
16922
|
ee.apiclient = {};
|
|
16972
16923
|
var module$contents$ee$apiclient_apiclient = {};
|
|
16973
16924
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
16974
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
16925
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.315";
|
|
16975
16926
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
16976
16927
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
16977
16928
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17252,8 +17203,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17252
17203
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17253
17204
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17254
17205
|
method = method || "POST";
|
|
17255
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17256
|
-
"0.1.
|
|
17206
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.315";
|
|
17207
|
+
"0.1.315" === version && (version = "latest");
|
|
17257
17208
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17258
17209
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17259
17210
|
if (null != authToken) {
|
|
@@ -17388,7 +17339,7 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
|
|
|
17388
17339
|
if (result.access_token) {
|
|
17389
17340
|
var token = result.token_type + " " + result.access_token;
|
|
17390
17341
|
if (result.expires_in || 0 === result.expires_in) {
|
|
17391
|
-
var expiresInMs = 900 * result.expires_in, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken,
|
|
17342
|
+
var expiresInMs = 900 * result.expires_in, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, .9 * expiresInMs);
|
|
17392
17343
|
void 0 !== timeout.unref && timeout.unref();
|
|
17393
17344
|
module$contents$ee$apiclient_apiclient.authTokenExpiration_ = Date.now() + expiresInMs;
|
|
17394
17345
|
}
|
|
@@ -17505,8 +17456,8 @@ module$contents$ee$apiclient_apiclient.cloudApiKey_ = null;
|
|
|
17505
17456
|
module$contents$ee$apiclient_apiclient.initialized_ = !1;
|
|
17506
17457
|
module$contents$ee$apiclient_apiclient.deadlineMs_ = 0;
|
|
17507
17458
|
module$contents$ee$apiclient_apiclient.profileHook_ = null;
|
|
17508
|
-
module$contents$ee$apiclient_apiclient.BASE_RETRY_WAIT_ =
|
|
17509
|
-
module$contents$ee$apiclient_apiclient.MAX_RETRY_WAIT_ =
|
|
17459
|
+
module$contents$ee$apiclient_apiclient.BASE_RETRY_WAIT_ = 1E3;
|
|
17460
|
+
module$contents$ee$apiclient_apiclient.MAX_RETRY_WAIT_ = 12E4;
|
|
17510
17461
|
module$contents$ee$apiclient_apiclient.MAX_ASYNC_RETRIES_ = 10;
|
|
17511
17462
|
module$contents$ee$apiclient_apiclient.MAX_SYNC_RETRIES_ = 5;
|
|
17512
17463
|
module$contents$ee$apiclient_apiclient.APP_ID_TOKEN_HEADER_ = "X-Earth-Engine-App-ID-Token";
|
|
@@ -17836,7 +17787,7 @@ ee.rpc_convert.assetToLegacyResult = function(result) {
|
|
|
17836
17787
|
result.geometry && (properties["system:footprint"] = result.geometry);
|
|
17837
17788
|
"string" === typeof result.title && (properties["system:title"] = result.title);
|
|
17838
17789
|
"string" === typeof result.description && (properties["system:description"] = result.description);
|
|
17839
|
-
result.updateTime && (asset.version =
|
|
17790
|
+
result.updateTime && (asset.version = 1E3 * Date.parse(result.updateTime));
|
|
17840
17791
|
asset.properties = properties;
|
|
17841
17792
|
result.bands && (asset.bands = result.bands.map(function(band) {
|
|
17842
17793
|
var legacyBand = {id:band.id, crs:band.grid.crsCode, dimensions:void 0, crs_transform:void 0,};
|
|
@@ -18612,6 +18563,7 @@ ee.rpc_convert_batch.taskToExportTableRequest = function(params) {
|
|
|
18612
18563
|
default:
|
|
18613
18564
|
throw Error('Export destination "' + destination + '" unknown');
|
|
18614
18565
|
}
|
|
18566
|
+
params.workloadTag && (result.workloadTag = params.workloadTag);
|
|
18615
18567
|
return result;
|
|
18616
18568
|
};
|
|
18617
18569
|
ee.rpc_convert_batch.taskToExportVideoRequest = function(params) {
|
|
@@ -18828,6 +18780,21 @@ ee.rpc_convert_batch.buildRankByOneThingRule_ = function(ruleString) {
|
|
|
18828
18780
|
}
|
|
18829
18781
|
return rankByOneThingRule;
|
|
18830
18782
|
};
|
|
18783
|
+
goog.singleton = {};
|
|
18784
|
+
var module$contents$goog$singleton_instantiatedSingletons = [], module$contents$goog$singleton_Singleton = function() {
|
|
18785
|
+
};
|
|
18786
|
+
goog.singleton.getInstance = function(ctor) {
|
|
18787
|
+
(0,goog.asserts.assert)(!Object.isSealed(ctor), "Cannot use getInstance() with a sealed constructor.");
|
|
18788
|
+
if (ctor.instance_ && ctor.hasOwnProperty("instance_")) {
|
|
18789
|
+
return ctor.instance_;
|
|
18790
|
+
}
|
|
18791
|
+
goog.DEBUG && module$contents$goog$singleton_instantiatedSingletons.push(ctor);
|
|
18792
|
+
var instance = new ctor();
|
|
18793
|
+
ctor.instance_ = instance;
|
|
18794
|
+
(0,goog.asserts.assert)(ctor.hasOwnProperty("instance_"), "Could not instantiate singleton.");
|
|
18795
|
+
return instance;
|
|
18796
|
+
};
|
|
18797
|
+
goog.singleton.instantiatedSingletons = module$contents$goog$singleton_instantiatedSingletons;
|
|
18831
18798
|
ee.data = {};
|
|
18832
18799
|
ee.data.AbstractTaskConfig = {};
|
|
18833
18800
|
ee.data.AlgorithmsRegistry = {};
|
|
@@ -18865,7 +18832,7 @@ ee.data.authenticateViaPrivateKey = function(privateKey, opt_success, opt_error,
|
|
|
18865
18832
|
var jwtClient = new google.auth.JWT(privateKey.client_email, null, privateKey.private_key, scopes, null);
|
|
18866
18833
|
ee.data.setAuthTokenRefresher(function(authArgs, callback) {
|
|
18867
18834
|
jwtClient.authorize(function(error, token) {
|
|
18868
|
-
error ? callback({error:error}) : callback({access_token:token.access_token, token_type:token.token_type, expires_in:(token.expiry_date - Date.now()) /
|
|
18835
|
+
error ? callback({error:error}) : callback({access_token:token.access_token, token_type:token.token_type, expires_in:(token.expiry_date - Date.now()) / 1E3,});
|
|
18869
18836
|
});
|
|
18870
18837
|
});
|
|
18871
18838
|
ee.data.refreshAuthToken(opt_success, opt_error);
|
|
@@ -18961,8 +18928,10 @@ ee.data.listFeatures = function(asset, params, opt_callback) {
|
|
|
18961
18928
|
};
|
|
18962
18929
|
goog.exportSymbol("ee.data.listFeatures", ee.data.listFeatures);
|
|
18963
18930
|
ee.data.computeValue = function(obj, opt_callback) {
|
|
18964
|
-
var
|
|
18965
|
-
|
|
18931
|
+
var request = {expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(obj))}, workloadTag = ee.data.getWorkloadTag();
|
|
18932
|
+
workloadTag && (request.workloadTag = workloadTag);
|
|
18933
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
18934
|
+
return call.handle(call.value().compute(call.projectsPath(), new module$exports$eeapiclient$ee_api_client.ComputeValueRequest(request)).then(function(x) {
|
|
18966
18935
|
return x.result;
|
|
18967
18936
|
}));
|
|
18968
18937
|
};
|
|
@@ -19191,7 +19160,14 @@ ee.data.updateTask = function(taskId, action, opt_callback) {
|
|
|
19191
19160
|
goog.exportSymbol("ee.data.updateTask", ee.data.updateTask);
|
|
19192
19161
|
ee.data.startProcessing = function(taskId, params, opt_callback) {
|
|
19193
19162
|
params.id = taskId;
|
|
19194
|
-
var taskType = params.type, metadata = null != params.sourceUrl ? {__source_url__:params.sourceUrl} : {}
|
|
19163
|
+
var taskType = params.type, metadata = null != params.sourceUrl ? {__source_url__:params.sourceUrl} : {};
|
|
19164
|
+
if ("workloadTag" in params) {
|
|
19165
|
+
params.workloadTag || delete params.workloadTag;
|
|
19166
|
+
} else {
|
|
19167
|
+
var workloadTag = ee.data.getWorkloadTag();
|
|
19168
|
+
workloadTag && (params.workloadTag = workloadTag);
|
|
19169
|
+
}
|
|
19170
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback), handle = function(response) {
|
|
19195
19171
|
return call.handle(response.then(ee.rpc_convert.operationToProcessingResponse));
|
|
19196
19172
|
};
|
|
19197
19173
|
switch(taskType) {
|
|
@@ -19222,11 +19198,13 @@ goog.exportSymbol("ee.data.startProcessing", ee.data.startProcessing);
|
|
|
19222
19198
|
ee.data.prepareExportImageRequest_ = function(taskConfig, metadata) {
|
|
19223
19199
|
var imageTask = ee.data.images.applyTransformsToImage(taskConfig), imageRequest = ee.rpc_convert_batch.taskToExportImageRequest(imageTask);
|
|
19224
19200
|
imageRequest.expression = ee.data.expressionAugmenter_(imageRequest.expression, metadata);
|
|
19201
|
+
taskConfig.workloadTag && (imageRequest.workloadTag = taskConfig.workloadTag);
|
|
19225
19202
|
return imageRequest;
|
|
19226
19203
|
};
|
|
19227
19204
|
ee.data.prepareExportVideoRequest_ = function(taskConfig, metadata) {
|
|
19228
19205
|
var videoTask = ee.data.images.applyTransformsToCollection(taskConfig), videoRequest = ee.rpc_convert_batch.taskToExportVideoRequest(videoTask);
|
|
19229
19206
|
videoRequest.expression = ee.data.expressionAugmenter_(videoRequest.expression, metadata);
|
|
19207
|
+
taskConfig.workloadTag && (videoRequest.workloadTag = taskConfig.workloadTag);
|
|
19230
19208
|
return videoRequest;
|
|
19231
19209
|
};
|
|
19232
19210
|
ee.data.prepareExportMapRequest_ = function(taskConfig, metadata) {
|
|
@@ -19236,6 +19214,7 @@ ee.data.prepareExportMapRequest_ = function(taskConfig, metadata) {
|
|
|
19236
19214
|
mapTask.scale = scale;
|
|
19237
19215
|
var mapRequest = ee.rpc_convert_batch.taskToExportMapRequest(mapTask);
|
|
19238
19216
|
mapRequest.expression = ee.data.expressionAugmenter_(mapRequest.expression, metadata);
|
|
19217
|
+
taskConfig.workloadTag && (mapRequest.workloadTag = taskConfig.workloadTag);
|
|
19239
19218
|
return mapRequest;
|
|
19240
19219
|
};
|
|
19241
19220
|
ee.data.prepareExportVideoMapRequest_ = function(taskConfig, metadata) {
|
|
@@ -19245,11 +19224,13 @@ ee.data.prepareExportVideoMapRequest_ = function(taskConfig, metadata) {
|
|
|
19245
19224
|
videoMapTask.scale = scale;
|
|
19246
19225
|
var videoMapRequest = ee.rpc_convert_batch.taskToExportVideoMapRequest(videoMapTask);
|
|
19247
19226
|
videoMapRequest.expression = ee.data.expressionAugmenter_(videoMapRequest.expression);
|
|
19227
|
+
taskConfig.workloadTag && (videoMapRequest.workloadTag = taskConfig.workloadTag);
|
|
19248
19228
|
return videoMapRequest;
|
|
19249
19229
|
};
|
|
19250
19230
|
ee.data.prepareExportClassifierRequest_ = function(taskConfig, metadata) {
|
|
19251
19231
|
var classifierRequest = ee.rpc_convert_batch.taskToExportClassifierRequest(taskConfig);
|
|
19252
19232
|
classifierRequest.expression = ee.data.expressionAugmenter_(classifierRequest.expression);
|
|
19233
|
+
taskConfig.workloadTag && (classifierRequest.workloadTag = taskConfig.workloadTag);
|
|
19253
19234
|
return classifierRequest;
|
|
19254
19235
|
};
|
|
19255
19236
|
ee.data.startIngestion = function(taskId, request, opt_callback) {
|
|
@@ -19422,6 +19403,52 @@ ee.data.getAssetRootQuota = function(rootId, opt_callback) {
|
|
|
19422
19403
|
}));
|
|
19423
19404
|
};
|
|
19424
19405
|
goog.exportSymbol("ee.data.getAssetRootQuota", ee.data.getAssetRootQuota);
|
|
19406
|
+
ee.data.WorkloadTag = function() {
|
|
19407
|
+
this.default = this.tag = "";
|
|
19408
|
+
};
|
|
19409
|
+
ee.data.WorkloadTag.prototype.get = function() {
|
|
19410
|
+
return this.tag;
|
|
19411
|
+
};
|
|
19412
|
+
ee.data.WorkloadTag.prototype.set = function(tag) {
|
|
19413
|
+
this.tag = this.validate(tag);
|
|
19414
|
+
};
|
|
19415
|
+
ee.data.WorkloadTag.prototype.setDefault = function(newDefault) {
|
|
19416
|
+
this.default = this.validate(newDefault);
|
|
19417
|
+
};
|
|
19418
|
+
ee.data.WorkloadTag.prototype.reset = function() {
|
|
19419
|
+
this.tag = this.default;
|
|
19420
|
+
};
|
|
19421
|
+
ee.data.WorkloadTag.prototype.validate = function(tag) {
|
|
19422
|
+
if (null == tag || "" === tag) {
|
|
19423
|
+
return "";
|
|
19424
|
+
}
|
|
19425
|
+
tag = String(tag);
|
|
19426
|
+
if (!/^([a-z0-9]|[a-z0-9][-_\.a-z0-9]{0,61}[a-z0-9])$/g.test(tag)) {
|
|
19427
|
+
throw Error('Invalid tag, "' + tag + '". Tags must be 1-63 characters, beginning and ending with a lowercase alphanumeric character([a-z0-9]) with dashes (-), underscores (_), dots (.), andlowercase alphanumerics between.');
|
|
19428
|
+
}
|
|
19429
|
+
return tag;
|
|
19430
|
+
};
|
|
19431
|
+
ee.data.WorkloadTag.getInstance = function() {
|
|
19432
|
+
return goog.singleton.getInstance(ee.data.WorkloadTag);
|
|
19433
|
+
};
|
|
19434
|
+
ee.data.getWorkloadTag = function() {
|
|
19435
|
+
return ee.data.WorkloadTag.getInstance().get();
|
|
19436
|
+
};
|
|
19437
|
+
goog.exportSymbol("ee.data.getWorkloadTag", ee.data.getWorkloadTag);
|
|
19438
|
+
ee.data.setWorkloadTag = function(tag) {
|
|
19439
|
+
ee.data.WorkloadTag.getInstance().set(tag);
|
|
19440
|
+
};
|
|
19441
|
+
goog.exportSymbol("ee.data.setWorkloadTag", ee.data.setWorkloadTag);
|
|
19442
|
+
ee.data.setDefaultWorkloadTag = function(tag) {
|
|
19443
|
+
ee.data.WorkloadTag.getInstance().setDefault(tag);
|
|
19444
|
+
ee.data.WorkloadTag.getInstance().set(tag);
|
|
19445
|
+
};
|
|
19446
|
+
goog.exportSymbol("ee.data.setDefaultWorkloadTag", ee.data.setDefaultWorkloadTag);
|
|
19447
|
+
ee.data.resetWorkloadTag = function(opt_resetDefault) {
|
|
19448
|
+
opt_resetDefault && ee.data.WorkloadTag.getInstance().setDefault("");
|
|
19449
|
+
ee.data.WorkloadTag.getInstance().reset();
|
|
19450
|
+
};
|
|
19451
|
+
goog.exportSymbol("ee.data.resetWorkloadTag", ee.data.resetWorkloadTag);
|
|
19425
19452
|
ee.data.AssetType = {ALGORITHM:"Algorithm", CLASSIFIER:"Classifier", FEATURE_VIEW:"FeatureView", FOLDER:"Folder", FEATURE_COLLECTION:"FeatureCollection", IMAGE:"Image", IMAGE_COLLECTION:"ImageCollection", TABLE:"Table", UNKNOWN:"Unknown"};
|
|
19426
19453
|
ee.data.ExportType = {IMAGE:"EXPORT_IMAGE", MAP:"EXPORT_TILES", TABLE:"EXPORT_FEATURES", VIDEO:"EXPORT_VIDEO", VIDEO_MAP:"EXPORT_VIDEO_MAP", CLASSIFIER:"EXPORT_CLASSIFIER"};
|
|
19427
19454
|
ee.data.ExportState = {UNSUBMITTED:"UNSUBMITTED", READY:"READY", RUNNING:"RUNNING", COMPLETED:"COMPLETED", FAILED:"FAILED", CANCEL_REQUESTED:"CANCEL_REQUESTED", CANCELLED:"CANCELLED",};
|
|
@@ -21408,9 +21435,9 @@ module$contents$ee$batch_Export.classifier.prepareTaskConfig_ = function(taskCon
|
|
|
21408
21435
|
var module$contents$ee$batch_VideoFormat = {MP4:"MP4", GIF:"GIF", VP9:"VP9",}, module$contents$ee$batch_MapFormat = {AUTO_JPEG_PNG:"AUTO_JPEG_PNG", JPEG:"JPEG", PNG:"PNG",}, module$contents$ee$batch_ImageFormat = {GEO_TIFF:"GEO_TIFF", TF_RECORD_IMAGE:"TF_RECORD_IMAGE",}, module$contents$ee$batch_TableFormat = {CSV:"CSV", GEO_JSON:"GEO_JSON", KML:"KML", KMZ:"KMZ", SHP:"SHP", TF_RECORD_TABLE:"TF_RECORD_TABLE",}, module$contents$ee$batch_VideoMapVersion = {V1:"V1", V2:"V2",}, module$contents$ee$batch_FORMAT_OPTIONS_MAP =
|
|
21409
21436
|
{GEO_TIFF:["cloudOptimized", "fileDimensions", "shardSize",], TF_RECORD_IMAGE:"patchDimensions kernelSize compressed maxFileSize defaultValue tensorDepths sequenceData collapseBands maskedThreshold".split(" ")}, module$contents$ee$batch_FORMAT_PREFIX_MAP = {GEO_TIFF:"tiff", TF_RECORD_IMAGE:"tfrecord"};
|
|
21410
21437
|
module$contents$ee$batch_Export.reconcileVideoFormat_ = function(taskConfig) {
|
|
21411
|
-
taskConfig.videoOptions = taskConfig.framesPerSecond || 5
|
|
21412
|
-
taskConfig.maxFrames = taskConfig.maxFrames ||
|
|
21413
|
-
taskConfig.maxPixels = taskConfig.maxPixels ||
|
|
21438
|
+
taskConfig.videoOptions = taskConfig.framesPerSecond || 5;
|
|
21439
|
+
taskConfig.maxFrames = taskConfig.maxFrames || 1E3;
|
|
21440
|
+
taskConfig.maxPixels = taskConfig.maxPixels || 1E8;
|
|
21414
21441
|
var formatString = taskConfig.fileFormat;
|
|
21415
21442
|
null == formatString && (formatString = module$contents$ee$batch_VideoFormat.MP4);
|
|
21416
21443
|
formatString = formatString.toUpperCase();
|
|
@@ -21800,7 +21827,7 @@ ee.Deserializer.decodeValue_ = function(json, namedValues) {
|
|
|
21800
21827
|
if ("number" !== typeof microseconds) {
|
|
21801
21828
|
throw Error("Invalid date value: " + microseconds);
|
|
21802
21829
|
}
|
|
21803
|
-
return new ee.Date(microseconds /
|
|
21830
|
+
return new ee.Date(microseconds / 1E3);
|
|
21804
21831
|
case "Bytes":
|
|
21805
21832
|
return ee.Deserializer.roundTrip_(new module$exports$eeapiclient$ee_api_client.ValueNode({bytesValue:json}), json);
|
|
21806
21833
|
case "Invocation":
|
|
@@ -23377,7 +23404,7 @@ ee.layers.AbstractOverlay.prototype.getTile = function(coord, zoom, ownerDocumen
|
|
|
23377
23404
|
this.tilesById.set(uniqueId, tile);
|
|
23378
23405
|
this.registerStatusChangeListener_(tile);
|
|
23379
23406
|
this.dispatchEvent(new ee.layers.TileStartEvent(this.getLoadingTilesCount()));
|
|
23380
|
-
this.tileSource.loadTile(tile, (new Date()).getTime() /
|
|
23407
|
+
this.tileSource.loadTile(tile, (new Date()).getTime() / 1E3);
|
|
23381
23408
|
return tile.div;
|
|
23382
23409
|
};
|
|
23383
23410
|
ee.layers.AbstractOverlay.prototype.releaseTile = function(tileDiv) {
|
|
@@ -23521,7 +23548,7 @@ ee.layers.AbstractTile.prototype.retryLoad = function(opt_errorMessage) {
|
|
|
23521
23548
|
};
|
|
23522
23549
|
this.retryAttemptCount_ >= this.maxRetries ? (this.errorMessage_ = parseError(opt_errorMessage), this.setStatus(ee.layers.AbstractTile.Status.FAILED)) : (this.cancelLoad(), setTimeout(goog.bind(function() {
|
|
23523
23550
|
this.isDisposed() || (this.isRetrying_ = !0, this.startLoad(), this.isRetrying_ = !1);
|
|
23524
|
-
}, this),
|
|
23551
|
+
}, this), 1E3 * Math.pow(2, this.retryAttemptCount_++)));
|
|
23525
23552
|
};
|
|
23526
23553
|
ee.layers.AbstractTile.prototype.abort = function() {
|
|
23527
23554
|
this.cancelLoad();
|
|
@@ -24164,21 +24191,6 @@ module$contents$ee$layers$FeatureViewTileSource_FeatureViewTileSource.prototype.
|
|
|
24164
24191
|
};
|
|
24165
24192
|
goog.exportSymbol("ee.layers.FeatureViewTileSource", module$contents$ee$layers$FeatureViewTileSource_FeatureViewTileSource);
|
|
24166
24193
|
ee.layers.FeatureViewTileSource.FeatureViewTileSource = module$contents$ee$layers$FeatureViewTileSource_FeatureViewTileSource;
|
|
24167
|
-
goog.singleton = {};
|
|
24168
|
-
var module$contents$goog$singleton_instantiatedSingletons = [], module$contents$goog$singleton_Singleton = function() {
|
|
24169
|
-
};
|
|
24170
|
-
goog.singleton.getInstance = function(ctor) {
|
|
24171
|
-
(0,goog.asserts.assert)(!Object.isSealed(ctor), "Cannot use getInstance() with a sealed constructor.");
|
|
24172
|
-
if (ctor.instance_ && ctor.hasOwnProperty("instance_")) {
|
|
24173
|
-
return ctor.instance_;
|
|
24174
|
-
}
|
|
24175
|
-
goog.DEBUG && module$contents$goog$singleton_instantiatedSingletons.push(ctor);
|
|
24176
|
-
var instance = new ctor();
|
|
24177
|
-
ctor.instance_ = instance;
|
|
24178
|
-
(0,goog.asserts.assert)(ctor.hasOwnProperty("instance_"), "Could not instantiate singleton.");
|
|
24179
|
-
return instance;
|
|
24180
|
-
};
|
|
24181
|
-
goog.singleton.instantiatedSingletons = module$contents$goog$singleton_instantiatedSingletons;
|
|
24182
24194
|
ee.MapTileManager = function() {
|
|
24183
24195
|
goog.events.EventTarget.call(this);
|
|
24184
24196
|
this.tokenPool_ = new ee.MapTileManager.TokenPool_(0, 60);
|
|
@@ -24396,7 +24408,7 @@ ee.MapLayerOverlay = function(url, mapId, token, init, opt_profiler) {
|
|
|
24396
24408
|
this.isPng = void 0 !== init.isPng ? init.isPng : !0;
|
|
24397
24409
|
this.name = init.name;
|
|
24398
24410
|
this.tiles_ = new goog.structs.Set();
|
|
24399
|
-
this.opacity_ = 1
|
|
24411
|
+
this.opacity_ = 1;
|
|
24400
24412
|
this.visible_ = !0;
|
|
24401
24413
|
this.profiler_ = opt_profiler || null;
|
|
24402
24414
|
};
|
|
@@ -24422,7 +24434,7 @@ ee.MapLayerOverlay.prototype.getTile = function(coord, zoom, ownerDocument) {
|
|
|
24422
24434
|
profiling && (src += "&profiling=1");
|
|
24423
24435
|
var uniqueTileId = [tileId, this.tileCounter, this.token].join("/");
|
|
24424
24436
|
this.tileCounter += 1;
|
|
24425
|
-
var div = goog.dom.createDom(goog.dom.TagName.DIV, {id:uniqueTileId}), priority = (new Date()).getTime() /
|
|
24437
|
+
var div = goog.dom.createDom(goog.dom.TagName.DIV, {id:uniqueTileId}), priority = (new Date()).getTime() / 1E3;
|
|
24426
24438
|
this.tilesLoading.push(uniqueTileId);
|
|
24427
24439
|
ee.MapTileManager.getInstance().send(uniqueTileId, src, priority, goog.bind(this.handleImageCompleted_, this, div, uniqueTileId));
|
|
24428
24440
|
this.dispatchTileEvent_();
|
|
@@ -24454,7 +24466,7 @@ ee.MapLayerOverlay.prototype.handleImageCompleted_ = function(div, tileId, e, pr
|
|
|
24454
24466
|
if (e.target && e.type == goog.events.EventType.LOAD) {
|
|
24455
24467
|
var tile = e.target;
|
|
24456
24468
|
this.tiles_.add(tile);
|
|
24457
|
-
1
|
|
24469
|
+
1 != this.opacity_ && goog.style.setOpacity(tile, this.opacity_);
|
|
24458
24470
|
div.appendChild(tile);
|
|
24459
24471
|
}
|
|
24460
24472
|
this.dispatchTileEvent_();
|
|
@@ -24617,27 +24629,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24617
24629
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24618
24630
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24619
24631
|
(function() {
|
|
24620
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
24621
|
-
orderedParamLists = [["name"
|
|
24622
|
-
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond
|
|
24623
|
-
"
|
|
24624
|
-
"
|
|
24625
|
-
"
|
|
24626
|
-
|
|
24627
|
-
|
|
24628
|
-
"opt_callback"], ["
|
|
24629
|
-
|
|
24630
|
-
|
|
24631
|
-
"
|
|
24632
|
-
["obj"], ["obj"], ["obj"], ["string"], []];
|
|
24633
|
-
[ee.ApiFunction.
|
|
24634
|
-
module$contents$ee$batch_Export.
|
|
24635
|
-
ee.ComputedObject.prototype.
|
|
24636
|
-
ee.data.
|
|
24637
|
-
ee.data.
|
|
24638
|
-
ee.
|
|
24639
|
-
ee.Geometry.MultiPolygon, ee.Geometry.
|
|
24640
|
-
ee.
|
|
24632
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toDrive ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.getInfo ee.data.setAssetAcl ee.data.startIngestion ee.data.getTileUrl ee.data.renameAsset ee.data.authenticate ee.data.setAssetProperties ee.data.copyAsset ee.data.getTaskList ee.data.getAssetRootQuota ee.data.authenticateViaPopup ee.data.deleteAsset ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.authenticateViaPrivateKey ee.data.getAssetAcl ee.data.startTableIngestion ee.data.getWorkloadTag ee.data.authenticateViaOauth ee.data.listFeatures ee.data.listOperations ee.data.cancelOperation ee.data.setWorkloadTag ee.data.getAsset ee.data.setDefaultWorkloadTag ee.data.computeValue ee.data.resetWorkloadTag ee.data.getInfo ee.data.getOperation ee.data.getThumbId ee.data.updateAsset ee.data.getList ee.data.getVideoThumbId ee.data.cancelTask ee.data.getMapId ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.data.listAssets ee.data.updateTask ee.data.startProcessing ee.data.listImages ee.data.getDownloadId ee.data.listBuckets ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getTableDownloadId ee.data.createAssetHome ee.data.makeTableDownloadUrl ee.data.createAsset ee.data.newTaskId ee.data.createFolder ee.data.getTaskStatus ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.initialize ee.call ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.Filter.date ee.Filter.prototype.not ee.Filter.inList ee.Filter ee.Filter.eq ee.Filter.metadata ee.Filter.neq ee.Filter.bounds ee.Filter.gt ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Filter.gte ee.Filter.or ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry ee.Geometry.MultiPolygon ee.Geometry.MultiPoint ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Image.prototype.clip ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getInfo ee.Image.rgb ee.Image.prototype.rename ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
|
|
24633
|
+
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "), "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(" "),
|
|
24634
|
+
"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(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
24635
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["classifier", "opt_description", "opt_assetId"], "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_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
24636
|
+
"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(" "), ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["name", "operator", "value"], ["filter"], ["max", "opt_property", "opt_ascending"], ["start", "opt_end"], ["geometry"], ["callback"], ["func", "var_args"], ["legacy"], ["opt_callback"],
|
|
24637
|
+
["assetId", "aclUpdate", "opt_callback"], ["taskId", "request", "opt_callback"], ["id", "x", "y", "z"], ["sourceId", "destinationId", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "properties", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["opt_callback"], ["rootId", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"],
|
|
24638
|
+
["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"], [], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["asset", "params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["tag"], ["id", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["opt_resetDefault"], ["id", "opt_callback"], ["operationName",
|
|
24639
|
+
"opt_callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id"], ["parent", "params", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "params", "opt_callback"], ["params", "opt_callback"], ["project", "opt_callback"], ["id"], ["opt_callback"], ["params", "opt_callback"],
|
|
24640
|
+
["requestedId", "opt_callback"], ["id"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["opt_count", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], [], [], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams",
|
|
24641
|
+
"opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["start", "opt_end"], [], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["opt_filter"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["name",
|
|
24642
|
+
"value"], ["var_args"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["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"], [], [], ["coords",
|
|
24643
|
+
"opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geometry"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["r", "g", "b"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"],
|
|
24644
|
+
["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
24645
|
+
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, 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.image.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.classifier.toAsset,
|
|
24646
|
+
module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.serialize,
|
|
24647
|
+
ee.ComputedObject.prototype.getInfo, ee.data.setAssetAcl, ee.data.startIngestion, ee.data.getTileUrl, ee.data.renameAsset, ee.data.authenticate, ee.data.setAssetProperties, ee.data.copyAsset, ee.data.getTaskList, ee.data.getAssetRootQuota, ee.data.authenticateViaPopup, ee.data.deleteAsset, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit, ee.data.authenticateViaPrivateKey, ee.data.getAssetAcl, ee.data.startTableIngestion, ee.data.getWorkloadTag, ee.data.authenticateViaOauth, ee.data.listFeatures,
|
|
24648
|
+
ee.data.listOperations, ee.data.cancelOperation, ee.data.setWorkloadTag, ee.data.getAsset, ee.data.setDefaultWorkloadTag, ee.data.computeValue, ee.data.resetWorkloadTag, ee.data.getInfo, ee.data.getOperation, ee.data.getThumbId, ee.data.updateAsset, ee.data.getList, ee.data.getVideoThumbId, ee.data.cancelTask, ee.data.getMapId, ee.data.getFilmstripThumbId, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.updateTask, ee.data.startProcessing, ee.data.listImages, ee.data.getDownloadId, ee.data.listBuckets,
|
|
24649
|
+
ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getTableDownloadId, ee.data.createAssetHome, ee.data.makeTableDownloadUrl, ee.data.createAsset, ee.data.newTaskId, ee.data.createFolder, ee.data.getTaskStatus, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.initialize, ee.call, ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap,
|
|
24650
|
+
ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.Filter.date, ee.Filter.prototype.not, ee.Filter.inList, ee.Filter, ee.Filter.eq, ee.Filter.metadata, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte, ee.Filter.lt, ee.Filter.and, ee.Filter.gte, ee.Filter.or, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry,
|
|
24651
|
+
ee.Geometry.MultiPolygon, ee.Geometry.MultiPoint, ee.Geometry.prototype.serialize, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getInfo, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.prototype.getThumbId,
|
|
24652
|
+
ee.Image.prototype.getThumbURL, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode,
|
|
24653
|
+
ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
24641
24654
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
24642
24655
|
});
|
|
24643
24656
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|