@google/earthengine 0.1.337 → 0.1.339

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.
Files changed (37) hide show
  1. package/.tmp/BUILD +8 -0
  2. package/.tmp/METADATA +4 -4
  3. package/build/browser.js +85 -38
  4. package/build/ee_api_js.js +239 -239
  5. package/build/ee_api_js_debug.js +63 -16
  6. package/build/ee_api_js_npm.js +85 -38
  7. package/build/main.js +85 -38
  8. package/package.json +1 -1
  9. package/src/apiclient.js +1 -1
  10. package/src/batch.js +3 -3
  11. package/src/examples/Arrays/LinearRegression.js +1 -2
  12. package/src/examples/Arrays/QualityMosaic.js +1 -2
  13. package/src/examples/Arrays/SpectralUnmixing.js +1 -1
  14. package/src/examples/Charts/DoySeries.js +5 -4
  15. package/src/examples/Charts/ElevationAndTemperature.js +1 -1
  16. package/src/examples/Charts/ImageSpectra.js +2 -2
  17. package/src/examples/Charts/ImageTimeSeries.js +2 -2
  18. package/src/examples/Charts/ImageTimeSeriesByRegion.js +1 -1
  19. package/src/examples/CloudMasking/Landsat8TOAReflectanceQABand.js +5 -5
  20. package/src/examples/CodeEditor/MapCenterObject.js +1 -1
  21. package/src/examples/Demos/Classification.js +472 -472
  22. package/src/examples/Demos/EgyptClassification.js +30 -21
  23. package/src/examples/Demos/Landsat8HarmonicModeling.js +1 -1
  24. package/src/examples/Image/CannyEdgeDetector.js +1 -1
  25. package/src/examples/Image/CenterPivotIrrigationDetector.js +1 -1
  26. package/src/examples/Image/HSVPanSharpening.js +1 -1
  27. package/src/examples/Image/HoughTransform.js +1 -1
  28. package/src/examples/ImageCollection/ClippedComposite.js +1 -1
  29. package/src/examples/ImageCollection/ExpressionMap.js +1 -1
  30. package/src/examples/ImageCollection/FilteredComposite.js +1 -1
  31. package/src/examples/ImageCollection/LandsatSimpleComposite.js +2 -2
  32. package/src/examples/ImageCollection/SimpleCloudScore.js +1 -1
  33. package/src/examples/UserInterface/AirstripThumbnails.js +13 -13
  34. package/src/examples/UserInterface/AsyncInspector.js +2 -2
  35. package/src/examples/UserInterface/LandsatExplorer.js +4 -4
  36. package/src/examples/UserInterface/MosaicEditor.js +11 -11
  37. package/src/examples/UserInterface/TwoChartInspector.js +1 -1
package/.tmp/BUILD CHANGED
@@ -416,6 +416,14 @@ Fileset(
416
416
  srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.337:public",
417
417
  destdir = "0.1.337",
418
418
  ),
419
+ FilesetEntry(
420
+ srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.338:public",
421
+ destdir = "0.1.338",
422
+ ),
423
+ FilesetEntry(
424
+ srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.339:public",
425
+ destdir = "0.1.339",
426
+ ),
419
427
  # NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
420
428
  ],
421
429
  )
package/.tmp/METADATA CHANGED
@@ -1,6 +1,6 @@
1
1
  # Format: google3/devtools/metadata/metadata.proto (go/google3metadata)
2
2
 
3
- name: "0.1.337"
3
+ name: "0.1.339"
4
4
  description:
5
5
  "Google Earth Engine is a cloud-based platform for planetary-scale "
6
6
  "environmental data analysis. The Earth Engine JavaScript API allows "
@@ -12,10 +12,10 @@ third_party {
12
12
  type: GIT
13
13
  value: "https://github.com/google/earthengine-api.git"
14
14
  }
15
- version: "v0.1.337"
15
+ version: "v0.1.339"
16
16
  last_upgrade_date: {
17
17
  year: 2023
18
- month: 1
19
- day: 20
18
+ month: 2
19
+ day: 2
20
20
  }
21
21
  }
package/build/browser.js CHANGED
@@ -1234,6 +1234,7 @@ goog.readFlagInternalDoNotUseOrElse = function(googFlagId, defaultValue) {
1234
1234
  return null != val ? val : defaultValue;
1235
1235
  };
1236
1236
  goog.FLAGS_OBJECT_ = "CLOSURE_FLAGS";
1237
+ goog.FLAGS_STAGING_DEFAULT = !0;
1237
1238
  goog.provide = function(name) {
1238
1239
  if (goog.isInModuleLoader_()) {
1239
1240
  throw Error("goog.provide cannot be used within a module.");
@@ -6843,6 +6844,47 @@ goog.html.SafeUrl.sanitizeAssertUnchanged = function(url, opt_allowDataUrl) {
6843
6844
  goog.asserts.assert(goog.html.SAFE_URL_PATTERN_.test(url), "%s does not match the safe URL pattern", url) || (url = goog.html.SafeUrl.INNOCUOUS_STRING);
6844
6845
  return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
6845
6846
  };
6847
+ goog.html.SafeUrl.ASSUME_IMPLEMENTS_URL_API_GOOG = 2020 <= goog.FEATURESET_YEAR;
6848
+ goog.html.SafeUrl.supportsURLAPI = function() {
6849
+ if (goog.html.SafeUrl.ASSUME_IMPLEMENTS_URL_API_GOOG) {
6850
+ return !0;
6851
+ }
6852
+ try {
6853
+ return new URL("s://g"), !0;
6854
+ } catch (e) {
6855
+ return !1;
6856
+ }
6857
+ }();
6858
+ goog.html.SafeUrl.legacyExtractScheme = function(url) {
6859
+ var aTag = document.createElement("a");
6860
+ try {
6861
+ aTag.href = url;
6862
+ } catch (e) {
6863
+ return;
6864
+ }
6865
+ var protocol = aTag.protocol;
6866
+ return ":" === protocol || "" === protocol ? "https:" : protocol;
6867
+ };
6868
+ goog.html.SafeUrl.extractScheme = function(url) {
6869
+ if (!goog.html.SafeUrl.supportsURLAPI) {
6870
+ return goog.html.SafeUrl.legacyExtractScheme(url);
6871
+ }
6872
+ try {
6873
+ var parsedUrl = new URL(url);
6874
+ } catch (e) {
6875
+ return "https:";
6876
+ }
6877
+ return parsedUrl.protocol;
6878
+ };
6879
+ goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged = function(url) {
6880
+ if (url instanceof goog.html.SafeUrl) {
6881
+ return url;
6882
+ }
6883
+ url = "object" == typeof url && url.implementsGoogStringTypedString ? url.getTypedStringValue() : String(url);
6884
+ var parsedScheme = goog.html.SafeUrl.extractScheme(url);
6885
+ goog.asserts.assert("javascript:" !== parsedScheme, "%s is a javascript: URL", url) || (url = goog.html.SafeUrl.INNOCUOUS_STRING);
6886
+ return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
6887
+ };
6846
6888
  goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_ = {};
6847
6889
  goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse = function(url) {
6848
6890
  return new goog.html.SafeUrl(url, goog.html.SafeUrl.CONSTRUCTOR_TOKEN_PRIVATE_);
@@ -7328,15 +7370,15 @@ goog.dom.safe.setOuterHtml = function(elem, html) {
7328
7370
  elem.outerHTML = module$contents$goog$html$SafeHtml_SafeHtml.unwrapTrustedHTML(html);
7329
7371
  };
7330
7372
  goog.dom.safe.setFormElementAction = function(form, url) {
7331
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7373
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7332
7374
  module$contents$goog$asserts$dom_assertIsHtmlFormElement(form).action = goog.html.SafeUrl.unwrap(safeUrl);
7333
7375
  };
7334
7376
  goog.dom.safe.setButtonFormAction = function(button, url) {
7335
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7377
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7336
7378
  module$contents$goog$asserts$dom_assertIsHtmlButtonElement(button).formAction = goog.html.SafeUrl.unwrap(safeUrl);
7337
7379
  };
7338
7380
  goog.dom.safe.setInputFormAction = function(input, url) {
7339
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7381
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7340
7382
  module$contents$goog$asserts$dom_assertIsHtmlInputElement(input).formAction = goog.html.SafeUrl.unwrap(safeUrl);
7341
7383
  };
7342
7384
  goog.dom.safe.setStyle = function(elem, style) {
@@ -7347,17 +7389,17 @@ goog.dom.safe.documentWrite = function(doc, html) {
7347
7389
  };
7348
7390
  goog.dom.safe.setAnchorHref = function(anchor, url) {
7349
7391
  module$contents$goog$asserts$dom_assertIsHtmlAnchorElement(anchor);
7350
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7392
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7351
7393
  anchor.href = goog.html.SafeUrl.unwrap(safeUrl);
7352
7394
  };
7353
7395
  goog.dom.safe.setAudioSrc = function(audioElement, url) {
7354
7396
  module$contents$goog$asserts$dom_assertIsHtmlAudioElement(audioElement);
7355
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url, /^data:audio\//i.test(url));
7397
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7356
7398
  audioElement.src = goog.html.SafeUrl.unwrap(safeUrl);
7357
7399
  };
7358
7400
  goog.dom.safe.setVideoSrc = function(videoElement, url) {
7359
7401
  module$contents$goog$asserts$dom_assertIsHtmlVideoElement(videoElement);
7360
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url, /^data:video\//i.test(url));
7402
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7361
7403
  videoElement.src = goog.html.SafeUrl.unwrap(safeUrl);
7362
7404
  };
7363
7405
  goog.dom.safe.setEmbedSrc = function(embed, url) {
@@ -7385,7 +7427,7 @@ goog.dom.safe.setLinkHrefAndRel = function(link, url, rel) {
7385
7427
  var nonce = goog.dom.safe.getStyleNonce(link.ownerDocument && link.ownerDocument.defaultView);
7386
7428
  nonce && link.setAttribute("nonce", nonce);
7387
7429
  } else {
7388
- link.href = url instanceof goog.html.TrustedResourceUrl ? goog.html.TrustedResourceUrl.unwrap(url) : url instanceof goog.html.SafeUrl ? goog.html.SafeUrl.unwrap(url) : goog.html.SafeUrl.unwrap(goog.html.SafeUrl.sanitizeAssertUnchanged(url));
7430
+ link.href = url instanceof goog.html.TrustedResourceUrl ? goog.html.TrustedResourceUrl.unwrap(url) : url instanceof goog.html.SafeUrl ? goog.html.SafeUrl.unwrap(url) : goog.html.SafeUrl.unwrap(goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url));
7389
7431
  }
7390
7432
  };
7391
7433
  goog.dom.safe.setObjectData = function(object, url) {
@@ -7408,20 +7450,20 @@ goog.dom.safe.setNonceForScriptElement_ = function(script) {
7408
7450
  };
7409
7451
  goog.dom.safe.setLocationHref = function(loc, url) {
7410
7452
  goog.dom.asserts.assertIsLocation(loc);
7411
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7453
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7412
7454
  loc.href = goog.html.SafeUrl.unwrap(safeUrl);
7413
7455
  };
7414
7456
  goog.dom.safe.assignLocation = function(loc, url) {
7415
7457
  goog.dom.asserts.assertIsLocation(loc);
7416
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7458
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7417
7459
  loc.assign(goog.html.SafeUrl.unwrap(safeUrl));
7418
7460
  };
7419
7461
  goog.dom.safe.replaceLocation = function(loc, url) {
7420
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7462
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7421
7463
  loc.replace(goog.html.SafeUrl.unwrap(safeUrl));
7422
7464
  };
7423
7465
  goog.dom.safe.openInWindow = function(url, opt_openerWin, opt_name, opt_specs) {
7424
- var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeAssertUnchanged(url);
7466
+ var safeUrl = url instanceof goog.html.SafeUrl ? url : goog.html.SafeUrl.sanitizeJavascriptUrlAssertUnchanged(url);
7425
7467
  var win = opt_openerWin || goog.global, name = opt_name instanceof goog.string.Const ? goog.string.Const.unwrap(opt_name) : opt_name || "";
7426
7468
  return void 0 !== opt_specs ? win.open(goog.html.SafeUrl.unwrap(safeUrl), name, opt_specs) : win.open(goog.html.SafeUrl.unwrap(safeUrl), name);
7427
7469
  };
@@ -17500,7 +17542,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
17500
17542
  ee.apiclient = {};
17501
17543
  var module$contents$ee$apiclient_apiclient = {};
17502
17544
  ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
17503
- ee.apiclient.API_CLIENT_VERSION = "0.1.337";
17545
+ ee.apiclient.API_CLIENT_VERSION = "0.1.339";
17504
17546
  ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
17505
17547
  ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
17506
17548
  ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
@@ -17781,8 +17823,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
17781
17823
  var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
17782
17824
  body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
17783
17825
  method = method || "POST";
17784
- var headers = {"Content-Type":contentType,}, version = "0.1.337";
17785
- "0.1.337" === version && (version = "latest");
17826
+ var headers = {"Content-Type":contentType,}, version = "0.1.339";
17827
+ "0.1.339" === version && (version = "latest");
17786
17828
  headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
17787
17829
  var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
17788
17830
  if (null != authToken) {
@@ -19156,7 +19198,7 @@ ee.rpc_convert_batch.taskToExportTableRequest = function(params) {
19156
19198
  }
19157
19199
  var selectors = params.selectors || null;
19158
19200
  null != selectors && "string" === typeof selectors && (selectors = selectors.split(","));
19159
- var result = new module$exports$eeapiclient$ee_api_client.ExportTableRequest({expression:ee.Serializer.encodeCloudApiExpression(params.element), description:stringOrNull_(params.description), fileExportOptions:null, assetExportOptions:null, featureViewExportOptions:null, selectors:selectors, maxErrorMeters:numberOrNull_(params.maxErrorMeters), requestId:stringOrNull_(params.id), maxVertices:numberOrNull_(params.maxVertices), maxWorkers:numberOrNull_(params.maxWorkers)}),
19201
+ var result = new module$exports$eeapiclient$ee_api_client.ExportTableRequest({expression:ee.Serializer.encodeCloudApiExpression(params.element), description:stringOrNull_(params.description), fileExportOptions:null, assetExportOptions:null, featureViewExportOptions:null, bigqueryExportOptions:null, selectors:selectors, maxErrorMeters:numberOrNull_(params.maxErrorMeters), requestId:stringOrNull_(params.id), maxVertices:numberOrNull_(params.maxVertices), maxWorkers:numberOrNull_(params.maxWorkers)}),
19160
19202
  destination = ee.rpc_convert_batch.guessDestination_(params);
19161
19203
  switch(destination) {
19162
19204
  case ee.rpc_convert_batch.ExportDestination.GCS:
@@ -19222,6 +19264,7 @@ ee.rpc_convert_batch.guessDestination_ = function(params) {
19222
19264
  return destination;
19223
19265
  }
19224
19266
  null != params.outputBucket || null != params.outputPrefix ? destination = ee.rpc_convert_batch.ExportDestination.GCS : null != params.assetId ? destination = ee.rpc_convert_batch.ExportDestination.ASSET : null != params.mapName && (destination = ee.rpc_convert_batch.ExportDestination.FEATURE_VIEW);
19267
+ null != params.table && (destination = ee.rpc_convert_batch.ExportDestination.BIGQUERY);
19225
19268
  return destination;
19226
19269
  };
19227
19270
  ee.rpc_convert_batch.buildGeoTiffFormatOptions_ = function(params) {
@@ -19278,7 +19321,7 @@ ee.rpc_convert_batch.buildFeatureViewExportOptions_ = function(params) {
19278
19321
  return new module$exports$eeapiclient$ee_api_client.FeatureViewAssetExportOptions({featureViewDestination:ee.rpc_convert_batch.buildFeatureViewDestination_(params), ingestionTimeParameters:ee.rpc_convert_batch.buildFeatureViewIngestionTimeParameters_(params),});
19279
19322
  };
19280
19323
  ee.rpc_convert_batch.buildBigQueryExportOptions_ = function(params) {
19281
- return new module$exports$eeapiclient$ee_api_client.BigQueryExportOptions({bigQueryDestination:ee.rpc_convert_batch.buildBigQueryDestination_(params),});
19324
+ return new module$exports$eeapiclient$ee_api_client.BigQueryExportOptions({bigqueryDestination:ee.rpc_convert_batch.buildBigQueryDestination_(params),});
19282
19325
  };
19283
19326
  ee.rpc_convert_batch.buildVideoFileExportOptions_ = function(params, destination) {
19284
19327
  var result = new module$exports$eeapiclient$ee_api_client.VideoFileExportOptions({cloudStorageDestination:null, driveDestination:null, fileFormat:"MP4",});
@@ -19412,6 +19455,7 @@ ee.data = {};
19412
19455
  ee.data.AbstractTaskConfig = {};
19413
19456
  ee.data.AlgorithmsRegistry = {};
19414
19457
  ee.data.AssetList = {};
19458
+ ee.data.BigQueryTaskConfig = {};
19415
19459
  ee.data.ClassifierTaskConfig = {};
19416
19460
  ee.data.FeatureViewTaskConfig = {};
19417
19461
  ee.data.ImageTaskConfig = {};
@@ -22023,6 +22067,9 @@ module$contents$ee$batch_Export.prepareDestination_ = function(taskConfig, desti
22023
22067
  case ee.data.ExportDestination.FEATURE_VIEW:
22024
22068
  taskConfig.mapName = taskConfig.mapName || "";
22025
22069
  break;
22070
+ case ee.data.ExportDestination.BIGQUERY:
22071
+ taskConfig.table = taskConfig.table || "";
22072
+ break;
22026
22073
  default:
22027
22074
  var folderType = goog.typeOf(taskConfig.folder);
22028
22075
  if (!module$contents$goog$array_contains(["string", "undefined"], folderType)) {
@@ -25247,28 +25294,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
25247
25294
  ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
25248
25295
  ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
25249
25296
  (function() {
25250
- 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.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.video.toDrive ee.batch.Export.map.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.Collection.prototype.filterMetadata ee.Collection.prototype.iterate ee.Collection.prototype.map ee.Collection.prototype.limit ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.Collection.prototype.sort ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.getInfo ee.data.authenticateViaOauth ee.data.createAsset ee.data.getVideoThumbId ee.data.cancelTask ee.data.getMapId ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.data.updateAsset ee.data.startIngestion ee.data.getTileUrl ee.data.updateTask ee.data.authenticate ee.data.getList ee.data.createFolder ee.data.startProcessing ee.data.setAssetAcl ee.data.listAssets ee.data.renameAsset ee.data.authenticateViaPopup ee.data.getDownloadId ee.data.setAssetProperties ee.data.getFeatureViewTilesKey ee.data.copyAsset ee.data.authenticateViaPrivateKey ee.data.listImages ee.data.makeDownloadUrl ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.listFeatures ee.data.getTableDownloadId ee.data.deleteAsset ee.data.listBuckets ee.data.getAsset ee.data.getAssetAcl ee.data.computeValue ee.data.makeTableDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.getInfo ee.data.newTaskId ee.data.createAssetHome ee.data.setWorkloadTag ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.getTaskStatus ee.data.resetWorkloadTag ee.data.getTaskList ee.data.getTaskListWithLimit ee.data.listOperations ee.data.cancelOperation ee.data.getOperation ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.reset ee.InitState ee.Algorithms ee.initialize ee.call ee.apply ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.Filter.lt ee.Filter.and ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.prototype.not ee.Filter.inList ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry ee.Geometry.prototype.serialize ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.String ee.Terrain".split(" "),
25251
- orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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".split(" "),
25252
- ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "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".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "),
25253
- "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".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".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
25254
- "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".split(" "), ["classifier", "opt_description", "opt_assetId"], ["name", "operator", "value"], ["algorithm", "opt_first"], ["algorithm", "opt_dropNulls"], ["max", "opt_property", "opt_ascending"], ["filter"], ["start", "opt_end"], ["geometry"], ["property", "opt_ascending"], ["callback"],
25255
- ["func", "var_args"], ["legacy"], ["opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "request", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "action", "opt_callback"],
25256
- ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"],
25257
- ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["parent", "opt_params", "opt_callback"], ["id"], ["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], ["asset", "params", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["id", "opt_callback"], ["assetId", "opt_callback"], ["obj", "opt_callback"], ["id"], ["opt_callback"], [], ["id", "opt_callback"], ["opt_count", "opt_callback"], ["requestedId",
25258
- "opt_callback"], ["tag"], ["params", "opt_callback"], ["tag"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["opt_callback"], ["opt_limit", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["operationName", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["func", "namedArgs"], [],
25259
- ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["name", "value"], ["var_args"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], [], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "operator",
25260
- "value"], ["name", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["namedArgs"], ["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"],
25261
- ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"],
25262
- ["opt_callback"], ["selectors", "opt_names"], [], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
25263
- [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.toFeatureView, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.map.toCloudStorage,
25264
- module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.iterate, ee.Collection.prototype.map, ee.Collection.prototype.limit, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.Collection.prototype.sort, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.serialize,
25265
- ee.ComputedObject.prototype.getInfo, ee.data.authenticateViaOauth, ee.data.createAsset, ee.data.getVideoThumbId, ee.data.cancelTask, ee.data.getMapId, ee.data.getFilmstripThumbId, ee.data.makeThumbUrl, ee.data.updateAsset, ee.data.startIngestion, ee.data.getTileUrl, ee.data.updateTask, ee.data.authenticate, ee.data.getList, ee.data.createFolder, ee.data.startProcessing, ee.data.setAssetAcl, ee.data.listAssets, ee.data.renameAsset, ee.data.authenticateViaPopup, ee.data.getDownloadId, ee.data.setAssetProperties,
25266
- ee.data.getFeatureViewTilesKey, ee.data.copyAsset, ee.data.authenticateViaPrivateKey, ee.data.listImages, ee.data.makeDownloadUrl, ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.listFeatures, ee.data.getTableDownloadId, ee.data.deleteAsset, ee.data.listBuckets, ee.data.getAsset, ee.data.getAssetAcl, ee.data.computeValue, ee.data.makeTableDownloadUrl, ee.data.getAssetRoots, ee.data.getWorkloadTag, ee.data.getInfo, ee.data.newTaskId, ee.data.createAssetHome, ee.data.setWorkloadTag,
25267
- ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.getTaskStatus, ee.data.resetWorkloadTag, ee.data.getTaskList, ee.data.getTaskListWithLimit, ee.data.listOperations, ee.data.cancelOperation, ee.data.getOperation, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.reset, ee.InitState, ee.Algorithms, ee.initialize, ee.call, ee.apply, ee.TILE_SIZE, ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap,
25268
- ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.Filter.lt, ee.Filter.and, ee.Filter.gte, ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.prototype.not, ee.Filter.inList, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.gt, ee.Filter.bounds, ee.Filter.lte, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.Polygon,
25269
- ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.prototype.serialize, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId,
25270
- ee.Image.prototype.clip, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.Serializer.encode,
25271
- ee.Serializer.toJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.String, ee.Terrain].forEach(function(fn, i) {
25297
+ var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.Collection.prototype.filter ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getOperation ee.data.getList ee.data.listAssets ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.startIngestion ee.data.getMapId ee.data.createAssetHome ee.data.getTableDownloadId ee.data.getAssetAcl ee.data.cancelOperation ee.data.listOperations ee.data.authenticate ee.data.listFeatures ee.data.setAssetAcl ee.data.getTaskList ee.data.deleteAsset ee.data.createAsset ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getThumbId ee.data.getFeatureViewTilesKey ee.data.createFolder ee.data.setDefaultWorkloadTag ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.copyAsset ee.data.updateTask ee.data.getWorkloadTag ee.data.startProcessing ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.getTileUrl ee.data.computeValue ee.data.getTaskStatus ee.data.authenticateViaPrivateKey ee.data.updateAsset ee.data.getInfo ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.getAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.listImages ee.data.newTaskId ee.data.cancelTask ee.data.listBuckets ee.data.getDownloadId ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Dictionary ee.apply ee.initialize ee.call ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select ee.Filter.lt ee.Filter.and ee.Filter.or ee.Filter.gte ee.Filter.date ee.Filter.inList ee.Filter.prototype.not ee.Filter ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.bounds ee.Filter.gt ee.Filter.lte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.clip ee.Image.prototype.expression ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.cat ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
25298
+ orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
25299
+ ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris".split(" "),
25300
+ "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".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".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".split(" "),
25301
+ "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), ["filter"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["property", "opt_ascending"], ["geometry"], ["callback"],
25302
+ ["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["taskId", "request", "opt_callback"], ["params", "opt_callback"], ["requestedId", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["operationName", "opt_callback"], ["opt_limit", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["asset", "params",
25303
+ "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["assetId", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["tag"], ["tag"], ["opt_success", "opt_error"],
25304
+ ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "action", "opt_callback"], [], ["taskId", "params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["id", "x", "y", "z"], ["obj", "opt_callback"], ["taskId", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["assetId", "asset", "updateFields", "opt_callback"], ["id", "opt_callback"], ["id"], ["assetId", "properties",
25305
+ "opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "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(" "), ["func", "var_args"], [], [], [],
25306
+ [], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"], ["name",
25307
+ "operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords",
25308
+ "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["geometry"], ["expression", "opt_map"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], [], ["selectors",
25309
+ "opt_names"], ["args"], ["params", "opt_callback"], ["params", "opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
25310
+ [ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toDrive, 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.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage,
25311
+ module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, ee.Collection.prototype.filter, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo,
25312
+ ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.startIngestion, ee.data.getMapId, ee.data.createAssetHome, ee.data.getTableDownloadId, ee.data.getAssetAcl, ee.data.cancelOperation, ee.data.listOperations, ee.data.authenticate, ee.data.listFeatures, ee.data.setAssetAcl, ee.data.getTaskList, ee.data.deleteAsset, ee.data.createAsset, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.getFilmstripThumbId,
25313
+ ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.createFolder, ee.data.setDefaultWorkloadTag, ee.data.setWorkloadTag, ee.data.authenticateViaPopup, ee.data.copyAsset, ee.data.updateTask, ee.data.getWorkloadTag, ee.data.startProcessing, ee.data.renameAsset, ee.data.getTaskListWithLimit, ee.data.getTileUrl, ee.data.computeValue, ee.data.getTaskStatus, ee.data.authenticateViaPrivateKey, ee.data.updateAsset, ee.data.getInfo, ee.data.makeTableDownloadUrl,
25314
+ ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.initialize, ee.call, ee.TILE_SIZE, ee.Algorithms, ee.reset, ee.InitState, ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap,
25315
+ ee.Feature.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, ee.Filter.lt, ee.Filter.and, ee.Filter.or, ee.Filter.gte, ee.Filter.date, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Polygon,
25316
+ ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL, ee.Image.prototype.clip,
25317
+ ee.Image.prototype.expression, ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.cat, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON,
25318
+ ee.Serializer.encodeCloudApi, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
25272
25319
  fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
25273
25320
  });
25274
25321
  goog.global.EXPORTED_FN_INFO = exportedFnInfo;