@google/earthengine 1.6.13 → 1.6.15

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
@@ -1,14 +1,5 @@
1
1
  var $jscomp = $jscomp || {};
2
2
  $jscomp.scope = {};
3
- $jscomp.arrayIteratorImpl = function(array) {
4
- var index = 0;
5
- return function() {
6
- return index < array.length ? {done:!1, value:array[index++]} : {done:!0};
7
- };
8
- };
9
- $jscomp.arrayIterator = function(array) {
10
- return {next:$jscomp.arrayIteratorImpl(array)};
11
- };
12
3
  $jscomp.ASSUME_ES5 = !1;
13
4
  $jscomp.ASSUME_ES6 = !1;
14
5
  $jscomp.ASSUME_ES2020 = !1;
@@ -18,6 +9,12 @@ $jscomp.ISOLATE_POLYFILLS = !1;
18
9
  $jscomp.FORCE_POLYFILL_PROMISE = !1;
19
10
  $jscomp.FORCE_POLYFILL_PROMISE_WHEN_NO_UNHANDLED_REJECTION = !1;
20
11
  $jscomp.INSTRUMENT_ASYNC_CONTEXT = !0;
12
+ $jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
13
+ var ctor = function() {
14
+ };
15
+ ctor.prototype = prototype;
16
+ return new ctor();
17
+ };
21
18
  $jscomp.defineProperty = $jscomp.ASSUME_ES5 || typeof Object.defineProperties == "function" ? Object.defineProperty : function(target, property, descriptor) {
22
19
  if (target == Array.prototype || target == Object.prototype) {
23
20
  return target;
@@ -102,50 +99,6 @@ $jscomp.polyfillIsolated = function(target, polyfill, fromLang, toLang) {
102
99
  }
103
100
  }
104
101
  };
105
- $jscomp.initSymbol = function() {
106
- };
107
- $jscomp.polyfill("Symbol", function(orig) {
108
- if (orig) {
109
- return orig;
110
- }
111
- var SymbolClass = function(id, opt_description) {
112
- this.$jscomp$symbol$id_ = id;
113
- $jscomp.defineProperty(this, "description", {configurable:!0, writable:!0, value:opt_description});
114
- };
115
- SymbolClass.prototype.toString = function() {
116
- return this.$jscomp$symbol$id_;
117
- };
118
- var SYMBOL_PREFIX = "jscomp_symbol_" + (Math.random() * 1E9 >>> 0) + "_", counter = 0, symbolPolyfill = function(opt_description) {
119
- if (this instanceof symbolPolyfill) {
120
- throw new TypeError("Symbol is not a constructor");
121
- }
122
- return new SymbolClass(SYMBOL_PREFIX + (opt_description || "") + "_" + counter++, opt_description);
123
- };
124
- return symbolPolyfill;
125
- }, "es6", "es3");
126
- $jscomp.polyfill("Symbol.iterator", function(orig) {
127
- if (orig) {
128
- return orig;
129
- }
130
- var symbolIterator = Symbol("Symbol.iterator");
131
- $jscomp.defineProperty(Array.prototype, symbolIterator, {configurable:!0, writable:!0, value:function() {
132
- return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this));
133
- }});
134
- return symbolIterator;
135
- }, "es6", "es3");
136
- $jscomp.iteratorPrototype = function(next) {
137
- var iterator = {next:next};
138
- iterator[Symbol.iterator] = function() {
139
- return this;
140
- };
141
- return iterator;
142
- };
143
- $jscomp.objectCreate = $jscomp.ASSUME_ES5 || typeof Object.create == "function" ? Object.create : function(prototype) {
144
- var ctor = function() {
145
- };
146
- ctor.prototype = prototype;
147
- return new ctor();
148
- };
149
102
  $jscomp.getConstructImplementation = function() {
150
103
  function reflectConstructWorks() {
151
104
  function Base() {
@@ -208,6 +161,15 @@ $jscomp.inherits = function(childCtor, parentCtor) {
208
161
  }
209
162
  childCtor.superClass_ = parentCtor.prototype;
210
163
  };
164
+ $jscomp.arrayIteratorImpl = function(array) {
165
+ var index = 0;
166
+ return function() {
167
+ return index < array.length ? {done:!1, value:array[index++]} : {done:!0};
168
+ };
169
+ };
170
+ $jscomp.arrayIterator = function(array) {
171
+ return {next:$jscomp.arrayIteratorImpl(array)};
172
+ };
211
173
  $jscomp.makeIterator = function(iterable) {
212
174
  var iteratorFunction = typeof Symbol != "undefined" && Symbol.iterator && iterable[Symbol.iterator];
213
175
  if (iteratorFunction) {
@@ -511,6 +473,44 @@ $jscomp.polyfill("Reflect.setPrototypeOf", function(orig) {
511
473
  }
512
474
  return null;
513
475
  }, "es6", "es5");
476
+ $jscomp.initSymbol = function() {
477
+ };
478
+ $jscomp.polyfill("Symbol", function(orig) {
479
+ if (orig) {
480
+ return orig;
481
+ }
482
+ var SymbolClass = function(id, opt_description) {
483
+ this.$jscomp$symbol$id_ = id;
484
+ $jscomp.defineProperty(this, "description", {configurable:!0, writable:!0, value:opt_description});
485
+ };
486
+ SymbolClass.prototype.toString = function() {
487
+ return this.$jscomp$symbol$id_;
488
+ };
489
+ var SYMBOL_PREFIX = "jscomp_symbol_" + (Math.random() * 1E9 >>> 0) + "_", counter = 0, symbolPolyfill = function(opt_description) {
490
+ if (this instanceof symbolPolyfill) {
491
+ throw new TypeError("Symbol is not a constructor");
492
+ }
493
+ return new SymbolClass(SYMBOL_PREFIX + (opt_description || "") + "_" + counter++, opt_description);
494
+ };
495
+ return symbolPolyfill;
496
+ }, "es6", "es3");
497
+ $jscomp.polyfill("Symbol.iterator", function(orig) {
498
+ if (orig) {
499
+ return orig;
500
+ }
501
+ var symbolIterator = Symbol("Symbol.iterator");
502
+ $jscomp.defineProperty(Array.prototype, symbolIterator, {configurable:!0, writable:!0, value:function() {
503
+ return $jscomp.iteratorPrototype($jscomp.arrayIteratorImpl(this));
504
+ }});
505
+ return symbolIterator;
506
+ }, "es6", "es3");
507
+ $jscomp.iteratorPrototype = function(next) {
508
+ var iterator = {next:next};
509
+ iterator[Symbol.iterator] = function() {
510
+ return this;
511
+ };
512
+ return iterator;
513
+ };
514
514
  $jscomp.polyfill("Promise", function(NativePromise) {
515
515
  function platformSupportsPromiseRejectionEvents() {
516
516
  return typeof $jscomp.global.PromiseRejectionEvent !== "undefined";
@@ -19495,7 +19495,7 @@ var $jscomp$templatelit$m1153655765$101 = $jscomp.createTemplateTagFirstArg(["ht
19495
19495
  ee.apiclient = {};
19496
19496
  var module$contents$ee$apiclient_apiclient = {};
19497
19497
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19498
- ee.apiclient.API_CLIENT_VERSION = "1.6.13";
19498
+ ee.apiclient.API_CLIENT_VERSION = "1.6.15";
19499
19499
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19500
19500
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19501
19501
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19800,8 +19800,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19800
19800
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19801
19801
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19802
19802
  method = method || "POST";
19803
- var headers = {"Content-Type":contentType}, version = "1.6.13";
19804
- version === "1.6.13" && (version = "latest");
19803
+ var headers = {"Content-Type":contentType}, version = "1.6.15";
19804
+ version === "1.6.15" && (version = "latest");
19805
19805
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19806
19806
  module$contents$ee$apiclient_apiclient.userAgent_ && (headers["User-Agent"] = module$contents$ee$apiclient_apiclient.userAgent_);
19807
19807
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
@@ -24818,6 +24818,9 @@ ee.promote_ = function(arg, klass) {
24818
24818
  return null;
24819
24819
  }
24820
24820
  if (arg !== void 0) {
24821
+ if (typeof klass != "string") {
24822
+ throw Error("Unexpected type: " + Object.prototype.toString.call(klass));
24823
+ }
24821
24824
  var exportedEE = goog.global.ee;
24822
24825
  switch(klass) {
24823
24826
  case "Image":
@@ -27334,28 +27337,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27334
27337
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27335
27338
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27336
27339
  (function() {
27337
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toBigQuery ee.batch.Export.map.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.video.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.filter ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.listOperations ee.data.listFeatures ee.data.copyAsset ee.data.cancelOperation ee.data.authenticateViaOauth ee.data.deleteAsset ee.data.getAsset ee.data.getOperation ee.data.computeValue ee.data.getThumbId ee.data.getInfo ee.data.getAssetAcl ee.data.cancelTask ee.data.updateTask ee.data.getVideoThumbId ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.getList ee.data.listAssets ee.data.makeThumbUrl ee.data.authenticate ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.updateAsset ee.data.setAssetAcl ee.data.makeDownloadUrl ee.data.setWorkloadTag ee.data.getTableDownloadId ee.data.getWorkloadTag ee.data.listImages ee.data.authenticateViaPrivateKey ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.listBuckets ee.data.newTaskId ee.data.getAssetRootQuota ee.data.getAssetRoots ee.data.createAssetHome ee.data.getTaskStatus ee.data.startIngestion ee.data.getMapId ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.resetWorkloadTag ee.data.getTileUrl ee.data.startTableIngestion ee.data.getTaskList ee.data.createFolder ee.data.getFeatureViewTilesKey ee.Date ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Dictionary ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.call ee.initialize ee.apply 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.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.Filter.lt ee.Filter.bounds ee.Filter.prototype.not ee.Filter.or ee.Filter.gte ee.Filter ee.Filter.date ee.Filter.eq ee.Filter.metadata ee.Filter.gt ee.Filter.inList ee.Filter.neq ee.Filter.lte ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSON ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Rectangle ee.Geometry.MultiLineString ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.LinearRing ee.Geometry ee.Geometry.BBox ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.getMap ee.Image.prototype.expression ee.Image.rgb ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.select ee.Image.prototype.getMapId ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getMapId ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27338
- orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices 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_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27339
- "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "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(" "),
27340
- "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_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "),
27341
- ["classifier", "opt_description", "opt_assetId", "opt_priority"], "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(" "), ["max", "opt_property", "opt_ascending"], ["filter"], ["property", "opt_ascending"], ["name",
27342
- "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["start", "opt_end"], ["algorithm", "opt_first"], ["func", "var_args"], ["callback"], ["opt_callback"], ["legacy"], ["opt_limit", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["asset", "params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["operationName", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
27343
- ["assetId", "opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["obj", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"],
27344
- ["params", "opt_callback"], ["opt_success", "opt_error"], ["assetId", "asset", "updateFields", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id"], ["tag"], ["params", "opt_callback"], [], ["parent", "opt_params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["assetId", "properties", "opt_callback"], ["project", "opt_callback"], ["opt_count", "opt_callback"], ["rootId", "opt_callback"], ["opt_callback"], ["requestedId",
27345
- "opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["opt_resetDefault"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["opt_callback"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [], [], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27346
- ["func", "namedArgs"], ["var_args"], [], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["name", "value"], ["geometry", "opt_errorMargin"], [], ["var_args"], ["name", "value"], ["opt_filter"],
27347
- ["start", "opt_end"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], [], ["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",
27348
- "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["params", "opt_callback"], ["opt_args"], ["opt_visParams", "opt_callback"], ["expression", "opt_map"], ["r", "g", "b"], ["var_args"], ["opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["geometry"],
27349
- ["params", "opt_callback"], ["var_args"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args"], ["params", "opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["opt_callback"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27350
- [ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toAsset,
27351
- module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage, ee.Collection.prototype.limit, ee.Collection.prototype.filter, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.aside,
27352
- ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.getTaskListWithLimit, ee.data.renameAsset, ee.data.listOperations, ee.data.listFeatures, ee.data.copyAsset, ee.data.cancelOperation, ee.data.authenticateViaOauth, ee.data.deleteAsset, ee.data.getAsset, ee.data.getOperation, ee.data.computeValue, ee.data.getThumbId, ee.data.getInfo, ee.data.getAssetAcl, ee.data.cancelTask, ee.data.updateTask, ee.data.getVideoThumbId, ee.data.startProcessing,
27353
- ee.data.getFilmstripThumbId, ee.data.getList, ee.data.listAssets, ee.data.makeThumbUrl, ee.data.authenticate, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.updateAsset, ee.data.setAssetAcl, ee.data.makeDownloadUrl, ee.data.setWorkloadTag, ee.data.getTableDownloadId, ee.data.getWorkloadTag, ee.data.listImages, ee.data.authenticateViaPrivateKey, ee.data.makeTableDownloadUrl, ee.data.setAssetProperties, ee.data.listBuckets, ee.data.newTaskId, ee.data.getAssetRootQuota, ee.data.getAssetRoots,
27354
- ee.data.createAssetHome, ee.data.getTaskStatus, ee.data.startIngestion, ee.data.getMapId, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.resetWorkloadTag, ee.data.getTileUrl, ee.data.startTableIngestion, ee.data.getTaskList, ee.data.createFolder, ee.data.getFeatureViewTilesKey, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.TILE_SIZE, ee.Algorithms, ee.reset, ee.InitState, ee.call, ee.initialize,
27355
- ee.apply, 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.select, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection, ee.Filter.lt, ee.Filter.bounds, ee.Filter.prototype.not, ee.Filter.or, ee.Filter.gte, ee.Filter, ee.Filter.date,
27356
- ee.Filter.eq, ee.Filter.metadata, ee.Filter.gt, ee.Filter.inList, ee.Filter.neq, ee.Filter.lte, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Rectangle, ee.Geometry.MultiLineString, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.BBox, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Image.prototype.getThumbURL,
27357
- ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.expression, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.select, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getMapId, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL,
27358
- ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27340
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.table.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toFeatureView ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.sort ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.listImages ee.data.createAssetHome ee.data.getTaskStatus ee.data.getWorkloadTag ee.data.getTableDownloadId ee.data.makeTableDownloadUrl ee.data.getAssetRoots ee.data.listBuckets ee.data.getAssetRootQuota ee.data.newTaskId ee.data.getMapId ee.data.setWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTileUrl ee.data.startIngestion ee.data.createAsset ee.data.resetWorkloadTag ee.data.createFolder ee.data.startTableIngestion ee.data.getTaskList ee.data.getFeatureViewTilesKey ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.listOperations ee.data.getFilmstripThumbId ee.data.listFeatures ee.data.copyAsset ee.data.cancelOperation ee.data.computeValue ee.data.getAsset ee.data.deleteAsset ee.data.authenticateViaOauth ee.data.getVideoThumbId ee.data.getOperation ee.data.getThumbId ee.data.getAssetAcl ee.data.getInfo ee.data.cancelTask ee.data.authenticate ee.data.makeThumbUrl ee.data.getList ee.data.updateTask ee.data.updateAsset ee.data.listAssets ee.data.authenticateViaPopup ee.data.authenticateViaPrivateKey ee.data.setAssetAcl ee.data.getDownloadId ee.data.startProcessing ee.data.setAssetProperties ee.data.makeDownloadUrl ee.Date ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.reset ee.Algorithms ee.InitState ee.initialize 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.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.lt ee.Filter.and ee.Filter.prototype.not ee.Filter.bounds ee.Filter.or ee.Filter.date ee.Filter.gte ee.Filter.eq ee.Filter.metadata ee.Filter ee.Filter.gt ee.Filter.lte ee.Filter.neq ee.Filter.inList ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.LineString ee.Geometry.MultiLineString ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.LinearRing ee.Geometry.Rectangle ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.BBox ee.Geometry.Polygon ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.expression ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image.cat ee.Image ee.Image.rgb ee.Image.prototype.rename ee.Image.prototype.getMapId ee.Image.prototype.getDownloadURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMapId ee.ImageCollection ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
27341
+ orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "),
27342
+ "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_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(" "),
27343
+ "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(" "), "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(" "),
27344
+ ["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_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["geometry"], ["start",
27345
+ "opt_end"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["callback"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["parent", "opt_params", "opt_callback"], ["requestedId", "opt_callback"], ["taskId", "opt_callback"], [], ["params", "opt_callback"], ["id"], ["opt_callback"], ["project", "opt_callback"], ["rootId", "opt_callback"], ["opt_count", "opt_callback"], ["params", "opt_callback"], ["tag"], ["tag"], ["id", "x", "y", "z"],
27346
+ ["taskId", "request", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["opt_resetDefault"], ["path", "opt_force", "opt_callback"], ["taskId", "request", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["operationName",
27347
+ "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["assetId", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["id", "opt_callback"], ["taskId", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id"], ["params", "opt_callback"], ["taskId",
27348
+ "action", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_success", "opt_error"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["assetId", "aclUpdate", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["id"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"],
27349
+ [], [], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["var_args"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args",
27350
+ "opt_column"], ["name", "value"], ["var_args"], [], ["geometry", "opt_errorMargin"], ["var_args"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["opt_filter"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], [], ["coords", "opt_proj"],
27351
+ ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["var_args"], ["opt_callback"], ["expression", "opt_map"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"],
27352
+ ["var_args"], ["opt_args"], ["r", "g", "b"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["selectors", "opt_names"], ["opt_callback"], ["params", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["opt_visParams", "opt_callback"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"],
27353
+ ["obj", "opt_isCompound"], ["obj"], ["string"], []];
27354
+ [ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, 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.image.toDrive, module$contents$ee$batch_Export.image.toCloudStorage,
27355
+ module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toFeatureView, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.ComputedObject.prototype.evaluate,
27356
+ ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.listImages, ee.data.createAssetHome, ee.data.getTaskStatus, ee.data.getWorkloadTag, ee.data.getTableDownloadId, ee.data.makeTableDownloadUrl, ee.data.getAssetRoots, ee.data.listBuckets, ee.data.getAssetRootQuota, ee.data.newTaskId, ee.data.getMapId, ee.data.setWorkloadTag, ee.data.setDefaultWorkloadTag, ee.data.getTileUrl, ee.data.startIngestion, ee.data.createAsset, ee.data.resetWorkloadTag,
27357
+ ee.data.createFolder, ee.data.startTableIngestion, ee.data.getTaskList, ee.data.getFeatureViewTilesKey, ee.data.renameAsset, ee.data.getTaskListWithLimit, ee.data.listOperations, ee.data.getFilmstripThumbId, ee.data.listFeatures, ee.data.copyAsset, ee.data.cancelOperation, ee.data.computeValue, ee.data.getAsset, ee.data.deleteAsset, ee.data.authenticateViaOauth, ee.data.getVideoThumbId, ee.data.getOperation, ee.data.getThumbId, ee.data.getAssetAcl, ee.data.getInfo, ee.data.cancelTask, ee.data.authenticate,
27358
+ ee.data.makeThumbUrl, ee.data.getList, ee.data.updateTask, ee.data.updateAsset, ee.data.listAssets, ee.data.authenticateViaPopup, ee.data.authenticateViaPrivateKey, ee.data.setAssetAcl, ee.data.getDownloadId, ee.data.startProcessing, ee.data.setAssetProperties, ee.data.makeDownloadUrl, ee.Date, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.reset, ee.Algorithms, ee.InitState, ee.initialize,
27359
+ 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.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.lt, ee.Filter.and, ee.Filter.prototype.not, ee.Filter.bounds, ee.Filter.or, ee.Filter.date, ee.Filter.gte,
27360
+ ee.Filter.eq, ee.Filter.metadata, ee.Filter, ee.Filter.gt, ee.Filter.lte, ee.Filter.neq, ee.Filter.inList, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.LineString, ee.Geometry.MultiLineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.Rectangle, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.BBox, ee.Geometry.Polygon, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Image.prototype.select,
27361
+ ee.Image.prototype.getInfo, ee.Image.prototype.expression, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image.cat, ee.Image, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.prototype.getMapId, ee.Image.prototype.getDownloadURL, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.getVideoThumbURL,
27362
+ ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMapId, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27359
27363
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27360
27364
  });
27361
27365
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;