@google/earthengine 1.5.17 → 1.5.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/browser.js +83 -34
- package/build/ee_api_js.js +526 -523
- package/build/ee_api_js_debug.js +60 -11
- package/build/ee_api_js_npm.js +83 -34
- package/build/main.js +83 -34
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/layers/abstractoverlay.js +0 -3
- package/src/layers/binaryoverlay.js +0 -8
- package/src/layers/imageoverlay.js +0 -8
package/build/browser.js
CHANGED
|
@@ -1205,6 +1205,62 @@ $jscomp.polyfill("Array.prototype.find", function(orig) {
|
|
|
1205
1205
|
return $jscomp.findInternal(this, callback, opt_thisArg).v;
|
|
1206
1206
|
};
|
|
1207
1207
|
}, "es6", "es3");
|
|
1208
|
+
$jscomp.polyfill("Set.prototype.difference", function(orig) {
|
|
1209
|
+
return orig ? orig : function(other) {
|
|
1210
|
+
$jscomp.checkIsSetInstance(this);
|
|
1211
|
+
$jscomp.checkIsSetLike(other);
|
|
1212
|
+
for (var sets = $jscomp.getSmallerAndLargerSets(this, other), resultSet = new Set(this), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
|
|
1213
|
+
largerSet.has(next.value) && resultSet.delete(next.value), next = smallerSetIterator.next();
|
|
1214
|
+
}
|
|
1215
|
+
return resultSet;
|
|
1216
|
+
};
|
|
1217
|
+
}, "es_next", "es6");
|
|
1218
|
+
$jscomp.polyfill("Set.prototype.intersection", function(orig) {
|
|
1219
|
+
return orig ? orig : function(other) {
|
|
1220
|
+
$jscomp.checkIsSetInstance(this);
|
|
1221
|
+
$jscomp.checkIsSetLike(other);
|
|
1222
|
+
for (var resultSet = new Set(), sets = $jscomp.getSmallerAndLargerSets(this, other), smallerSetIterator = sets.smallerSetIterator, largerSet = sets.largerSet, next = smallerSetIterator.next(); !next.done;) {
|
|
1223
|
+
largerSet.has(next.value) && resultSet.add(next.value), next = smallerSetIterator.next();
|
|
1224
|
+
}
|
|
1225
|
+
return resultSet;
|
|
1226
|
+
};
|
|
1227
|
+
}, "es_next", "es6");
|
|
1228
|
+
$jscomp.polyfill("Set.prototype.isSubsetOf", function(orig) {
|
|
1229
|
+
return orig ? orig : function(other) {
|
|
1230
|
+
$jscomp.checkIsSetInstance(this);
|
|
1231
|
+
$jscomp.checkIsSetLike(other);
|
|
1232
|
+
if (this.size > other.size) {
|
|
1233
|
+
return !1;
|
|
1234
|
+
}
|
|
1235
|
+
for (var iterator = this.keys(), next = iterator.next(); !next.done;) {
|
|
1236
|
+
if (!other.has(next.value)) {
|
|
1237
|
+
return !1;
|
|
1238
|
+
}
|
|
1239
|
+
next = iterator.next();
|
|
1240
|
+
}
|
|
1241
|
+
return !0;
|
|
1242
|
+
};
|
|
1243
|
+
}, "es_next", "es6");
|
|
1244
|
+
$jscomp.checkIsSetLike = function(other) {
|
|
1245
|
+
if (typeof other !== "object" || other === null || typeof other.size !== "number" || other.size < 0 || typeof other.keys !== "function" || typeof other.has !== "function") {
|
|
1246
|
+
throw new TypeError("Argument must be set-like");
|
|
1247
|
+
}
|
|
1248
|
+
};
|
|
1249
|
+
$jscomp.checkIsValidIterator = function(iterator) {
|
|
1250
|
+
if (typeof iterator !== "object" || iterator === null || typeof iterator.next !== "function") {
|
|
1251
|
+
throw new TypeError("Invalid iterator.");
|
|
1252
|
+
}
|
|
1253
|
+
return iterator;
|
|
1254
|
+
};
|
|
1255
|
+
$jscomp.getSmallerAndLargerSets = function(thisSet, otherSet) {
|
|
1256
|
+
var smallerSetIterator, largerSet;
|
|
1257
|
+
return thisSet.size <= otherSet.size ? {smallerSetIterator:thisSet.keys(), largerSet:otherSet} : {smallerSetIterator:$jscomp.checkIsValidIterator(otherSet.keys()), largerSet:thisSet};
|
|
1258
|
+
};
|
|
1259
|
+
$jscomp.checkIsSetInstance = function(obj) {
|
|
1260
|
+
if (!(obj instanceof Set)) {
|
|
1261
|
+
throw new TypeError("Method must be called on an instance of Set.");
|
|
1262
|
+
}
|
|
1263
|
+
};
|
|
1208
1264
|
$jscomp.polyfill("String.prototype.codePointAt", function(orig) {
|
|
1209
1265
|
return orig ? orig : function(position) {
|
|
1210
1266
|
var string = $jscomp.checkStringArgs(this, null, "codePointAt"), size = string.length;
|
|
@@ -1258,7 +1314,7 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1258
1314
|
};
|
|
1259
1315
|
}, "es8", "es3");
|
|
1260
1316
|
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1, GoogFlags__client_only_wiz_lazy_tsx__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__disable_wiz_service_logging_map__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1,
|
|
1261
|
-
GoogFlags__optimize_scs_js_url_clone__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1,
|
|
1317
|
+
GoogFlags__optimize_scs_js_url_clone__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1, GoogFlags__testonly_stable_flag__disable:!1, GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1262
1318
|
/*
|
|
1263
1319
|
|
|
1264
1320
|
Copyright The Closure Library Authors.
|
|
@@ -1437,7 +1493,6 @@ goog.loadedModules_ = {};
|
|
|
1437
1493
|
goog.DEPENDENCIES_ENABLED = !1;
|
|
1438
1494
|
goog.ASSUME_ES_MODULES_TRANSPILED = !1;
|
|
1439
1495
|
goog.TRUSTED_TYPES_POLICY_NAME = "goog";
|
|
1440
|
-
goog.hasBadLetScoping = null;
|
|
1441
1496
|
goog.loadModule = function(moduleDef) {
|
|
1442
1497
|
var previousState = goog.moduleLoaderState_;
|
|
1443
1498
|
try {
|
|
@@ -6462,7 +6517,6 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native
|
|
|
6462
6517
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6463
6518
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
|
|
6464
6519
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable = !1;
|
|
6465
|
-
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6466
6520
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable = !1;
|
|
6467
6521
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable = !1;
|
|
6468
6522
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
@@ -6481,7 +6535,6 @@ goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etogg
|
|
|
6481
6535
|
goog.flags.JSPB_DISALLOW_MESSAGE_TOJSON = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable : goog.readFlagInternalDoNotUseOrElse(722764542, goog.DEBUG);
|
|
6482
6536
|
goog.flags.JSPB_USE_CONSTANT_DEFAULT_PIVOT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable : goog.readFlagInternalDoNotUseOrElse(748402145, goog.DEBUG);
|
|
6483
6537
|
goog.flags.JSPB_SERIALIZE_WITH_DYNAMIC_PIVOT_SELECTOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable : goog.readFlagInternalDoNotUseOrElse(748402146, goog.DEBUG);
|
|
6484
|
-
goog.flags.WEB_STORAGE_IS_AVAILABLE_CACHE_ONCE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable : goog.readFlagInternalDoNotUseOrElse(1981196515, !1);
|
|
6485
6538
|
goog.flags.OPTIMIZE_SCS_JS_URL_CLONE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_scs_js_url_clone__enable : goog.readFlagInternalDoNotUseOrElse(103340015, !1);
|
|
6486
6539
|
goog.flags.DISABLE_WIZ_SERVICE_LOGGING_MAP = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__disable_wiz_service_logging_map__enable : goog.readFlagInternalDoNotUseOrElse(555019702, !1);
|
|
6487
6540
|
goog.flags.TESTONLY_DISABLED_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483644, !1);
|
|
@@ -19372,7 +19425,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19372
19425
|
ee.apiclient = {};
|
|
19373
19426
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19374
19427
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19375
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19428
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.19";
|
|
19376
19429
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19377
19430
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19378
19431
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19670,8 +19723,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19670
19723
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19671
19724
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19672
19725
|
method = method || "POST";
|
|
19673
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19674
|
-
version === "1.5.
|
|
19726
|
+
var headers = {"Content-Type":contentType}, version = "1.5.19";
|
|
19727
|
+
version === "1.5.19" && (version = "latest");
|
|
19675
19728
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19676
19729
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19677
19730
|
if (authToken != null) {
|
|
@@ -26173,8 +26226,6 @@ ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile.p
|
|
|
26173
26226
|
}, void 0, this);
|
|
26174
26227
|
reader.readAsArrayBuffer(this.sourceData);
|
|
26175
26228
|
};
|
|
26176
|
-
ee.layers.BinaryOverlay = ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryOverlay;
|
|
26177
|
-
ee.layers.BinaryTile = ee_root.third_party.earthengine_api.javascript.layers.binaryoverlay.BinaryTile;
|
|
26178
26229
|
goog.net.ImageLoader = function(opt_parent) {
|
|
26179
26230
|
goog.events.EventTarget.call(this);
|
|
26180
26231
|
this.imageIdToRequestMap_ = {};
|
|
@@ -26280,8 +26331,6 @@ ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.def
|
|
|
26280
26331
|
tile.div.appendChild(tile.imageEl);
|
|
26281
26332
|
};
|
|
26282
26333
|
ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile.IMAGE_LOADER_EVENTS_ = [goog.events.EventType.LOAD, goog.net.EventType.ABORT, goog.net.EventType.ERROR];
|
|
26283
|
-
ee.layers.ImageOverlay = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageOverlay;
|
|
26284
|
-
ee.layers.ImageTile = ee_root.third_party.earthengine_api.javascript.layers.imageoverlay.ImageTile;
|
|
26285
26334
|
goog.string.path = {};
|
|
26286
26335
|
goog.string.path.baseName = function(path) {
|
|
26287
26336
|
var i = path.lastIndexOf("/") + 1;
|
|
@@ -27198,29 +27247,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27198
27247
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27199
27248
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27200
27249
|
(function() {
|
|
27201
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27202
|
-
orderedParamLists = [["name"
|
|
27203
|
-
"collection opt_description
|
|
27204
|
-
|
|
27205
|
-
"
|
|
27206
|
-
["
|
|
27207
|
-
|
|
27208
|
-
"
|
|
27209
|
-
"opt_callback"], ["
|
|
27210
|
-
"opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [],
|
|
27211
|
-
|
|
27212
|
-
"opt_geodesic", "opt_maxError", "
|
|
27213
|
-
["
|
|
27214
|
-
"opt_callback"], ["
|
|
27215
|
-
[ee.ApiFunction.
|
|
27216
|
-
module$contents$ee$batch_Export.
|
|
27217
|
-
ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.
|
|
27218
|
-
ee.data.
|
|
27219
|
-
ee.data.
|
|
27220
|
-
ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature
|
|
27221
|
-
ee.Filter.
|
|
27222
|
-
ee.Image, ee.Image.
|
|
27223
|
-
ee.ImageCollection.prototype.
|
|
27250
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.image.toAsset ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.sort ee.Collection.prototype.filterDate ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.data.getDownloadId ee.data.makeDownloadUrl ee.data.authenticateViaPrivateKey ee.data.getTableDownloadId ee.data.listImages ee.data.setAssetAcl ee.data.makeTableDownloadUrl ee.data.authenticateViaOauth ee.data.authenticateViaPopup ee.data.listBuckets ee.data.setAssetProperties ee.data.newTaskId ee.data.getAssetRoots ee.data.getAssetRootQuota ee.data.createAssetHome ee.data.getTaskStatus ee.data.startIngestion ee.data.getWorkloadTag ee.data.getTaskList ee.data.getTileUrl ee.data.createAsset ee.data.setWorkloadTag ee.data.getMapId ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.resetWorkloadTag ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.cancelOperation ee.data.renameAsset ee.data.listFeatures ee.data.startTableIngestion ee.data.copyAsset ee.data.computeValue ee.data.listOperations ee.data.getOperation ee.data.deleteAsset ee.data.getAsset ee.data.getVideoThumbId ee.data.getInfo ee.data.cancelTask ee.data.getAssetAcl ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.getList ee.data.updateTask ee.data.makeThumbUrl ee.data.listAssets ee.data.authenticate ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.Algorithms ee.reset ee.InitState ee.call ee.apply ee.TILE_SIZE ee.initialize ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMapId ee.Filter.inList ee.Filter.lte ee.Filter.and ee.Filter.lt ee.Filter.prototype.not ee.Filter.bounds ee.Filter ee.Filter.or ee.Filter.gte ee.Filter.eq ee.Filter.metadata ee.Filter.date ee.Filter.gt ee.Filter.neq ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.prototype.toGeoJSON ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.getDownloadURL ee.Image.prototype.select ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.clip ee.Image.prototype.getMapId ee.Image.rgb ee.Image ee.Image.prototype.expression ee.Image.prototype.getThumbId ee.Image.prototype.getThumbURL ee.Image.prototype.getMap ee.Image.prototype.rename ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.encodeCloudApi ee.Serializer.encodeCloudApiPretty ee.Serializer.toJSON ee.Serializer.toCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
|
|
27251
|
+
orderedParamLists = [["name"], ["name", "var_args"], ["name", "namedArgs"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27252
|
+
["classifier", "opt_description", "opt_assetId", "opt_priority"], "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27253
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27254
|
+
"image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27255
|
+
["algorithm", "opt_dropNulls"], ["property", "opt_ascending"], ["start", "opt_end"], ["filter"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["geometry"], ["algorithm", "opt_first"], ["legacy"], ["func", "var_args"], ["callback"], ["opt_callback"], ["params", "opt_callback"], ["id"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["assetId", "aclUpdate",
|
|
27256
|
+
"opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["opt_success", "opt_error"], ["project", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_count", "opt_callback"], ["opt_callback"], ["rootId", "opt_callback"], ["requestedId", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], [], ["opt_callback"], ["id", "x", "y", "z"], ["value", "opt_path", "opt_force", "opt_properties",
|
|
27257
|
+
"opt_callback"], ["tag"], ["params", "opt_callback"], ["params", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["asset", "params", "opt_callback"], ["taskId", "request", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["obj", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName",
|
|
27258
|
+
"opt_callback"], ["assetId", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["taskId", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "asset", "updateFields", "opt_callback"], ["date",
|
|
27259
|
+
"opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], [], [], ["func", "var_args"], ["func", "namedArgs"], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["var_args"], [], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"],
|
|
27260
|
+
["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], [], ["geometry", "opt_errorMargin"], ["opt_filter"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["start", "opt_end"], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], ["west", "south", "east", "north"], ["coords", "opt_proj",
|
|
27261
|
+
"opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], [], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["params", "opt_callback"], ["var_args"],
|
|
27262
|
+
["var_args"], ["opt_callback"], ["geometry"], ["opt_visParams", "opt_callback"], ["r", "g", "b"], ["opt_args"], ["expression", "opt_map"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["opt_visParams", "opt_callback"], [], ["args"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["params", "opt_callback"], ["params",
|
|
27263
|
+
"opt_callback"], ["list"], ["number"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27264
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toCloudStorage,
|
|
27265
|
+
module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.sort, ee.Collection.prototype.filterDate, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.serialize,
|
|
27266
|
+
ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.data.getDownloadId, ee.data.makeDownloadUrl, ee.data.authenticateViaPrivateKey, ee.data.getTableDownloadId, ee.data.listImages, ee.data.setAssetAcl, ee.data.makeTableDownloadUrl, ee.data.authenticateViaOauth, ee.data.authenticateViaPopup, ee.data.listBuckets, ee.data.setAssetProperties, ee.data.newTaskId, ee.data.getAssetRoots, ee.data.getAssetRootQuota, ee.data.createAssetHome, ee.data.getTaskStatus,
|
|
27267
|
+
ee.data.startIngestion, ee.data.getWorkloadTag, ee.data.getTaskList, ee.data.getTileUrl, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.getMapId, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.createFolder, ee.data.resetWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit, ee.data.cancelOperation, ee.data.renameAsset, ee.data.listFeatures, ee.data.startTableIngestion, ee.data.copyAsset, ee.data.computeValue, ee.data.listOperations, ee.data.getOperation, ee.data.deleteAsset,
|
|
27268
|
+
ee.data.getAsset, ee.data.getVideoThumbId, ee.data.getInfo, ee.data.cancelTask, ee.data.getAssetAcl, ee.data.startProcessing, ee.data.getFilmstripThumbId, ee.data.getList, ee.data.updateTask, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.authenticate, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.Algorithms, ee.reset, ee.InitState, ee.call, ee.apply, ee.TILE_SIZE, ee.initialize,
|
|
27269
|
+
ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMapId, ee.Filter.inList, ee.Filter.lte, ee.Filter.and, ee.Filter.lt, ee.Filter.prototype.not, ee.Filter.bounds, ee.Filter, ee.Filter.or,
|
|
27270
|
+
ee.Filter.gte, ee.Filter.eq, ee.Filter.metadata, ee.Filter.date, ee.Filter.gt, ee.Filter.neq, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.getDownloadURL,
|
|
27271
|
+
ee.Image.prototype.select, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.clip, ee.Image.prototype.getMapId, ee.Image.rgb, ee.Image, ee.Image.prototype.expression, ee.Image.prototype.getThumbId, ee.Image.prototype.getThumbURL, ee.Image.prototype.getMap, ee.Image.prototype.rename, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.first, ee.ImageCollection,
|
|
27272
|
+
ee.ImageCollection.prototype.linkCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.encodeCloudApi, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27224
27273
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27225
27274
|
});
|
|
27226
27275
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|