@google/earthengine 1.5.1 → 1.5.2

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
@@ -1267,9 +1267,7 @@ GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_
1267
1267
  var isChrome87, goog = goog || {};
1268
1268
  goog.global = this || self;
1269
1269
  goog.exportPath_ = function(name, object, overwriteImplicit, objectToExportTo) {
1270
- var parts = name.split("."), cur = objectToExportTo || goog.global;
1271
- parts[0] in cur || typeof cur.execScript == "undefined" || cur.execScript("var " + parts[0]);
1272
- for (var part; parts.length && (part = parts.shift());) {
1270
+ for (var parts = name.split("."), cur = objectToExportTo || goog.global, part; parts.length && (part = parts.shift());) {
1273
1271
  if (parts.length || object === void 0) {
1274
1272
  cur = cur[part] && cur[part] !== Object.prototype[part] ? cur[part] : cur[part] = {};
1275
1273
  } else {
@@ -1638,36 +1636,6 @@ goog.scope = function(fn) {
1638
1636
  }
1639
1637
  fn.call(goog.global);
1640
1638
  };
1641
- goog.defineClass = function(superClass, def) {
1642
- var constructor = def.constructor, statics = def.statics;
1643
- constructor && constructor != Object.prototype.constructor || (constructor = function() {
1644
- throw Error("cannot instantiate an interface (no constructor defined).");
1645
- });
1646
- var cls = goog.defineClass.createSealingConstructor_(constructor, superClass);
1647
- superClass && goog.inherits(cls, superClass);
1648
- delete def.constructor;
1649
- delete def.statics;
1650
- goog.defineClass.applyProperties_(cls.prototype, def);
1651
- statics != null && (statics instanceof Function ? statics(cls) : goog.defineClass.applyProperties_(cls, statics));
1652
- return cls;
1653
- };
1654
- goog.defineClass.SEAL_CLASS_INSTANCES = goog.DEBUG;
1655
- goog.defineClass.createSealingConstructor_ = function(ctr, superClass) {
1656
- return goog.defineClass.SEAL_CLASS_INSTANCES ? function() {
1657
- var instance = ctr.apply(this, arguments) || this;
1658
- instance[goog.UID_PROPERTY_] = instance[goog.UID_PROPERTY_];
1659
- return instance;
1660
- } : ctr;
1661
- };
1662
- goog.defineClass.OBJECT_PROTOTYPE_FIELDS_ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
1663
- goog.defineClass.applyProperties_ = function(target, source) {
1664
- for (var key in source) {
1665
- Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1666
- }
1667
- for (var i = 0; i < goog.defineClass.OBJECT_PROTOTYPE_FIELDS_.length; i++) {
1668
- key = goog.defineClass.OBJECT_PROTOTYPE_FIELDS_[i], Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1669
- }
1670
- };
1671
1639
  goog.identity_ = function(s) {
1672
1640
  return s;
1673
1641
  };
@@ -5414,21 +5382,24 @@ module$contents$goog$collections$maps_MapLike.prototype.has = function(key) {
5414
5382
  goog.collections.maps.MapLike = module$contents$goog$collections$maps_MapLike;
5415
5383
  goog.collections.maps.setAll = function(map, entries) {
5416
5384
  if (entries) {
5417
- for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$13$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$13$.done; $jscomp$key$1866876209$13$ = $jscomp$iter$24.next()) {
5418
- var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$13$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5385
+ for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$15$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$15$.done; $jscomp$key$1866876209$15$ = $jscomp$iter$24.next()) {
5386
+ var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$15$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5419
5387
  map.set(k, v);
5420
5388
  }
5421
5389
  }
5422
5390
  };
5423
5391
  goog.collections.maps.hasValue = function(map, val, valueEqualityFn) {
5424
5392
  valueEqualityFn = valueEqualityFn === void 0 ? module$contents$goog$collections$maps_defaultEqualityFn : valueEqualityFn;
5425
- for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$14$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$14$v.done; $jscomp$key$1866876209$14$v = $jscomp$iter$25.next()) {
5426
- if (valueEqualityFn($jscomp$key$1866876209$14$v.value, val)) {
5393
+ for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$16$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$16$v.done; $jscomp$key$1866876209$16$v = $jscomp$iter$25.next()) {
5394
+ if (valueEqualityFn($jscomp$key$1866876209$16$v.value, val)) {
5427
5395
  return !0;
5428
5396
  }
5429
5397
  }
5430
5398
  return !1;
5431
5399
  };
5400
+ goog.collections.maps.getWithDefault = function(map, key, defaultValue) {
5401
+ return map.has(key) ? map.get(key) : defaultValue;
5402
+ };
5432
5403
  var module$contents$goog$collections$maps_defaultEqualityFn = function(a, b) {
5433
5404
  return a === b;
5434
5405
  };
@@ -5440,8 +5411,8 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5440
5411
  if (map.size !== otherMap.size) {
5441
5412
  return !1;
5442
5413
  }
5443
- for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$15$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$15$key.done; $jscomp$key$1866876209$15$key = $jscomp$iter$26.next()) {
5444
- var key = $jscomp$key$1866876209$15$key.value;
5414
+ for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$26.next()) {
5415
+ var key = $jscomp$key$1866876209$17$key.value;
5445
5416
  if (!otherMap.has(key) || !valueEqualityFn(map.get(key), otherMap.get(key))) {
5446
5417
  return !1;
5447
5418
  }
@@ -5449,19 +5420,22 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5449
5420
  return !0;
5450
5421
  };
5451
5422
  goog.collections.maps.transpose = function(map) {
5452
- for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$16$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$16$key.done; $jscomp$key$1866876209$16$key = $jscomp$iter$27.next()) {
5453
- var key = $jscomp$key$1866876209$16$key.value, val = map.get(key);
5423
+ for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$18$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$18$key.done; $jscomp$key$1866876209$18$key = $jscomp$iter$27.next()) {
5424
+ var key = $jscomp$key$1866876209$18$key.value, val = map.get(key);
5454
5425
  transposed.set(val, key);
5455
5426
  }
5456
5427
  return transposed;
5457
5428
  };
5458
5429
  goog.collections.maps.toObject = function(map) {
5459
- for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$28.next()) {
5460
- var key = $jscomp$key$1866876209$17$key.value;
5430
+ for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$19$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$19$key.done; $jscomp$key$1866876209$19$key = $jscomp$iter$28.next()) {
5431
+ var key = $jscomp$key$1866876209$19$key.value;
5461
5432
  obj[key] = map.get(key);
5462
5433
  }
5463
5434
  return obj;
5464
5435
  };
5436
+ goog.collections.maps.clone = function(map) {
5437
+ return new map.constructor(map);
5438
+ };
5465
5439
  goog.structs = {};
5466
5440
  goog.structs.getCount = function(col) {
5467
5441
  return col.getCount && typeof col.getCount == "function" ? col.getCount() : goog.isArrayLike(col) || typeof col === "string" ? col.length : module$contents$goog$object_getCount(col);
@@ -19311,7 +19285,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19311
19285
  ee.apiclient = {};
19312
19286
  var module$contents$ee$apiclient_apiclient = {};
19313
19287
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19314
- ee.apiclient.API_CLIENT_VERSION = "1.5.1";
19288
+ ee.apiclient.API_CLIENT_VERSION = "1.5.2";
19315
19289
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19316
19290
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19317
19291
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19609,8 +19583,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19609
19583
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19610
19584
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19611
19585
  method = method || "POST";
19612
- var headers = {"Content-Type":contentType}, version = "1.5.1";
19613
- version === "1.5.1" && (version = "latest");
19586
+ var headers = {"Content-Type":contentType}, version = "1.5.2";
19587
+ version === "1.5.2" && (version = "latest");
19614
19588
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19615
19589
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19616
19590
  if (authToken != null) {
@@ -27128,28 +27102,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
27128
27102
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27129
27103
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27130
27104
  (function() {
27131
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.data.getList ee.data.updateAsset ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.startProcessing ee.data.createFolder ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.setAssetAcl ee.data.listAssets ee.data.getMapId ee.data.renameAsset ee.data.getTaskList ee.data.authenticate ee.data.setAssetProperties ee.data.getTableDownloadId ee.data.getTileUrl ee.data.copyAsset ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.deleteAsset ee.data.listOperations ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.listImages ee.data.getWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getAssetAcl ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.newTaskId ee.data.createAssetHome ee.data.setWorkloadTag ee.data.computeValue ee.data.getInfo ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.updateTask ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi 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.getMapId ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.and ee.Filter.prototype.not ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPolygon ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Image.cat ee.Image.prototype.select ee.Image.rgb ee.Image.prototype.expression ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.linkCollection 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(" "),
27132
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "),
27133
- "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(" "),
27134
- "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["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(" "),
27135
- "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(" "), ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name",
27136
- "operator", "value"], ["geometry"], ["start", "opt_end"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"],
27137
- ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "properties", "opt_callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"],
27138
- ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["id"], ["operationName", "opt_callback"], ["opt_success", "opt_error"], ["parent", "opt_params", "opt_callback"], [], ["params", "opt_callback"], ["assetId", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["opt_count", "opt_callback"],
27139
- ["requestedId", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27140
- ["func", "var_args"], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator",
27141
- "value"], ["var_args"], [], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_filter"], ["namedArgs"], ["var_args"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27142
- ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj"], ["var_args"], ["var_args"], ["r", "g", "b"], ["expression", "opt_map"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"],
27143
- ["opt_args"], ["params", "opt_callback"], ["geometry"], [], ["args"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27144
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, 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.toCloudStorage, module$contents$ee$batch_Export.table.toAsset,
27145
- module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
27146
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.data.getList, ee.data.updateAsset, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.startProcessing, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.listAssets, ee.data.getMapId, ee.data.renameAsset, ee.data.getTaskList, ee.data.authenticate, ee.data.setAssetProperties, ee.data.getTableDownloadId, ee.data.getTileUrl,
27147
- ee.data.copyAsset, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.listOperations, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.cancelOperation, ee.data.authenticateViaPopup, ee.data.listImages, ee.data.getWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.getAssetAcl, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27148
- ee.data.getOperation, ee.data.newTaskId, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.computeValue, ee.data.getInfo, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.updateTask, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
27149
- ee.initialize, ee.call, ee.reset, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMapId, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.eq, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.and,
27150
- ee.Filter.prototype.not, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Filter, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPolygon, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSON,
27151
- ee.Geometry.Point, ee.Image.cat, ee.Image.prototype.select, ee.Image.rgb, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select,
27152
- ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.linkCollection, 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) {
27105
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset 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.table.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.getList 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.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.getTableDownloadId ee.data.copyAsset ee.data.getTaskStatus ee.data.getTileUrl ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.listOperations ee.data.getWorkloadTag ee.data.getDownloadId ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.listImages ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.cancelTask ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.InitState ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.eq ee.Filter.lte ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.prototype.not ee.Filter.neq ee.Filter.and ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter ee.Filter.gte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry ee.Geometry.Point ee.Geometry.prototype.toGeoJSON ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.cat ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.clip ee.Image.rgb ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection 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(" "),
27106
+ orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices",
27107
+ "opt_priority"], ["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(" "), "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(" "),
27108
+ "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_folder opt_fileNamePrefix opt_fileFormat 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(" "),
27109
+ "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(" "), ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"],
27110
+ ["geometry"], ["name", "operator", "value"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["params", "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",
27111
+ "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "opt_callback"], ["id", "x", "y", "z"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"],
27112
+ ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], [], ["params", "opt_callback"], ["operationName", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"],
27113
+ ["opt_count", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], [], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27114
+ [], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["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"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator",
27115
+ "value"], [], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["opt_filter"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj",
27116
+ "opt_geodesic", "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"], [], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["expression", "opt_map"], ["var_args"],
27117
+ ["geometry"], ["r", "g", "b"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27118
+ [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage,
27119
+ module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterMetadata, ee.ComputedObject.prototype.evaluate,
27120
+ ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.getList, 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.data.getMapId, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.getTaskStatus,
27121
+ ee.data.getTileUrl, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.deleteAsset, ee.data.listOperations, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.listImages, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27122
+ ee.data.getOperation, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.newTaskId, ee.data.getInfo, ee.data.computeValue, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.getThumbId, ee.data.cancelTask, ee.data.resetWorkloadTag, ee.data.getVideoThumbId, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.InitState, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
27123
+ ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.eq, ee.Filter.lte, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.prototype.not,
27124
+ ee.Filter.neq, ee.Filter.and, ee.Filter.gt, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter, ee.Filter.gte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSON,
27125
+ ee.Image.prototype.select, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.cat, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.clip, ee.Image.rgb, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo,
27126
+ ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection, 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].forEach(function(fn, i) {
27153
27127
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27154
27128
  });
27155
27129
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
@@ -36,8 +36,7 @@ n("String.prototype.padStart",function(a){return a?a:function(b,c){var d=ua(this
36
36
  */
37
37
  var va=va||{},t=this||self,wa=function(a){var b=typeof a;return b!="object"?b:a?Array.isArray(a)?"array":b:"null"},xa=function(a){var b=wa(a);return b=="array"||b=="object"&&typeof a.length=="number"},ya=function(a){return u(a)&&typeof a.getFullYear=="function"},u=function(a){var b=typeof a;return b=="object"&&a!=null||b=="function"},Ba=function(a){return Object.prototype.hasOwnProperty.call(a,za)&&a[za]||(a[za]=++Aa)},za="closure_uid_"+(Math.random()*1E9>>>0),Aa=0,Ca=function(a,b,c){return a.call.apply(a.bind,
38
38
  arguments)},Da=function(a,b,c){if(!a)throw Error();if(arguments.length>2){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}},w=function(a,b,c){w=Function.prototype.bind&&Function.prototype.bind.toString().indexOf("native code")!=-1?Ca:Da;return w.apply(null,arguments)},Ea=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=
39
- c.slice();d.push.apply(d,arguments);return a.apply(this,d)}},x=function(a,b){a=a.split(".");var c=t;a[0]in c||typeof c.execScript=="undefined"||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||b===void 0?c=c[d]&&c[d]!==Object.prototype[d]?c[d]:c[d]={}:c[d]=b},y=function(a,b){function c(){}c.prototype=b.prototype;a.L=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.El=function(d,e,g){for(var f=Array(arguments.length-2),l=2;l<arguments.length;l++)f[l-2]=arguments[l];return b.prototype[e].apply(d,
40
- f)}};var Fa=typeof AsyncContext!=="undefined"&&typeof AsyncContext.Snapshot==="function"?function(a){return a&&AsyncContext.Snapshot.wrap(a)}:function(a){return a};var Ga=function(){},Ha=new Ga;function Ia(a){return Object.assign({},{P:{},Gl:{},keys:[],Ma:{},o:{},H:{},nh:!1},a)}var A=function(){this.h={}},C=function(a,b){return a.h.hasOwnProperty(b)?a.h[b]:null},D=function(a,b){return a.h[b]!=null};function Ja(a,b){return C(b,a)}function Ka(a,b,c){b[a]=c}function La(){return{}}function Ma(a,b){var c=new a;return b==null?c:Na(b,Oa,Pa,Qa,a)}function Oa(a,b){return b[a]}function Pa(a,b,c){b.h[a]=c}
39
+ c.slice();d.push.apply(d,arguments);return a.apply(this,d)}},x=function(a,b){a=a.split(".");for(var c=t,d;a.length&&(d=a.shift());)a.length||b===void 0?c=c[d]&&c[d]!==Object.prototype[d]?c[d]:c[d]={}:c[d]=b},y=function(a,b){function c(){}c.prototype=b.prototype;a.L=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.El=function(d,e,g){for(var f=Array(arguments.length-2),l=2;l<arguments.length;l++)f[l-2]=arguments[l];return b.prototype[e].apply(d,f)}};var Fa=typeof AsyncContext!=="undefined"&&typeof AsyncContext.Snapshot==="function"?function(a){return a&&AsyncContext.Snapshot.wrap(a)}:function(a){return a};var Ga=function(){},Ha=new Ga;function Ia(a){return Object.assign({},{P:{},Gl:{},keys:[],Ma:{},o:{},H:{},nh:!1},a)}var A=function(){this.h={}},C=function(a,b){return a.h.hasOwnProperty(b)?a.h[b]:null},D=function(a,b){return a.h[b]!=null};function Ja(a,b){return C(b,a)}function Ka(a,b,c){b[a]=c}function La(){return{}}function Ma(a,b){var c=new a;return b==null?c:Na(b,Oa,Pa,Qa,a)}function Oa(a,b){return b[a]}function Pa(a,b,c){b.h[a]=c}
41
40
  function Qa(a){if(a==null)throw Error("Cannot deserialize, target constructor was null.");return new a}
42
41
  function Na(a,b,c,d,e){e=d(e);for(var g=Ra(a,e),f=g.P||{},l=g.o||{},m=g.Ma||{},p=r(g.keys||[]),v=p.next(),z={};!v.done;z={Vd:void 0},v=p.next()){v=v.value;var B=b(v,a);if(B!=null){var H=void 0;if(f.hasOwnProperty(v)){if(g.nh&&B.length===0)continue;H=Sa(B,b,c,d,!0,!0,f[v])}else if(l.hasOwnProperty(v))H=Sa(B,b,c,d,!1,!0,l[v]);else if(m.hasOwnProperty(v))z.Vd=m[v],H=z.Vd.pa?B.map(function(ea){return function(W){return Ta(W,ea.Vd,b,c,d)}}(z)):Ta(B,z.Vd,b,c,d);else if(Array.isArray(B)){if(g.nh&&B.length===
43
42
  0)continue;H=Sa(B,b,c,d,!0,!1)}else H=B instanceof Ga?null:B;c(v,e,H)}}return e}function Ta(a,b,c,d,e){for(var g={},f=r(Object.keys(a)),l=f.next();!l.done;l=f.next()){l=l.value;var m=a[l];m!=null&&(g[l]=Sa(m,c,d,e,b.ra,b.qa,b.ka))}return g}
@@ -454,7 +453,7 @@ Ma(p,f[m]))});return b?b(l):l};return this.callback?(dj(d,null,function(f,l){ret
454
453
  ej.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=gj();d!=null&&c.push("Authorization: "+d);a=a.body?JSON.stringify(a.body):"";return[c.join("\r\n")+"\r\n\r\n"+a,b]};
455
454
  var hj=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"))}},bj=function(){var a=ij.replace(/\/api$/,"");return"window"in t&&!a.match(/^https?:\/\/content-/)?a.replace(/^(https?:\/\/)(.*\.googleapis\.com)$/,"$1content-$2"):a},kj=function(a,b,c){var d=[];a&&(d=d.concat(jj));
456
455
  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},rj=function(a,b,c){mj&&nj&&mj({client_id:String(nj),scope:oj.join(" "),plugin_name:"earthengine"},function(d){if(d.error=="immediate_failed"&&c)c();else if("window"in t)try{pj(function(){try{qj(a,b,d)}catch(e){b(e.toString())}})}catch(e){b(e.toString())}else qj(a,
457
- b,d)})},gj=function(){sj&&Date.now()-sj>=0&&tj();return uj},tj=function(){sj=uj=null},Zi=function(a,b,c,d){a!=null?ij=a:vj||(ij="https://earthengine.googleapis.com/api");b!=null?wj=b:vj||(wj="https://earthengine.googleapis.com");c!==void 0&&(xj=c);Yi=d!=null?d:Yi||"earthengine-legacy";vj=!0},dj=function(a,b,c,d,e,g,f){Zi();var l=yj,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.1";p==="1.5.1"&&
456
+ b,d)})},gj=function(){sj&&Date.now()-sj>=0&&tj();return uj},tj=function(){sj=uj=null},Zi=function(a,b,c,d){a!=null?ij=a:vj||(ij="https://earthengine.googleapis.com/api");b!=null?wj=b:vj||(wj="https://earthengine.googleapis.com");c!==void 0&&(xj=c);Yi=d!=null?d:Yi||"earthengine-legacy";vj=!0},dj=function(a,b,c,d,e,g,f){Zi();var l=yj,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.2";p==="1.5.2"&&
458
457
  (p="latest");m["x-goog-api-client"]="ee-js/"+p;p=gj();if(p!=null)m.Authorization=p;else if(c&&mj&&nj)return rj(function(){zj(l,function(){dj(a,b,c,d)})}),null;b=b?b.clone():new Sc;Aj!=null&&b.add("key",Aj);l&&(m["X-Earth-Engine-Computation-Profiling"]="1");Yi&&Yi!=="earthengine-legacy"&&(m["X-Goog-User-Project"]=Yi);b=Bj(b,a);xj!=null&&(m["X-XSRF-Token"]=xj);Cj!=null&&(m["X-Earth-Engine-App-ID-Token"]=Cj);p=e||null;var v=b?b.toString():"";d==="POST"&&e===void 0?p=v:/^[\s\xa0]*$/.test(v)||(a+=a.indexOf("?")!=
459
458
  -1?"&":"?",a+=v);e=a.startsWith("/")?ij+a:a;if(c)return Dj.push(Ej(e,c,d,p,m,g,f)),Fj.mf(),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 Gj(B.status,function(H){try{return B.getResponseHeader(H)}catch(ea){return null}},B.responseText,l,void 0,e,d,f)},Ej=function(a,b,c,d,e,g,f){var l=0,m={url:a,method:c,content:d,headers:e},p=yj,v=g!=null?g:10;
460
459
  m.callback=function(z){z=z.target;if(z.getStatus()==429&&l<v)return l++,setTimeout(function(){Dj.push(m);Fj.mf()},Math.min(12E4,Math.pow(2,l)*1E3)),null;var B=Gj,H=z.getStatus(),ea=w(z.getResponseHeader,z);try{var W=z.s?z.s.responseText:""}catch(da){Cc(z.ha,"Can not get responseText: "+da.message),W=""}return B(H,ea,W,p,b,a,c,f)};return m},zj=function(a,b){var c=yj;try{yj=a,b.call(void 0)}finally{yj=c}},Gj=function(a,b,c,d,e,g,f,l){var m=d?b("X-Earth-Engine-Computation-Profile"):"";m&&d&&d(m);var p=
@@ -707,18 +706,18 @@ h.ul=function(){if(!this.kc){var a=w(function(d){this.kc||(Wp(this.fa,this.ea,d)
707
706
  h.Ji=null;h.Ja=null;h.hi=null;var uq=["load","abort","error"],vq=function(){I.call(this);this.Ea=!1};q(vq,I);vq.prototype.setActive=function(a){this.Ea=a};vq.prototype.isActive=function(){return this.Ea};var qq=function(a,b){lq.call(this,a,b)};q(qq,lq);qq.prototype.Ye=function(){return new vq};qq.prototype.Dd=function(a){a.dispose()};qq.prototype.Pf=function(a){return!a.Ra&&!a.isActive()};var wq=function(a,b,c,d,e){ge.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.tg=new ae;this.Qf=1;this.ua=e||null};q(wq,ge);h=wq.prototype;h.Le=function(a){return zd(this,"tileevent",a)};h.Yf=function(a){Hd(a)};
708
707
  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=he(this,a,b);a=[this.url,b].join("/")+"?token="+this.token;this.ua&&this.ua.isEnabled()&&(a+="&profiling=1");b=[b,this.wb,this.token].join("/");this.wb+=1;c=hi("DIV",{id:b});var d=(new Date).getTime()/1E3;this.yb.push(b);kl(rq).send(b,a,d,w(this.Tk,this,c,b));tp(this);return c};h.Mc=function(){return this.yb.length};
709
708
  h.releaseTile=function(a){kl(rq).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.tg.remove(b);a.id!==""&&(this.sg.remove(a.id),this.ua&&this.ua.ll(a.id))};h.setOpacity=function(a){this.Qf=a;var b=this.tg.Da();Sd(b,function(c){Ep(c,a)})};
710
- h.Tk=function(a,b,c,d){c.type=="error"?(ec(this.yb,b),this.sg.add(b),this.dispatchEvent(c)):(ec(this.yb,b),c.target&&c.type=="load"&&(c=c.target,this.tg.add(c),this.Qf!=1&&Ep(c,this.Qf),a.appendChild(c)),tp(this));this.ua&&d!==null&&this.ua.Hk(b,d)};x("ee.MapLayerOverlay",wq);wq.prototype.removeTileCallback=wq.prototype.Yf;wq.prototype.addTileCallback=wq.prototype.Le;wq.prototype.getTile=wq.prototype.getTile;wq.prototype.setOpacity=wq.prototype.setOpacity;wq.prototype.releaseTile=wq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.classifier.toAsset ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.limit ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.setAssetAcl ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.renameAsset ee.data.getMapId ee.data.listAssets ee.data.setAssetProperties ee.data.getTaskList ee.data.authenticate ee.data.copyAsset ee.data.getTableDownloadId ee.data.getTileUrl ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.listOperations ee.data.getWorkloadTag ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.listImages ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.newTaskId ee.data.createAsset ee.data.computeValue ee.data.getInfo ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.cancelTask ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.updateAsset ee.data.getTaskStatus ee.data.updateTask ee.data.getList ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.startProcessing ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.initialize ee.call ee.reset ee.Algorithms ee.apply ee.InitState ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.prototype.not ee.Filter.and ee.Filter.neq ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.Point ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.MultiPolygon ee.Geometry.MultiPoint ee.Geometry ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.expression ee.Image.prototype.rename ee.Image ee.ImageCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection 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(" "),
711
- c=[["name","namedArgs"],["name"],["name","var_args"],"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(" "),
712
- "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(" "),
713
- ["classifier","opt_description","opt_assetId","opt_priority"],["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(" "),"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(" "),
714
- "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(" "),["geometry"],["name","operator","value"],["algorithm","opt_dropNulls"],["algorithm","opt_first"],["start","opt_end"],["filter"],["property","opt_ascending"],
715
- ["max","opt_property","opt_ascending"],["callback"],["opt_callback"],["legacy"],["func","var_args"],["assetId","aclUpdate","opt_callback"],["id"],"clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),["sourceId","destinationId","opt_callback"],["params","opt_callback"],["parent","opt_params","opt_callback"],["assetId","properties","opt_callback"],["opt_callback"],["clientId","success","opt_error","opt_extraScopes","opt_onImmediateFailed"],["sourceId",
716
- "destinationId","opt_overwrite","opt_callback"],["params","opt_callback"],["id","x","y","z"],["project","opt_callback"],["id"],["rootId","opt_callback"],["assetId","opt_callback"],["opt_limit","opt_callback"],["taskId","request","opt_callback"],["opt_limit","opt_callback"],[],["params","opt_callback"],["id"],["operationName","opt_callback"],["assetId","opt_callback"],["opt_success","opt_error"],["parent","opt_params","opt_callback"],["params","opt_callback"],["asset","params","opt_callback"],["id",
717
- "opt_callback"],["opt_callback"],["tag"],["privateKey","opt_success","opt_error","opt_extraScopes","opt_suppressDefaultScopes"],["operationName","opt_callback"],["requestedId","opt_callback"],["opt_count","opt_callback"],["value","opt_path","opt_force","opt_properties","opt_callback"],["obj","opt_callback"],["id","opt_callback"],["tag"],["params","opt_callback"],["taskId","opt_callback"],["opt_resetDefault"],["params","opt_callback"],["assetId","asset","updateFields","opt_callback"],["taskId","opt_callback"],
718
- ["taskId","action","opt_callback"],["params","opt_callback"],["params","opt_callback"],["taskId","request","opt_callback"],["path","opt_force","opt_callback"],["taskId","params","opt_callback"],["date","opt_tz"],["json"],["json"],["json"],["json"],["opt_dict"],"opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),["func","var_args"],[],[],["func","namedArgs"],[],[],["var_args"],[],["geometry","opt_properties"],["opt_visParams","opt_callback"],["opt_callback"],
719
- ["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["opt_format","opt_selectors","opt_filename","opt_callback"],["opt_visParams","opt_callback"],["opt_callback"],["propertySelectors","opt_newProperties","opt_retainGeometry"],["args","opt_column"],[],["var_args"],["name","value"],["name","value"],["name","value"],["opt_leftField","opt_rightValue","opt_rightField","opt_leftValue"],["var_args"],["name","value"],["name","value"],["opt_filter"],["name","value"],["start","opt_end"],["name",
720
- "operator","value"],["geometry","opt_errorMargin"],["var_args"],["namedArgs"],[],["coords","opt_proj","opt_geodesic","opt_maxError"],["legacy"],["coords","opt_proj"],[],["west","south","east","north"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["coords","opt_proj"],["geoJson","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],
721
- ["coords","opt_proj","opt_geodesic","opt_maxError"],["params","opt_callback"],["params","opt_callback"],["r","g","b"],["params","opt_callback"],["var_args"],["opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["var_args"],["geometry"],["expression","opt_map"],["var_args"],["opt_args"],["args"],[],["params","opt_callback"],["opt_visParams","opt_callback"],["opt_callback"],["params","opt_callback"],["opt_visParams","opt_callback"],["selectors","opt_names"],["imageCollection",
722
- "opt_linkedBands","opt_linkedProperties","opt_matchPropertyName"],["list"],["number"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj","opt_isCompound"],["string"],[]];[Om,Nm,Q,vo,oo,wo,uo,xo,so,po,zo,to,ro,mo,qo,yo,V.prototype.sh,V.prototype.lf,V.prototype.map,V.prototype.Hh,V.prototype.kf,V.prototype.filter,V.prototype.sort,V.prototype.limit,O.prototype.evaluate,O.prototype.V,O.prototype.va,O.prototype.Dg,tm,Bl,ml,om,tl,hm,um,Ml,nl,pm,Fl,ul,jm,Gl,vm,qm,Ll,dm,Nl,rl,Dl,El,Ol,rm,ll,im,vl,wl,
723
- em,km,xm,ol,Pl,lm,Hl,mm,xl,em,ym,yl,Rl,zm,zl,sm,Kl,Ql,gm,Al,bm,nm,Yl,Qo,Vo,Zo,To,Uo,$o,ip,np,lp,kp,op,mp,256,S.prototype.set,Jj,X,X.prototype.getMap,X.prototype.V,X.prototype.R,Y.prototype.getMap,Y.prototype.rb,Y.prototype.R,Y.prototype.V,Y.prototype.select,Y,U.prototype.sc,Hn,Cn,Fn,Dn,Kn,In,Gn,En,U,Bn,Jn,Mn,Ln,Im.prototype.call,Im.prototype.apply,T.prototype.oe,qn,T.prototype.va,gn,T.prototype.vg,mn,tn,kn,T,ln,pn,sn,rn,N.prototype.rb,N.prototype.uf,Zn,N.prototype.Ld,N.prototype.select,N.prototype.V,
724
- N.prototype.R,N.prototype.getMap,$n,N.prototype.clip,N.prototype.l,N.prototype.mi,N,Z,Z.prototype.first,Z.prototype.vf,Z.prototype.getMap,Z.prototype.V,Z.prototype.sf,Z.prototype.R,Z.prototype.select,Z.prototype.Ef,ao,Go,Gk,Lk,Qk,Ik,Rk,Pk,Fk,Jo,cp].forEach(function(d,e){d&&(a[d.toString()]={name:b[e],paramNames:c[e]})});t.EXPORTED_FN_INFO=a})();}).call(this);
709
+ h.Tk=function(a,b,c,d){c.type=="error"?(ec(this.yb,b),this.sg.add(b),this.dispatchEvent(c)):(ec(this.yb,b),c.target&&c.type=="load"&&(c=c.target,this.tg.add(c),this.Qf!=1&&Ep(c,this.Qf),a.appendChild(c)),tp(this));this.ua&&d!==null&&this.ua.Hk(b,d)};x("ee.MapLayerOverlay",wq);wq.prototype.removeTileCallback=wq.prototype.Yf;wq.prototype.addTileCallback=wq.prototype.Le;wq.prototype.getTile=wq.prototype.getTile;wq.prototype.setOpacity=wq.prototype.setOpacity;wq.prototype.releaseTile=wq.prototype.releaseTile;(function(){var a={},b="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.toCloudStorage ee.batch.Export.table.toAsset 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.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.updateAsset ee.data.updateTask ee.data.getList 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.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.copyAsset ee.data.getTableDownloadId ee.data.getTileUrl ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.listOperations ee.data.getDownloadId ee.data.getWorkloadTag ee.data.cancelOperation ee.data.makeDownloadUrl 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.setWorkloadTag ee.data.authenticateViaPrivateKey ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.getThumbId ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.Date ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.reset ee.Algorithms ee.apply ee.initialize ee.InitState ee.TILE_SIZE ee.call 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 ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.Filter.prototype.not ee.Filter.and ee.Filter.neq ee.Filter.metadata ee.Filter.lt ee.Filter.gt ee.Filter.inList ee.Filter.or ee.Filter.gte ee.Filter.lte ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.MultiPoint ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry.Rectangle ee.Geometry ee.Geometry.Point ee.Geometry.prototype.toGeoJSONString ee.Geometry.LinearRing ee.Geometry.MultiPolygon ee.Image.rgb ee.Image.prototype.select ee.Image ee.Image.prototype.getThumbURL ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.cat ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
710
+ c=[["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(" "),
711
+ "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(" "),
712
+ "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(" "),
713
+ "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),["collection","opt_description","opt_assetId","opt_maxVertices","opt_priority"],["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(" "),
714
+ ["max","opt_property","opt_ascending"],["property","opt_ascending"],["filter"],["algorithm","opt_first"],["name","operator","value"],["geometry"],["start","opt_end"],["algorithm","opt_dropNulls"],["func","var_args"],["callback"],["opt_callback"],["legacy"],["opt_resetDefault"],["params","opt_callback"],["taskId","opt_callback"],["assetId","asset","updateFields","opt_callback"],["taskId","action","opt_callback"],["params","opt_callback"],["taskId","request","opt_callback"],["params","opt_callback"],
715
+ ["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"],["params","opt_callback"],["opt_callback"],["assetId","properties","opt_callback"],["clientId","success","opt_error","opt_extraScopes","opt_onImmediateFailed"],["sourceId","destinationId","opt_overwrite",
716
+ "opt_callback"],["params","opt_callback"],["id","x","y","z"],["project","opt_callback"],["id"],["opt_limit","opt_callback"],["taskId","request","opt_callback"],["rootId","opt_callback"],["assetId","opt_callback"],["opt_limit","opt_callback"],["params","opt_callback"],[],["operationName","opt_callback"],["id"],["parent","opt_params","opt_callback"],["assetId","opt_callback"],["opt_success","opt_error"],["params","opt_callback"],["asset","params","opt_callback"],["id","opt_callback"],["opt_callback"],
717
+ ["operationName","opt_callback"],["tag"],["privateKey","opt_success","opt_error","opt_extraScopes","opt_suppressDefaultScopes"],["requestedId","opt_callback"],["opt_count","opt_callback"],["id","opt_callback"],["obj","opt_callback"],["params","opt_callback"],["value","opt_path","opt_force","opt_properties","opt_callback"],["tag"],["taskId","opt_callback"],["date","opt_tz"],["json"],["json"],["json"],["json"],["opt_dict"],[],[],["func","namedArgs"],"opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
718
+ [],[],["func","var_args"],["var_args"],[],["opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["geometry","opt_properties"],["opt_visParams","opt_callback"],["args","opt_column"],["opt_format","opt_selectors","opt_filename","opt_callback"],["propertySelectors","opt_newProperties","opt_retainGeometry"],["opt_visParams","opt_callback"],["opt_callback"],[],["var_args"],["name","value"],["name","operator","value"],["name","value"],["name","value"],["opt_leftField","opt_rightValue",
719
+ "opt_rightField","opt_leftValue"],["var_args"],["name","value"],["name","value"],["opt_filter"],["name","value"],["start","opt_end"],["geometry","opt_errorMargin"],["namedArgs"],["var_args"],["west","south","east","north"],["coords","opt_proj","opt_geodesic","opt_maxError"],["legacy"],["coords","opt_proj"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],[],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["geoJson","opt_proj",
720
+ "opt_geodesic","opt_evenOdd"],["coords","opt_proj"],[],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["r","g","b"],["var_args"],["opt_args"],["params","opt_callback"],["expression","opt_map"],["var_args"],["opt_callback"],["opt_visParams","opt_callback"],["opt_visParams","opt_callback"],["params","opt_callback"],["params","opt_callback"],["geometry"],["var_args"],["args"],["params","opt_callback"],["params","opt_callback"],["opt_visParams",
721
+ "opt_callback"],["opt_visParams","opt_callback"],["opt_callback"],["selectors","opt_names"],["imageCollection","opt_linkedBands","opt_linkedProperties","opt_matchPropertyName"],[],["list"],["number"],["obj"],["obj"],["obj"],["obj","opt_isCompound"],["obj"],["obj"],["obj"],["string"],[]];[Q,Nm,Om,yo,vo,oo,wo,uo,xo,so,po,ro,to,zo,mo,qo,V.prototype.limit,V.prototype.sort,V.prototype.filter,V.prototype.Hh,V.prototype.lf,V.prototype.sh,V.prototype.kf,V.prototype.map,O.prototype.Dg,O.prototype.evaluate,
722
+ O.prototype.V,O.prototype.va,zm,zl,Kl,sm,Ql,gm,bm,Al,Yl,nm,tm,Bl,ml,hm,om,tl,Ml,um,nl,pm,Fl,ul,jm,Gl,Ll,dm,vm,qm,Nl,Dl,rl,Ol,El,im,rm,ll,vl,wl,em,km,Pl,xm,ol,lm,Hl,em,xl,yl,mm,ym,Rl,Qo,To,Zo,Uo,Vo,$o,lp,kp,op,ip,mp,256,np,S.prototype.set,Jj,X.prototype.V,X.prototype.R,X.prototype.getMap,X,Y.prototype.getMap,Y,Y.prototype.rb,Y.prototype.select,Y.prototype.R,Y.prototype.V,U.prototype.sc,Hn,Cn,Mn,Dn,Fn,Kn,In,En,Gn,U,Bn,Jn,Ln,Im.prototype.apply,Im.prototype.call,mn,pn,T.prototype.va,kn,sn,rn,T.prototype.oe,
723
+ ln,T,gn,T.prototype.vg,qn,tn,Zn,N.prototype.select,N,N.prototype.uf,N.prototype.l,N.prototype.mi,N.prototype.V,N.prototype.R,N.prototype.getMap,N.prototype.rb,N.prototype.Ld,N.prototype.clip,$n,Z,Z.prototype.vf,Z.prototype.sf,Z.prototype.R,Z.prototype.getMap,Z.prototype.V,Z.prototype.select,Z.prototype.Ef,Z.prototype.first,ao,Go,Rk,Ik,Pk,Fk,Qk,Lk,Gk,Jo,cp].forEach(function(d,e){d&&(a[d.toString()]={name:b[e],paramNames:c[e]})});t.EXPORTED_FN_INFO=a})();}).call(this);
@@ -1267,9 +1267,7 @@ GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_
1267
1267
  var isChrome87, goog = goog || {};
1268
1268
  goog.global = this || self;
1269
1269
  goog.exportPath_ = function(name, object, overwriteImplicit, objectToExportTo) {
1270
- var parts = name.split("."), cur = objectToExportTo || goog.global;
1271
- parts[0] in cur || typeof cur.execScript == "undefined" || cur.execScript("var " + parts[0]);
1272
- for (var part; parts.length && (part = parts.shift());) {
1270
+ for (var parts = name.split("."), cur = objectToExportTo || goog.global, part; parts.length && (part = parts.shift());) {
1273
1271
  if (parts.length || object === void 0) {
1274
1272
  cur = cur[part] && cur[part] !== Object.prototype[part] ? cur[part] : cur[part] = {};
1275
1273
  } else {
@@ -1638,36 +1636,6 @@ goog.scope = function(fn) {
1638
1636
  }
1639
1637
  fn.call(goog.global);
1640
1638
  };
1641
- goog.defineClass = function(superClass, def) {
1642
- var constructor = def.constructor, statics = def.statics;
1643
- constructor && constructor != Object.prototype.constructor || (constructor = function() {
1644
- throw Error("cannot instantiate an interface (no constructor defined).");
1645
- });
1646
- var cls = goog.defineClass.createSealingConstructor_(constructor, superClass);
1647
- superClass && goog.inherits(cls, superClass);
1648
- delete def.constructor;
1649
- delete def.statics;
1650
- goog.defineClass.applyProperties_(cls.prototype, def);
1651
- statics != null && (statics instanceof Function ? statics(cls) : goog.defineClass.applyProperties_(cls, statics));
1652
- return cls;
1653
- };
1654
- goog.defineClass.SEAL_CLASS_INSTANCES = goog.DEBUG;
1655
- goog.defineClass.createSealingConstructor_ = function(ctr, superClass) {
1656
- return goog.defineClass.SEAL_CLASS_INSTANCES ? function() {
1657
- var instance = ctr.apply(this, arguments) || this;
1658
- instance[goog.UID_PROPERTY_] = instance[goog.UID_PROPERTY_];
1659
- return instance;
1660
- } : ctr;
1661
- };
1662
- goog.defineClass.OBJECT_PROTOTYPE_FIELDS_ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
1663
- goog.defineClass.applyProperties_ = function(target, source) {
1664
- for (var key in source) {
1665
- Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1666
- }
1667
- for (var i = 0; i < goog.defineClass.OBJECT_PROTOTYPE_FIELDS_.length; i++) {
1668
- key = goog.defineClass.OBJECT_PROTOTYPE_FIELDS_[i], Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1669
- }
1670
- };
1671
1639
  goog.identity_ = function(s) {
1672
1640
  return s;
1673
1641
  };
@@ -5414,21 +5382,24 @@ module$contents$goog$collections$maps_MapLike.prototype.has = function(key) {
5414
5382
  goog.collections.maps.MapLike = module$contents$goog$collections$maps_MapLike;
5415
5383
  goog.collections.maps.setAll = function(map, entries) {
5416
5384
  if (entries) {
5417
- for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$13$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$13$.done; $jscomp$key$1866876209$13$ = $jscomp$iter$24.next()) {
5418
- var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$13$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5385
+ for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$15$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$15$.done; $jscomp$key$1866876209$15$ = $jscomp$iter$24.next()) {
5386
+ var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$15$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5419
5387
  map.set(k, v);
5420
5388
  }
5421
5389
  }
5422
5390
  };
5423
5391
  goog.collections.maps.hasValue = function(map, val, valueEqualityFn) {
5424
5392
  valueEqualityFn = valueEqualityFn === void 0 ? module$contents$goog$collections$maps_defaultEqualityFn : valueEqualityFn;
5425
- for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$14$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$14$v.done; $jscomp$key$1866876209$14$v = $jscomp$iter$25.next()) {
5426
- if (valueEqualityFn($jscomp$key$1866876209$14$v.value, val)) {
5393
+ for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$16$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$16$v.done; $jscomp$key$1866876209$16$v = $jscomp$iter$25.next()) {
5394
+ if (valueEqualityFn($jscomp$key$1866876209$16$v.value, val)) {
5427
5395
  return !0;
5428
5396
  }
5429
5397
  }
5430
5398
  return !1;
5431
5399
  };
5400
+ goog.collections.maps.getWithDefault = function(map, key, defaultValue) {
5401
+ return map.has(key) ? map.get(key) : defaultValue;
5402
+ };
5432
5403
  var module$contents$goog$collections$maps_defaultEqualityFn = function(a, b) {
5433
5404
  return a === b;
5434
5405
  };
@@ -5440,8 +5411,8 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5440
5411
  if (map.size !== otherMap.size) {
5441
5412
  return !1;
5442
5413
  }
5443
- for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$15$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$15$key.done; $jscomp$key$1866876209$15$key = $jscomp$iter$26.next()) {
5444
- var key = $jscomp$key$1866876209$15$key.value;
5414
+ for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$26.next()) {
5415
+ var key = $jscomp$key$1866876209$17$key.value;
5445
5416
  if (!otherMap.has(key) || !valueEqualityFn(map.get(key), otherMap.get(key))) {
5446
5417
  return !1;
5447
5418
  }
@@ -5449,19 +5420,22 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5449
5420
  return !0;
5450
5421
  };
5451
5422
  goog.collections.maps.transpose = function(map) {
5452
- for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$16$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$16$key.done; $jscomp$key$1866876209$16$key = $jscomp$iter$27.next()) {
5453
- var key = $jscomp$key$1866876209$16$key.value, val = map.get(key);
5423
+ for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$18$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$18$key.done; $jscomp$key$1866876209$18$key = $jscomp$iter$27.next()) {
5424
+ var key = $jscomp$key$1866876209$18$key.value, val = map.get(key);
5454
5425
  transposed.set(val, key);
5455
5426
  }
5456
5427
  return transposed;
5457
5428
  };
5458
5429
  goog.collections.maps.toObject = function(map) {
5459
- for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$28.next()) {
5460
- var key = $jscomp$key$1866876209$17$key.value;
5430
+ for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$19$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$19$key.done; $jscomp$key$1866876209$19$key = $jscomp$iter$28.next()) {
5431
+ var key = $jscomp$key$1866876209$19$key.value;
5461
5432
  obj[key] = map.get(key);
5462
5433
  }
5463
5434
  return obj;
5464
5435
  };
5436
+ goog.collections.maps.clone = function(map) {
5437
+ return new map.constructor(map);
5438
+ };
5465
5439
  goog.structs = {};
5466
5440
  goog.structs.getCount = function(col) {
5467
5441
  return col.getCount && typeof col.getCount == "function" ? col.getCount() : goog.isArrayLike(col) || typeof col === "string" ? col.length : module$contents$goog$object_getCount(col);
@@ -19311,7 +19285,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19311
19285
  ee.apiclient = {};
19312
19286
  var module$contents$ee$apiclient_apiclient = {};
19313
19287
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19314
- ee.apiclient.API_CLIENT_VERSION = "1.5.1";
19288
+ ee.apiclient.API_CLIENT_VERSION = "1.5.2";
19315
19289
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19316
19290
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19317
19291
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19609,8 +19583,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19609
19583
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19610
19584
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19611
19585
  method = method || "POST";
19612
- var headers = {"Content-Type":contentType}, version = "1.5.1";
19613
- version === "1.5.1" && (version = "latest");
19586
+ var headers = {"Content-Type":contentType}, version = "1.5.2";
19587
+ version === "1.5.2" && (version = "latest");
19614
19588
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19615
19589
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19616
19590
  if (authToken != null) {
@@ -1267,9 +1267,7 @@ GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_
1267
1267
  var isChrome87, goog = goog || {};
1268
1268
  goog.global = this || self;
1269
1269
  goog.exportPath_ = function(name, object, overwriteImplicit, objectToExportTo) {
1270
- var parts = name.split("."), cur = objectToExportTo || goog.global;
1271
- parts[0] in cur || typeof cur.execScript == "undefined" || cur.execScript("var " + parts[0]);
1272
- for (var part; parts.length && (part = parts.shift());) {
1270
+ for (var parts = name.split("."), cur = objectToExportTo || goog.global, part; parts.length && (part = parts.shift());) {
1273
1271
  if (parts.length || object === void 0) {
1274
1272
  cur = cur[part] && cur[part] !== Object.prototype[part] ? cur[part] : cur[part] = {};
1275
1273
  } else {
@@ -1638,36 +1636,6 @@ goog.scope = function(fn) {
1638
1636
  }
1639
1637
  fn.call(goog.global);
1640
1638
  };
1641
- goog.defineClass = function(superClass, def) {
1642
- var constructor = def.constructor, statics = def.statics;
1643
- constructor && constructor != Object.prototype.constructor || (constructor = function() {
1644
- throw Error("cannot instantiate an interface (no constructor defined).");
1645
- });
1646
- var cls = goog.defineClass.createSealingConstructor_(constructor, superClass);
1647
- superClass && goog.inherits(cls, superClass);
1648
- delete def.constructor;
1649
- delete def.statics;
1650
- goog.defineClass.applyProperties_(cls.prototype, def);
1651
- statics != null && (statics instanceof Function ? statics(cls) : goog.defineClass.applyProperties_(cls, statics));
1652
- return cls;
1653
- };
1654
- goog.defineClass.SEAL_CLASS_INSTANCES = goog.DEBUG;
1655
- goog.defineClass.createSealingConstructor_ = function(ctr, superClass) {
1656
- return goog.defineClass.SEAL_CLASS_INSTANCES ? function() {
1657
- var instance = ctr.apply(this, arguments) || this;
1658
- instance[goog.UID_PROPERTY_] = instance[goog.UID_PROPERTY_];
1659
- return instance;
1660
- } : ctr;
1661
- };
1662
- goog.defineClass.OBJECT_PROTOTYPE_FIELDS_ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
1663
- goog.defineClass.applyProperties_ = function(target, source) {
1664
- for (var key in source) {
1665
- Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1666
- }
1667
- for (var i = 0; i < goog.defineClass.OBJECT_PROTOTYPE_FIELDS_.length; i++) {
1668
- key = goog.defineClass.OBJECT_PROTOTYPE_FIELDS_[i], Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1669
- }
1670
- };
1671
1639
  goog.identity_ = function(s) {
1672
1640
  return s;
1673
1641
  };
@@ -5414,21 +5382,24 @@ module$contents$goog$collections$maps_MapLike.prototype.has = function(key) {
5414
5382
  goog.collections.maps.MapLike = module$contents$goog$collections$maps_MapLike;
5415
5383
  goog.collections.maps.setAll = function(map, entries) {
5416
5384
  if (entries) {
5417
- for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$13$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$13$.done; $jscomp$key$1866876209$13$ = $jscomp$iter$24.next()) {
5418
- var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$13$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5385
+ for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$15$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$15$.done; $jscomp$key$1866876209$15$ = $jscomp$iter$24.next()) {
5386
+ var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$15$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5419
5387
  map.set(k, v);
5420
5388
  }
5421
5389
  }
5422
5390
  };
5423
5391
  goog.collections.maps.hasValue = function(map, val, valueEqualityFn) {
5424
5392
  valueEqualityFn = valueEqualityFn === void 0 ? module$contents$goog$collections$maps_defaultEqualityFn : valueEqualityFn;
5425
- for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$14$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$14$v.done; $jscomp$key$1866876209$14$v = $jscomp$iter$25.next()) {
5426
- if (valueEqualityFn($jscomp$key$1866876209$14$v.value, val)) {
5393
+ for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$16$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$16$v.done; $jscomp$key$1866876209$16$v = $jscomp$iter$25.next()) {
5394
+ if (valueEqualityFn($jscomp$key$1866876209$16$v.value, val)) {
5427
5395
  return !0;
5428
5396
  }
5429
5397
  }
5430
5398
  return !1;
5431
5399
  };
5400
+ goog.collections.maps.getWithDefault = function(map, key, defaultValue) {
5401
+ return map.has(key) ? map.get(key) : defaultValue;
5402
+ };
5432
5403
  var module$contents$goog$collections$maps_defaultEqualityFn = function(a, b) {
5433
5404
  return a === b;
5434
5405
  };
@@ -5440,8 +5411,8 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5440
5411
  if (map.size !== otherMap.size) {
5441
5412
  return !1;
5442
5413
  }
5443
- for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$15$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$15$key.done; $jscomp$key$1866876209$15$key = $jscomp$iter$26.next()) {
5444
- var key = $jscomp$key$1866876209$15$key.value;
5414
+ for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$26.next()) {
5415
+ var key = $jscomp$key$1866876209$17$key.value;
5445
5416
  if (!otherMap.has(key) || !valueEqualityFn(map.get(key), otherMap.get(key))) {
5446
5417
  return !1;
5447
5418
  }
@@ -5449,19 +5420,22 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5449
5420
  return !0;
5450
5421
  };
5451
5422
  goog.collections.maps.transpose = function(map) {
5452
- for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$16$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$16$key.done; $jscomp$key$1866876209$16$key = $jscomp$iter$27.next()) {
5453
- var key = $jscomp$key$1866876209$16$key.value, val = map.get(key);
5423
+ for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$18$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$18$key.done; $jscomp$key$1866876209$18$key = $jscomp$iter$27.next()) {
5424
+ var key = $jscomp$key$1866876209$18$key.value, val = map.get(key);
5454
5425
  transposed.set(val, key);
5455
5426
  }
5456
5427
  return transposed;
5457
5428
  };
5458
5429
  goog.collections.maps.toObject = function(map) {
5459
- for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$28.next()) {
5460
- var key = $jscomp$key$1866876209$17$key.value;
5430
+ for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$19$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$19$key.done; $jscomp$key$1866876209$19$key = $jscomp$iter$28.next()) {
5431
+ var key = $jscomp$key$1866876209$19$key.value;
5461
5432
  obj[key] = map.get(key);
5462
5433
  }
5463
5434
  return obj;
5464
5435
  };
5436
+ goog.collections.maps.clone = function(map) {
5437
+ return new map.constructor(map);
5438
+ };
5465
5439
  goog.structs = {};
5466
5440
  goog.structs.getCount = function(col) {
5467
5441
  return col.getCount && typeof col.getCount == "function" ? col.getCount() : goog.isArrayLike(col) || typeof col === "string" ? col.length : module$contents$goog$object_getCount(col);
@@ -19311,7 +19285,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19311
19285
  ee.apiclient = {};
19312
19286
  var module$contents$ee$apiclient_apiclient = {};
19313
19287
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19314
- ee.apiclient.API_CLIENT_VERSION = "1.5.1";
19288
+ ee.apiclient.API_CLIENT_VERSION = "1.5.2";
19315
19289
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19316
19290
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19317
19291
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19609,8 +19583,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19609
19583
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19610
19584
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19611
19585
  method = method || "POST";
19612
- var headers = {"Content-Type":contentType}, version = "1.5.1";
19613
- version === "1.5.1" && (version = "latest");
19586
+ var headers = {"Content-Type":contentType}, version = "1.5.2";
19587
+ version === "1.5.2" && (version = "latest");
19614
19588
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19615
19589
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19616
19590
  if (authToken != null) {
@@ -27128,28 +27102,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
27128
27102
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27129
27103
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27130
27104
  (function() {
27131
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.data.getList ee.data.updateAsset ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.startProcessing ee.data.createFolder ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.setAssetAcl ee.data.listAssets ee.data.getMapId ee.data.renameAsset ee.data.getTaskList ee.data.authenticate ee.data.setAssetProperties ee.data.getTableDownloadId ee.data.getTileUrl ee.data.copyAsset ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.deleteAsset ee.data.listOperations ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.listImages ee.data.getWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getAssetAcl ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.newTaskId ee.data.createAssetHome ee.data.setWorkloadTag ee.data.computeValue ee.data.getInfo ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.updateTask ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi 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.getMapId ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.and ee.Filter.prototype.not ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPolygon ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Image.cat ee.Image.prototype.select ee.Image.rgb ee.Image.prototype.expression ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.linkCollection 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(" "),
27132
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "),
27133
- "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(" "),
27134
- "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["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(" "),
27135
- "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(" "), ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name",
27136
- "operator", "value"], ["geometry"], ["start", "opt_end"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"],
27137
- ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "properties", "opt_callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"],
27138
- ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["id"], ["operationName", "opt_callback"], ["opt_success", "opt_error"], ["parent", "opt_params", "opt_callback"], [], ["params", "opt_callback"], ["assetId", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["opt_count", "opt_callback"],
27139
- ["requestedId", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27140
- ["func", "var_args"], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator",
27141
- "value"], ["var_args"], [], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_filter"], ["namedArgs"], ["var_args"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27142
- ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj"], ["var_args"], ["var_args"], ["r", "g", "b"], ["expression", "opt_map"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"],
27143
- ["opt_args"], ["params", "opt_callback"], ["geometry"], [], ["args"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27144
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, 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.toCloudStorage, module$contents$ee$batch_Export.table.toAsset,
27145
- module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
27146
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.data.getList, ee.data.updateAsset, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.startProcessing, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.listAssets, ee.data.getMapId, ee.data.renameAsset, ee.data.getTaskList, ee.data.authenticate, ee.data.setAssetProperties, ee.data.getTableDownloadId, ee.data.getTileUrl,
27147
- ee.data.copyAsset, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.listOperations, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.cancelOperation, ee.data.authenticateViaPopup, ee.data.listImages, ee.data.getWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.getAssetAcl, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27148
- ee.data.getOperation, ee.data.newTaskId, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.computeValue, ee.data.getInfo, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.updateTask, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
27149
- ee.initialize, ee.call, ee.reset, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMapId, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.eq, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.and,
27150
- ee.Filter.prototype.not, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Filter, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPolygon, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSON,
27151
- ee.Geometry.Point, ee.Image.cat, ee.Image.prototype.select, ee.Image.rgb, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select,
27152
- ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.linkCollection, 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) {
27105
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset 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.table.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.getList 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.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.getTableDownloadId ee.data.copyAsset ee.data.getTaskStatus ee.data.getTileUrl ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.listOperations ee.data.getWorkloadTag ee.data.getDownloadId ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.listImages ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.cancelTask ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.InitState ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.eq ee.Filter.lte ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.prototype.not ee.Filter.neq ee.Filter.and ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter ee.Filter.gte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry ee.Geometry.Point ee.Geometry.prototype.toGeoJSON ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.cat ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.clip ee.Image.rgb ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection 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(" "),
27106
+ orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices",
27107
+ "opt_priority"], ["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(" "), "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(" "),
27108
+ "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_folder opt_fileNamePrefix opt_fileFormat 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(" "),
27109
+ "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(" "), ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"],
27110
+ ["geometry"], ["name", "operator", "value"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["params", "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",
27111
+ "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "opt_callback"], ["id", "x", "y", "z"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"],
27112
+ ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], [], ["params", "opt_callback"], ["operationName", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"],
27113
+ ["opt_count", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], [], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27114
+ [], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["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"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator",
27115
+ "value"], [], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["opt_filter"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj",
27116
+ "opt_geodesic", "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"], [], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["expression", "opt_map"], ["var_args"],
27117
+ ["geometry"], ["r", "g", "b"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27118
+ [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage,
27119
+ module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterMetadata, ee.ComputedObject.prototype.evaluate,
27120
+ ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.getList, 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.data.getMapId, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.getTaskStatus,
27121
+ ee.data.getTileUrl, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.deleteAsset, ee.data.listOperations, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.listImages, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27122
+ ee.data.getOperation, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.newTaskId, ee.data.getInfo, ee.data.computeValue, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.getThumbId, ee.data.cancelTask, ee.data.resetWorkloadTag, ee.data.getVideoThumbId, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.InitState, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
27123
+ ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.eq, ee.Filter.lte, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.prototype.not,
27124
+ ee.Filter.neq, ee.Filter.and, ee.Filter.gt, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter, ee.Filter.gte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSON,
27125
+ ee.Image.prototype.select, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.cat, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.clip, ee.Image.rgb, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo,
27126
+ ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection, 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].forEach(function(fn, i) {
27153
27127
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27154
27128
  });
27155
27129
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
package/build/main.js CHANGED
@@ -1269,9 +1269,7 @@ GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_
1269
1269
  var isChrome87, goog = goog || {};
1270
1270
  goog.global = this || self;
1271
1271
  goog.exportPath_ = function(name, object, overwriteImplicit, objectToExportTo) {
1272
- var parts = name.split("."), cur = objectToExportTo || goog.global;
1273
- parts[0] in cur || typeof cur.execScript == "undefined" || cur.execScript("var " + parts[0]);
1274
- for (var part; parts.length && (part = parts.shift());) {
1272
+ for (var parts = name.split("."), cur = objectToExportTo || goog.global, part; parts.length && (part = parts.shift());) {
1275
1273
  if (parts.length || object === void 0) {
1276
1274
  cur = cur[part] && cur[part] !== Object.prototype[part] ? cur[part] : cur[part] = {};
1277
1275
  } else {
@@ -1640,36 +1638,6 @@ goog.scope = function(fn) {
1640
1638
  }
1641
1639
  fn.call(goog.global);
1642
1640
  };
1643
- goog.defineClass = function(superClass, def) {
1644
- var constructor = def.constructor, statics = def.statics;
1645
- constructor && constructor != Object.prototype.constructor || (constructor = function() {
1646
- throw Error("cannot instantiate an interface (no constructor defined).");
1647
- });
1648
- var cls = goog.defineClass.createSealingConstructor_(constructor, superClass);
1649
- superClass && goog.inherits(cls, superClass);
1650
- delete def.constructor;
1651
- delete def.statics;
1652
- goog.defineClass.applyProperties_(cls.prototype, def);
1653
- statics != null && (statics instanceof Function ? statics(cls) : goog.defineClass.applyProperties_(cls, statics));
1654
- return cls;
1655
- };
1656
- goog.defineClass.SEAL_CLASS_INSTANCES = goog.DEBUG;
1657
- goog.defineClass.createSealingConstructor_ = function(ctr, superClass) {
1658
- return goog.defineClass.SEAL_CLASS_INSTANCES ? function() {
1659
- var instance = ctr.apply(this, arguments) || this;
1660
- instance[goog.UID_PROPERTY_] = instance[goog.UID_PROPERTY_];
1661
- return instance;
1662
- } : ctr;
1663
- };
1664
- goog.defineClass.OBJECT_PROTOTYPE_FIELDS_ = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
1665
- goog.defineClass.applyProperties_ = function(target, source) {
1666
- for (var key in source) {
1667
- Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1668
- }
1669
- for (var i = 0; i < goog.defineClass.OBJECT_PROTOTYPE_FIELDS_.length; i++) {
1670
- key = goog.defineClass.OBJECT_PROTOTYPE_FIELDS_[i], Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);
1671
- }
1672
- };
1673
1641
  goog.identity_ = function(s) {
1674
1642
  return s;
1675
1643
  };
@@ -5416,21 +5384,24 @@ module$contents$goog$collections$maps_MapLike.prototype.has = function(key) {
5416
5384
  goog.collections.maps.MapLike = module$contents$goog$collections$maps_MapLike;
5417
5385
  goog.collections.maps.setAll = function(map, entries) {
5418
5386
  if (entries) {
5419
- for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$13$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$13$.done; $jscomp$key$1866876209$13$ = $jscomp$iter$24.next()) {
5420
- var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$13$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5387
+ for (var $jscomp$iter$24 = (0,$jscomp.makeIterator)(entries), $jscomp$key$1866876209$15$ = $jscomp$iter$24.next(); !$jscomp$key$1866876209$15$.done; $jscomp$key$1866876209$15$ = $jscomp$iter$24.next()) {
5388
+ var $jscomp$destructuring$var1 = (0,$jscomp.makeIterator)($jscomp$key$1866876209$15$.value), k = $jscomp$destructuring$var1.next().value, v = $jscomp$destructuring$var1.next().value;
5421
5389
  map.set(k, v);
5422
5390
  }
5423
5391
  }
5424
5392
  };
5425
5393
  goog.collections.maps.hasValue = function(map, val, valueEqualityFn) {
5426
5394
  valueEqualityFn = valueEqualityFn === void 0 ? module$contents$goog$collections$maps_defaultEqualityFn : valueEqualityFn;
5427
- for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$14$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$14$v.done; $jscomp$key$1866876209$14$v = $jscomp$iter$25.next()) {
5428
- if (valueEqualityFn($jscomp$key$1866876209$14$v.value, val)) {
5395
+ for (var $jscomp$iter$25 = (0,$jscomp.makeIterator)(map.values()), $jscomp$key$1866876209$16$v = $jscomp$iter$25.next(); !$jscomp$key$1866876209$16$v.done; $jscomp$key$1866876209$16$v = $jscomp$iter$25.next()) {
5396
+ if (valueEqualityFn($jscomp$key$1866876209$16$v.value, val)) {
5429
5397
  return !0;
5430
5398
  }
5431
5399
  }
5432
5400
  return !1;
5433
5401
  };
5402
+ goog.collections.maps.getWithDefault = function(map, key, defaultValue) {
5403
+ return map.has(key) ? map.get(key) : defaultValue;
5404
+ };
5434
5405
  var module$contents$goog$collections$maps_defaultEqualityFn = function(a, b) {
5435
5406
  return a === b;
5436
5407
  };
@@ -5442,8 +5413,8 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5442
5413
  if (map.size !== otherMap.size) {
5443
5414
  return !1;
5444
5415
  }
5445
- for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$15$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$15$key.done; $jscomp$key$1866876209$15$key = $jscomp$iter$26.next()) {
5446
- var key = $jscomp$key$1866876209$15$key.value;
5416
+ for (var $jscomp$iter$26 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$26.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$26.next()) {
5417
+ var key = $jscomp$key$1866876209$17$key.value;
5447
5418
  if (!otherMap.has(key) || !valueEqualityFn(map.get(key), otherMap.get(key))) {
5448
5419
  return !1;
5449
5420
  }
@@ -5451,19 +5422,22 @@ goog.collections.maps.equals = function(map, otherMap, valueEqualityFn) {
5451
5422
  return !0;
5452
5423
  };
5453
5424
  goog.collections.maps.transpose = function(map) {
5454
- for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$16$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$16$key.done; $jscomp$key$1866876209$16$key = $jscomp$iter$27.next()) {
5455
- var key = $jscomp$key$1866876209$16$key.value, val = map.get(key);
5425
+ for (var transposed = new Map(), $jscomp$iter$27 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$18$key = $jscomp$iter$27.next(); !$jscomp$key$1866876209$18$key.done; $jscomp$key$1866876209$18$key = $jscomp$iter$27.next()) {
5426
+ var key = $jscomp$key$1866876209$18$key.value, val = map.get(key);
5456
5427
  transposed.set(val, key);
5457
5428
  }
5458
5429
  return transposed;
5459
5430
  };
5460
5431
  goog.collections.maps.toObject = function(map) {
5461
- for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$17$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$17$key.done; $jscomp$key$1866876209$17$key = $jscomp$iter$28.next()) {
5462
- var key = $jscomp$key$1866876209$17$key.value;
5432
+ for (var obj = {}, $jscomp$iter$28 = (0,$jscomp.makeIterator)(map.keys()), $jscomp$key$1866876209$19$key = $jscomp$iter$28.next(); !$jscomp$key$1866876209$19$key.done; $jscomp$key$1866876209$19$key = $jscomp$iter$28.next()) {
5433
+ var key = $jscomp$key$1866876209$19$key.value;
5463
5434
  obj[key] = map.get(key);
5464
5435
  }
5465
5436
  return obj;
5466
5437
  };
5438
+ goog.collections.maps.clone = function(map) {
5439
+ return new map.constructor(map);
5440
+ };
5467
5441
  goog.structs = {};
5468
5442
  goog.structs.getCount = function(col) {
5469
5443
  return col.getCount && typeof col.getCount == "function" ? col.getCount() : goog.isArrayLike(col) || typeof col === "string" ? col.length : module$contents$goog$object_getCount(col);
@@ -19313,7 +19287,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19313
19287
  ee.apiclient = {};
19314
19288
  var module$contents$ee$apiclient_apiclient = {};
19315
19289
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19316
- ee.apiclient.API_CLIENT_VERSION = "1.5.1";
19290
+ ee.apiclient.API_CLIENT_VERSION = "1.5.2";
19317
19291
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19318
19292
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19319
19293
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19611,8 +19585,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19611
19585
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19612
19586
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19613
19587
  method = method || "POST";
19614
- var headers = {"Content-Type":contentType}, version = "1.5.1";
19615
- version === "1.5.1" && (version = "latest");
19588
+ var headers = {"Content-Type":contentType}, version = "1.5.2";
19589
+ version === "1.5.2" && (version = "latest");
19616
19590
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19617
19591
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19618
19592
  if (authToken != null) {
@@ -27130,28 +27104,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
27130
27104
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27131
27105
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27132
27106
  (function() {
27133
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.data.getList ee.data.updateAsset ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.startProcessing ee.data.createFolder ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.setAssetAcl ee.data.listAssets ee.data.getMapId ee.data.renameAsset ee.data.getTaskList ee.data.authenticate ee.data.setAssetProperties ee.data.getTableDownloadId ee.data.getTileUrl ee.data.copyAsset ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.deleteAsset ee.data.listOperations ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.listImages ee.data.getWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getAssetAcl ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.newTaskId ee.data.createAssetHome ee.data.setWorkloadTag ee.data.computeValue ee.data.getInfo ee.data.createAsset ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getTaskStatus ee.data.updateTask ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi 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.getMapId ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.eq ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.and ee.Filter.prototype.not ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPolygon ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Image.cat ee.Image.prototype.select ee.Image.rgb ee.Image.prototype.expression ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.linkCollection 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(" "),
27134
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "),
27135
- "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(" "),
27136
- "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["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(" "),
27137
- "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(" "), ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name",
27138
- "operator", "value"], ["geometry"], ["start", "opt_end"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"],
27139
- ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "properties", "opt_callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"],
27140
- ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["id"], ["operationName", "opt_callback"], ["opt_success", "opt_error"], ["parent", "opt_params", "opt_callback"], [], ["params", "opt_callback"], ["assetId", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["opt_count", "opt_callback"],
27141
- ["requestedId", "opt_callback"], ["tag"], ["obj", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27142
- ["func", "var_args"], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator",
27143
- "value"], ["var_args"], [], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_filter"], ["namedArgs"], ["var_args"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
27144
- ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj"], ["var_args"], ["var_args"], ["r", "g", "b"], ["expression", "opt_map"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"],
27145
- ["opt_args"], ["params", "opt_callback"], ["geometry"], [], ["args"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27146
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, 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.toCloudStorage, module$contents$ee$batch_Export.table.toAsset,
27147
- module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
27148
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.data.getList, ee.data.updateAsset, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.startProcessing, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.listAssets, ee.data.getMapId, ee.data.renameAsset, ee.data.getTaskList, ee.data.authenticate, ee.data.setAssetProperties, ee.data.getTableDownloadId, ee.data.getTileUrl,
27149
- ee.data.copyAsset, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.listOperations, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.cancelOperation, ee.data.authenticateViaPopup, ee.data.listImages, ee.data.getWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.getAssetAcl, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27150
- ee.data.getOperation, ee.data.newTaskId, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.computeValue, ee.data.getInfo, ee.data.createAsset, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getTaskStatus, ee.data.updateTask, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
27151
- ee.initialize, ee.call, ee.reset, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMapId, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.eq, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.and,
27152
- ee.Filter.prototype.not, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Filter, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPolygon, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSON,
27153
- ee.Geometry.Point, ee.Image.cat, ee.Image.prototype.select, ee.Image.rgb, ee.Image.prototype.expression, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select,
27154
- ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.linkCollection, 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) {
27107
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset 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.table.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.getList 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.data.getMapId ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.getTableDownloadId ee.data.copyAsset ee.data.getTaskStatus ee.data.getTileUrl ee.data.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.listOperations ee.data.getWorkloadTag ee.data.getDownloadId ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.listImages ee.data.getAssetAcl ee.data.authenticateViaPopup ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.newTaskId ee.data.getInfo ee.data.computeValue ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.getThumbId ee.data.cancelTask ee.data.resetWorkloadTag ee.data.getVideoThumbId ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.InitState ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.eq ee.Filter.lte ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.prototype.not ee.Filter.neq ee.Filter.and ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter ee.Filter.gte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry ee.Geometry.Point ee.Geometry.prototype.toGeoJSON ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.cat ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.prototype.clip ee.Image.rgb ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection 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(" "),
27108
+ orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices",
27109
+ "opt_priority"], ["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(" "), "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(" "),
27110
+ "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_folder opt_fileNamePrefix opt_fileFormat 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(" "),
27111
+ "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(" "), ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"],
27112
+ ["geometry"], ["name", "operator", "value"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["params", "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",
27113
+ "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "opt_callback"], ["id", "x", "y", "z"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"],
27114
+ ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], [], ["params", "opt_callback"], ["operationName", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["assetId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"],
27115
+ ["opt_count", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], [], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27116
+ [], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["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"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["name", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "operator",
27117
+ "value"], [], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["opt_filter"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj",
27118
+ "opt_geodesic", "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"], [], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["expression", "opt_map"], ["var_args"],
27119
+ ["geometry"], ["r", "g", "b"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27120
+ [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage,
27121
+ module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterMetadata, ee.ComputedObject.prototype.evaluate,
27122
+ ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.getList, 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.data.getMapId, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.getTaskStatus,
27123
+ ee.data.getTileUrl, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.deleteAsset, ee.data.listOperations, ee.data.getWorkloadTag, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.listImages, ee.data.getAssetAcl, ee.data.authenticateViaPopup, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey,
27124
+ ee.data.getOperation, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.newTaskId, ee.data.getInfo, ee.data.computeValue, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.getThumbId, ee.data.cancelTask, ee.data.resetWorkloadTag, ee.data.getVideoThumbId, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.InitState, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
27125
+ ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.eq, ee.Filter.lte, ee.Filter.date, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.prototype.not,
27126
+ ee.Filter.neq, ee.Filter.and, ee.Filter.gt, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter, ee.Filter.gte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSON,
27127
+ ee.Image.prototype.select, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.cat, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.prototype.clip, ee.Image.rgb, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo,
27128
+ ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection, 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].forEach(function(fn, i) {
27155
27129
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27156
27130
  });
27157
27131
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "JavaScript client for Google Earth Engine API.",
5
5
  "author": "Google LLC",
6
6
  "license": "Apache-2.0",
package/src/apiclient.js CHANGED
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
24
24
  /** @namespace */
25
25
  const apiclient = {};
26
26
 
27
- const API_CLIENT_VERSION = '1.5.1';
27
+ const API_CLIENT_VERSION = '1.5.2';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;