@google/earthengine 1.5.11 → 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 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__jspb_disallow_message_tojson__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1,
1261
- 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.
@@ -2994,7 +2994,8 @@ function module$contents$safevalues$builders$url_builders_sanitizeUrl(url, allow
2994
2994
  }
2995
2995
  module$exports$safevalues$builders$url_builders.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
2996
2996
  function module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource(source) {
2997
- if (typeof MediaSource !== "undefined" && source instanceof MediaSource) {
2997
+ var windowAsAny = window;
2998
+ if (typeof MediaSource !== "undefined" && source instanceof MediaSource || typeof windowAsAny.ManagedMediaSource !== "undefined" && source instanceof windowAsAny.ManagedMediaSource) {
2998
2999
  return module$contents$safevalues$internals$url_impl_createUrlInternal(URL.createObjectURL(source));
2999
3000
  }
3000
3001
  if (!module$contents$safevalues$builders$url_builders_isSafeMimeType(source.type)) {
@@ -4439,14 +4440,13 @@ goog.debug.freeze = function(arg) {
4439
4440
  goog.log = {};
4440
4441
  goog.log.ENABLED = goog.debug.LOGGING_ENABLED;
4441
4442
  goog.log.ROOT_LOGGER_NAME = "";
4442
- var third_party$javascript$closure$log$log$classdecl$var0 = function(name, value) {
4443
+ goog.log.Level = function(name, value) {
4443
4444
  this.name = name;
4444
4445
  this.value = value;
4445
4446
  };
4446
- third_party$javascript$closure$log$log$classdecl$var0.prototype.toString = function() {
4447
+ goog.log.Level.prototype.toString = function() {
4447
4448
  return this.name;
4448
4449
  };
4449
- goog.log.Level = third_party$javascript$closure$log$log$classdecl$var0;
4450
4450
  goog.log.Level.OFF = new goog.log.Level("OFF", Infinity);
4451
4451
  goog.log.Level.SHOUT = new goog.log.Level("SHOUT", 1200);
4452
4452
  goog.log.Level.SEVERE = new goog.log.Level("SEVERE", 1E3);
@@ -4482,17 +4482,16 @@ goog.log.Level.getPredefinedLevelByValue = function(value) {
4482
4482
  }
4483
4483
  return null;
4484
4484
  };
4485
- var third_party$javascript$closure$log$log$classdecl$var1 = function() {
4485
+ goog.log.Logger = function() {
4486
4486
  };
4487
- third_party$javascript$closure$log$log$classdecl$var1.prototype.getName = function() {
4487
+ goog.log.Logger.prototype.getName = function() {
4488
4488
  };
4489
- goog.log.Logger = third_party$javascript$closure$log$log$classdecl$var1;
4490
4489
  goog.log.Logger.Level = goog.log.Level;
4491
- var third_party$javascript$closure$log$log$classdecl$var2 = function(capacity) {
4490
+ goog.log.LogBuffer = function(capacity) {
4492
4491
  this.capacity_ = typeof capacity === "number" ? capacity : goog.log.LogBuffer.CAPACITY;
4493
4492
  this.clear();
4494
4493
  };
4495
- third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = function(level, msg, loggerName) {
4494
+ goog.log.LogBuffer.prototype.addRecord = function(level, msg, loggerName) {
4496
4495
  if (!this.isBufferingEnabled()) {
4497
4496
  return new goog.log.LogRecord(level, msg, loggerName);
4498
4497
  }
@@ -4506,7 +4505,7 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = func
4506
4505
  this.isFull_ = curIndex == this.capacity_ - 1;
4507
4506
  return this.buffer_[curIndex] = new goog.log.LogRecord(level, msg, loggerName);
4508
4507
  };
4509
- third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord = function(func) {
4508
+ goog.log.LogBuffer.prototype.forEachRecord = function(func) {
4510
4509
  var buffer = this.buffer_;
4511
4510
  if (buffer[0]) {
4512
4511
  var curIndex = this.curIndex_, i = this.isFull_ ? curIndex : -1;
@@ -4515,18 +4514,17 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord =
4515
4514
  } while (i !== curIndex);
4516
4515
  }
4517
4516
  };
4518
- third_party$javascript$closure$log$log$classdecl$var2.prototype.isBufferingEnabled = function() {
4517
+ goog.log.LogBuffer.prototype.isBufferingEnabled = function() {
4519
4518
  return this.capacity_ > 0;
4520
4519
  };
4521
- third_party$javascript$closure$log$log$classdecl$var2.prototype.isFull = function() {
4520
+ goog.log.LogBuffer.prototype.isFull = function() {
4522
4521
  return this.isFull_;
4523
4522
  };
4524
- third_party$javascript$closure$log$log$classdecl$var2.prototype.clear = function() {
4523
+ goog.log.LogBuffer.prototype.clear = function() {
4525
4524
  this.buffer_ = Array(this.capacity_);
4526
4525
  this.curIndex_ = -1;
4527
4526
  this.isFull_ = !1;
4528
4527
  };
4529
- goog.log.LogBuffer = third_party$javascript$closure$log$log$classdecl$var2;
4530
4528
  goog.log.LogBuffer.CAPACITY = 0;
4531
4529
  goog.log.LogBuffer.getInstance = function() {
4532
4530
  goog.log.LogBuffer.instance_ || (goog.log.LogBuffer.instance_ = new goog.log.LogBuffer(goog.log.LogBuffer.CAPACITY));
@@ -4535,11 +4533,11 @@ goog.log.LogBuffer.getInstance = function() {
4535
4533
  goog.log.LogBuffer.isBufferingEnabled = function() {
4536
4534
  return goog.log.LogBuffer.getInstance().isBufferingEnabled();
4537
4535
  };
4538
- var third_party$javascript$closure$log$log$classdecl$var3 = function(level, msg, loggerName, time, sequenceNumber) {
4536
+ goog.log.LogRecord = function(level, msg, loggerName, time, sequenceNumber) {
4539
4537
  this.exception_ = void 0;
4540
4538
  this.reset(level || goog.log.Level.OFF, msg, loggerName, time, sequenceNumber);
4541
4539
  };
4542
- third_party$javascript$closure$log$log$classdecl$var3.prototype.reset = function(level, msg, loggerName, time, sequenceNumber) {
4540
+ goog.log.LogRecord.prototype.reset = function(level, msg, loggerName, time, sequenceNumber) {
4543
4541
  this.time_ = time || goog.now();
4544
4542
  this.level_ = level;
4545
4543
  this.msg_ = msg;
@@ -4547,42 +4545,41 @@ third_party$javascript$closure$log$log$classdecl$var3.prototype.reset = function
4547
4545
  this.exception_ = void 0;
4548
4546
  this.sequenceNumber_ = typeof sequenceNumber === "number" ? sequenceNumber : goog.log.LogRecord.nextSequenceNumber_;
4549
4547
  };
4550
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getLoggerName = function() {
4548
+ goog.log.LogRecord.prototype.getLoggerName = function() {
4551
4549
  return this.loggerName_;
4552
4550
  };
4553
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setLoggerName = function(name) {
4551
+ goog.log.LogRecord.prototype.setLoggerName = function(name) {
4554
4552
  this.loggerName_ = name;
4555
4553
  };
4556
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getException = function() {
4554
+ goog.log.LogRecord.prototype.getException = function() {
4557
4555
  return this.exception_;
4558
4556
  };
4559
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setException = function(exception) {
4557
+ goog.log.LogRecord.prototype.setException = function(exception) {
4560
4558
  this.exception_ = exception;
4561
4559
  };
4562
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getLevel = function() {
4560
+ goog.log.LogRecord.prototype.getLevel = function() {
4563
4561
  return this.level_;
4564
4562
  };
4565
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setLevel = function(level) {
4563
+ goog.log.LogRecord.prototype.setLevel = function(level) {
4566
4564
  this.level_ = level;
4567
4565
  };
4568
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getMessage = function() {
4566
+ goog.log.LogRecord.prototype.getMessage = function() {
4569
4567
  return this.msg_;
4570
4568
  };
4571
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setMessage = function(msg) {
4569
+ goog.log.LogRecord.prototype.setMessage = function(msg) {
4572
4570
  this.msg_ = msg;
4573
4571
  };
4574
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getMillis = function() {
4572
+ goog.log.LogRecord.prototype.getMillis = function() {
4575
4573
  return this.time_;
4576
4574
  };
4577
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setMillis = function(time) {
4575
+ goog.log.LogRecord.prototype.setMillis = function(time) {
4578
4576
  this.time_ = time;
4579
4577
  };
4580
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getSequenceNumber = function() {
4578
+ goog.log.LogRecord.prototype.getSequenceNumber = function() {
4581
4579
  return this.sequenceNumber_;
4582
4580
  };
4583
- goog.log.LogRecord = third_party$javascript$closure$log$log$classdecl$var3;
4584
4581
  goog.log.LogRecord.nextSequenceNumber_ = 0;
4585
- var third_party$javascript$closure$log$log$classdecl$var4 = function(name, parent) {
4582
+ goog.log.LogRegistryEntry_ = function(name, parent) {
4586
4583
  this.level = null;
4587
4584
  this.handlers = [];
4588
4585
  this.parent = (parent === void 0 ? null : parent) || null;
@@ -4591,7 +4588,7 @@ var third_party$javascript$closure$log$log$classdecl$var4 = function(name, paren
4591
4588
  return name;
4592
4589
  }};
4593
4590
  };
4594
- third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLevel = function() {
4591
+ goog.log.LogRegistryEntry_.prototype.getEffectiveLevel = function() {
4595
4592
  if (this.level) {
4596
4593
  return this.level;
4597
4594
  }
@@ -4601,21 +4598,20 @@ third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLeve
4601
4598
  goog.asserts.fail("Root logger has no level set.");
4602
4599
  return goog.log.Level.OFF;
4603
4600
  };
4604
- third_party$javascript$closure$log$log$classdecl$var4.prototype.publish = function(logRecord) {
4601
+ goog.log.LogRegistryEntry_.prototype.publish = function(logRecord) {
4605
4602
  for (var target = this; target;) {
4606
4603
  target.handlers.forEach(function(handler) {
4607
4604
  handler(logRecord);
4608
4605
  }), target = target.parent;
4609
4606
  }
4610
4607
  };
4611
- goog.log.LogRegistryEntry_ = third_party$javascript$closure$log$log$classdecl$var4;
4612
- var third_party$javascript$closure$log$log$classdecl$var5 = function() {
4608
+ goog.log.LogRegistry_ = function() {
4613
4609
  this.entries = {};
4614
4610
  var rootLogRegistryEntry = new goog.log.LogRegistryEntry_(goog.log.ROOT_LOGGER_NAME);
4615
4611
  rootLogRegistryEntry.level = goog.log.Level.CONFIG;
4616
4612
  this.entries[goog.log.ROOT_LOGGER_NAME] = rootLogRegistryEntry;
4617
4613
  };
4618
- third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEntry = function(name, level) {
4614
+ goog.log.LogRegistry_.prototype.getLogRegistryEntry = function(name, level) {
4619
4615
  var entry = this.entries[name];
4620
4616
  if (entry) {
4621
4617
  return level !== void 0 && (entry.level = level), entry;
@@ -4626,13 +4622,12 @@ third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEn
4626
4622
  level !== void 0 && (logRegistryEntry.level = level);
4627
4623
  return logRegistryEntry;
4628
4624
  };
4629
- third_party$javascript$closure$log$log$classdecl$var5.prototype.getAllLoggers = function() {
4625
+ goog.log.LogRegistry_.prototype.getAllLoggers = function() {
4630
4626
  var $jscomp$this$17096019$34 = this;
4631
4627
  return Object.keys(this.entries).map(function(loggerName) {
4632
4628
  return $jscomp$this$17096019$34.entries[loggerName].logger;
4633
4629
  });
4634
4630
  };
4635
- goog.log.LogRegistry_ = third_party$javascript$closure$log$log$classdecl$var5;
4636
4631
  goog.log.LogRegistry_.getInstance = function() {
4637
4632
  goog.log.LogRegistry_.instance_ || (goog.log.LogRegistry_.instance_ = new goog.log.LogRegistry_());
4638
4633
  return goog.log.LogRegistry_.instance_;
@@ -6520,8 +6515,10 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_un
6520
6515
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ve_logging__enable = !1;
6521
6516
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable = !1;
6522
6517
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable = !1;
6518
+ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable = !1;
6523
6519
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
6524
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;
6525
6522
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
6526
6523
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
6527
6524
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
@@ -6534,8 +6531,10 @@ goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2
6534
6531
  goog.flags.CLIENT_ONLY_WIZ_VE_LOGGING = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ve_logging__enable : goog.readFlagInternalDoNotUseOrElse(725719775, !1);
6535
6532
  goog.flags.CLIENT_ONLY_WIZ_CONTEXT_PER_COMPONENT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable : goog.readFlagInternalDoNotUseOrElse(513659523, goog.DEBUG);
6536
6533
  goog.flags.CLIENT_ONLY_WIZ_SINK_LAZY_TSX_EXECUTION = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable : goog.readFlagInternalDoNotUseOrElse(568333945, !1);
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);
6537
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);
6538
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);
6539
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);
6540
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);
6541
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);
@@ -16846,7 +16845,7 @@ module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanit
16846
16845
  ["LINK", new Map([["href", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY, conditions:new Map([["rel", new Set("alternate author bookmark canonical cite help icon license next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" "))]])}]])], ["SOURCE", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}],
16847
16846
  ["srcset", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET}]])], ["IMG", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}], ["srcset", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET}]])],
16848
16847
  ["VIDEO", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}]])], ["AUDIO", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}]])]], module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_ALLOWED_GLOBAL_ATTRIBUTES =
16849
- "title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked cite color cols colspan controls controlslist datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden ismap label lang loop max maxlength media minlength min multiple muted nonce open placeholder poster preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
16848
+ "title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked cite color cols colspan controls controlslist crossorigin datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden ismap label lang loop max maxlength media minlength min multiple muted nonce open placeholder poster preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
16850
16849
  module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_GLOBAL_ATTRIBUTE_POLICIES = [["dir", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
16851
16850
  return new Map([["dir", new Set(["auto", "ltr", "rtl"])]]);
16852
16851
  })}], ["async", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
@@ -19315,7 +19314,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19315
19314
  ee.apiclient = {};
19316
19315
  var module$contents$ee$apiclient_apiclient = {};
19317
19316
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19318
- ee.apiclient.API_CLIENT_VERSION = "1.5.11";
19317
+ ee.apiclient.API_CLIENT_VERSION = "1.5.13";
19319
19318
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19320
19319
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19321
19320
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19613,8 +19612,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19613
19612
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19614
19613
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19615
19614
  method = method || "POST";
19616
- var headers = {"Content-Type":contentType}, version = "1.5.11";
19617
- version === "1.5.11" && (version = "latest");
19615
+ var headers = {"Content-Type":contentType}, version = "1.5.13";
19616
+ version === "1.5.13" && (version = "latest");
19618
19617
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19619
19618
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19620
19619
  if (authToken != null) {
@@ -19841,7 +19840,8 @@ module$contents$ee$apiclient_apiclient.authTokenRefresher_ = null;
19841
19840
  module$contents$ee$apiclient_apiclient.AUTH_SCOPE_ = "https://www.googleapis.com/auth/earthengine";
19842
19841
  module$contents$ee$apiclient_apiclient.READ_ONLY_AUTH_SCOPE_ = "https://www.googleapis.com/auth/earthengine.readonly";
19843
19842
  module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_ = "https://www.googleapis.com/auth/cloud-platform";
19844
- module$contents$ee$apiclient_apiclient.DEFAULT_AUTH_SCOPES_ = [module$contents$ee$apiclient_apiclient.AUTH_SCOPE_, module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_];
19843
+ module$contents$ee$apiclient_apiclient.GOOGLE_DRIVE_SCOPE_ = "https://www.googleapis.com/auth/drive";
19844
+ module$contents$ee$apiclient_apiclient.DEFAULT_AUTH_SCOPES_ = [module$contents$ee$apiclient_apiclient.AUTH_SCOPE_, module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_, module$contents$ee$apiclient_apiclient.GOOGLE_DRIVE_SCOPE_];
19845
19845
  module$contents$ee$apiclient_apiclient.STORAGE_SCOPE_ = "https://www.googleapis.com/auth/devstorage.read_write";
19846
19846
  module$contents$ee$apiclient_apiclient.cloudApiKey_ = null;
19847
19847
  module$contents$ee$apiclient_apiclient.initialized_ = !1;
@@ -19878,6 +19878,7 @@ ee.apiclient.send = module$contents$ee$apiclient_apiclient.send;
19878
19878
  ee.apiclient.AUTH_SCOPE = module$contents$ee$apiclient_apiclient.AUTH_SCOPE_;
19879
19879
  ee.apiclient.READ_ONLY_AUTH_SCOPE = module$contents$ee$apiclient_apiclient.READ_ONLY_AUTH_SCOPE_;
19880
19880
  ee.apiclient.CLOUD_PLATFORM_SCOPE = module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_;
19881
+ ee.apiclient.GOOGLE_DRIVE_SCOPE = module$contents$ee$apiclient_apiclient.GOOGLE_DRIVE_SCOPE_;
19881
19882
  ee.apiclient.STORAGE_SCOPE = module$contents$ee$apiclient_apiclient.STORAGE_SCOPE_;
19882
19883
  ee.apiclient.DEFAULT_AUTH_SCOPES = module$contents$ee$apiclient_apiclient.DEFAULT_AUTH_SCOPES_;
19883
19884
  ee.apiclient.makeRequest = module$contents$ee$apiclient_apiclient.makeRequest_;
@@ -27139,29 +27140,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27139
27140
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27140
27141
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27141
27142
  (function() {
27142
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.table.toBigQuery ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.data.getMapId ee.data.setAssetProperties ee.data.getTaskList ee.data.authenticate ee.data.copyAsset ee.data.getTableDownloadId ee.data.listBuckets ee.data.getTileUrl ee.data.makeTableDownloadUrl ee.data.startTableIngestion ee.data.deleteAsset ee.data.getTaskListWithLimit ee.data.getAssetRootQuota ee.data.listOperations ee.data.getDownloadId ee.data.getWorkloadTag ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.listImages ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.getOperation ee.data.createAssetHome ee.data.authenticateViaPrivateKey ee.data.setWorkloadTag ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.updateAsset ee.data.getList ee.data.getTaskStatus ee.data.updateTask ee.data.startIngestion ee.data.getFilmstripThumbId ee.data.startProcessing ee.data.createFolder ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.listAssets ee.data.renameAsset 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.prototype.getInfo ee.Feature.prototype.getMap ee.Feature.prototype.getMapId ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.metadata ee.Filter.date ee.Filter.bounds ee.Filter.eq ee.Filter ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.or ee.Filter.lt ee.Filter.neq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.Polygon ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry ee.Geometry.Point ee.Image.prototype.getThumbId ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.expression ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.rename ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.getInfo ee.Image.prototype.getMap ee.Image.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.String ee.Terrain".split(" "),
27143
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices 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(" "), "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(" "),
27144
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "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(" "), ["collection", "opt_description",
27145
- "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
27146
- "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(" "), "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(" "),
27147
- ["filter"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry"], ["legacy"], ["callback"], ["func", "var_args"], ["opt_callback"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"],
27148
- ["params", "opt_callback"], ["project", "opt_callback"], ["id", "x", "y", "z"], ["id"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"], ["params", "opt_callback"], [], ["id"], ["operationName", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"],
27149
- ["opt_callback"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["tag"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["assetId", "asset", "updateFields", "opt_callback"],
27150
- ["params", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["date", "opt_tz"],
27151
- ["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"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"],
27152
- ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["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"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"],
27153
- ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["params", "opt_callback"], ["opt_args"], ["params",
27154
- "opt_callback"], ["expression", "opt_map"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"], ["var_args"], ["geometry"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"], ["selectors", "opt_names"], [], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"],
27155
- ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27156
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.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.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toDrive,
27157
- module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.serialize,
27158
- ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.data.getMapId, ee.data.setAssetProperties, ee.data.getTaskList, ee.data.authenticate, ee.data.copyAsset, ee.data.getTableDownloadId, ee.data.listBuckets, ee.data.getTileUrl, ee.data.makeTableDownloadUrl, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getTaskListWithLimit, ee.data.getAssetRootQuota, ee.data.listOperations, ee.data.getDownloadId, ee.data.getWorkloadTag, ee.data.makeDownloadUrl,
27159
- ee.data.cancelOperation, ee.data.listImages, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.getOperation, ee.data.createAssetHome, ee.data.authenticateViaPrivateKey, ee.data.setWorkloadTag, ee.data.newTaskId, ee.data.getInfo, ee.data.computeValue, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.updateAsset,
27160
- ee.data.getList, ee.data.getTaskStatus, ee.data.updateTask, ee.data.startIngestion, ee.data.getFilmstripThumbId, ee.data.startProcessing, ee.data.createFolder, ee.data.setAssetAcl, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.listAssets, ee.data.renameAsset, 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,
27161
- ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMap, ee.Feature.prototype.getMapId, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.metadata, ee.Filter.date, ee.Filter.bounds, ee.Filter.eq,
27162
- ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.Filter.neq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.Polygon, ee.Geometry.prototype.serialize, ee.Geometry.MultiLineString, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry, ee.Geometry.Point, ee.Image.prototype.getThumbId,
27163
- ee.Image, ee.Image.prototype.getDownloadURL, ee.Image.prototype.expression, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.cat, ee.Image.prototype.clip, ee.Image.prototype.getInfo, ee.Image.prototype.getMap, ee.Image.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL,
27164
- ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
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(" "),
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(" "),
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(" "),
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(" "),
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"], []];
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,
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) {
27165
27166
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27166
27167
  });
27167
27168
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;