@google/earthengine 1.1.5 → 1.2.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.
@@ -7456,7 +7456,6 @@ goog.events.LISTENER_MAP_PROP_ = "closure_lm_" + (Math.random() * 1E6 | 0);
7456
7456
  goog.events.onString_ = "on";
7457
7457
  goog.events.onStringMap_ = {};
7458
7458
  goog.events.CaptureSimulationMode = {OFF_AND_FAIL:0, OFF_AND_SILENT:1, ON:2};
7459
- goog.events.CAPTURE_SIMULATION_MODE = 2;
7460
7459
  goog.events.listenerCountEstimate_ = 0;
7461
7460
  goog.events.listen = function(src, type, listener, opt_options, opt_handler) {
7462
7461
  if (opt_options && opt_options.once) {
@@ -14840,22 +14839,16 @@ goog.debug.asyncStackTag.getTestNameProvider = function() {
14840
14839
  }
14841
14840
  return module$contents$goog$debug$asyncStackTag_testNameProvider;
14842
14841
  };
14843
- var module$contents$goog$async$run_ASSUME_NATIVE_PROMISE = goog.FEATURESET_YEAR >= 2018, module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
14842
+ var module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
14844
14843
  callback = module$contents$goog$debug$asyncStackTag_wrap(callback, "goog.async.run");
14845
14844
  module$contents$goog$async$run_schedule || module$contents$goog$async$run_initializeRunner();
14846
14845
  module$contents$goog$async$run_workQueueScheduled || (module$contents$goog$async$run_schedule(), module$contents$goog$async$run_workQueueScheduled = !0);
14847
14846
  module$contents$goog$async$run_workQueue.add(callback, context);
14848
14847
  }, module$contents$goog$async$run_initializeRunner = function() {
14849
- if (module$contents$goog$async$run_ASSUME_NATIVE_PROMISE || goog.global.Promise && goog.global.Promise.resolve) {
14850
- var promise = goog.global.Promise.resolve(void 0);
14851
- module$contents$goog$async$run_schedule = function() {
14852
- promise.then(module$contents$goog$async$run_processWorkQueueInternal);
14853
- };
14854
- } else {
14855
- module$contents$goog$async$run_schedule = function() {
14856
- (0,goog.async.nextTick)(module$contents$goog$async$run_processWorkQueueInternal);
14857
- };
14858
- }
14848
+ var promise = Promise.resolve(void 0);
14849
+ module$contents$goog$async$run_schedule = function() {
14850
+ promise.then(module$contents$goog$async$run_processWorkQueueInternal);
14851
+ };
14859
14852
  };
14860
14853
  module$contents$goog$async$run_run.forceNextTick = function(realSetTimeout) {
14861
14854
  if (goog.DISALLOW_TEST_ONLY_CODE) {
@@ -19347,7 +19340,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19347
19340
  ee.apiclient = {};
19348
19341
  var module$contents$ee$apiclient_apiclient = {};
19349
19342
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19350
- ee.apiclient.API_CLIENT_VERSION = "1.1.5";
19343
+ ee.apiclient.API_CLIENT_VERSION = "1.2.0";
19351
19344
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19352
19345
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19353
19346
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19645,8 +19638,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19645
19638
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19646
19639
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19647
19640
  method = method || "POST";
19648
- var headers = {"Content-Type":contentType}, version = "1.1.5";
19649
- version === "1.1.5" && (version = "latest");
19641
+ var headers = {"Content-Type":contentType}, version = "1.2.0";
19642
+ version === "1.2.0" && (version = "latest");
19650
19643
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19651
19644
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19652
19645
  if (authToken != null) {
@@ -19763,7 +19756,7 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
19763
19756
  if (result.access_token) {
19764
19757
  var token = result.token_type + " " + result.access_token;
19765
19758
  if (result.expires_in || result.expires_in === 0) {
19766
- var expiresInMs = result.expires_in * 900, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, expiresInMs * .9);
19759
+ var expiresInMs = result.expires_in * 1E3 * .9, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, expiresInMs * .9);
19767
19760
  timeout.unref !== void 0 && timeout.unref();
19768
19761
  module$contents$ee$apiclient_apiclient.authTokenExpiration_ = Date.now() + expiresInMs;
19769
19762
  }
@@ -7456,7 +7456,6 @@ goog.events.LISTENER_MAP_PROP_ = "closure_lm_" + (Math.random() * 1E6 | 0);
7456
7456
  goog.events.onString_ = "on";
7457
7457
  goog.events.onStringMap_ = {};
7458
7458
  goog.events.CaptureSimulationMode = {OFF_AND_FAIL:0, OFF_AND_SILENT:1, ON:2};
7459
- goog.events.CAPTURE_SIMULATION_MODE = 2;
7460
7459
  goog.events.listenerCountEstimate_ = 0;
7461
7460
  goog.events.listen = function(src, type, listener, opt_options, opt_handler) {
7462
7461
  if (opt_options && opt_options.once) {
@@ -14840,22 +14839,16 @@ goog.debug.asyncStackTag.getTestNameProvider = function() {
14840
14839
  }
14841
14840
  return module$contents$goog$debug$asyncStackTag_testNameProvider;
14842
14841
  };
14843
- var module$contents$goog$async$run_ASSUME_NATIVE_PROMISE = goog.FEATURESET_YEAR >= 2018, module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
14842
+ var module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
14844
14843
  callback = module$contents$goog$debug$asyncStackTag_wrap(callback, "goog.async.run");
14845
14844
  module$contents$goog$async$run_schedule || module$contents$goog$async$run_initializeRunner();
14846
14845
  module$contents$goog$async$run_workQueueScheduled || (module$contents$goog$async$run_schedule(), module$contents$goog$async$run_workQueueScheduled = !0);
14847
14846
  module$contents$goog$async$run_workQueue.add(callback, context);
14848
14847
  }, module$contents$goog$async$run_initializeRunner = function() {
14849
- if (module$contents$goog$async$run_ASSUME_NATIVE_PROMISE || goog.global.Promise && goog.global.Promise.resolve) {
14850
- var promise = goog.global.Promise.resolve(void 0);
14851
- module$contents$goog$async$run_schedule = function() {
14852
- promise.then(module$contents$goog$async$run_processWorkQueueInternal);
14853
- };
14854
- } else {
14855
- module$contents$goog$async$run_schedule = function() {
14856
- (0,goog.async.nextTick)(module$contents$goog$async$run_processWorkQueueInternal);
14857
- };
14858
- }
14848
+ var promise = Promise.resolve(void 0);
14849
+ module$contents$goog$async$run_schedule = function() {
14850
+ promise.then(module$contents$goog$async$run_processWorkQueueInternal);
14851
+ };
14859
14852
  };
14860
14853
  module$contents$goog$async$run_run.forceNextTick = function(realSetTimeout) {
14861
14854
  if (goog.DISALLOW_TEST_ONLY_CODE) {
@@ -19347,7 +19340,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19347
19340
  ee.apiclient = {};
19348
19341
  var module$contents$ee$apiclient_apiclient = {};
19349
19342
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19350
- ee.apiclient.API_CLIENT_VERSION = "1.1.5";
19343
+ ee.apiclient.API_CLIENT_VERSION = "1.2.0";
19351
19344
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19352
19345
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19353
19346
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19645,8 +19638,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19645
19638
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19646
19639
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19647
19640
  method = method || "POST";
19648
- var headers = {"Content-Type":contentType}, version = "1.1.5";
19649
- version === "1.1.5" && (version = "latest");
19641
+ var headers = {"Content-Type":contentType}, version = "1.2.0";
19642
+ version === "1.2.0" && (version = "latest");
19650
19643
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19651
19644
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19652
19645
  if (authToken != null) {
@@ -19763,7 +19756,7 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
19763
19756
  if (result.access_token) {
19764
19757
  var token = result.token_type + " " + result.access_token;
19765
19758
  if (result.expires_in || result.expires_in === 0) {
19766
- var expiresInMs = result.expires_in * 900, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, expiresInMs * .9);
19759
+ var expiresInMs = result.expires_in * 1E3 * .9, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, expiresInMs * .9);
19767
19760
  timeout.unref !== void 0 && timeout.unref();
19768
19761
  module$contents$ee$apiclient_apiclient.authTokenExpiration_ = Date.now() + expiresInMs;
19769
19762
  }
@@ -27170,28 +27163,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27170
27163
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27171
27164
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27172
27165
  (function() {
27173
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.table.toBigQuery ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.makeThumbUrl ee.data.startProcessing ee.data.authenticateViaOauth ee.data.setAssetAcl ee.data.getMapId ee.data.renameAsset ee.data.listAssets ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.copyAsset ee.data.listBuckets ee.data.getTableDownloadId ee.data.getTileUrl ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.deleteAsset ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.getWorkloadTag ee.data.listOperations ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getAssetAcl ee.data.listImages ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.newTaskId ee.data.createAsset ee.data.computeValue ee.data.getInfo ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.resetWorkloadTag ee.data.getList ee.data.updateAsset ee.data.updateTask ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.or ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.eq ee.Filter ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.prototype.toGeoJSONString ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.rename ee.Image.prototype.getDownloadURL 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.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.String ee.Terrain".split(" "),
27174
- orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "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(" "),
27175
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27176
- ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27177
- "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), ["geometry"], ["algorithm", "opt_dropNulls"], ["name", "operator", "value"], ["start", "opt_end"], ["algorithm", "opt_first"], ["filter"], ["max",
27178
- "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["opt_callback"], ["legacy"], ["callback"], ["func", "var_args"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], ["taskId", "params", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"],
27179
- ["parent", "opt_params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], [], ["opt_limit", "opt_callback"],
27180
- ["params", "opt_callback"], ["opt_success", "opt_error"], ["operationName", "opt_callback"], ["id"], ["assetId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_callback"], ["id", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["value", "opt_path",
27181
- "opt_force", "opt_properties", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27182
- [], ["func", "var_args"], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["name", "value"], ["name", "value"], [], ["var_args"], ["start", "opt_end"], ["geometry", "opt_errorMargin"],
27183
- ["name", "operator", "value"], ["name", "value"], ["opt_filter"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError",
27184
- "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["opt_args"], ["params", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["var_args"], ["expression", "opt_map"], ["geometry"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"],
27185
- ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["params", "opt_callback"], ["params", "opt_callback"], ["args"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27186
- [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.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, module$contents$ee$batch_Export.classifier.toAsset,
27187
- 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, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.ComputedObject.prototype.getInfo,
27188
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.startProcessing, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.getMapId, ee.data.renameAsset, ee.data.listAssets, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.copyAsset, ee.data.listBuckets, ee.data.getTableDownloadId, ee.data.getTileUrl,
27189
- ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.deleteAsset, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.getWorkloadTag, ee.data.listOperations, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getAssetAcl, ee.data.listImages, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAssetRoots, ee.data.getAsset, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.setWorkloadTag,
27190
- ee.data.createAssetHome, ee.data.newTaskId, ee.data.createAsset, ee.data.computeValue, ee.data.getInfo, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.getTaskStatus, ee.data.resetWorkloadTag, ee.data.getList, ee.data.updateAsset, ee.data.updateTask, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
27191
- ee.initialize, ee.reset, ee.call, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.or, ee.Filter.date,
27192
- ee.Filter.bounds, ee.Filter.metadata, ee.Filter.eq, ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.BBox, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSONString,
27193
- ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.prototype.getDownloadURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection,
27194
- ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27166
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.filterBounds ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.data.resetWorkloadTag ee.data.getFilmstripThumbId ee.data.getTaskStatus ee.data.updateAsset ee.data.updateTask ee.data.getList ee.data.makeThumbUrl ee.data.startIngestion ee.data.startProcessing ee.data.createFolder ee.data.authenticateViaOauth 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.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.getAssetRootQuota ee.data.getWorkloadTag ee.data.cancelOperation ee.data.startTableIngestion ee.data.deleteAsset ee.data.listOperations ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.getAssetAcl 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.computeValue ee.data.getInfo ee.data.getThumbId ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getVideoThumbId ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.TILE_SIZE ee.initialize ee.call ee.reset ee.Algorithms ee.InitState ee.apply ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.lt ee.Filter.or ee.Filter.neq ee.Filter ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.eq ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.Rectangle ee.Geometry ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.prototype.serialize ee.Geometry.prototype.toGeoJSON ee.Image.prototype.select ee.Image.prototype.rename ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.clip ee.Image ee.Image.prototype.getThumbId ee.Image.rgb ee.Image.prototype.expression ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMap ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27167
+ orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "),
27168
+ "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(" "),
27169
+ "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(" "),
27170
+ ["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(" "),
27171
+ ["geometry"], ["property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["filter"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["opt_callback"], ["legacy"], ["callback"], ["func", "var_args"], ["opt_resetDefault"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["id"], ["taskId", "request",
27172
+ "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"], ["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"],
27173
+ ["id", "x", "y", "z"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], [], ["operationName", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["id"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["parent", "opt_params", "opt_callback"],
27174
+ ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["tag"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["date",
27175
+ "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_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"],
27176
+ ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["name", "value"], ["opt_filter"], ["name", "value"], ["name", "value"], [], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["namedArgs"], ["west", "south", "east", "north"], ["coords",
27177
+ "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], [], ["var_args"], ["var_args"],
27178
+ ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["opt_args"], ["params", "opt_callback"], ["r", "g", "b"], ["expression", "opt_map"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], [], ["params", "opt_callback"], ["opt_visParams",
27179
+ "opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27180
+ [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, 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,
27181
+ 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.filterBounds, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.ComputedObject.prototype.getInfo,
27182
+ ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.data.resetWorkloadTag, ee.data.getFilmstripThumbId, ee.data.getTaskStatus, ee.data.updateAsset, ee.data.updateTask, ee.data.getList, ee.data.makeThumbUrl, ee.data.startIngestion, ee.data.startProcessing, ee.data.createFolder, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.getMapId, ee.data.listAssets, ee.data.renameAsset, ee.data.getTaskList, ee.data.setAssetProperties,
27183
+ ee.data.authenticate, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.getAssetRootQuota, ee.data.getWorkloadTag, ee.data.cancelOperation, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.listOperations, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.getAssetAcl, ee.data.listImages, ee.data.listFeatures, ee.data.getAsset,
27184
+ ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.setWorkloadTag, ee.data.getOperation, ee.data.createAssetHome, ee.data.newTaskId, ee.data.computeValue, ee.data.getInfo, ee.data.getThumbId, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getVideoThumbId, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.TILE_SIZE, ee.initialize, ee.call, ee.reset, ee.Algorithms,
27185
+ ee.InitState, ee.apply, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.lt, ee.Filter.or, ee.Filter.neq, ee.Filter,
27186
+ ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.eq, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.Rectangle, ee.Geometry, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.Point, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.prototype.serialize, ee.Geometry.prototype.toGeoJSON,
27187
+ ee.Image.prototype.select, ee.Image.prototype.rename, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.getThumbId, ee.Image.rgb, ee.Image.prototype.expression, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo,
27188
+ ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMap, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27195
27189
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27196
27190
  });
27197
27191
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
package/build/main.js CHANGED
@@ -7458,7 +7458,6 @@ goog.events.LISTENER_MAP_PROP_ = "closure_lm_" + (Math.random() * 1E6 | 0);
7458
7458
  goog.events.onString_ = "on";
7459
7459
  goog.events.onStringMap_ = {};
7460
7460
  goog.events.CaptureSimulationMode = {OFF_AND_FAIL:0, OFF_AND_SILENT:1, ON:2};
7461
- goog.events.CAPTURE_SIMULATION_MODE = 2;
7462
7461
  goog.events.listenerCountEstimate_ = 0;
7463
7462
  goog.events.listen = function(src, type, listener, opt_options, opt_handler) {
7464
7463
  if (opt_options && opt_options.once) {
@@ -14842,22 +14841,16 @@ goog.debug.asyncStackTag.getTestNameProvider = function() {
14842
14841
  }
14843
14842
  return module$contents$goog$debug$asyncStackTag_testNameProvider;
14844
14843
  };
14845
- var module$contents$goog$async$run_ASSUME_NATIVE_PROMISE = goog.FEATURESET_YEAR >= 2018, module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
14844
+ var module$contents$goog$async$run_schedule, module$contents$goog$async$run_workQueueScheduled = !1, module$contents$goog$async$run_workQueue = new module$contents$goog$async$WorkQueue_WorkQueue(), module$contents$goog$async$run_run = function(callback, context) {
14846
14845
  callback = module$contents$goog$debug$asyncStackTag_wrap(callback, "goog.async.run");
14847
14846
  module$contents$goog$async$run_schedule || module$contents$goog$async$run_initializeRunner();
14848
14847
  module$contents$goog$async$run_workQueueScheduled || (module$contents$goog$async$run_schedule(), module$contents$goog$async$run_workQueueScheduled = !0);
14849
14848
  module$contents$goog$async$run_workQueue.add(callback, context);
14850
14849
  }, module$contents$goog$async$run_initializeRunner = function() {
14851
- if (module$contents$goog$async$run_ASSUME_NATIVE_PROMISE || goog.global.Promise && goog.global.Promise.resolve) {
14852
- var promise = goog.global.Promise.resolve(void 0);
14853
- module$contents$goog$async$run_schedule = function() {
14854
- promise.then(module$contents$goog$async$run_processWorkQueueInternal);
14855
- };
14856
- } else {
14857
- module$contents$goog$async$run_schedule = function() {
14858
- (0,goog.async.nextTick)(module$contents$goog$async$run_processWorkQueueInternal);
14859
- };
14860
- }
14850
+ var promise = Promise.resolve(void 0);
14851
+ module$contents$goog$async$run_schedule = function() {
14852
+ promise.then(module$contents$goog$async$run_processWorkQueueInternal);
14853
+ };
14861
14854
  };
14862
14855
  module$contents$goog$async$run_run.forceNextTick = function(realSetTimeout) {
14863
14856
  if (goog.DISALLOW_TEST_ONLY_CODE) {
@@ -19349,7 +19342,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
19349
19342
  ee.apiclient = {};
19350
19343
  var module$contents$ee$apiclient_apiclient = {};
19351
19344
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
19352
- ee.apiclient.API_CLIENT_VERSION = "1.1.5";
19345
+ ee.apiclient.API_CLIENT_VERSION = "1.2.0";
19353
19346
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
19354
19347
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
19355
19348
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -19647,8 +19640,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
19647
19640
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
19648
19641
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
19649
19642
  method = method || "POST";
19650
- var headers = {"Content-Type":contentType}, version = "1.1.5";
19651
- version === "1.1.5" && (version = "latest");
19643
+ var headers = {"Content-Type":contentType}, version = "1.2.0";
19644
+ version === "1.2.0" && (version = "latest");
19652
19645
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
19653
19646
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
19654
19647
  if (authToken != null) {
@@ -19765,7 +19758,7 @@ module$contents$ee$apiclient_apiclient.handleAuthResult_ = function(success, err
19765
19758
  if (result.access_token) {
19766
19759
  var token = result.token_type + " " + result.access_token;
19767
19760
  if (result.expires_in || result.expires_in === 0) {
19768
- var expiresInMs = result.expires_in * 900, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, expiresInMs * .9);
19761
+ var expiresInMs = result.expires_in * 1E3 * .9, timeout = setTimeout(module$contents$ee$apiclient_apiclient.refreshAuthToken, expiresInMs * .9);
19769
19762
  timeout.unref !== void 0 && timeout.unref();
19770
19763
  module$contents$ee$apiclient_apiclient.authTokenExpiration_ = Date.now() + expiresInMs;
19771
19764
  }
@@ -27172,28 +27165,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
27172
27165
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
27173
27166
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
27174
27167
  (function() {
27175
- var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.table.toBigQuery ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.sort ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.data.getFilmstripThumbId ee.data.startIngestion ee.data.createFolder ee.data.makeThumbUrl ee.data.startProcessing ee.data.authenticateViaOauth ee.data.setAssetAcl ee.data.getMapId ee.data.renameAsset ee.data.listAssets ee.data.getTaskList ee.data.setAssetProperties ee.data.authenticate ee.data.copyAsset ee.data.listBuckets ee.data.getTableDownloadId ee.data.getTileUrl ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.deleteAsset ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.getWorkloadTag ee.data.listOperations ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.getAssetAcl ee.data.listImages ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.getAssetRoots ee.data.getAsset ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.newTaskId ee.data.createAsset ee.data.computeValue ee.data.getInfo ee.data.getThumbId ee.data.cancelTask ee.data.setDefaultWorkloadTag ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.resetWorkloadTag ee.data.getList ee.data.updateAsset ee.data.updateTask ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getInfo ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.or ee.Filter.date ee.Filter.bounds ee.Filter.metadata ee.Filter.eq ee.Filter ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.neq ee.Filter.lt ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Rectangle ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.prototype.toGeoJSONString ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getMap ee.Image.cat ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.getThumbURL ee.Image.rgb ee.Image.prototype.rename ee.Image.prototype.getDownloadURL 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.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toCloudApiJSON ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.String ee.Terrain".split(" "),
27176
- orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "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(" "),
27177
- "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
27178
- ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], ["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
27179
- "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), ["geometry"], ["algorithm", "opt_dropNulls"], ["name", "operator", "value"], ["start", "opt_end"], ["algorithm", "opt_first"], ["filter"], ["max",
27180
- "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["opt_callback"], ["legacy"], ["callback"], ["func", "var_args"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["path", "opt_force", "opt_callback"], ["id"], ["taskId", "params", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"],
27181
- ["parent", "opt_params", "opt_callback"], ["opt_callback"], ["assetId", "properties", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["id", "x", "y", "z"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], [], ["opt_limit", "opt_callback"],
27182
- ["params", "opt_callback"], ["opt_success", "opt_error"], ["operationName", "opt_callback"], ["id"], ["assetId", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_callback"], ["id", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["value", "opt_path",
27183
- "opt_force", "opt_properties", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["tag"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
27184
- [], ["func", "var_args"], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["name", "value"], ["name", "value"], [], ["var_args"], ["start", "opt_end"], ["geometry", "opt_errorMargin"],
27185
- ["name", "operator", "value"], ["name", "value"], ["opt_filter"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError",
27186
- "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["opt_args"], ["params", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["var_args"], ["expression", "opt_map"], ["geometry"], ["params", "opt_callback"], ["r", "g", "b"], ["var_args"],
27187
- ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], [], ["params", "opt_callback"], ["params", "opt_callback"], ["args"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27188
- [ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.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, module$contents$ee$batch_Export.classifier.toAsset,
27189
- 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, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.ComputedObject.prototype.getInfo,
27190
- ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.data.getFilmstripThumbId, ee.data.startIngestion, ee.data.createFolder, ee.data.makeThumbUrl, ee.data.startProcessing, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.getMapId, ee.data.renameAsset, ee.data.listAssets, ee.data.getTaskList, ee.data.setAssetProperties, ee.data.authenticate, ee.data.copyAsset, ee.data.listBuckets, ee.data.getTableDownloadId, ee.data.getTileUrl,
27191
- ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.deleteAsset, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.getWorkloadTag, ee.data.listOperations, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.getAssetAcl, ee.data.listImages, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.getAssetRoots, ee.data.getAsset, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.setWorkloadTag,
27192
- ee.data.createAssetHome, ee.data.newTaskId, ee.data.createAsset, ee.data.computeValue, ee.data.getInfo, ee.data.getThumbId, ee.data.cancelTask, ee.data.setDefaultWorkloadTag, ee.data.getVideoThumbId, ee.data.getTaskStatus, ee.data.resetWorkloadTag, ee.data.getList, ee.data.updateAsset, ee.data.updateTask, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.Algorithms, ee.InitState, ee.apply, ee.TILE_SIZE,
27193
- ee.initialize, ee.reset, ee.call, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getInfo, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.or, ee.Filter.date,
27194
- ee.Filter.bounds, ee.Filter.metadata, ee.Filter.eq, ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.neq, ee.Filter.lt, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Rectangle, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.BBox, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSONString,
27195
- ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getMap, ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.getThumbURL, ee.Image.rgb, ee.Image.prototype.rename, ee.Image.prototype.getDownloadURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection,
27196
- ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toCloudApiJSON, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27168
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.lookup ee.ApiFunction._call 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.filterBounds ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.data.resetWorkloadTag ee.data.getFilmstripThumbId ee.data.getTaskStatus ee.data.updateAsset ee.data.updateTask ee.data.getList ee.data.makeThumbUrl ee.data.startIngestion ee.data.startProcessing ee.data.createFolder ee.data.authenticateViaOauth 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.listBuckets ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.getAssetRootQuota ee.data.getWorkloadTag ee.data.cancelOperation ee.data.startTableIngestion ee.data.deleteAsset ee.data.listOperations ee.data.getDownloadId ee.data.authenticateViaPopup ee.data.makeDownloadUrl ee.data.getFeatureViewTilesKey ee.data.getAssetAcl 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.computeValue ee.data.getInfo ee.data.getThumbId ee.data.createAsset ee.data.setDefaultWorkloadTag ee.data.cancelTask ee.data.getVideoThumbId ee.Date ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.TILE_SIZE ee.initialize ee.call ee.reset ee.Algorithms ee.InitState ee.apply ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.lt ee.Filter.or ee.Filter.neq ee.Filter ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.date ee.Filter.metadata ee.Filter.bounds ee.Filter.eq ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.Rectangle ee.Geometry ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.prototype.serialize ee.Geometry.prototype.toGeoJSON ee.Image.prototype.select ee.Image.prototype.rename ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.clip ee.Image ee.Image.prototype.getThumbId ee.Image.rgb ee.Image.prototype.expression ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.ImageCollection ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMap ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
27169
+ orderedParamLists = [["name", "namedArgs"], ["name"], ["name", "var_args"], "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(" "),
27170
+ "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(" "),
27171
+ "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(" "),
27172
+ ["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(" "),
27173
+ ["geometry"], ["property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["filter"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["opt_callback"], ["legacy"], ["callback"], ["func", "var_args"], ["opt_resetDefault"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["id"], ["taskId", "request",
27174
+ "opt_callback"], ["taskId", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["assetId", "aclUpdate", "opt_callback"], ["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"],
27175
+ ["id", "x", "y", "z"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["project", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["rootId", "opt_callback"], [], ["operationName", "opt_callback"], ["taskId", "request", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["params", "opt_callback"], ["opt_success", "opt_error"], ["id"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["parent", "opt_params", "opt_callback"],
27176
+ ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["tag"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["date",
27177
+ "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_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"],
27178
+ ["args", "opt_column"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["var_args"], ["name", "value"], ["opt_filter"], ["name", "value"], ["name", "value"], [], ["start", "opt_end"], ["name", "operator", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["namedArgs"], ["west", "south", "east", "north"], ["coords",
27179
+ "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], [], ["var_args"], ["var_args"],
27180
+ ["var_args"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["opt_args"], ["params", "opt_callback"], ["r", "g", "b"], ["expression", "opt_map"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["args"], ["params", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"], [], ["params", "opt_callback"], ["opt_visParams",
27181
+ "opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
27182
+ [ee.ApiFunction._apply, ee.ApiFunction.lookup, ee.ApiFunction._call, 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,
27183
+ 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.filterBounds, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.ComputedObject.prototype.getInfo,
27184
+ ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.data.resetWorkloadTag, ee.data.getFilmstripThumbId, ee.data.getTaskStatus, ee.data.updateAsset, ee.data.updateTask, ee.data.getList, ee.data.makeThumbUrl, ee.data.startIngestion, ee.data.startProcessing, ee.data.createFolder, ee.data.authenticateViaOauth, ee.data.setAssetAcl, ee.data.getMapId, ee.data.listAssets, ee.data.renameAsset, ee.data.getTaskList, ee.data.setAssetProperties,
27185
+ ee.data.authenticate, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.copyAsset, ee.data.listBuckets, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.getAssetRootQuota, ee.data.getWorkloadTag, ee.data.cancelOperation, ee.data.startTableIngestion, ee.data.deleteAsset, ee.data.listOperations, ee.data.getDownloadId, ee.data.authenticateViaPopup, ee.data.makeDownloadUrl, ee.data.getFeatureViewTilesKey, ee.data.getAssetAcl, ee.data.listImages, ee.data.listFeatures, ee.data.getAsset,
27186
+ ee.data.getAssetRoots, ee.data.authenticateViaPrivateKey, ee.data.setWorkloadTag, ee.data.getOperation, ee.data.createAssetHome, ee.data.newTaskId, ee.data.computeValue, ee.data.getInfo, ee.data.getThumbId, ee.data.createAsset, ee.data.setDefaultWorkloadTag, ee.data.cancelTask, ee.data.getVideoThumbId, ee.Date, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.TILE_SIZE, ee.initialize, ee.call, ee.reset, ee.Algorithms,
27187
+ ee.InitState, ee.apply, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.lt, ee.Filter.or, ee.Filter.neq, ee.Filter,
27188
+ ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.date, ee.Filter.metadata, ee.Filter.bounds, ee.Filter.eq, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.Rectangle, ee.Geometry, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.Point, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.prototype.serialize, ee.Geometry.prototype.toGeoJSON,
27189
+ ee.Image.prototype.select, ee.Image.prototype.rename, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.clip, ee.Image, ee.Image.prototype.getThumbId, ee.Image.rgb, ee.Image.prototype.expression, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.ImageCollection, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getInfo,
27190
+ ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getMap, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
27197
27191
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
27198
27192
  });
27199
27193
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "1.1.5",
3
+ "version": "1.2.0",
4
4
  "description": "JavaScript client for Google Earth Engine API.",
5
5
  "author": "Google LLC",
6
6
  "license": "Apache-2.0",
package/src/apiclient.js CHANGED
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
24
24
  /** @namespace */
25
25
  const apiclient = {};
26
26
 
27
- const API_CLIENT_VERSION = '1.1.5';
27
+ const API_CLIENT_VERSION = '1.2.0';
28
28
 
29
29
  exports.VERSION = apiVersion.VERSION;
30
30
  exports.API_CLIENT_VERSION = API_CLIENT_VERSION;