@google/earthengine 1.3.1 → 1.4.0

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
@@ -2079,6 +2079,12 @@ module$exports$tslib.__disposeResources = function(env) {
2079
2079
  };
2080
2080
  var module$exports$enable_goog_asserts = {}, module$contents$enable_goog_asserts_module = module$contents$enable_goog_asserts_module || {id:"javascript/common/asserts/enable_goog_asserts.closure.js"};
2081
2081
  module$exports$enable_goog_asserts.ENABLE_GOOG_ASSERTS = goog.DEBUG;
2082
+ var module$exports$common$async$context$propagate = {}, module$contents$common$async$context$propagate_module = module$contents$common$async$context$propagate_module || {id:"javascript/common/async/context/propagate.closure.js"};
2083
+ module$exports$common$async$context$propagate.propagateAsyncContext = typeof AsyncContext !== "undefined" && typeof AsyncContext.Snapshot === "function" ? function(fn) {
2084
+ return fn && AsyncContext.Snapshot.wrap(fn);
2085
+ } : function(fn) {
2086
+ return fn;
2087
+ };
2082
2088
  var module$exports$eeapiclient$domain_object = {}, module$contents$eeapiclient$domain_object_module = module$contents$eeapiclient$domain_object_module || {id:"javascript/typescript/contrib/apiclient/core/domain_object.closure.js"};
2083
2089
  module$exports$eeapiclient$domain_object.ObjectMapMetadata = function() {
2084
2090
  };
@@ -14950,6 +14956,7 @@ goog.Promise = function(resolver, opt_context) {
14950
14956
  }
14951
14957
  }
14952
14958
  };
14959
+ goog.Promise.wrap_ = module$exports$common$async$context$propagate.propagateAsyncContext;
14953
14960
  goog.Promise.LONG_STACK_TRACES = !1;
14954
14961
  goog.Promise.UNHANDLED_REJECTION_DELAY = 0;
14955
14962
  goog.Promise.State_ = {PENDING:0, BLOCKED:1, FULFILLED:2, REJECTED:3};
@@ -15064,7 +15071,7 @@ goog.Promise.prototype.then = function(opt_onFulfilled, opt_onRejected, opt_cont
15064
15071
  opt_onFulfilled != null && goog.asserts.assertFunction(opt_onFulfilled, "opt_onFulfilled should be a function.");
15065
15072
  opt_onRejected != null && goog.asserts.assertFunction(opt_onRejected, "opt_onRejected should be a function. Did you pass opt_context as the second argument instead of the third?");
15066
15073
  goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("then"));
15067
- return this.addChildPromise_(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null, typeof opt_onRejected === "function" ? opt_onRejected : null, opt_context);
15074
+ return this.addChildPromise_(module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onFulfilled === "function" ? opt_onFulfilled : null), module$exports$common$async$context$propagate.propagateAsyncContext(typeof opt_onRejected === "function" ? opt_onRejected : null), opt_context);
15068
15075
  };
15069
15076
  module$contents$goog$Thenable_Thenable.addImplementation(goog.Promise);
15070
15077
  goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_context) {
@@ -15075,14 +15082,14 @@ goog.Promise.prototype.thenVoid = function(opt_onFulfilled, opt_onRejected, opt_
15075
15082
  };
15076
15083
  goog.Promise.prototype.thenAlways = function(onSettled, opt_context) {
15077
15084
  goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenAlways"));
15078
- var entry = goog.Promise.getCallbackEntry_(onSettled, onSettled, opt_context);
15085
+ var wrapped = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled), entry = goog.Promise.getCallbackEntry_(wrapped, wrapped, opt_context);
15079
15086
  entry.always = !0;
15080
15087
  this.addCallbackEntry_(entry);
15081
15088
  return this;
15082
15089
  };
15083
15090
  goog.Promise.prototype.thenCatch = function(onRejected, opt_context) {
15084
15091
  goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("thenCatch"));
15085
- return this.addChildPromise_(null, onRejected, opt_context);
15092
+ return this.addChildPromise_(null, module$exports$common$async$context$propagate.propagateAsyncContext(onRejected), opt_context);
15086
15093
  };
15087
15094
  goog.Promise.prototype.catch = goog.Promise.prototype.thenCatch;
15088
15095
  goog.Promise.prototype.cancel = function(opt_message) {
@@ -19006,10 +19013,10 @@ goog.net.XhrIo.prototype.send = function(url, opt_method, opt_content, opt_heade
19006
19013
  this.errorDispatched_ = !1;
19007
19014
  this.active_ = !0;
19008
19015
  this.xhr_ = this.createXhr();
19009
- this.xhr_.onreadystatechange = goog.bind(this.onReadyStateChange_, this);
19010
- this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = goog.bind(function(e) {
19016
+ this.xhr_.onreadystatechange = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onReadyStateChange_, this));
19017
+ this.getProgressEventsEnabled() && "onprogress" in this.xhr_ && (this.xhr_.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(function(e) {
19011
19018
  this.onProgressHandler_(e, !0);
19012
- }, this), this.xhr_.upload && (this.xhr_.upload.onprogress = goog.bind(this.onProgressHandler_, this)));
19019
+ }, this)), this.xhr_.upload && (this.xhr_.upload.onprogress = (0,module$exports$common$async$context$propagate.propagateAsyncContext)(goog.bind(this.onProgressHandler_, this))));
19013
19020
  try {
19014
19021
  goog.log.fine(this.logger_, this.formatMsg_("Opening Xhr")), this.inOpen_ = !0, this.xhr_.open(method, String(url), !0), this.inOpen_ = !1;
19015
19022
  } catch (err) {
@@ -19274,7 +19281,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19274
19281
  ee.apiclient = {};
19275
19282
  var module$contents$ee$apiclient_apiclient = {};
19276
19283
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19277
- ee.apiclient.API_CLIENT_VERSION = "1.3.1";
19284
+ ee.apiclient.API_CLIENT_VERSION = "1.4.0";
19278
19285
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19279
19286
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19280
19287
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19572,8 +19579,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19572
19579
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19573
19580
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19574
19581
  method = method || "POST";
19575
- var headers = {"Content-Type":contentType}, version = "1.3.1";
19576
- version === "1.3.1" && (version = "latest");
19582
+ var headers = {"Content-Type":contentType}, version = "1.4.0";
19583
+ version === "1.4.0" && (version = "latest");
19577
19584
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19578
19585
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19579
19586
  if (authToken != null) {
@@ -25042,10 +25049,10 @@ goog.fs.FileReader.createDeferred_ = function(reader) {
25042
25049
  };
25043
25050
  goog.dom.vendor = {};
25044
25051
  goog.dom.vendor.getVendorJsPrefix = function() {
25045
- return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : goog.userAgent.IE ? "ms" : null;
25052
+ return goog.userAgent.WEBKIT ? "Webkit" : goog.userAgent.GECKO ? "Moz" : null;
25046
25053
  };
25047
25054
  goog.dom.vendor.getVendorPrefix = function() {
25048
- return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : goog.userAgent.IE ? "-ms" : null;
25055
+ return goog.userAgent.WEBKIT ? "-webkit" : goog.userAgent.GECKO ? "-moz" : null;
25049
25056
  };
25050
25057
  goog.dom.vendor.getPrefixedPropertyName = function(propertyName, opt_object) {
25051
25058
  if (opt_object && propertyName in opt_object) {
@@ -27095,29 +27102,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27095
27102
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27096
27103
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27097
27104
  (function() {
27098
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call ee.batch.Export.table.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.image.toDrive 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.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.Collection.prototype.filterMetadata ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.map ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.setAssetProperties ee.data.getTaskList ee.data.authenticate ee.data.copyAsset ee.data.getTileUrl ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.listBuckets ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.getWorkloadTag ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.listOperations ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.getAssetAcl ee.data.makeDownloadUrl ee.data.cancelOperation ee.data.getFeatureViewTilesKey ee.data.listImages ee.data.listFeatures ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.setWorkloadTag 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.makeThumbUrl ee.data.startProcessing ee.data.setAssetAcl ee.data.authenticateViaOauth ee.data.renameAsset ee.data.getMapId ee.data.listAssets ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.call ee.reset ee.initialize ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter ee.Filter.eq ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.neq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPolygon ee.Geometry.BBox ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.MultiPoint ee.Geometry.Polygon ee.Image.rgb ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.rename ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.List ee.Number ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
27099
- orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27100
- ["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(" "),
27101
- "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27102
- "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
27103
- ["name", "operator", "value"], ["property", "opt_ascending"], ["geometry"], ["start", "opt_end"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["filter"], ["algorithm", "opt_dropNulls"], ["func", "var_args"], ["legacy"], ["callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["id", "x", "y",
27104
- "z"], ["params", "opt_callback"], ["id"], ["project", "opt_callback"], ["assetId", "opt_callback"], ["rootId", "opt_callback"], [], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["opt_limit", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "opt_callback"], ["id"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"],
27105
- ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["tag"], ["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",
27106
- "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], ["taskId", "params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["sourceId", "destinationId", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"],
27107
- ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "var_args"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], [], ["func", "namedArgs"], [], ["var_args"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"],
27108
- ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["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", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], ["namedArgs"], ["var_args"], ["legacy"], ["geoJson", "opt_proj",
27109
- "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["west", "south", "east", "north"], ["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"], ["r", "g",
27110
- "b"], ["params", "opt_callback"], ["opt_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["expression", "opt_map"], ["geometry"], ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"],
27111
- [], ["params", "opt_callback"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
27112
- [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery,
27113
- 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, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.map, ee.ComputedObject.prototype.aside,
27114
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.setAssetProperties, ee.data.getTaskList, ee.data.authenticate, ee.data.copyAsset, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.listBuckets, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.getWorkloadTag, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.listOperations, ee.data.getDownloadId, ee.data.authenticateViaPopup,
27115
- ee.data.getAssetAcl, ee.data.makeDownloadUrl, ee.data.cancelOperation, ee.data.getFeatureViewTilesKey, ee.data.listImages, ee.data.listFeatures, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.setWorkloadTag, 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,
27116
- ee.data.getTaskStatus, ee.data.updateTask, ee.data.getList, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.startProcessing, ee.data.setAssetAcl, ee.data.authenticateViaOauth, ee.data.renameAsset, ee.data.getMapId, ee.data.listAssets, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.call, ee.reset, ee.initialize, ee.Algorithms, ee.InitState, ee.apply,
27117
- ee.TILE_SIZE, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.Filter.gt, ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not,
27118
- ee.Filter, ee.Filter.eq, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.neq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Point, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPolygon, ee.Geometry.BBox, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.MultiPoint, ee.Geometry.Polygon, ee.Image.rgb,
27119
- ee.Image.prototype.getThumbURL, ee.Image, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.select, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.cat, ee.Image.prototype.rename, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap,
27120
- ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27105
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.limit ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.startProcessing ee.data.createFolder ee.data.authenticateViaOauth ee.data.makeThumbUrl ee.data.setAssetAcl ee.data.getMapId ee.data.listAssets ee.data.renameAsset ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.getTileUrl ee.data.getTableDownloadId ee.data.copyAsset ee.data.makeTableDownloadUrl ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.listOperations ee.data.startTableIngestion ee.data.deleteAsset ee.data.getAssetRootQuota ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.listImages ee.data.listFeatures ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getAsset ee.data.getAssetRoots ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.createAssetHome ee.data.setWorkloadTag ee.data.newTaskId 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.data.getFilmstripThumbId ee.data.updateAsset ee.data.getList ee.data.startIngestion ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.InitState ee.apply ee.TILE_SIZE ee.call ee.initialize ee.reset ee.Algorithms ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.Filter.date ee.Filter ee.Filter.metadata ee.Filter.bounds ee.Filter.and ee.Filter.neq ee.Filter.gt ee.Filter.lt ee.Filter.inList ee.Filter.or ee.Filter.prototype.not ee.Filter.lte ee.Filter.gte ee.Filter.eq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.LineString ee.Geometry.prototype.serialize ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.BBox ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiLineString ee.Geometry ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.clip ee.Image ee.Image.prototype.expression ee.Image.cat ee.Image.rgb ee.Image.prototype.select ee.Image.prototype.rename ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.first ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
27106
+ orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
27107
+ "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(" "),
27108
+ "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(" "),
27109
+ ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27110
+ ["start", "opt_end"], ["filter"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["max", "opt_property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_first"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["id"], ["assetId", "aclUpdate", "opt_callback"],
27111
+ ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["id"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"],
27112
+ ["assetId", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["operationName", "opt_callback"], ["id"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["asset", "params", "opt_callback"], ["assetId", "opt_callback"], [], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"],
27113
+ ["tag"], ["opt_count", "opt_callback"], ["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"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["date", "opt_tz"],
27114
+ ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "namedArgs"], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], [], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_format",
27115
+ "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["start", "opt_end"], ["opt_filter"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], [], ["name", "value"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError",
27116
+ "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["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_maxError"], ["opt_callback"], ["opt_visParams", "opt_callback"],
27117
+ ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["opt_args"], ["expression", "opt_map"], ["var_args"], ["r", "g", "b"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"],
27118
+ [], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27119
+ [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset,
27120
+ module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.limit, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.evaluate,
27121
+ ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.startProcessing, ee.data.createFolder, ee.data.authenticateViaOauth, ee.data.makeThumbUrl, ee.data.setAssetAcl, ee.data.getMapId, ee.data.listAssets, ee.data.renameAsset, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.makeTableDownloadUrl, ee.data.listBuckets, ee.data.getTaskListWithLimit,
27122
+ ee.data.listOperations, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.getAssetRootQuota, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.listImages, ee.data.listFeatures, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getAsset, ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.createAssetHome, ee.data.setWorkloadTag, ee.data.newTaskId, ee.data.computeValue,
27123
+ 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.data.getFilmstripThumbId, ee.data.updateAsset, ee.data.getList, ee.data.startIngestion, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.InitState, ee.apply, ee.TILE_SIZE, ee.call, ee.initialize, ee.reset,
27124
+ ee.Algorithms, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.Filter.date, ee.Filter, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.and, ee.Filter.neq, ee.Filter.gt,
27125
+ ee.Filter.lt, ee.Filter.inList, ee.Filter.or, ee.Filter.prototype.not, ee.Filter.lte, ee.Filter.gte, ee.Filter.eq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.LineString, ee.Geometry.prototype.serialize, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiLineString, ee.Geometry, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Image.prototype.getInfo,
27126
+ ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.expression, ee.Image.cat, ee.Image.rgb, ee.Image.prototype.select, ee.Image.prototype.rename, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.select,
27127
+ ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.first, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
27121
27128
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27122
27129
  });
27123
27130
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;