@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 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, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!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
- var third_party$javascript$closure$log$log$classdecl$var0 = function(name, value) {
4443
+ goog.log.Level = function(name, value) {
4444
4444
  this.name = name;
4445
4445
  this.value = value;
4446
4446
  };
4447
- third_party$javascript$closure$log$log$classdecl$var0.prototype.toString = function() {
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
- var third_party$javascript$closure$log$log$classdecl$var1 = function() {
4485
+ goog.log.Logger = function() {
4487
4486
  };
4488
- third_party$javascript$closure$log$log$classdecl$var1.prototype.getName = function() {
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
- var third_party$javascript$closure$log$log$classdecl$var2 = function(capacity) {
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
- third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = function(level, msg, loggerName) {
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
- third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord = function(func) {
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
- third_party$javascript$closure$log$log$classdecl$var2.prototype.isBufferingEnabled = function() {
4517
+ goog.log.LogBuffer.prototype.isBufferingEnabled = function() {
4520
4518
  return this.capacity_ > 0;
4521
4519
  };
4522
- third_party$javascript$closure$log$log$classdecl$var2.prototype.isFull = function() {
4520
+ goog.log.LogBuffer.prototype.isFull = function() {
4523
4521
  return this.isFull_;
4524
4522
  };
4525
- third_party$javascript$closure$log$log$classdecl$var2.prototype.clear = function() {
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
- 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) {
4540
4537
  this.exception_ = void 0;
4541
4538
  this.reset(level || goog.log.Level.OFF, msg, loggerName, time, sequenceNumber);
4542
4539
  };
4543
- 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) {
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
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getLoggerName = function() {
4548
+ goog.log.LogRecord.prototype.getLoggerName = function() {
4552
4549
  return this.loggerName_;
4553
4550
  };
4554
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setLoggerName = function(name) {
4551
+ goog.log.LogRecord.prototype.setLoggerName = function(name) {
4555
4552
  this.loggerName_ = name;
4556
4553
  };
4557
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getException = function() {
4554
+ goog.log.LogRecord.prototype.getException = function() {
4558
4555
  return this.exception_;
4559
4556
  };
4560
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setException = function(exception) {
4557
+ goog.log.LogRecord.prototype.setException = function(exception) {
4561
4558
  this.exception_ = exception;
4562
4559
  };
4563
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getLevel = function() {
4560
+ goog.log.LogRecord.prototype.getLevel = function() {
4564
4561
  return this.level_;
4565
4562
  };
4566
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setLevel = function(level) {
4563
+ goog.log.LogRecord.prototype.setLevel = function(level) {
4567
4564
  this.level_ = level;
4568
4565
  };
4569
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getMessage = function() {
4566
+ goog.log.LogRecord.prototype.getMessage = function() {
4570
4567
  return this.msg_;
4571
4568
  };
4572
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setMessage = function(msg) {
4569
+ goog.log.LogRecord.prototype.setMessage = function(msg) {
4573
4570
  this.msg_ = msg;
4574
4571
  };
4575
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getMillis = function() {
4572
+ goog.log.LogRecord.prototype.getMillis = function() {
4576
4573
  return this.time_;
4577
4574
  };
4578
- third_party$javascript$closure$log$log$classdecl$var3.prototype.setMillis = function(time) {
4575
+ goog.log.LogRecord.prototype.setMillis = function(time) {
4579
4576
  this.time_ = time;
4580
4577
  };
4581
- third_party$javascript$closure$log$log$classdecl$var3.prototype.getSequenceNumber = function() {
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
- var third_party$javascript$closure$log$log$classdecl$var4 = function(name, parent) {
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
- third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLevel = function() {
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
- third_party$javascript$closure$log$log$classdecl$var4.prototype.publish = function(logRecord) {
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.LogRegistryEntry_ = third_party$javascript$closure$log$log$classdecl$var4;
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
- third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEntry = function(name, level) {
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
- third_party$javascript$closure$log$log$classdecl$var5.prototype.getAllLoggers = function() {
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.12";
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.12";
19620
- version === "1.5.12" && (version = "latest");
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.classifier.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterDate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.data.getTableDownloadId ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getFeatureViewTilesKey ee.data.makeTableDownloadUrl ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.setWorkloadTag ee.data.computeValue ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.getList ee.data.updateAsset ee.data.updateTask ee.data.startIngestion ee.data.getFilmstripThumbId ee.data.createFolder ee.data.startProcessing ee.data.authenticateViaOauth ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.makeDownloadUrl ee.data.listAssets ee.data.renameAsset ee.data.getMapId ee.data.getDownloadId ee.data.getTaskList ee.data.listImages ee.data.setAssetProperties ee.data.authenticate ee.data.copyAsset ee.data.getTileUrl ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.listOperations ee.Date ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.InitState ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.apply ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Filter.and ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.inList ee.Filter.bounds ee.Filter.or ee.Filter.lte ee.Filter.prototype.not ee.Filter.gte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.Rectangle ee.Geometry.BBox ee.Geometry ee.Geometry.LineString ee.Geometry.MultiPolygon ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.prototype.toGeoJSONString ee.Geometry.prototype.serialize ee.Geometry.prototype.toGeoJSON ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image ee.Image.prototype.getMap ee.Image.rgb ee.Image.cat ee.Image.prototype.getThumbURL ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.getDownloadURL ee.Image.prototype.clip ee.Image.prototype.rename ee.Image.prototype.getThumbId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.String ee.Terrain".split(" "),
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"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "), "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(" "),
27152
- ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["start", "opt_end"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["func", "var_args"], ["legacy"], ["opt_callback"], ["callback"], ["params", "opt_callback"], ["operationName", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "opt_callback"], [], ["params", "opt_callback"], ["id"], ["asset", "params", "opt_callback"], ["id", "opt_callback"],
27153
- ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["id", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["params", "opt_callback"],
27154
- ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "params", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["id"], ["assetId", "aclUpdate", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["params",
27155
- "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["id", "x", "y", "z"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"], ["opt_limit", "opt_callback"],
27156
- ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], [], ["func", "namedArgs"], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"],
27157
- ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_filter"], ["name", "value"], ["start", "opt_end"], ["name", "operator", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], [], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27158
- ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], [], ["legacy"], [], ["opt_callback"], ["opt_visParams",
27159
- "opt_callback"], ["opt_args"], ["opt_visParams", "opt_callback"], ["r", "g", "b"], ["var_args"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["args"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams",
27160
- "opt_callback"], [], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
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.classifier.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, 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.filterDate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.ComputedObject.prototype.aside,
27163
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.evaluate, ee.data.getTableDownloadId, ee.data.cancelOperation, ee.data.authenticateViaPopup, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.makeTableDownloadUrl, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.createAssetHome, ee.data.newTaskId, ee.data.getInfo, ee.data.setWorkloadTag,
27164
- ee.data.computeValue, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.getList, ee.data.updateAsset, ee.data.updateTask, ee.data.startIngestion, ee.data.getFilmstripThumbId, ee.data.createFolder, ee.data.startProcessing, ee.data.authenticateViaOauth, ee.data.makeThumbUrl, ee.data.setAssetAcl, ee.data.makeDownloadUrl, ee.data.listAssets, ee.data.renameAsset, ee.data.getMapId,
27165
- ee.data.getDownloadId, ee.data.getTaskList, ee.data.listImages, ee.data.setAssetProperties, ee.data.authenticate, ee.data.copyAsset, ee.data.getTileUrl, ee.data.listBuckets, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.listOperations, ee.Date, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.InitState, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
27166
- ee.Algorithms, ee.apply, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter, ee.Filter.eq, ee.Filter.date, ee.Filter.metadata, ee.Filter.and, ee.Filter.gt, ee.Filter.neq,
27167
- ee.Filter.lt, ee.Filter.inList, ee.Filter.bounds, ee.Filter.or, ee.Filter.lte, ee.Filter.prototype.not, ee.Filter.gte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.Rectangle, ee.Geometry.BBox, ee.Geometry, ee.Geometry.LineString, ee.Geometry.MultiPolygon, ee.Geometry.Polygon, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.prototype.serialize, ee.Geometry.prototype.toGeoJSON,
27168
- ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image, ee.Image.prototype.getMap, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.getThumbURL, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.getDownloadURL, ee.Image.prototype.clip, ee.Image.prototype.rename, ee.Image.prototype.getThumbId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.linkCollection,
27169
- ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
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;
@@ -452,7 +452,7 @@ Ma(p,f[m]))});return b?b(l):l};return this.callback?(gj(d,null,function(f,l){ret
452
452
  hj.prototype.send=function(a,b){var c=[a.B+" "+a.path+" HTTP/1.1"];c.push("Content-Type: application/json; charset=utf-8");var d=jj();d!=null&&c.push("Authorization: "+d);a=a.body?JSON.stringify(a.body):"";return[c.join("\r\n")+"\r\n\r\n"+a,b]};
453
453
  var kj=function(a,b,c){a=r(b.split("--"+a.split("; boundary=")[1]));for(b=a.next();!b.done;b=a.next())if(b=b.value.split("\r\n\r\n"),!(b.length<3)){var d=b[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1],e=Number(b[1].match(/^HTTP\S*\s(\d+)\s/)[1]);c(d,e,b.slice(2).join("\r\n\r\n"))}},ej=function(){var a=lj.replace(/\/api$/,"");return"window"in t&&!a.match(/^https?:\/\/content-/)?a.replace(/^(https?:\/\/)(.*\.googleapis\.com)$/,"$1content-$2"):a},oj=function(a,b,c){var d=[];a&&(d=d.concat(nj));
454
454
  b&&d.push("https://www.googleapis.com/auth/devstorage.read_write");a=d=d.concat(c);c=b=0;for(var e={};c<a.length;){var g=a[c++],f=u(g)?"o"+Ba(g):(typeof g).charAt(0)+g;Object.prototype.hasOwnProperty.call(e,f)||(e[f]=!0,a[b++]=g)}a.length=b;return d},uj=function(a,b,c){pj&&qj&&pj({client_id:String(qj),scope:rj.join(" "),plugin_name:"earthengine"},function(d){if(d.error=="immediate_failed"&&c)c();else if("window"in t)try{sj(function(){try{tj(a,b,d)}catch(e){b(e.toString())}})}catch(e){b(e.toString())}else tj(a,
455
- b,d)})},jj=function(){vj&&Date.now()-vj>=0&&wj();return xj},wj=function(){vj=xj=null},bj=function(a,b,c,d){a!=null?lj=a:yj||(lj="https://earthengine.googleapis.com/api");b!=null?zj=b:yj||(zj="https://earthengine.googleapis.com");c!==void 0&&(Aj=c);aj=d!=null?d:aj||"earthengine-legacy";yj=!0},gj=function(a,b,c,d,e,g,f){bj();var l=Bj,m="application/x-www-form-urlencoded";e&&(m="application/json",d&&d.startsWith("multipart")&&(m=d,d="POST"));d=d||"POST";m={"Content-Type":m};var p="1.5.12";p==="1.5.12"&&
455
+ b,d)})},jj=function(){vj&&Date.now()-vj>=0&&wj();return xj},wj=function(){vj=xj=null},bj=function(a,b,c,d){a!=null?lj=a:yj||(lj="https://earthengine.googleapis.com/api");b!=null?zj=b:yj||(zj="https://earthengine.googleapis.com");c!==void 0&&(Aj=c);aj=d!=null?d:aj||"earthengine-legacy";yj=!0},gj=function(a,b,c,d,e,g,f){bj();var l=Bj,m="application/x-www-form-urlencoded";e&&(m="application/json",d&&d.startsWith("multipart")&&(m=d,d="POST"));d=d||"POST";m={"Content-Type":m};var p="1.5.13";p==="1.5.13"&&
456
456
  (p="latest");m["x-goog-api-client"]="ee-js/"+p;p=jj();if(p!=null)m.Authorization=p;else if(c&&pj&&qj)return uj(function(){Cj(l,function(){gj(a,b,c,d)})}),null;b=b?b.clone():new Tc;Dj!=null&&b.add("key",Dj);l&&(m["X-Earth-Engine-Computation-Profiling"]="1");aj&&aj!=="earthengine-legacy"&&(m["X-Goog-User-Project"]=aj);b=Ej(b,a);Aj!=null&&(m["X-XSRF-Token"]=Aj);Fj!=null&&(m["X-Earth-Engine-App-ID-Token"]=Fj);p=e||null;var v=b?b.toString():"";d==="POST"&&e===void 0?p=v:/^[\s\xa0]*$/.test(v)||(a+=a.indexOf("?")!=
457
457
  -1?"&":"?",a+=v);e=a.startsWith("/")?lj+a:a;if(c)return Gj.push(Hj(e,c,d,p,m,g,f)),Ij.lf(),null;v=function(H,ea){this.setRequestHeader&&this.setRequestHeader(ea,H)};var z=0;for(g=g!=null?g:5;;){var B=new XMLHttpRequest;B.open(d,e,!1);Wa(m,v,B);B.send(p);if(B.status!=429||z>g)break;z++}return Jj(B.status,function(H){try{return B.getResponseHeader(H)}catch(ea){return null}},B.responseText,l,void 0,e,d,f)},Hj=function(a,b,c,d,e,g,f){var l=0,m={url:a,method:c,content:d,headers:e},p=Bj,v=g!=null?g:10;
458
458
  m.callback=function(z){z=z.target;if(z.getStatus()==429&&l<v)return l++,setTimeout(function(){Gj.push(m);Ij.lf()},Math.min(12E4,Math.pow(2,l)*1E3)),null;var B=Jj,H=z.getStatus(),ea=w(z.getResponseHeader,z);try{var W=z.s?z.s.responseText:""}catch(da){Dc(z.ha,"Can not get responseText: "+da.message),W=""}return B(H,ea,W,p,b,a,c,f)};return m},Cj=function(a,b){var c=Bj;try{Bj=a,b.call(void 0)}finally{Bj=c}},Jj=function(a,b,c,d,e,g,f,l){var m=d?b("X-Earth-Engine-Computation-Profile"):"";m&&d&&d(m);var p=
@@ -705,18 +705,18 @@ h.sl=function(){if(!this.jc){var a=w(function(d){this.jc||(Zp(this.fa,this.ea,d)
705
705
  h.fa=null;h.Hi=null;h.Ia=null;h.fi=null;var xq=["load","abort","error"],yq=function(){I.call(this);this.Da=!1};q(yq,I);yq.prototype.setActive=function(a){this.Da=a};yq.prototype.isActive=function(){return this.Da};var tq=function(a,b){oq.call(this,a,b)};q(tq,oq);tq.prototype.Xe=function(){return new yq};tq.prototype.Cd=function(a){a.dispose()};tq.prototype.Nf=function(a){return!a.Qa&&!a.isActive()};var zq=function(a,b,c,d,e){je.call(this,a,b,c,d,e);this.minZoom=d.minZoom||0;this.maxZoom=d.maxZoom||20;if(!window.google||!window.google.maps)throw Error("Google Maps API hasn't been initialized.");this.tileSize=d.tileSize||new google.maps.Size(256,256);this.name=d.name;this.rg=new de;this.Of=1;this.ta=e||null};q(zq,je);h=zq.prototype;h.Ke=function(a){return Cd(this,"tileevent",a)};h.Wf=function(a){Kd(a)};
706
706
  h.getTile=function(a,b,c){if(b<this.minZoom||a.y<0||a.y>=1<<b)return a=c.createElement("IMG"),a.style.width="0px",a.style.height="0px",a;b=ke(this,a,b);a=[this.url,b].join("/")+"?token="+this.token;this.ta&&this.ta.isEnabled()&&(a+="&profiling=1");b=[b,this.vb,this.token].join("/");this.vb+=1;c=ki("DIV",{id:b});var d=(new Date).getTime()/1E3;this.xb.push(b);nl(uq).send(b,a,d,w(this.Rk,this,c,b));wp(this);return c};h.Lc=function(){return this.xb.length};
707
707
  h.releaseTile=function(a){nl(uq).abort(a.id);if(a.firstElementChild!==void 0)var b=a.firstElementChild;else for(b=a.firstChild;b&&b.nodeType!=1;)b=b.nextSibling;this.rg.remove(b);a.id!==""&&(this.qg.remove(a.id),this.ta&&this.ta.jl(a.id))};h.setOpacity=function(a){this.Of=a;var b=this.rg.Ca();Vd(b,function(c){Hp(c,a)})};
708
- h.Rk=function(a,b,c,d){c.type=="error"?(fc(this.xb,b),this.qg.add(b),this.dispatchEvent(c)):(fc(this.xb,b),c.target&&c.type=="load"&&(c=c.target,this.rg.add(c),this.Of!=1&&Hp(c,this.Of),a.appendChild(c)),wp(this));this.ta&&d!==null&&this.ta.Fk(b,d)};x("ee.MapLayerOverlay",zq);zq.prototype.removeTileCallback=zq.prototype.Wf;zq.prototype.addTileCallback=zq.prototype.Ke;zq.prototype.getTile=zq.prototype.getTile;zq.prototype.setOpacity=zq.prototype.setOpacity;zq.prototype.releaseTile=zq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage 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.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.listOperations ee.data.getAssetAcl ee.data.listBuckets ee.data.getTableDownloadId ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.makeTableDownloadUrl ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.createAssetHome ee.data.getOperation ee.data.setDefaultWorkloadTag ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.createAsset ee.data.resetWorkloadTag ee.data.getThumbId ee.data.updateAsset ee.data.cancelTask ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.getList ee.data.updateTask ee.data.setAssetAcl ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.startProcessing ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.renameAsset ee.data.listAssets ee.data.setAssetProperties ee.data.getMapId ee.data.getTaskList ee.data.getDownloadId ee.data.copyAsset ee.data.authenticate ee.data.makeDownloadUrl ee.data.getAssetRootQuota ee.data.getTileUrl ee.data.listImages ee.data.deleteAsset ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.getWorkloadTag ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.initialize ee.call ee.reset ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.gt ee.Filter.lt ee.Filter.neq ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter ee.Filter.bounds ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Filter.inList ee.Filter.and ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry ee.Geometry.BBox ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.prototype.serialize ee.Geometry.prototype.toGeoJSON ee.Image ee.Image.prototype.getThumbURL ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.select ee.Image.prototype.clip ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.rgb ee.Image.prototype.expression ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
709
- c=[["name","namedArgs"],["name"],["name","var_args"],"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(" "),
710
- "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(" "),"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(" "),
711
- "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(" "),"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(" "),
712
- "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(" "),["collection","opt_description","opt_assetId","opt_maxVertices","opt_priority"],["algorithm","opt_dropNulls"],["filter"],["max","opt_property",
713
- "opt_ascending"],["property","opt_ascending"],["algorithm","opt_first"],["name","operator","value"],["geometry"],["start","opt_end"],["callback"],["func","var_args"],["opt_callback"],["legacy"],["opt_limit","opt_callback"],["assetId","opt_callback"],["project","opt_callback"],["params","opt_callback"],["operationName","opt_callback"],["opt_success","opt_error"],["params","opt_callback"],["id"],["asset","params","opt_callback"],["opt_callback"],["id","opt_callback"],["tag"],["privateKey","opt_success",
714
- "opt_error","opt_extraScopes","opt_suppressDefaultScopes"],["requestedId","opt_callback"],["operationName","opt_callback"],["tag"],["opt_count","opt_callback"],["id","opt_callback"],["obj","opt_callback"],["value","opt_path","opt_force","opt_properties","opt_callback"],["opt_resetDefault"],["params","opt_callback"],["assetId","asset","updateFields","opt_callback"],["taskId","opt_callback"],["params","opt_callback"],["taskId","opt_callback"],["params","opt_callback"],["taskId","action","opt_callback"],
715
- ["assetId","aclUpdate","opt_callback"],["params","opt_callback"],["taskId","request","opt_callback"],["path","opt_force","opt_callback"],["taskId","params","opt_callback"],["id"],"clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),["sourceId","destinationId","opt_callback"],["parent","opt_params","opt_callback"],["assetId","properties","opt_callback"],["params","opt_callback"],["opt_callback"],["params","opt_callback"],["sourceId","destinationId",
716
- "opt_overwrite","opt_callback"],["clientId","success","opt_error","opt_extraScopes","opt_onImmediateFailed"],["id"],["rootId","opt_callback"],["id","x","y","z"],["parent","opt_params","opt_callback"],["assetId","opt_callback"],["opt_limit","opt_callback"],["taskId","request","opt_callback"],[],["date","opt_tz"],["json"],["json"],["json"],["json"],["opt_dict"],[],[],["func","namedArgs"],[],"opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),["func",
717
- "var_args"],[],["var_args"],[],["opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["geometry","opt_properties"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["opt_format","opt_selectors","opt_filename","opt_callback"],["opt_callback"],["propertySelectors","opt_newProperties","opt_retainGeometry"],["args","opt_column"],["name","value"],["name","value"],["name","value"],["var_args"],["name","value"],["name","value"],[],["opt_filter"],["geometry",
718
- "opt_errorMargin"],["name","value"],["start","opt_end"],["name","operator","value"],["opt_leftField","opt_rightValue","opt_rightField","opt_leftValue"],["var_args"],["var_args"],["namedArgs"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj"],["geoJson","opt_proj","opt_geodesic","opt_evenOdd"],["west","south","east","north"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],[],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic",
719
- "opt_maxError"],["coords","opt_proj"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["legacy"],[],["opt_args"],["params","opt_callback"],["var_args"],["opt_visParams","opt_callback"],["var_args"],["var_args"],["geometry"],["opt_callback"],["opt_visParams","opt_callback"],["params","opt_callback"],["params","opt_callback"],["r","g","b"],["expression","opt_map"],["params","opt_callback"],["imageCollection","opt_linkedBands","opt_linkedProperties",
720
- "opt_matchPropertyName"],["args"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["opt_callback"],["selectors","opt_names"],[],["params","opt_callback"],["list"],["number"],["obj"],["obj"],["obj","opt_isCompound"],["obj"],["obj"],["obj"],["obj"],["string"],[]];[Rm,Qm,Q,uo,Co,po,to,Bo,yo,ro,zo,xo,Ao,vo,so,wo,V.prototype.map,V.prototype.filter,V.prototype.limit,V.prototype.sort,V.prototype.Fh,V.prototype.kf,V.prototype.qh,V.prototype.jf,O.prototype.evaluate,O.prototype.Bg,O.prototype.V,
721
- O.prototype.ua,Ql,um,mm,Il,Rl,ol,yl,Jl,zl,nm,hm,Am,rl,om,Sl,Bm,Kl,hm,Al,pm,Cm,Bl,vm,Ul,Cl,Nl,jm,Tl,wm,Dl,em,qm,am,El,pl,rm,km,xm,wl,Pl,Gl,sm,ql,Hl,ym,xl,lm,tm,Ol,gm,ul,To,Yo,Xo,bp,Wo,cp,np,pp,rp,256,lp,qp,op,S.prototype.set,Mj,X.prototype.V,X.prototype.R,X.prototype.getMap,X,Y.prototype.getMap,Y.prototype.R,Y.prototype.qb,Y.prototype.V,Y.prototype.select,Y,In,Gn,Fn,Ln,Jn,Hn,U.prototype.rc,U,On,En,Mn,Pn,Nn,Kn,Lm.prototype.call,Lm.prototype.apply,tn,nn,T,pn,wn,T.prototype.tg,on,sn,kn,vn,un,T.prototype.ua,
722
- T.prototype.ne,N,N.prototype.sf,N.prototype.ki,N.prototype.getMap,co,N.prototype.select,N.prototype.clip,N.prototype.V,N.prototype.R,N.prototype.qb,N.prototype.Kd,bo,N.prototype.l,Z.prototype.tf,Z.prototype.Cf,Z,Z.prototype.R,Z.prototype.getMap,Z.prototype.V,Z.prototype.select,Z.prototype.first,Z.prototype.rf,eo,Jo,Uk,Sk,Ik,Jk,Ok,Tk,Lk,Mo,fp].forEach(function(d,e){d&&(a[d.toString()]={name:b[e],paramNames:c[e]})});t.EXPORTED_FN_INFO=a})();}).call(this);
708
+ h.Rk=function(a,b,c,d){c.type=="error"?(fc(this.xb,b),this.qg.add(b),this.dispatchEvent(c)):(fc(this.xb,b),c.target&&c.type=="load"&&(c=c.target,this.rg.add(c),this.Of!=1&&Hp(c,this.Of),a.appendChild(c)),wp(this));this.ta&&d!==null&&this.ta.Fk(b,d)};x("ee.MapLayerOverlay",zq);zq.prototype.removeTileCallback=zq.prototype.Wf;zq.prototype.addTileCallback=zq.prototype.Ke;zq.prototype.getTile=zq.prototype.getTile;zq.prototype.setOpacity=zq.prototype.setOpacity;zq.prototype.releaseTile=zq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.map.toCloudStorage 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.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.data.getAssetAcl ee.data.listBuckets ee.data.getTableDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.getFeatureViewTilesKey ee.data.makeTableDownloadUrl ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.createAssetHome ee.data.getOperation ee.data.setDefaultWorkloadTag ee.data.newTaskId ee.data.getInfo ee.data.createAsset ee.data.computeValue ee.data.resetWorkloadTag ee.data.getThumbId ee.data.updateAsset ee.data.cancelTask ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.getList ee.data.updateTask ee.data.setAssetAcl ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.startProcessing ee.data.authenticateViaOauth ee.data.makeThumbUrl ee.data.renameAsset ee.data.setAssetProperties ee.data.listAssets ee.data.getMapId ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.authenticate ee.data.getTaskList ee.data.copyAsset ee.data.listImages ee.data.getAssetRootQuota ee.data.getTileUrl ee.data.deleteAsset ee.data.getWorkloadTag ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.listOperations ee.Date ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.call ee.initialize ee.reset ee.Algorithms ee.apply ee.InitState ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.select ee.Filter.inList ee.Filter.lt ee.Filter.gt ee.Filter.neq ee.Filter.or ee.Filter.gte ee.Filter.lte ee.Filter.prototype.not ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiPoint ee.Geometry.LineString ee.Geometry.BBox ee.Geometry ee.Geometry.Rectangle ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.MultiPolygon ee.Geometry.prototype.serialize ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.expression ee.Image ee.Image.prototype.getMap ee.Image.prototype.select ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.rename ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.List ee.Number ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.String ee.Terrain".split(" "),
709
+ c=[["name","namedArgs"],["name"],["name","var_args"],"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(" "),
710
+ "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices 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(" "),"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(" "),
711
+ "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(" "),"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(" "),
712
+ ["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(" "),["name","operator","value"],["geometry"],["start","opt_end"],
713
+ ["property","opt_ascending"],["filter"],["algorithm","opt_dropNulls"],["algorithm","opt_first"],["max","opt_property","opt_ascending"],["opt_callback"],["legacy"],["callback"],["func","var_args"],["assetId","opt_callback"],["project","opt_callback"],["params","opt_callback"],["opt_success","opt_error"],["operationName","opt_callback"],["params","opt_callback"],["id"],["asset","params","opt_callback"],["opt_callback"],["id","opt_callback"],["tag"],["privateKey","opt_success","opt_error","opt_extraScopes",
714
+ "opt_suppressDefaultScopes"],["requestedId","opt_callback"],["operationName","opt_callback"],["tag"],["opt_count","opt_callback"],["id","opt_callback"],["value","opt_path","opt_force","opt_properties","opt_callback"],["obj","opt_callback"],["opt_resetDefault"],["params","opt_callback"],["assetId","asset","updateFields","opt_callback"],["taskId","opt_callback"],["params","opt_callback"],["taskId","opt_callback"],["params","opt_callback"],["taskId","action","opt_callback"],["assetId","aclUpdate","opt_callback"],
715
+ ["params","opt_callback"],["taskId","request","opt_callback"],["path","opt_force","opt_callback"],["taskId","params","opt_callback"],"clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),["id"],["sourceId","destinationId","opt_callback"],["assetId","properties","opt_callback"],["parent","opt_params","opt_callback"],["params","opt_callback"],["params","opt_callback"],["id"],["clientId","success","opt_error","opt_extraScopes","opt_onImmediateFailed"],
716
+ ["opt_callback"],["sourceId","destinationId","opt_overwrite","opt_callback"],["parent","opt_params","opt_callback"],["rootId","opt_callback"],["id","x","y","z"],["assetId","opt_callback"],[],["opt_limit","opt_callback"],["taskId","request","opt_callback"],["opt_limit","opt_callback"],["date","opt_tz"],["json"],["json"],["json"],["json"],["opt_dict"],["func","var_args"],"opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),[],[],["func","namedArgs"],[],
717
+ [],["var_args"],[],["geometry","opt_properties"],["opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["opt_format","opt_selectors","opt_filename","opt_callback"],["opt_callback"],["args","opt_column"],["propertySelectors","opt_newProperties","opt_retainGeometry"],["opt_leftField","opt_rightValue","opt_rightField","opt_leftValue"],["name","value"],["name","value"],["name","value"],["var_args"],["name",
718
+ "value"],["name","value"],[],["opt_filter"],["name","value"],["start","opt_end"],["geometry","opt_errorMargin"],["name","operator","value"],["var_args"],["namedArgs"],["var_args"],["coords","opt_proj"],["coords","opt_proj","opt_geodesic","opt_maxError"],["west","south","east","north"],["geoJson","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["coords","opt_proj"],["coords","opt_proj","opt_geodesic",
719
+ "opt_maxError","opt_evenOdd"],["legacy"],["coords","opt_proj","opt_geodesic","opt_maxError"],[],["coords","opt_proj","opt_geodesic","opt_maxError"],[],["var_args"],["geometry"],["opt_callback"],["opt_visParams","opt_callback"],["expression","opt_map"],["opt_args"],["opt_visParams","opt_callback"],["var_args"],["params","opt_callback"],["r","g","b"],["var_args"],["params","opt_callback"],["params","opt_callback"],["args"],["params","opt_callback"],["opt_callback"],["selectors","opt_names"],["params",
720
+ "opt_callback"],["imageCollection","opt_linkedBands","opt_linkedProperties","opt_matchPropertyName"],[],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["list"],["number"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj","opt_isCompound"],["string"],[]];[Rm,Qm,Q,to,Bo,yo,ro,zo,xo,Ao,vo,so,wo,uo,Co,po,V.prototype.kf,V.prototype.qh,V.prototype.jf,V.prototype.sort,V.prototype.filter,V.prototype.map,V.prototype.Fh,V.prototype.limit,O.prototype.V,O.prototype.ua,O.prototype.evaluate,
721
+ O.prototype.Bg,um,mm,Il,ol,Rl,yl,Jl,zl,nm,hm,Am,rl,om,Sl,Bm,Kl,hm,pm,Al,Cm,Bl,vm,Ul,Cl,Nl,jm,Tl,wm,Dl,em,qm,am,pl,El,rm,xm,km,wl,Gl,Hl,ql,Pl,sm,lm,ym,xl,tm,ul,Ol,gm,Ql,To,Wo,Yo,bp,Xo,cp,qp,lp,op,np,rp,pp,256,S.prototype.set,Mj,X,X.prototype.V,X.prototype.R,X.prototype.getMap,Y.prototype.getMap,Y.prototype.R,Y.prototype.qb,Y.prototype.V,Y,Y.prototype.select,Nn,Gn,In,Fn,Ln,Hn,Jn,U.prototype.rc,U,En,Mn,On,Pn,Kn,Lm.prototype.apply,Lm.prototype.call,nn,sn,pn,T,on,vn,kn,wn,T.prototype.ua,un,T.prototype.ne,
722
+ tn,T.prototype.tg,co,N.prototype.clip,N.prototype.V,N.prototype.R,N.prototype.l,N,N.prototype.getMap,N.prototype.select,N.prototype.sf,bo,N.prototype.ki,N.prototype.qb,N.prototype.Kd,Z,Z.prototype.tf,Z.prototype.V,Z.prototype.select,Z.prototype.rf,Z.prototype.Cf,Z.prototype.first,Z.prototype.R,Z.prototype.getMap,eo,Jo,Jk,Ok,Tk,Lk,Uk,Sk,Ik,Mo,fp].forEach(function(d,e){d&&(a[d.toString()]={name:b[e],paramNames:c[e]})});t.EXPORTED_FN_INFO=a})();}).call(this);