@google/earthengine 1.5.17 → 1.5.19

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/main.js CHANGED
@@ -1207,6 +1207,62 @@ $jscomp.polyfill("Array.prototype.find", function(orig) {
1207
1207
  return $jscomp.findInternal(this, callback, opt_thisArg).v;
1208
1208
  };
1209
1209
  }, "es6", "es3");
1210
+ $jscomp.polyfill("Set.prototype.difference", function(orig) {
1211
+ return orig ? orig : function(other) {
1212
+ $jscomp.checkIsSetInstance(this);
1213
+ $jscomp.checkIsSetLike(other);
1214
+ for (var sets = $jscomp.getSmallerAndLargerSets(this, other), resultSet = new Set(this), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
1215
+ largerSet.has(next.value) && resultSet.delete(next.value), next = smallerSetIterator.next();
1216
+ }
1217
+ return resultSet;
1218
+ };
1219
+ }, "es_next", "es6");
1220
+ $jscomp.polyfill("Set.prototype.intersection", function(orig) {
1221
+ return orig ? orig : function(other) {
1222
+ $jscomp.checkIsSetInstance(this);
1223
+ $jscomp.checkIsSetLike(other);
1224
+ for (var resultSet = new Set(), sets = $jscomp.getSmallerAndLargerSets(this, other), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
1225
+ largerSet.has(next.value) && resultSet.add(next.value), next = smallerSetIterator.next();
1226
+ }
1227
+ return resultSet;
1228
+ };
1229
+ }, "es_next", "es6");
1230
+ $jscomp.polyfill("Set.prototype.isSubsetOf", function(orig) {
1231
+ return orig ? orig : function(other) {
1232
+ $jscomp.checkIsSetInstance(this);
1233
+ $jscomp.checkIsSetLike(other);
1234
+ if (this.size > other.size) {
1235
+ return !1;
1236
+ }
1237
+ for (var iterator = this.keys(), next = iterator.next(); !next.done;) {
1238
+ if (!other.has(next.value)) {
1239
+ return !1;
1240
+ }
1241
+ next = iterator.next();
1242
+ }
1243
+ return !0;
1244
+ };
1245
+ }, "es_next", "es6");
1246
+ $jscomp.checkIsSetLike = function(other) {
1247
+ if (typeof other !== "object" || other === null || typeof other.size !== "number" || other.size < 0 || typeof other.keys !== "function" || typeof other.has !== "function") {
1248
+ throw new TypeError("Argument must be set-like");
1249
+ }
1250
+ };
1251
+ $jscomp.checkIsValidIterator = function(iterator) {
1252
+ if (typeof iterator !== "object" || iterator === null || typeof iterator.next !== "function") {
1253
+ throw new TypeError("Invalid iterator.");
1254
+ }
1255
+ return iterator;
1256
+ };
1257
+ $jscomp.getSmallerAndLargerSets = function(thisSet, otherSet) {
1258
+ var smallerSetIterator, largerSet;
1259
+ return thisSet.size <= otherSet.size ? {smallerSetIterator:thisSet.keys(), largerSet:otherSet} : {smallerSetIterator:$jscomp.checkIsValidIterator(otherSet.keys()), largerSet:thisSet};
1260
+ };
1261
+ $jscomp.checkIsSetInstance = function(obj) {
1262
+ if (!(obj instanceof Set)) {
1263
+ throw new TypeError("Method must be called on an instance of Set.");
1264
+ }
1265
+ };
1210
1266
  $jscomp.polyfill("String.prototype.codePointAt", function(orig) {
1211
1267
  return orig ? orig : function(position) {
1212
1268
  var string = $jscomp.checkStringArgs(this, null, "codePointAt"), size = string.length;
@@ -1260,7 +1316,7 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
1260
1316
  };
1261
1317
  }, "es8", "es3");
1262
1318
  var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_lazy_tsx__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__disable_wiz_service_logging_map__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1,
1263
- GoogFlags__optimize_scs_js_url_clone__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
1319
+ GoogFlags__optimize_scs_js_url_clone__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
1264
1320
  /*
1265
1321
 
1266
1322
  Copyright The Closure Library Authors.
@@ -1439,7 +1495,6 @@ goog.loadedModules_ = {};
1439
1495
  goog.DEPENDENCIES_ENABLED = !1;
1440
1496
  goog.ASSUME_ES_MODULES_TRANSPILED = !1;
1441
1497
  goog.TRUSTED_TYPES_POLICY_NAME = "goog";
1442
- goog.hasBadLetScoping = null;
1443
1498
  goog.loadModule = function(moduleDef) {
1444
1499
  var previousState = goog.moduleLoaderState_;
1445
1500
  try {
@@ -6464,7 +6519,6 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native
6464
6519
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
6465
6520
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
6466
6521
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable = !1;
6467
- module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
6468
6522
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable = !1;
6469
6523
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable = !1;
6470
6524
  module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
@@ -6483,7 +6537,6 @@ goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etogg
6483
6537
  goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
6484
6538
  goog.flags.JSPB_USE_CONSTANT_DEFAULT_PIVOT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable : goog.readFlagInternalDoNotUseOrElse(748402145, goog.DEBUG);
6485
6539
  goog.flags.JSPB_SERIALIZE_WITH_DYNAMIC_PIVOT_SELECTOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable : goog.readFlagInternalDoNotUseOrElse(748402146, goog.DEBUG);
6486
- goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
6487
6540
  goog.flags.OPTIMIZE_SCS_JS_URL_CLONE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable : goog.readFlagInternalDoNotUseOrElse(103340015, !1);
6488
6541
  goog.flags.DISABLE_WIZ_SERVICE_LOGGING_MAP = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable : goog.readFlagInternalDoNotUseOrElse(555019702, !1);
6489
6542
  goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
@@ -19374,7 +19427,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19374
19427
  ee.apiclient = {};
19375
19428
  var module$contents$ee$apiclient_apiclient = {};
19376
19429
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19377
- ee.apiclient.API_CLIENT_VERSION = "1.5.17";
19430
+ ee.apiclient.API_CLIENT_VERSION = "1.5.19";
19378
19431
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19379
19432
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19380
19433
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19672,8 +19725,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19672
19725
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19673
19726
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19674
19727
  method = method || "POST";
19675
- var headers = {"Content-Type":contentType}, version = "1.5.17";
19676
- version === "1.5.17" && (version = "latest");
19728
+ var headers = {"Content-Type":contentType}, version = "1.5.19";
19729
+ version === "1.5.19" && (version = "latest");
19677
19730
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19678
19731
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19679
19732
  if (authToken != null) {
@@ -26175,8 +26228,6 @@ ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile.p
26175
26228
  }, void 0, this);
26176
26229
  reader.readAsArrayBuffer(this.sourceData);
26177
26230
  };
26178
- ee.layers.BinaryOverlay = ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay;
26179
- ee.layers.BinaryTile = ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile;
26180
26231
  goog.net.ImageLoader = function(opt_parent) {
26181
26232
  goog.events.EventTarget.call(this);
26182
26233
  this.imageIdToRequestMap_ = {};
@@ -26282,8 +26333,6 @@ ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.def
26282
26333
  tile.div.appendChild(tile.imageEl);
26283
26334
  };
26284
26335
  ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [goog.events.EventType.LOAD, goog.net.EventType.ABORT, goog.net.EventType.ERROR];
26285
- ee.layers.ImageOverlay = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay;
26286
- ee.layers.ImageTile = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile;
26287
26336
  goog.string.path = {};
26288
26337
  goog.string.path.baseName = function(path) {
26289
26338
  var i = path.lastIndexOf("/") + 1;
@@ -27200,29 +27249,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27200
27249
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27201
27250
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27202
27251
  (function() {
27203
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction._call ee.ApiFunction.lookup ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.table.toBigQuery ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.Collection.prototype.filterBounds ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.Collection.prototype.map ee.Collection.prototype.sort ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.listImages ee.data.setAssetAcl ee.data.listBuckets ee.data.newTaskId ee.data.setAssetProperties ee.data.getAssetRoots ee.data.getMapId ee.data.getTaskStatus ee.data.getAssetRootQuota ee.data.createAssetHome ee.data.startIngestion ee.data.getTileUrl ee.data.createAsset ee.data.getWorkloadTag ee.data.getTaskList ee.data.setWorkloadTag ee.data.createFolder ee.data.getFeatureViewTilesKey ee.data.setDefaultWorkloadTag ee.data.getTaskListWithLimit ee.data.listOperations ee.data.resetWorkloadTag ee.data.startTableIngestion ee.data.renameAsset ee.data.listFeatures ee.data.cancelOperation ee.data.computeValue ee.data.copyAsset ee.data.getOperation ee.data.getAsset ee.data.getThumbId ee.data.deleteAsset ee.data.cancelTask ee.data.authenticateViaOauth ee.data.getInfo ee.data.getAssetAcl ee.data.getFilmstripThumbId ee.data.updateTask ee.data.makeThumbUrl ee.data.authenticate ee.data.getList ee.data.listAssets ee.data.getVideoThumbId ee.data.authenticateViaPopup ee.data.startProcessing ee.data.updateAsset ee.data.authenticateViaPrivateKey ee.data.getDownloadId ee.data.makeDownloadUrl ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.reset ee.Algorithms ee.InitState ee.initialize ee.call ee.apply ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.Filter.neq ee.Filter.lte ee.Filter.and ee.Filter.lt ee.Filter.gte ee.Filter.prototype.not ee.Filter.bounds ee.Filter.or ee.Filter.date ee.Filter ee.Filter.eq ee.Filter.metadata ee.Filter.gt ee.Filter.inList ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.MultiPoint ee.Geometry.prototype.toGeoJSON ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.prototype.serialize ee.Geometry.LineString ee.Geometry.Rectangle ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.Point ee.Geometry.LinearRing ee.Geometry.BBox ee.Geometry.MultiLineString ee.Image.prototype.expression ee.Image ee.Image.prototype.getMapId ee.Image.prototype.clip ee.Image.prototype.rename ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getInfo ee.Image.prototype.getDownloadURL ee.Image.prototype.select ee.Image.cat ee.Image.rgb ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.String ee.Terrain".split(" "),
27204
- orderedParamLists = [["name", "namedArgs"], ["name", "var_args"], ["name"], "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(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "),
27205
- "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "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(" "),
27206
- ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices 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(" "),
27207
- "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_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(" "),
27208
- ["geometry"], ["filter"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["start", "opt_end"], ["algorithm", "opt_first"], ["algorithm", "opt_dropNulls"], ["property", "opt_ascending"], ["opt_callback"], ["func", "var_args"], ["legacy"], ["callback"], ["params", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["project", "opt_callback"], ["opt_count", "opt_callback"], ["assetId", "properties", "opt_callback"],
27209
- ["opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["rootId", "opt_callback"], ["requestedId", "opt_callback"], ["taskId", "request", "opt_callback"], ["id", "x", "y", "z"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], [], ["opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["tag"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_resetDefault"], ["taskId", "request", "opt_callback"], ["sourceId",
27210
- "destinationId", "opt_callback"], ["asset", "params", "opt_callback"], ["operationName", "opt_callback"], ["obj", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["operationName", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["id", "opt_callback"], ["assetId", "opt_callback"], ["params",
27211
- "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["taskId", "params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["id"], ["date",
27212
- "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"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_format", "opt_selectors", "opt_filename",
27213
- "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["name", "value"], ["name", "value"], ["var_args"], ["name", "value"], ["name", "value"], [], ["geometry", "opt_errorMargin"], ["var_args"], ["start", "opt_end"], ["opt_filter"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["namedArgs"], ["coords", "opt_proj"], [], ["coords", "opt_proj",
27214
- "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["expression", "opt_map"],
27215
- ["opt_args"], ["opt_visParams", "opt_callback"], ["geometry"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["r", "g", "b"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], [], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["params",
27216
- "opt_callback"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
27217
- [ee.ApiFunction._apply, ee.ApiFunction._call, ee.ApiFunction.lookup, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toCloudStorage,
27218
- module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.Collection.prototype.map, ee.Collection.prototype.sort, ee.ComputedObject.prototype.getInfo,
27219
- ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.listImages, ee.data.setAssetAcl, ee.data.listBuckets, ee.data.newTaskId, ee.data.setAssetProperties, ee.data.getAssetRoots, ee.data.getMapId, ee.data.getTaskStatus, ee.data.getAssetRootQuota, ee.data.createAssetHome, ee.data.startIngestion, ee.data.getTileUrl, ee.data.createAsset, ee.data.getWorkloadTag, ee.data.getTaskList,
27220
- ee.data.setWorkloadTag, ee.data.createFolder, ee.data.getFeatureViewTilesKey, ee.data.setDefaultWorkloadTag, ee.data.getTaskListWithLimit, ee.data.listOperations, ee.data.resetWorkloadTag, ee.data.startTableIngestion, ee.data.renameAsset, ee.data.listFeatures, ee.data.cancelOperation, ee.data.computeValue, ee.data.copyAsset, ee.data.getOperation, ee.data.getAsset, ee.data.getThumbId, ee.data.deleteAsset, ee.data.cancelTask, ee.data.authenticateViaOauth, ee.data.getInfo, ee.data.getAssetAcl, ee.data.getFilmstripThumbId,
27221
- ee.data.updateTask, ee.data.makeThumbUrl, ee.data.authenticate, ee.data.getList, ee.data.listAssets, ee.data.getVideoThumbId, ee.data.authenticateViaPopup, ee.data.startProcessing, ee.data.updateAsset, ee.data.authenticateViaPrivateKey, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.reset, ee.Algorithms, ee.InitState, ee.initialize, ee.call, ee.apply, ee.TILE_SIZE,
27222
- ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.Filter.neq, ee.Filter.lte, ee.Filter.and, ee.Filter.lt, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.bounds,
27223
- ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.eq, ee.Filter.metadata, ee.Filter.gt, ee.Filter.inList, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.MultiPoint, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.prototype.serialize, ee.Geometry.LineString, ee.Geometry.Rectangle, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.BBox, ee.Geometry.MultiLineString, ee.Image.prototype.expression,
27224
- ee.Image, ee.Image.prototype.getMapId, ee.Image.prototype.clip, ee.Image.prototype.rename, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getInfo, ee.Image.prototype.getDownloadURL, ee.Image.prototype.select, ee.Image.cat, ee.Image.rgb, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.linkCollection,
27225
- ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
27252
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.image.toAsset ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.sort ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.authenticateViaPrivateKey ee.data.getTableDownloadId ee.data.listImages ee.data.setAssetAcl ee.data.makeTableDownloadUrl ee.data.authenticateViaOauth ee.data.authenticateViaPopup ee.data.listBuckets ee.data.setAssetProperties ee.data.newTaskId ee.data.getAssetRoots ee.data.getAssetRootQuota ee.data.createAssetHome ee.data.getTaskStatus ee.data.startIngestion ee.data.getWorkloadTag ee.data.getTaskList ee.data.getTileUrl ee.data.createAsset ee.data.setWorkloadTag ee.data.getMapId ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.resetWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.cancelOperation ee.data.renameAsset ee.data.listFeatures ee.data.startTableIngestion ee.data.copyAsset ee.data.computeValue ee.data.listOperations ee.data.getOperation ee.data.deleteAsset ee.data.getAsset ee.data.getVideoThumbId ee.data.getInfo ee.data.cancelTask ee.data.getAssetAcl ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.getList ee.data.updateTask ee.data.makeThumbUrl ee.data.listAssets ee.data.authenticate ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.Algorithms ee.reset ee.InitState ee.call ee.apply ee.TILE_SIZE ee.initialize ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMapId ee.Filter.inList ee.Filter.lte ee.Filter.and ee.Filter.lt ee.Filter.prototype.not ee.Filter.bounds ee.Filter ee.Filter.or ee.Filter.gte ee.Filter.eq ee.Filter.metadata ee.Filter.date ee.Filter.gt ee.Filter.neq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.getDownloadURL ee.Image.prototype.select ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.clip ee.Image.prototype.getMapId ee.Image.rgb ee.Image ee.Image.prototype.expression ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.rename ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApi ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27253
+ orderedParamLists = [["name"], ["name", "var_args"], ["name", "namedArgs"], "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"], "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(" "),
27254
+ ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27255
+ "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "image opt_description opt_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(" "),
27256
+ "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27257
+ ["algorithm", "opt_dropNulls"], ["property", "opt_ascending"], ["start", "opt_end"], ["filter"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["geometry"], ["algorithm", "opt_first"], ["legacy"], ["func", "var_args"], ["callback"], ["opt_callback"], ["params", "opt_callback"], ["id"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "aclUpdate",
27258
+ "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["opt_success", "opt_error"], ["project", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_count", "opt_callback"], ["opt_callback"], ["rootId", "opt_callback"], ["requestedId", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], [], ["opt_callback"], ["id", "x", "y", "z"], ["value", "opt_path", "opt_force", "opt_properties",
27259
+ "opt_callback"], ["tag"], ["params", "opt_callback"], ["params", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["asset", "params", "opt_callback"], ["taskId", "request", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["obj", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName",
27260
+ "opt_callback"], ["assetId", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["taskId", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "asset", "updateFields", "opt_callback"], ["date",
27261
+ "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [], ["func", "var_args"], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["var_args"], [], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"],
27262
+ ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], [], ["geometry", "opt_errorMargin"], ["opt_filter"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["west", "south", "east", "north"], ["coords", "opt_proj",
27263
+ "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["params", "opt_callback"], ["var_args"],
27264
+ ["var_args"], ["opt_callback"], ["geometry"], ["opt_visParams", "opt_callback"], ["r", "g", "b"], ["opt_args"], ["expression", "opt_map"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], [], ["args"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["params",
27265
+ "opt_callback"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27266
+ [ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage,
27267
+ module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.sort, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.serialize,
27268
+ ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.authenticateViaPrivateKey, ee.data.getTableDownloadId, ee.data.listImages, ee.data.setAssetAcl, ee.data.makeTableDownloadUrl, ee.data.authenticateViaOauth, ee.data.authenticateViaPopup, ee.data.listBuckets, ee.data.setAssetProperties, ee.data.newTaskId, ee.data.getAssetRoots, ee.data.getAssetRootQuota, ee.data.createAssetHome, ee.data.getTaskStatus,
27269
+ ee.data.startIngestion, ee.data.getWorkloadTag, ee.data.getTaskList, ee.data.getTileUrl, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.getMapId, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.createFolder, ee.data.resetWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit, ee.data.cancelOperation, ee.data.renameAsset, ee.data.listFeatures, ee.data.startTableIngestion, ee.data.copyAsset, ee.data.computeValue, ee.data.listOperations, ee.data.getOperation, ee.data.deleteAsset,
27270
+ ee.data.getAsset, ee.data.getVideoThumbId, ee.data.getInfo, ee.data.cancelTask, ee.data.getAssetAcl, ee.data.startProcessing, ee.data.getFilmstripThumbId, ee.data.getList, ee.data.updateTask, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.authenticate, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.Algorithms, ee.reset, ee.InitState, ee.call, ee.apply, ee.TILE_SIZE, ee.initialize,
27271
+ ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMapId, ee.Filter.inList, ee.Filter.lte, ee.Filter.and, ee.Filter.lt, ee.Filter.prototype.not, ee.Filter.bounds, ee.Filter, ee.Filter.or,
27272
+ ee.Filter.gte, ee.Filter.eq, ee.Filter.metadata, ee.Filter.date, ee.Filter.gt, ee.Filter.neq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.getDownloadURL,
27273
+ ee.Image.prototype.select, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.clip, ee.Image.prototype.getMapId, ee.Image.rgb, ee.Image, ee.Image.prototype.expression, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.rename, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection,
27274
+ ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApi, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27226
27275
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27227
27276
  });
27228
27277
  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.17",
3
+ "version": "1.5.19",
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.index');
24
24
  /** @namespace */
25
25
  const apiclient = {};
26
26
 
27
- const API_CLIENT_VERSION = '1.5.17';
27
+ const API_CLIENT_VERSION = '1.5.19';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
@@ -1,10 +1,7 @@
1
1
  goog.provide('ee.layers.AbstractOverlay');
2
2
  goog.provide('ee.layers.AbstractTile');
3
- goog.provide('ee.layers.TileAbortEvent');
4
3
  goog.provide('ee.layers.TileFailEvent');
5
4
  goog.provide('ee.layers.TileLoadEvent');
6
- goog.provide('ee.layers.TileStartEvent');
7
- goog.provide('ee.layers.TileThrottleEvent');
8
5
 
9
6
  goog.forwardDeclare('ee.data.PROFILE_REQUEST_HEADER');
10
7
  goog.require('ee.data');
@@ -1,5 +1,3 @@
1
- goog.provide('ee.layers.BinaryOverlay');
2
- goog.provide('ee.layers.BinaryTile');
3
1
  goog.provide('earthengine_api.javascript.layers.binaryoverlay');
4
2
 
5
3
  goog.require('ee.layers.AbstractOverlay');
@@ -116,10 +114,4 @@ earthengine_api.javascript.layers.binaryoverlay.BinaryTile =
116
114
  }
117
115
  };
118
116
 
119
- /** @const */
120
- ee.layers.BinaryOverlay = earthengine_api.javascript.layers
121
- .binaryoverlay.BinaryOverlay;
122
117
 
123
- /** @const */
124
- ee.layers.BinaryTile = earthengine_api.javascript.layers
125
- .binaryoverlay.BinaryTile;
@@ -1,5 +1,3 @@
1
- goog.provide('ee.layers.ImageOverlay');
2
- goog.provide('ee.layers.ImageTile');
3
1
  goog.provide('earthengine_api.javascript.layers.imageoverlay');
4
2
 
5
3
  goog.require('ee.layers.AbstractOverlay');
@@ -152,10 +150,4 @@ earthengine_api.javascript.layers.imageoverlay.ImageTile
152
150
  goog.events.EventType.LOAD, goog.net.EventType.ABORT, goog.net.EventType.ERROR
153
151
  ];
154
152
 
155
- /** @const */
156
- ee.layers.ImageOverlay = earthengine_api.javascript.layers
157
- .imageoverlay.ImageOverlay;
158
153
 
159
- /** @const */
160
- ee.layers.ImageTile = earthengine_api.javascript.layers
161
- .imageoverlay.ImageTile;