@google/earthengine 1.6.1 → 1.6.3
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 +53 -35
- package/build/ee_api_js.js +281 -281
- package/build/ee_api_js_debug.js +32 -14
- package/build/ee_api_js_npm.js +53 -35
- package/build/main.js +53 -35
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/eeapiclient/api_request_hook.ts +32 -3
- package/src/eeapiclient/promise_api_client.ts +14 -10
package/build/browser.js
CHANGED
|
@@ -1190,6 +1190,19 @@ $jscomp.polyfill("String.prototype.includes", function(orig) {
|
|
|
1190
1190
|
return $jscomp.checkStringArgs(this, searchString, "includes").indexOf(searchString, opt_position || 0) !== -1;
|
|
1191
1191
|
};
|
|
1192
1192
|
}, "es6", "es3");
|
|
1193
|
+
$jscomp.polyfill("Promise.prototype.finally", function(orig) {
|
|
1194
|
+
return orig ? orig : function(onFinally) {
|
|
1195
|
+
return this.then(function(value) {
|
|
1196
|
+
return Promise.resolve(onFinally()).then(function() {
|
|
1197
|
+
return value;
|
|
1198
|
+
});
|
|
1199
|
+
}, function(reason) {
|
|
1200
|
+
return Promise.resolve(onFinally()).then(function() {
|
|
1201
|
+
throw reason;
|
|
1202
|
+
});
|
|
1203
|
+
});
|
|
1204
|
+
};
|
|
1205
|
+
}, "es9", "es3");
|
|
1193
1206
|
$jscomp.findInternal = function(array, callback, thisArg) {
|
|
1194
1207
|
array instanceof String && (array = String(array));
|
|
1195
1208
|
for (var len = array.length, i = 0; i < len; i++) {
|
|
@@ -1313,7 +1326,7 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1313
1326
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1314
1327
|
};
|
|
1315
1328
|
}, "es8", "es3");
|
|
1316
|
-
var CLOSURE_TOGGLE_ORDINALS = {GoogFlags__async_throw_on_unicode_to_byte__enable:!1, GoogFlags__client_only_wiz_context_per_component__enable:!1,
|
|
1329
|
+
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__disable:!1, GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__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_throw_in_array_constructor_if_array_is_already_constructed__disable:!1,
|
|
1317
1330
|
GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__optimize_get_ei_from_ved__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};
|
|
1318
1331
|
/*
|
|
1319
1332
|
|
|
@@ -6323,10 +6336,14 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient = function(reques
|
|
|
6323
6336
|
};
|
|
6324
6337
|
$jscomp.inherits(module$exports$eeapiclient$promise_api_client.PromiseApiClient, module$exports$eeapiclient$api_client.ApiClient);
|
|
6325
6338
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$addHooksToRequest = function(requestParams, promise) {
|
|
6326
|
-
|
|
6339
|
+
var hook = module$contents$eeapiclient$api_request_hook_getRequestHook(this.hookFactory, requestParams);
|
|
6340
|
+
return hook == null ? promise : promise.then(function(response) {
|
|
6327
6341
|
return response;
|
|
6328
6342
|
}, function(error) {
|
|
6329
6343
|
throw error;
|
|
6344
|
+
}).finally(function() {
|
|
6345
|
+
var $jscomp$optchain$tmp1237977804$1;
|
|
6346
|
+
($jscomp$optchain$tmp1237977804$1 = hook.onFinalize) == null || $jscomp$optchain$tmp1237977804$1.call(hook);
|
|
6330
6347
|
});
|
|
6331
6348
|
};
|
|
6332
6349
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$request = function(requestParams) {
|
|
@@ -6334,9 +6351,9 @@ module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$reques
|
|
|
6334
6351
|
return this.$addHooksToRequest(requestParams, this.requestService.send(module$contents$eeapiclient$api_client_toMakeRequestParams(requestParams), responseCtor));
|
|
6335
6352
|
};
|
|
6336
6353
|
module$exports$eeapiclient$promise_api_client.PromiseApiClient.prototype.$uploadRequest = function(requestParams) {
|
|
6337
|
-
var $jscomp$this$1237977804$
|
|
6354
|
+
var $jscomp$this$1237977804$6 = this, responseCtor = requestParams.responseCtor || void 0;
|
|
6338
6355
|
return this.$addHooksToRequest(requestParams, module$contents$eeapiclient$api_client_toMultipartMakeRequestParams(requestParams).then(function(params) {
|
|
6339
|
-
return $jscomp$this$1237977804$
|
|
6356
|
+
return $jscomp$this$1237977804$6.requestService.send(params, responseCtor);
|
|
6340
6357
|
}));
|
|
6341
6358
|
};
|
|
6342
6359
|
var module$exports$eeapiclient$promise_request_service = {}, module$contents$eeapiclient$promise_request_service_module = module$contents$eeapiclient$promise_request_service_module || {id:"javascript/typescript/contrib/apiclient/request_service/promise_request_service.closure.js"};
|
|
@@ -6511,13 +6528,13 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_user_agent_cl
|
|
|
6511
6528
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable = !1;
|
|
6512
6529
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__enable = !1;
|
|
6513
6530
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable = !1;
|
|
6514
|
-
module$exports$closure$flags$flags$2etoggles.
|
|
6531
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_lazy_tsx__disable = !1;
|
|
6515
6532
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable = !1;
|
|
6516
6533
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6517
6534
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6518
6535
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
|
|
6519
6536
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_serialize_with_dynamic_pivot_selector__enable = !1;
|
|
6520
|
-
module$exports$closure$flags$flags$2etoggles.
|
|
6537
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_throw_in_array_constructor_if_array_is_already_constructed__disable = !1;
|
|
6521
6538
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_get_ei_from_ved__enable = !1;
|
|
6522
6539
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6523
6540
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
@@ -6529,13 +6546,14 @@ goog.flags.USE_USER_AGENT_CLIENT_HINTS = module$exports$closure$flags$flags$2eto
|
|
|
6529
6546
|
goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_unicode_to_byte__enable : goog.readFlagInternalDoNotUseOrElse(899588437, !1);
|
|
6530
6547
|
goog.flags.CLIENT_ONLY_WIZ_QUEUE_EFFECT_AND_ON_INIT_INITIAL_RUNS = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_queue_effect_and_on_init_initial_runs__enable : goog.readFlagInternalDoNotUseOrElse(772657768, !1);
|
|
6531
6548
|
goog.flags.CLIENT_ONLY_WIZ_CONTEXT_PER_COMPONENT = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable : goog.readFlagInternalDoNotUseOrElse(513659523, goog.DEBUG);
|
|
6532
|
-
goog.flags.CLIENT_ONLY_WIZ_LAZY_TSX = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.
|
|
6549
|
+
goog.flags.CLIENT_ONLY_WIZ_LAZY_TSX = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_lazy_tsx__disable) : goog.readFlagInternalDoNotUseOrElse(568333945, module$contents$goog$flags_STAGING);
|
|
6533
6550
|
goog.flags.FIXED_NOOPENER_BEHAVIOR = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable : goog.readFlagInternalDoNotUseOrElse(1331761403, !1);
|
|
6534
6551
|
goog.flags.WIZ_ENABLE_NATIVE_PROMISE = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable : goog.readFlagInternalDoNotUseOrElse(651175828, goog.DEBUG);
|
|
6535
6552
|
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);
|
|
6536
6553
|
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);
|
|
6537
6554
|
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);
|
|
6538
|
-
goog.flags.JSPB_THROW_IN_ARRAY_CONSTRUCTOR_IF_ARRAY_IS_ALREADY_CONSTRUCTED = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.
|
|
6555
|
+
goog.flags.JSPB_THROW_IN_ARRAY_CONSTRUCTOR_IF_ARRAY_IS_ALREADY_CONSTRUCTED = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.FLAGS_STAGING_DEFAULT && (module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__override_disable_toggles || !module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_throw_in_array_constructor_if_array_is_already_constructed__disable) :
|
|
6556
|
+
goog.readFlagInternalDoNotUseOrElse(748402147, module$contents$goog$flags_STAGING);
|
|
6539
6557
|
goog.flags.OPTIMIZE_GET_EI_FROM_VED = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__optimize_get_ei_from_ved__enable : goog.readFlagInternalDoNotUseOrElse(333098724, !1);
|
|
6540
6558
|
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);
|
|
6541
6559
|
goog.flags.TESTONLY_DEBUG_FLAG = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? goog.DEBUG || module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable : goog.readFlagInternalDoNotUseOrElse(2147483645, goog.DEBUG);
|
|
@@ -15178,7 +15196,7 @@ goog.Promise.prototype.finally = function(onSettled) {
|
|
|
15178
15196
|
var $jscomp$this$m1061044379$32 = this;
|
|
15179
15197
|
goog.Promise.LONG_STACK_TRACES && this.addStackTrace_(Error("finally"));
|
|
15180
15198
|
onSettled = module$exports$common$async$context$propagate.propagateAsyncContext(onSettled);
|
|
15181
|
-
return new Promise(function(resolve, reject) {
|
|
15199
|
+
return new goog.Promise(function(resolve, reject) {
|
|
15182
15200
|
$jscomp$this$m1061044379$32.thenVoid(function(value) {
|
|
15183
15201
|
onSettled();
|
|
15184
15202
|
resolve(value);
|
|
@@ -18634,7 +18652,7 @@ goog.async.Deferred.prototype.addFinally = function(f, opt_scope) {
|
|
|
18634
18652
|
};
|
|
18635
18653
|
goog.async.Deferred.prototype.finally = function(f) {
|
|
18636
18654
|
var $jscomp$this$m1728524513$17 = this;
|
|
18637
|
-
return new Promise(function(resolve, reject) {
|
|
18655
|
+
return goog.async.Deferred.fromPromise(new Promise(function(resolve, reject) {
|
|
18638
18656
|
$jscomp$this$m1728524513$17.addCallbacks(function(v) {
|
|
18639
18657
|
f();
|
|
18640
18658
|
resolve(v);
|
|
@@ -18642,7 +18660,7 @@ goog.async.Deferred.prototype.finally = function(f) {
|
|
|
18642
18660
|
f();
|
|
18643
18661
|
reject(err);
|
|
18644
18662
|
});
|
|
18645
|
-
});
|
|
18663
|
+
}));
|
|
18646
18664
|
};
|
|
18647
18665
|
goog.async.Deferred.prototype.addCallbacks = function(cb, eb, opt_scope) {
|
|
18648
18666
|
goog.asserts.assert(!this.blocking_, "Blocking Deferreds can not be re-used");
|
|
@@ -19448,7 +19466,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19448
19466
|
ee.apiclient = {};
|
|
19449
19467
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19450
19468
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19451
|
-
ee.apiclient.API_CLIENT_VERSION = "1.6.
|
|
19469
|
+
ee.apiclient.API_CLIENT_VERSION = "1.6.3";
|
|
19452
19470
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19453
19471
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19454
19472
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19746,8 +19764,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19746
19764
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19747
19765
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19748
19766
|
method = method || "POST";
|
|
19749
|
-
var headers = {"Content-Type":contentType}, version = "1.6.
|
|
19750
|
-
version === "1.6.
|
|
19767
|
+
var headers = {"Content-Type":contentType}, version = "1.6.3";
|
|
19768
|
+
version === "1.6.3" && (version = "latest");
|
|
19751
19769
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19752
19770
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19753
19771
|
if (authToken != null) {
|
|
@@ -27270,29 +27288,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27270
27288
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27271
27289
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27272
27290
|
(function() {
|
|
27273
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.
|
|
27291
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.image.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.table.toDrive ee.batch.Export.video.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.sort ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.makeTableDownloadUrl ee.data.setAssetAcl ee.data.listBuckets ee.data.setAssetProperties ee.data.newTaskId ee.data.getAssetRoots ee.data.getAssetRootQuota ee.data.getMapId ee.data.createAssetHome ee.data.getTaskStatus ee.data.getTileUrl ee.data.startIngestion ee.data.getWorkloadTag ee.data.createAsset ee.data.setWorkloadTag ee.data.createFolder ee.data.getTaskList ee.data.setDefaultWorkloadTag ee.data.getFeatureViewTilesKey ee.data.resetWorkloadTag ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.startTableIngestion ee.data.listOperations ee.data.listFeatures ee.data.copyAsset ee.data.computeValue ee.data.cancelOperation ee.data.getVideoThumbId ee.data.deleteAsset ee.data.getThumbId ee.data.getAsset ee.data.authenticateViaOauth ee.data.getOperation ee.data.getAssetAcl ee.data.getInfo ee.data.getFilmstripThumbId ee.data.authenticate ee.data.cancelTask ee.data.getList ee.data.makeThumbUrl ee.data.listAssets ee.data.authenticateViaPopup ee.data.updateTask ee.data.listImages ee.data.getDownloadId ee.data.getTableDownloadId ee.data.makeDownloadUrl ee.data.startProcessing ee.data.authenticateViaPrivateKey ee.data.updateAsset ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Dictionary ee.reset ee.Algorithms ee.InitState ee.call ee.apply ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.FeatureCollection.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.select ee.Filter.gt ee.Filter.metadata ee.Filter.neq ee.Filter.lte ee.Filter.prototype.not ee.Filter ee.Filter.and ee.Filter.bounds ee.Filter.gte ee.Filter.or ee.Filter.eq ee.Filter.date ee.Filter.inList ee.Filter.lt ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.LineString ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSONString ee.Geometry.prototype.serialize ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.MultiPolygon ee.Geometry.LinearRing ee.Geometry ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiLineString ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image.prototype.getThumbId ee.Image ee.Image.prototype.getMap ee.Image.prototype.expression ee.Image.rgb ee.Image.cat ee.Image.prototype.clip ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.select ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.List ee.Number ee.Serializer.encodeCloudApi ee.Serializer.toReadableJSON ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApiPretty ee.String ee.Terrain".split(" "),
|
|
27274
27292
|
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27275
27293
|
["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(" "), "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(" "),
|
|
27276
|
-
["classifier", "opt_description", "opt_assetId", "opt_priority"], "
|
|
27277
|
-
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), ["
|
|
27278
|
-
"
|
|
27279
|
-
"y", "z"], ["taskId", "request", "opt_callback"], [
|
|
27280
|
-
["
|
|
27281
|
-
["
|
|
27282
|
-
["json"], ["json"], ["opt_dict"], [], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [
|
|
27283
|
-
"
|
|
27284
|
-
"
|
|
27285
|
-
"
|
|
27286
|
-
["
|
|
27287
|
-
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.
|
|
27288
|
-
module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, ee.Collection.prototype.
|
|
27289
|
-
ee.ComputedObject.prototype.
|
|
27290
|
-
ee.data.
|
|
27291
|
-
ee.data.
|
|
27292
|
-
ee.
|
|
27293
|
-
ee.Filter.
|
|
27294
|
-
ee.Image.prototype.
|
|
27295
|
-
ee.ImageCollection.prototype.
|
|
27294
|
+
["classifier", "opt_description", "opt_assetId", "opt_priority"], "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_folder 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_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
|
|
27295
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), ["algorithm", "opt_dropNulls"],
|
|
27296
|
+
["start", "opt_end"], ["geometry"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["filter"], ["name", "operator", "value"], ["property", "opt_ascending"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["id"], ["assetId", "aclUpdate", "opt_callback"], ["project", "opt_callback"], ["assetId", "properties", "opt_callback"], ["opt_count", "opt_callback"], ["opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["requestedId", "opt_callback"],
|
|
27297
|
+
["taskId", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], [], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["opt_callback"], ["tag"], ["params", "opt_callback"], ["opt_resetDefault"], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["taskId", "request", "opt_callback"], ["opt_limit", "opt_callback"], ["asset", "params", "opt_callback"], ["sourceId", "destinationId",
|
|
27298
|
+
"opt_overwrite", "opt_callback"], ["obj", "opt_callback"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["operationName", "opt_callback"], ["assetId", "opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"],
|
|
27299
|
+
["taskId", "opt_callback"], ["params", "opt_callback"], ["id"], ["parent", "opt_params", "opt_callback"], ["opt_success", "opt_error"], ["taskId", "action", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id"], ["taskId", "params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["assetId", "asset", "updateFields", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"],
|
|
27300
|
+
["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_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_callback"], ["opt_visParams", "opt_callback"],
|
|
27301
|
+
["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["name", "value"], [], ["opt_filter"], ["var_args"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic",
|
|
27302
|
+
"opt_evenOdd"], [], ["legacy"], ["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"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["west", "south", "east", "north"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["params", "opt_callback"], ["var_args"], ["params", "opt_callback"],
|
|
27303
|
+
["opt_args"], ["opt_visParams", "opt_callback"], ["expression", "opt_map"], ["r", "g", "b"], ["var_args"], ["geometry"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_callback"], ["selectors", "opt_names"], [], ["args"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["list"],
|
|
27304
|
+
["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["string"], []];
|
|
27305
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toDrive,
|
|
27306
|
+
module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.sort, ee.ComputedObject.prototype.evaluate,
|
|
27307
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.makeTableDownloadUrl, ee.data.setAssetAcl, ee.data.listBuckets, ee.data.setAssetProperties, ee.data.newTaskId, ee.data.getAssetRoots, ee.data.getAssetRootQuota, ee.data.getMapId, ee.data.createAssetHome, ee.data.getTaskStatus, ee.data.getTileUrl, ee.data.startIngestion, ee.data.getWorkloadTag, ee.data.createAsset, ee.data.setWorkloadTag, ee.data.createFolder, ee.data.getTaskList,
|
|
27308
|
+
ee.data.setDefaultWorkloadTag, ee.data.getFeatureViewTilesKey, ee.data.resetWorkloadTag, ee.data.renameAsset, ee.data.getTaskListWithLimit, ee.data.startTableIngestion, ee.data.listOperations, ee.data.listFeatures, ee.data.copyAsset, ee.data.computeValue, ee.data.cancelOperation, ee.data.getVideoThumbId, ee.data.deleteAsset, ee.data.getThumbId, ee.data.getAsset, ee.data.authenticateViaOauth, ee.data.getOperation, ee.data.getAssetAcl, ee.data.getInfo, ee.data.getFilmstripThumbId, ee.data.authenticate,
|
|
27309
|
+
ee.data.cancelTask, ee.data.getList, ee.data.makeThumbUrl, ee.data.listAssets, ee.data.authenticateViaPopup, ee.data.updateTask, ee.data.listImages, ee.data.getDownloadId, ee.data.getTableDownloadId, ee.data.makeDownloadUrl, ee.data.startProcessing, ee.data.authenticateViaPrivateKey, ee.data.updateAsset, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Dictionary, ee.reset, ee.Algorithms, ee.InitState, ee.call, ee.apply,
|
|
27310
|
+
ee.initialize, ee.TILE_SIZE, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.Filter.gt, ee.Filter.metadata, ee.Filter.neq, ee.Filter.lte, ee.Filter.prototype.not,
|
|
27311
|
+
ee.Filter, ee.Filter.and, ee.Filter.bounds, ee.Filter.gte, ee.Filter.or, ee.Filter.eq, ee.Filter.date, ee.Filter.inList, ee.Filter.lt, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.LineString, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.prototype.serialize, ee.Geometry.Polygon, ee.Geometry.Point, ee.Geometry.MultiPolygon, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiLineString,
|
|
27312
|
+
ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image.prototype.getThumbId, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.expression, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.clip, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.select, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL,
|
|
27313
|
+
ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableJSON, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApiPretty, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27296
27314
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27297
27315
|
});
|
|
27298
27316
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|