@google/earthengine 1.5.12 → 1.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/browser.js +55 -59
- package/build/ee_api_js.js +16 -16
- package/build/ee_api_js_debug.js +36 -40
- package/build/ee_api_js_npm.js +55 -59
- package/build/main.js +55 -59
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/layers/cloudstoragetilesource.js +1 -1
package/build/ee_api_js_debug.js
CHANGED
|
@@ -1257,8 +1257,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1257
1257
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1258
1258
|
};
|
|
1259
1259
|
}, "es8", "es3");
|
|
1260
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1,
|
|
1261
|
-
GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1260
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1,
|
|
1261
|
+
GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1262
1262
|
/*
|
|
1263
1263
|
|
|
1264
1264
|
Copyright The Closure Library Authors.
|
|
@@ -4440,14 +4440,13 @@ goog.debug.freeze = function(arg) {
|
|
|
4440
4440
|
goog.log = {};
|
|
4441
4441
|
goog.log.ENABLED = goog.debug.LOGGING_ENABLED;
|
|
4442
4442
|
goog.log.ROOT_LOGGER_NAME = "";
|
|
4443
|
-
|
|
4443
|
+
goog.log.Level = function(name, value) {
|
|
4444
4444
|
this.name = name;
|
|
4445
4445
|
this.value = value;
|
|
4446
4446
|
};
|
|
4447
|
-
|
|
4447
|
+
goog.log.Level.prototype.toString = function() {
|
|
4448
4448
|
return this.name;
|
|
4449
4449
|
};
|
|
4450
|
-
goog.log.Level = third_party$javascript$closure$log$log$classdecl$var0;
|
|
4451
4450
|
goog.log.Level.OFF = new goog.log.Level("OFF", Infinity);
|
|
4452
4451
|
goog.log.Level.SHOUT = new goog.log.Level("SHOUT", 1200);
|
|
4453
4452
|
goog.log.Level.SEVERE = new goog.log.Level("SEVERE", 1E3);
|
|
@@ -4483,17 +4482,16 @@ goog.log.Level.getPredefinedLevelByValue = function(value) {
|
|
|
4483
4482
|
}
|
|
4484
4483
|
return null;
|
|
4485
4484
|
};
|
|
4486
|
-
|
|
4485
|
+
goog.log.Logger = function() {
|
|
4487
4486
|
};
|
|
4488
|
-
|
|
4487
|
+
goog.log.Logger.prototype.getName = function() {
|
|
4489
4488
|
};
|
|
4490
|
-
goog.log.Logger = third_party$javascript$closure$log$log$classdecl$var1;
|
|
4491
4489
|
goog.log.Logger.Level = goog.log.Level;
|
|
4492
|
-
|
|
4490
|
+
goog.log.LogBuffer = function(capacity) {
|
|
4493
4491
|
this.capacity_ = typeof capacity === "number" ? capacity : goog.log.LogBuffer.CAPACITY;
|
|
4494
4492
|
this.clear();
|
|
4495
4493
|
};
|
|
4496
|
-
|
|
4494
|
+
goog.log.LogBuffer.prototype.addRecord = function(level, msg, loggerName) {
|
|
4497
4495
|
if (!this.isBufferingEnabled()) {
|
|
4498
4496
|
return new goog.log.LogRecord(level, msg, loggerName);
|
|
4499
4497
|
}
|
|
@@ -4507,7 +4505,7 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = func
|
|
|
4507
4505
|
this.isFull_ = curIndex == this.capacity_ - 1;
|
|
4508
4506
|
return this.buffer_[curIndex] = new goog.log.LogRecord(level, msg, loggerName);
|
|
4509
4507
|
};
|
|
4510
|
-
|
|
4508
|
+
goog.log.LogBuffer.prototype.forEachRecord = function(func) {
|
|
4511
4509
|
var buffer = this.buffer_;
|
|
4512
4510
|
if (buffer[0]) {
|
|
4513
4511
|
var curIndex = this.curIndex_, i = this.isFull_ ? curIndex : -1;
|
|
@@ -4516,18 +4514,17 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord =
|
|
|
4516
4514
|
} while (i !== curIndex);
|
|
4517
4515
|
}
|
|
4518
4516
|
};
|
|
4519
|
-
|
|
4517
|
+
goog.log.LogBuffer.prototype.isBufferingEnabled = function() {
|
|
4520
4518
|
return this.capacity_ > 0;
|
|
4521
4519
|
};
|
|
4522
|
-
|
|
4520
|
+
goog.log.LogBuffer.prototype.isFull = function() {
|
|
4523
4521
|
return this.isFull_;
|
|
4524
4522
|
};
|
|
4525
|
-
|
|
4523
|
+
goog.log.LogBuffer.prototype.clear = function() {
|
|
4526
4524
|
this.buffer_ = Array(this.capacity_);
|
|
4527
4525
|
this.curIndex_ = -1;
|
|
4528
4526
|
this.isFull_ = !1;
|
|
4529
4527
|
};
|
|
4530
|
-
goog.log.LogBuffer = third_party$javascript$closure$log$log$classdecl$var2;
|
|
4531
4528
|
goog.log.LogBuffer.CAPACITY = 0;
|
|
4532
4529
|
goog.log.LogBuffer.getInstance = function() {
|
|
4533
4530
|
goog.log.LogBuffer.instance_ || (goog.log.LogBuffer.instance_ = new goog.log.LogBuffer(goog.log.LogBuffer.CAPACITY));
|
|
@@ -4536,11 +4533,11 @@ goog.log.LogBuffer.getInstance = function() {
|
|
|
4536
4533
|
goog.log.LogBuffer.isBufferingEnabled = function() {
|
|
4537
4534
|
return goog.log.LogBuffer.getInstance().isBufferingEnabled();
|
|
4538
4535
|
};
|
|
4539
|
-
|
|
4536
|
+
goog.log.LogRecord = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4540
4537
|
this.exception_ = void 0;
|
|
4541
4538
|
this.reset(level || goog.log.Level.OFF, msg, loggerName, time, sequenceNumber);
|
|
4542
4539
|
};
|
|
4543
|
-
|
|
4540
|
+
goog.log.LogRecord.prototype.reset = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4544
4541
|
this.time_ = time || goog.now();
|
|
4545
4542
|
this.level_ = level;
|
|
4546
4543
|
this.msg_ = msg;
|
|
@@ -4548,42 +4545,41 @@ third_party$javascript$closure$log$log$classdecl$var3.prototype.reset = function
|
|
|
4548
4545
|
this.exception_ = void 0;
|
|
4549
4546
|
this.sequenceNumber_ = typeof sequenceNumber === "number" ? sequenceNumber : goog.log.LogRecord.nextSequenceNumber_;
|
|
4550
4547
|
};
|
|
4551
|
-
|
|
4548
|
+
goog.log.LogRecord.prototype.getLoggerName = function() {
|
|
4552
4549
|
return this.loggerName_;
|
|
4553
4550
|
};
|
|
4554
|
-
|
|
4551
|
+
goog.log.LogRecord.prototype.setLoggerName = function(name) {
|
|
4555
4552
|
this.loggerName_ = name;
|
|
4556
4553
|
};
|
|
4557
|
-
|
|
4554
|
+
goog.log.LogRecord.prototype.getException = function() {
|
|
4558
4555
|
return this.exception_;
|
|
4559
4556
|
};
|
|
4560
|
-
|
|
4557
|
+
goog.log.LogRecord.prototype.setException = function(exception) {
|
|
4561
4558
|
this.exception_ = exception;
|
|
4562
4559
|
};
|
|
4563
|
-
|
|
4560
|
+
goog.log.LogRecord.prototype.getLevel = function() {
|
|
4564
4561
|
return this.level_;
|
|
4565
4562
|
};
|
|
4566
|
-
|
|
4563
|
+
goog.log.LogRecord.prototype.setLevel = function(level) {
|
|
4567
4564
|
this.level_ = level;
|
|
4568
4565
|
};
|
|
4569
|
-
|
|
4566
|
+
goog.log.LogRecord.prototype.getMessage = function() {
|
|
4570
4567
|
return this.msg_;
|
|
4571
4568
|
};
|
|
4572
|
-
|
|
4569
|
+
goog.log.LogRecord.prototype.setMessage = function(msg) {
|
|
4573
4570
|
this.msg_ = msg;
|
|
4574
4571
|
};
|
|
4575
|
-
|
|
4572
|
+
goog.log.LogRecord.prototype.getMillis = function() {
|
|
4576
4573
|
return this.time_;
|
|
4577
4574
|
};
|
|
4578
|
-
|
|
4575
|
+
goog.log.LogRecord.prototype.setMillis = function(time) {
|
|
4579
4576
|
this.time_ = time;
|
|
4580
4577
|
};
|
|
4581
|
-
|
|
4578
|
+
goog.log.LogRecord.prototype.getSequenceNumber = function() {
|
|
4582
4579
|
return this.sequenceNumber_;
|
|
4583
4580
|
};
|
|
4584
|
-
goog.log.LogRecord = third_party$javascript$closure$log$log$classdecl$var3;
|
|
4585
4581
|
goog.log.LogRecord.nextSequenceNumber_ = 0;
|
|
4586
|
-
|
|
4582
|
+
goog.log.LogRegistryEntry_ = function(name, parent) {
|
|
4587
4583
|
this.level = null;
|
|
4588
4584
|
this.handlers = [];
|
|
4589
4585
|
this.parent = (parent === void 0 ? null : parent) || null;
|
|
@@ -4592,7 +4588,7 @@ var third_party$javascript$closure$log$log$classdecl$var4 = function(name, paren
|
|
|
4592
4588
|
return name;
|
|
4593
4589
|
}};
|
|
4594
4590
|
};
|
|
4595
|
-
|
|
4591
|
+
goog.log.LogRegistryEntry_.prototype.getEffectiveLevel = function() {
|
|
4596
4592
|
if (this.level) {
|
|
4597
4593
|
return this.level;
|
|
4598
4594
|
}
|
|
@@ -4602,21 +4598,20 @@ third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLeve
|
|
|
4602
4598
|
goog.asserts.fail("Root logger has no level set.");
|
|
4603
4599
|
return goog.log.Level.OFF;
|
|
4604
4600
|
};
|
|
4605
|
-
|
|
4601
|
+
goog.log.LogRegistryEntry_.prototype.publish = function(logRecord) {
|
|
4606
4602
|
for (var target = this; target;) {
|
|
4607
4603
|
target.handlers.forEach(function(handler) {
|
|
4608
4604
|
handler(logRecord);
|
|
4609
4605
|
}), target = target.parent;
|
|
4610
4606
|
}
|
|
4611
4607
|
};
|
|
4612
|
-
goog.log.
|
|
4613
|
-
var third_party$javascript$closure$log$log$classdecl$var5 = function() {
|
|
4608
|
+
goog.log.LogRegistry_ = function() {
|
|
4614
4609
|
this.entries = {};
|
|
4615
4610
|
var rootLogRegistryEntry = new goog.log.LogRegistryEntry_(goog.log.ROOT_LOGGER_NAME);
|
|
4616
4611
|
rootLogRegistryEntry.level = goog.log.Level.CONFIG;
|
|
4617
4612
|
this.entries[goog.log.ROOT_LOGGER_NAME] = rootLogRegistryEntry;
|
|
4618
4613
|
};
|
|
4619
|
-
|
|
4614
|
+
goog.log.LogRegistry_.prototype.getLogRegistryEntry = function(name, level) {
|
|
4620
4615
|
var entry = this.entries[name];
|
|
4621
4616
|
if (entry) {
|
|
4622
4617
|
return level !== void 0 && (entry.level = level), entry;
|
|
@@ -4627,13 +4622,12 @@ third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEn
|
|
|
4627
4622
|
level !== void 0 && (logRegistryEntry.level = level);
|
|
4628
4623
|
return logRegistryEntry;
|
|
4629
4624
|
};
|
|
4630
|
-
|
|
4625
|
+
goog.log.LogRegistry_.prototype.getAllLoggers = function() {
|
|
4631
4626
|
var $jscomp$this$17096019$34 = this;
|
|
4632
4627
|
return Object.keys(this.entries).map(function(loggerName) {
|
|
4633
4628
|
return $jscomp$this$17096019$34.entries[loggerName].logger;
|
|
4634
4629
|
});
|
|
4635
4630
|
};
|
|
4636
|
-
goog.log.LogRegistry_ = third_party$javascript$closure$log$log$classdecl$var5;
|
|
4637
4631
|
goog.log.LogRegistry_.getInstance = function() {
|
|
4638
4632
|
goog.log.LogRegistry_.instance_ || (goog.log.LogRegistry_.instance_ = new goog.log.LogRegistry_());
|
|
4639
4633
|
return goog.log.LogRegistry_.instance_;
|
|
@@ -6524,6 +6518,7 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_s
|
|
|
6524
6518
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable = !1;
|
|
6525
6519
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6526
6520
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6521
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
|
|
6527
6522
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6528
6523
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6529
6524
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
@@ -6539,6 +6534,7 @@ goog.flags.CLIENT_ONLY_WIZ_SINK_LAZY_TSX_EXECUTION = module$exports$closure$flag
|
|
|
6539
6534
|
goog.flags.FIXED_NOOPENER_BEHAVIOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable : goog.readFlagInternalDoNotUseOrElse(1331761403, !1);
|
|
6540
6535
|
goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
|
|
6541
6536
|
goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
|
|
6537
|
+
goog.flags.JSPB_USE_CONSTANT_DEFAULT_PIVOT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable : goog.readFlagInternalDoNotUseOrElse(748402145, goog.DEBUG);
|
|
6542
6538
|
goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
|
|
6543
6539
|
goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
|
|
6544
6540
|
goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
|
|
@@ -19318,7 +19314,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19318
19314
|
ee.apiclient = {};
|
|
19319
19315
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19320
19316
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19321
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19317
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.13";
|
|
19322
19318
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19323
19319
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19324
19320
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19616,8 +19612,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19616
19612
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19617
19613
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19618
19614
|
method = method || "POST";
|
|
19619
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19620
|
-
version === "1.5.
|
|
19615
|
+
var headers = {"Content-Type":contentType}, version = "1.5.13";
|
|
19616
|
+
version === "1.5.13" && (version = "latest");
|
|
19621
19617
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19622
19618
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19623
19619
|
if (authToken != null) {
|
package/build/ee_api_js_npm.js
CHANGED
|
@@ -1257,8 +1257,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1257
1257
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1258
1258
|
};
|
|
1259
1259
|
}, "es8", "es3");
|
|
1260
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1,
|
|
1261
|
-
GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1260
|
+
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1,
|
|
1261
|
+
GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1262
1262
|
/*
|
|
1263
1263
|
|
|
1264
1264
|
Copyright The Closure Library Authors.
|
|
@@ -4440,14 +4440,13 @@ goog.debug.freeze = function(arg) {
|
|
|
4440
4440
|
goog.log = {};
|
|
4441
4441
|
goog.log.ENABLED = goog.debug.LOGGING_ENABLED;
|
|
4442
4442
|
goog.log.ROOT_LOGGER_NAME = "";
|
|
4443
|
-
|
|
4443
|
+
goog.log.Level = function(name, value) {
|
|
4444
4444
|
this.name = name;
|
|
4445
4445
|
this.value = value;
|
|
4446
4446
|
};
|
|
4447
|
-
|
|
4447
|
+
goog.log.Level.prototype.toString = function() {
|
|
4448
4448
|
return this.name;
|
|
4449
4449
|
};
|
|
4450
|
-
goog.log.Level = third_party$javascript$closure$log$log$classdecl$var0;
|
|
4451
4450
|
goog.log.Level.OFF = new goog.log.Level("OFF", Infinity);
|
|
4452
4451
|
goog.log.Level.SHOUT = new goog.log.Level("SHOUT", 1200);
|
|
4453
4452
|
goog.log.Level.SEVERE = new goog.log.Level("SEVERE", 1E3);
|
|
@@ -4483,17 +4482,16 @@ goog.log.Level.getPredefinedLevelByValue = function(value) {
|
|
|
4483
4482
|
}
|
|
4484
4483
|
return null;
|
|
4485
4484
|
};
|
|
4486
|
-
|
|
4485
|
+
goog.log.Logger = function() {
|
|
4487
4486
|
};
|
|
4488
|
-
|
|
4487
|
+
goog.log.Logger.prototype.getName = function() {
|
|
4489
4488
|
};
|
|
4490
|
-
goog.log.Logger = third_party$javascript$closure$log$log$classdecl$var1;
|
|
4491
4489
|
goog.log.Logger.Level = goog.log.Level;
|
|
4492
|
-
|
|
4490
|
+
goog.log.LogBuffer = function(capacity) {
|
|
4493
4491
|
this.capacity_ = typeof capacity === "number" ? capacity : goog.log.LogBuffer.CAPACITY;
|
|
4494
4492
|
this.clear();
|
|
4495
4493
|
};
|
|
4496
|
-
|
|
4494
|
+
goog.log.LogBuffer.prototype.addRecord = function(level, msg, loggerName) {
|
|
4497
4495
|
if (!this.isBufferingEnabled()) {
|
|
4498
4496
|
return new goog.log.LogRecord(level, msg, loggerName);
|
|
4499
4497
|
}
|
|
@@ -4507,7 +4505,7 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = func
|
|
|
4507
4505
|
this.isFull_ = curIndex == this.capacity_ - 1;
|
|
4508
4506
|
return this.buffer_[curIndex] = new goog.log.LogRecord(level, msg, loggerName);
|
|
4509
4507
|
};
|
|
4510
|
-
|
|
4508
|
+
goog.log.LogBuffer.prototype.forEachRecord = function(func) {
|
|
4511
4509
|
var buffer = this.buffer_;
|
|
4512
4510
|
if (buffer[0]) {
|
|
4513
4511
|
var curIndex = this.curIndex_, i = this.isFull_ ? curIndex : -1;
|
|
@@ -4516,18 +4514,17 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord =
|
|
|
4516
4514
|
} while (i !== curIndex);
|
|
4517
4515
|
}
|
|
4518
4516
|
};
|
|
4519
|
-
|
|
4517
|
+
goog.log.LogBuffer.prototype.isBufferingEnabled = function() {
|
|
4520
4518
|
return this.capacity_ > 0;
|
|
4521
4519
|
};
|
|
4522
|
-
|
|
4520
|
+
goog.log.LogBuffer.prototype.isFull = function() {
|
|
4523
4521
|
return this.isFull_;
|
|
4524
4522
|
};
|
|
4525
|
-
|
|
4523
|
+
goog.log.LogBuffer.prototype.clear = function() {
|
|
4526
4524
|
this.buffer_ = Array(this.capacity_);
|
|
4527
4525
|
this.curIndex_ = -1;
|
|
4528
4526
|
this.isFull_ = !1;
|
|
4529
4527
|
};
|
|
4530
|
-
goog.log.LogBuffer = third_party$javascript$closure$log$log$classdecl$var2;
|
|
4531
4528
|
goog.log.LogBuffer.CAPACITY = 0;
|
|
4532
4529
|
goog.log.LogBuffer.getInstance = function() {
|
|
4533
4530
|
goog.log.LogBuffer.instance_ || (goog.log.LogBuffer.instance_ = new goog.log.LogBuffer(goog.log.LogBuffer.CAPACITY));
|
|
@@ -4536,11 +4533,11 @@ goog.log.LogBuffer.getInstance = function() {
|
|
|
4536
4533
|
goog.log.LogBuffer.isBufferingEnabled = function() {
|
|
4537
4534
|
return goog.log.LogBuffer.getInstance().isBufferingEnabled();
|
|
4538
4535
|
};
|
|
4539
|
-
|
|
4536
|
+
goog.log.LogRecord = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4540
4537
|
this.exception_ = void 0;
|
|
4541
4538
|
this.reset(level || goog.log.Level.OFF, msg, loggerName, time, sequenceNumber);
|
|
4542
4539
|
};
|
|
4543
|
-
|
|
4540
|
+
goog.log.LogRecord.prototype.reset = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4544
4541
|
this.time_ = time || goog.now();
|
|
4545
4542
|
this.level_ = level;
|
|
4546
4543
|
this.msg_ = msg;
|
|
@@ -4548,42 +4545,41 @@ third_party$javascript$closure$log$log$classdecl$var3.prototype.reset = function
|
|
|
4548
4545
|
this.exception_ = void 0;
|
|
4549
4546
|
this.sequenceNumber_ = typeof sequenceNumber === "number" ? sequenceNumber : goog.log.LogRecord.nextSequenceNumber_;
|
|
4550
4547
|
};
|
|
4551
|
-
|
|
4548
|
+
goog.log.LogRecord.prototype.getLoggerName = function() {
|
|
4552
4549
|
return this.loggerName_;
|
|
4553
4550
|
};
|
|
4554
|
-
|
|
4551
|
+
goog.log.LogRecord.prototype.setLoggerName = function(name) {
|
|
4555
4552
|
this.loggerName_ = name;
|
|
4556
4553
|
};
|
|
4557
|
-
|
|
4554
|
+
goog.log.LogRecord.prototype.getException = function() {
|
|
4558
4555
|
return this.exception_;
|
|
4559
4556
|
};
|
|
4560
|
-
|
|
4557
|
+
goog.log.LogRecord.prototype.setException = function(exception) {
|
|
4561
4558
|
this.exception_ = exception;
|
|
4562
4559
|
};
|
|
4563
|
-
|
|
4560
|
+
goog.log.LogRecord.prototype.getLevel = function() {
|
|
4564
4561
|
return this.level_;
|
|
4565
4562
|
};
|
|
4566
|
-
|
|
4563
|
+
goog.log.LogRecord.prototype.setLevel = function(level) {
|
|
4567
4564
|
this.level_ = level;
|
|
4568
4565
|
};
|
|
4569
|
-
|
|
4566
|
+
goog.log.LogRecord.prototype.getMessage = function() {
|
|
4570
4567
|
return this.msg_;
|
|
4571
4568
|
};
|
|
4572
|
-
|
|
4569
|
+
goog.log.LogRecord.prototype.setMessage = function(msg) {
|
|
4573
4570
|
this.msg_ = msg;
|
|
4574
4571
|
};
|
|
4575
|
-
|
|
4572
|
+
goog.log.LogRecord.prototype.getMillis = function() {
|
|
4576
4573
|
return this.time_;
|
|
4577
4574
|
};
|
|
4578
|
-
|
|
4575
|
+
goog.log.LogRecord.prototype.setMillis = function(time) {
|
|
4579
4576
|
this.time_ = time;
|
|
4580
4577
|
};
|
|
4581
|
-
|
|
4578
|
+
goog.log.LogRecord.prototype.getSequenceNumber = function() {
|
|
4582
4579
|
return this.sequenceNumber_;
|
|
4583
4580
|
};
|
|
4584
|
-
goog.log.LogRecord = third_party$javascript$closure$log$log$classdecl$var3;
|
|
4585
4581
|
goog.log.LogRecord.nextSequenceNumber_ = 0;
|
|
4586
|
-
|
|
4582
|
+
goog.log.LogRegistryEntry_ = function(name, parent) {
|
|
4587
4583
|
this.level = null;
|
|
4588
4584
|
this.handlers = [];
|
|
4589
4585
|
this.parent = (parent === void 0 ? null : parent) || null;
|
|
@@ -4592,7 +4588,7 @@ var third_party$javascript$closure$log$log$classdecl$var4 = function(name, paren
|
|
|
4592
4588
|
return name;
|
|
4593
4589
|
}};
|
|
4594
4590
|
};
|
|
4595
|
-
|
|
4591
|
+
goog.log.LogRegistryEntry_.prototype.getEffectiveLevel = function() {
|
|
4596
4592
|
if (this.level) {
|
|
4597
4593
|
return this.level;
|
|
4598
4594
|
}
|
|
@@ -4602,21 +4598,20 @@ third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLeve
|
|
|
4602
4598
|
goog.asserts.fail("Root logger has no level set.");
|
|
4603
4599
|
return goog.log.Level.OFF;
|
|
4604
4600
|
};
|
|
4605
|
-
|
|
4601
|
+
goog.log.LogRegistryEntry_.prototype.publish = function(logRecord) {
|
|
4606
4602
|
for (var target = this; target;) {
|
|
4607
4603
|
target.handlers.forEach(function(handler) {
|
|
4608
4604
|
handler(logRecord);
|
|
4609
4605
|
}), target = target.parent;
|
|
4610
4606
|
}
|
|
4611
4607
|
};
|
|
4612
|
-
goog.log.
|
|
4613
|
-
var third_party$javascript$closure$log$log$classdecl$var5 = function() {
|
|
4608
|
+
goog.log.LogRegistry_ = function() {
|
|
4614
4609
|
this.entries = {};
|
|
4615
4610
|
var rootLogRegistryEntry = new goog.log.LogRegistryEntry_(goog.log.ROOT_LOGGER_NAME);
|
|
4616
4611
|
rootLogRegistryEntry.level = goog.log.Level.CONFIG;
|
|
4617
4612
|
this.entries[goog.log.ROOT_LOGGER_NAME] = rootLogRegistryEntry;
|
|
4618
4613
|
};
|
|
4619
|
-
|
|
4614
|
+
goog.log.LogRegistry_.prototype.getLogRegistryEntry = function(name, level) {
|
|
4620
4615
|
var entry = this.entries[name];
|
|
4621
4616
|
if (entry) {
|
|
4622
4617
|
return level !== void 0 && (entry.level = level), entry;
|
|
@@ -4627,13 +4622,12 @@ third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEn
|
|
|
4627
4622
|
level !== void 0 && (logRegistryEntry.level = level);
|
|
4628
4623
|
return logRegistryEntry;
|
|
4629
4624
|
};
|
|
4630
|
-
|
|
4625
|
+
goog.log.LogRegistry_.prototype.getAllLoggers = function() {
|
|
4631
4626
|
var $jscomp$this$17096019$34 = this;
|
|
4632
4627
|
return Object.keys(this.entries).map(function(loggerName) {
|
|
4633
4628
|
return $jscomp$this$17096019$34.entries[loggerName].logger;
|
|
4634
4629
|
});
|
|
4635
4630
|
};
|
|
4636
|
-
goog.log.LogRegistry_ = third_party$javascript$closure$log$log$classdecl$var5;
|
|
4637
4631
|
goog.log.LogRegistry_.getInstance = function() {
|
|
4638
4632
|
goog.log.LogRegistry_.instance_ || (goog.log.LogRegistry_.instance_ = new goog.log.LogRegistry_());
|
|
4639
4633
|
return goog.log.LogRegistry_.instance_;
|
|
@@ -6524,6 +6518,7 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_s
|
|
|
6524
6518
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable = !1;
|
|
6525
6519
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6526
6520
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6521
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
|
|
6527
6522
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6528
6523
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6529
6524
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
@@ -6539,6 +6534,7 @@ goog.flags.CLIENT_ONLY_WIZ_SINK_LAZY_TSX_EXECUTION = module$exports$closure$flag
|
|
|
6539
6534
|
goog.flags.FIXED_NOOPENER_BEHAVIOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable : goog.readFlagInternalDoNotUseOrElse(1331761403, !1);
|
|
6540
6535
|
goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
|
|
6541
6536
|
goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
|
|
6537
|
+
goog.flags.JSPB_USE_CONSTANT_DEFAULT_PIVOT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable : goog.readFlagInternalDoNotUseOrElse(748402145, goog.DEBUG);
|
|
6542
6538
|
goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
|
|
6543
6539
|
goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
|
|
6544
6540
|
goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
|
|
@@ -19318,7 +19314,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19318
19314
|
ee.apiclient = {};
|
|
19319
19315
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19320
19316
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19321
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19317
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.13";
|
|
19322
19318
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19323
19319
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19324
19320
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19616,8 +19612,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19616
19612
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19617
19613
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19618
19614
|
method = method || "POST";
|
|
19619
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19620
|
-
version === "1.5.
|
|
19615
|
+
var headers = {"Content-Type":contentType}, version = "1.5.13";
|
|
19616
|
+
version === "1.5.13" && (version = "latest");
|
|
19621
19617
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19622
19618
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19623
19619
|
if (authToken != null) {
|
|
@@ -27144,29 +27140,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27144
27140
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27145
27141
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27146
27142
|
(function() {
|
|
27147
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.
|
|
27143
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.getInfo ee.data.getOperation ee.data.authenticateViaPrivateKey ee.data.createAsset ee.data.resetWorkloadTag ee.data.newTaskId ee.data.computeValue ee.data.updateAsset ee.data.cancelTask ee.data.getThumbId ee.data.getList ee.data.getVideoThumbId ee.data.setAssetAcl ee.data.createFolder ee.data.getTaskStatus ee.data.updateTask ee.data.startIngestion ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.renameAsset ee.data.setAssetProperties ee.data.listAssets ee.data.setDefaultWorkloadTag ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getMapId ee.data.copyAsset ee.data.getAssetRootQuota ee.data.getTaskList ee.data.listBuckets ee.data.authenticate ee.data.deleteAsset ee.data.getWorkloadTag ee.data.getTableDownloadId ee.data.getTileUrl ee.data.startTableIngestion ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.getAssetAcl ee.data.listOperations ee.data.listImages ee.data.getDownloadId ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.getAssetRoots ee.data.getAsset ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.createAssetHome ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getInfo ee.Filter.neq ee.Filter.lte ee.Filter.gte ee.Filter.metadata ee.Filter.date ee.Filter.bounds ee.Filter.prototype.not ee.Filter.eq ee.Filter ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.or ee.Filter.lt ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.BBox ee.Image.prototype.getDownloadURL ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbId ee.Image.cat ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.rgb ee.Image ee.Image.prototype.clip ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
27148
27144
|
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27149
27145
|
"image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "),
|
|
27150
27146
|
"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27151
|
-
["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"],
|
|
27152
|
-
["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["
|
|
27153
|
-
["
|
|
27154
|
-
|
|
27155
|
-
"opt_callback"], ["params", "opt_callback"], ["
|
|
27156
|
-
["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [
|
|
27157
|
-
["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["
|
|
27158
|
-
["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["
|
|
27159
|
-
"opt_callback"], ["
|
|
27160
|
-
"
|
|
27147
|
+
["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27148
|
+
["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["start", "opt_end"], ["opt_callback"], ["callback"], ["func", "var_args"], ["legacy"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"],
|
|
27149
|
+
["opt_resetDefault"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["sourceId",
|
|
27150
|
+
"destinationId", "opt_callback"], ["assetId", "properties", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["tag"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["rootId", "opt_callback"], ["opt_callback"], ["project", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId",
|
|
27151
|
+
"opt_callback"], [], ["params", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["operationName", "opt_callback"], ["id"], ["tag"], ["opt_success", "opt_error"], ["opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["requestedId", "opt_callback"],
|
|
27152
|
+
["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_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"],
|
|
27153
|
+
["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_callback"], ["name", "value"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], [], ["name", "value"], ["opt_filter"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic",
|
|
27154
|
+
"opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["params", "opt_callback"],
|
|
27155
|
+
["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["r", "g", "b"], ["opt_args"], ["geometry"], [], ["params", "opt_callback"], ["params", "opt_callback"], ["args"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties",
|
|
27156
|
+
"opt_matchPropertyName"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27161
27157
|
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset,
|
|
27162
|
-
module$contents$ee$batch_Export.
|
|
27163
|
-
ee.ComputedObject.prototype.
|
|
27164
|
-
ee.data.
|
|
27165
|
-
ee.data.
|
|
27166
|
-
ee.
|
|
27167
|
-
ee.Filter.
|
|
27168
|
-
ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image
|
|
27169
|
-
ee.ImageCollection.prototype.
|
|
27158
|
+
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
|
|
27159
|
+
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.serialize, ee.data.getInfo, ee.data.getOperation, ee.data.authenticateViaPrivateKey, ee.data.createAsset, ee.data.resetWorkloadTag, ee.data.newTaskId, ee.data.computeValue, ee.data.updateAsset, ee.data.cancelTask, ee.data.getThumbId, ee.data.getList, ee.data.getVideoThumbId, ee.data.setAssetAcl, ee.data.createFolder, ee.data.getTaskStatus, ee.data.updateTask, ee.data.startIngestion, ee.data.startProcessing,
|
|
27160
|
+
ee.data.getFilmstripThumbId, ee.data.renameAsset, ee.data.setAssetProperties, ee.data.listAssets, ee.data.setDefaultWorkloadTag, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.getMapId, ee.data.copyAsset, ee.data.getAssetRootQuota, ee.data.getTaskList, ee.data.listBuckets, ee.data.authenticate, ee.data.deleteAsset, ee.data.getWorkloadTag, ee.data.getTableDownloadId, ee.data.getTileUrl, ee.data.startTableIngestion, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.getAssetAcl,
|
|
27161
|
+
ee.data.listOperations, ee.data.listImages, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.setWorkloadTag, ee.data.authenticateViaPopup, ee.data.getAssetRoots, ee.data.getAsset, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.createAssetHome, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.initialize, ee.reset, ee.call, ee.Algorithms,
|
|
27162
|
+
ee.InitState, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getInfo, ee.Filter.neq, ee.Filter.lte, ee.Filter.gte, ee.Filter.metadata, ee.Filter.date, ee.Filter.bounds, ee.Filter.prototype.not,
|
|
27163
|
+
ee.Filter.eq, ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Image.prototype.getDownloadURL,
|
|
27164
|
+
ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbId, ee.Image.cat, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.rgb, ee.Image, ee.Image.prototype.clip, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap,
|
|
27165
|
+
ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27170
27166
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27171
27167
|
});
|
|
27172
27168
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|