@google/earthengine 1.5.12 → 1.5.13
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 +55 -59
- package/build/ee_api_js.js +16 -16
- package/build/ee_api_js_debug.js +36 -40
- package/build/ee_api_js_npm.js +55 -59
- package/build/main.js +55 -59
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/layers/cloudstoragetilesource.js +1 -1
package/build/main.js
CHANGED
|
@@ -1259,8 +1259,8 @@ $jscomp.polyfill("String.prototype.padStart", function(orig) {
|
|
|
1259
1259
|
return $jscomp.stringPadding(opt_padString, targetLength - string.length) + string;
|
|
1260
1260
|
};
|
|
1261
1261
|
}, "es8", "es3");
|
|
1262
|
-
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_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1,
|
|
1263
|
-
GoogFlags__testonly_staging_flag__disable:!1, GoogFlags__use_toggles:!1, GoogFlags__use_user_agent_client_hints__enable:!1, GoogFlags__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1262
|
+
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_sink_lazy_tsx_execution__enable:!1, GoogFlags__client_only_wiz_ve_logging__enable:!1, GoogFlags__fixed_noopener_behavior__enable:!1, GoogFlags__jspb_disallow_message_tojson__enable:!1, GoogFlags__jspb_use_constant_default_pivot__enable:!1, GoogFlags__override_disable_toggles:!1, GoogFlags__testonly_debug_flag__enable:!1, GoogFlags__testonly_disabled_flag__enable:!1,
|
|
1263
|
+
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__web_storage_is_available_cache_once__enable:!1, GoogFlags__wiz_enable_native_promise__enable:!1};
|
|
1264
1264
|
/*
|
|
1265
1265
|
|
|
1266
1266
|
Copyright The Closure Library Authors.
|
|
@@ -4442,14 +4442,13 @@ goog.debug.freeze = function(arg) {
|
|
|
4442
4442
|
goog.log = {};
|
|
4443
4443
|
goog.log.ENABLED = goog.debug.LOGGING_ENABLED;
|
|
4444
4444
|
goog.log.ROOT_LOGGER_NAME = "";
|
|
4445
|
-
|
|
4445
|
+
goog.log.Level = function(name, value) {
|
|
4446
4446
|
this.name = name;
|
|
4447
4447
|
this.value = value;
|
|
4448
4448
|
};
|
|
4449
|
-
|
|
4449
|
+
goog.log.Level.prototype.toString = function() {
|
|
4450
4450
|
return this.name;
|
|
4451
4451
|
};
|
|
4452
|
-
goog.log.Level = third_party$javascript$closure$log$log$classdecl$var0;
|
|
4453
4452
|
goog.log.Level.OFF = new goog.log.Level("OFF", Infinity);
|
|
4454
4453
|
goog.log.Level.SHOUT = new goog.log.Level("SHOUT", 1200);
|
|
4455
4454
|
goog.log.Level.SEVERE = new goog.log.Level("SEVERE", 1E3);
|
|
@@ -4485,17 +4484,16 @@ goog.log.Level.getPredefinedLevelByValue = function(value) {
|
|
|
4485
4484
|
}
|
|
4486
4485
|
return null;
|
|
4487
4486
|
};
|
|
4488
|
-
|
|
4487
|
+
goog.log.Logger = function() {
|
|
4489
4488
|
};
|
|
4490
|
-
|
|
4489
|
+
goog.log.Logger.prototype.getName = function() {
|
|
4491
4490
|
};
|
|
4492
|
-
goog.log.Logger = third_party$javascript$closure$log$log$classdecl$var1;
|
|
4493
4491
|
goog.log.Logger.Level = goog.log.Level;
|
|
4494
|
-
|
|
4492
|
+
goog.log.LogBuffer = function(capacity) {
|
|
4495
4493
|
this.capacity_ = typeof capacity === "number" ? capacity : goog.log.LogBuffer.CAPACITY;
|
|
4496
4494
|
this.clear();
|
|
4497
4495
|
};
|
|
4498
|
-
|
|
4496
|
+
goog.log.LogBuffer.prototype.addRecord = function(level, msg, loggerName) {
|
|
4499
4497
|
if (!this.isBufferingEnabled()) {
|
|
4500
4498
|
return new goog.log.LogRecord(level, msg, loggerName);
|
|
4501
4499
|
}
|
|
@@ -4509,7 +4507,7 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = func
|
|
|
4509
4507
|
this.isFull_ = curIndex == this.capacity_ - 1;
|
|
4510
4508
|
return this.buffer_[curIndex] = new goog.log.LogRecord(level, msg, loggerName);
|
|
4511
4509
|
};
|
|
4512
|
-
|
|
4510
|
+
goog.log.LogBuffer.prototype.forEachRecord = function(func) {
|
|
4513
4511
|
var buffer = this.buffer_;
|
|
4514
4512
|
if (buffer[0]) {
|
|
4515
4513
|
var curIndex = this.curIndex_, i = this.isFull_ ? curIndex : -1;
|
|
@@ -4518,18 +4516,17 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord =
|
|
|
4518
4516
|
} while (i !== curIndex);
|
|
4519
4517
|
}
|
|
4520
4518
|
};
|
|
4521
|
-
|
|
4519
|
+
goog.log.LogBuffer.prototype.isBufferingEnabled = function() {
|
|
4522
4520
|
return this.capacity_ > 0;
|
|
4523
4521
|
};
|
|
4524
|
-
|
|
4522
|
+
goog.log.LogBuffer.prototype.isFull = function() {
|
|
4525
4523
|
return this.isFull_;
|
|
4526
4524
|
};
|
|
4527
|
-
|
|
4525
|
+
goog.log.LogBuffer.prototype.clear = function() {
|
|
4528
4526
|
this.buffer_ = Array(this.capacity_);
|
|
4529
4527
|
this.curIndex_ = -1;
|
|
4530
4528
|
this.isFull_ = !1;
|
|
4531
4529
|
};
|
|
4532
|
-
goog.log.LogBuffer = third_party$javascript$closure$log$log$classdecl$var2;
|
|
4533
4530
|
goog.log.LogBuffer.CAPACITY = 0;
|
|
4534
4531
|
goog.log.LogBuffer.getInstance = function() {
|
|
4535
4532
|
goog.log.LogBuffer.instance_ || (goog.log.LogBuffer.instance_ = new goog.log.LogBuffer(goog.log.LogBuffer.CAPACITY));
|
|
@@ -4538,11 +4535,11 @@ goog.log.LogBuffer.getInstance = function() {
|
|
|
4538
4535
|
goog.log.LogBuffer.isBufferingEnabled = function() {
|
|
4539
4536
|
return goog.log.LogBuffer.getInstance().isBufferingEnabled();
|
|
4540
4537
|
};
|
|
4541
|
-
|
|
4538
|
+
goog.log.LogRecord = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4542
4539
|
this.exception_ = void 0;
|
|
4543
4540
|
this.reset(level || goog.log.Level.OFF, msg, loggerName, time, sequenceNumber);
|
|
4544
4541
|
};
|
|
4545
|
-
|
|
4542
|
+
goog.log.LogRecord.prototype.reset = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4546
4543
|
this.time_ = time || goog.now();
|
|
4547
4544
|
this.level_ = level;
|
|
4548
4545
|
this.msg_ = msg;
|
|
@@ -4550,42 +4547,41 @@ third_party$javascript$closure$log$log$classdecl$var3.prototype.reset = function
|
|
|
4550
4547
|
this.exception_ = void 0;
|
|
4551
4548
|
this.sequenceNumber_ = typeof sequenceNumber === "number" ? sequenceNumber : goog.log.LogRecord.nextSequenceNumber_;
|
|
4552
4549
|
};
|
|
4553
|
-
|
|
4550
|
+
goog.log.LogRecord.prototype.getLoggerName = function() {
|
|
4554
4551
|
return this.loggerName_;
|
|
4555
4552
|
};
|
|
4556
|
-
|
|
4553
|
+
goog.log.LogRecord.prototype.setLoggerName = function(name) {
|
|
4557
4554
|
this.loggerName_ = name;
|
|
4558
4555
|
};
|
|
4559
|
-
|
|
4556
|
+
goog.log.LogRecord.prototype.getException = function() {
|
|
4560
4557
|
return this.exception_;
|
|
4561
4558
|
};
|
|
4562
|
-
|
|
4559
|
+
goog.log.LogRecord.prototype.setException = function(exception) {
|
|
4563
4560
|
this.exception_ = exception;
|
|
4564
4561
|
};
|
|
4565
|
-
|
|
4562
|
+
goog.log.LogRecord.prototype.getLevel = function() {
|
|
4566
4563
|
return this.level_;
|
|
4567
4564
|
};
|
|
4568
|
-
|
|
4565
|
+
goog.log.LogRecord.prototype.setLevel = function(level) {
|
|
4569
4566
|
this.level_ = level;
|
|
4570
4567
|
};
|
|
4571
|
-
|
|
4568
|
+
goog.log.LogRecord.prototype.getMessage = function() {
|
|
4572
4569
|
return this.msg_;
|
|
4573
4570
|
};
|
|
4574
|
-
|
|
4571
|
+
goog.log.LogRecord.prototype.setMessage = function(msg) {
|
|
4575
4572
|
this.msg_ = msg;
|
|
4576
4573
|
};
|
|
4577
|
-
|
|
4574
|
+
goog.log.LogRecord.prototype.getMillis = function() {
|
|
4578
4575
|
return this.time_;
|
|
4579
4576
|
};
|
|
4580
|
-
|
|
4577
|
+
goog.log.LogRecord.prototype.setMillis = function(time) {
|
|
4581
4578
|
this.time_ = time;
|
|
4582
4579
|
};
|
|
4583
|
-
|
|
4580
|
+
goog.log.LogRecord.prototype.getSequenceNumber = function() {
|
|
4584
4581
|
return this.sequenceNumber_;
|
|
4585
4582
|
};
|
|
4586
|
-
goog.log.LogRecord = third_party$javascript$closure$log$log$classdecl$var3;
|
|
4587
4583
|
goog.log.LogRecord.nextSequenceNumber_ = 0;
|
|
4588
|
-
|
|
4584
|
+
goog.log.LogRegistryEntry_ = function(name, parent) {
|
|
4589
4585
|
this.level = null;
|
|
4590
4586
|
this.handlers = [];
|
|
4591
4587
|
this.parent = (parent === void 0 ? null : parent) || null;
|
|
@@ -4594,7 +4590,7 @@ var third_party$javascript$closure$log$log$classdecl$var4 = function(name, paren
|
|
|
4594
4590
|
return name;
|
|
4595
4591
|
}};
|
|
4596
4592
|
};
|
|
4597
|
-
|
|
4593
|
+
goog.log.LogRegistryEntry_.prototype.getEffectiveLevel = function() {
|
|
4598
4594
|
if (this.level) {
|
|
4599
4595
|
return this.level;
|
|
4600
4596
|
}
|
|
@@ -4604,21 +4600,20 @@ third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLeve
|
|
|
4604
4600
|
goog.asserts.fail("Root logger has no level set.");
|
|
4605
4601
|
return goog.log.Level.OFF;
|
|
4606
4602
|
};
|
|
4607
|
-
|
|
4603
|
+
goog.log.LogRegistryEntry_.prototype.publish = function(logRecord) {
|
|
4608
4604
|
for (var target = this; target;) {
|
|
4609
4605
|
target.handlers.forEach(function(handler) {
|
|
4610
4606
|
handler(logRecord);
|
|
4611
4607
|
}), target = target.parent;
|
|
4612
4608
|
}
|
|
4613
4609
|
};
|
|
4614
|
-
goog.log.
|
|
4615
|
-
var third_party$javascript$closure$log$log$classdecl$var5 = function() {
|
|
4610
|
+
goog.log.LogRegistry_ = function() {
|
|
4616
4611
|
this.entries = {};
|
|
4617
4612
|
var rootLogRegistryEntry = new goog.log.LogRegistryEntry_(goog.log.ROOT_LOGGER_NAME);
|
|
4618
4613
|
rootLogRegistryEntry.level = goog.log.Level.CONFIG;
|
|
4619
4614
|
this.entries[goog.log.ROOT_LOGGER_NAME] = rootLogRegistryEntry;
|
|
4620
4615
|
};
|
|
4621
|
-
|
|
4616
|
+
goog.log.LogRegistry_.prototype.getLogRegistryEntry = function(name, level) {
|
|
4622
4617
|
var entry = this.entries[name];
|
|
4623
4618
|
if (entry) {
|
|
4624
4619
|
return level !== void 0 && (entry.level = level), entry;
|
|
@@ -4629,13 +4624,12 @@ third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEn
|
|
|
4629
4624
|
level !== void 0 && (logRegistryEntry.level = level);
|
|
4630
4625
|
return logRegistryEntry;
|
|
4631
4626
|
};
|
|
4632
|
-
|
|
4627
|
+
goog.log.LogRegistry_.prototype.getAllLoggers = function() {
|
|
4633
4628
|
var $jscomp$this$17096019$34 = this;
|
|
4634
4629
|
return Object.keys(this.entries).map(function(loggerName) {
|
|
4635
4630
|
return $jscomp$this$17096019$34.entries[loggerName].logger;
|
|
4636
4631
|
});
|
|
4637
4632
|
};
|
|
4638
|
-
goog.log.LogRegistry_ = third_party$javascript$closure$log$log$classdecl$var5;
|
|
4639
4633
|
goog.log.LogRegistry_.getInstance = function() {
|
|
4640
4634
|
goog.log.LogRegistry_.instance_ || (goog.log.LogRegistry_.instance_ = new goog.log.LogRegistry_());
|
|
4641
4635
|
return goog.log.LogRegistry_.instance_;
|
|
@@ -6526,6 +6520,7 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_s
|
|
|
6526
6520
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable = !1;
|
|
6527
6521
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6528
6522
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_disallow_message_tojson__enable = !1;
|
|
6523
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__jspb_use_constant_default_pivot__enable = !1;
|
|
6529
6524
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6530
6525
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6531
6526
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
@@ -6541,6 +6536,7 @@ goog.flags.CLIENT_ONLY_WIZ_SINK_LAZY_TSX_EXECUTION = module$exports$closure$flag
|
|
|
6541
6536
|
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);
|
|
6542
6537
|
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);
|
|
6543
6538
|
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);
|
|
6539
|
+
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);
|
|
6544
6540
|
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);
|
|
6545
6541
|
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);
|
|
6546
6542
|
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);
|
|
@@ -19320,7 +19316,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19320
19316
|
ee.apiclient = {};
|
|
19321
19317
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19322
19318
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19323
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19319
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.13";
|
|
19324
19320
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19325
19321
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19326
19322
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19618,8 +19614,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19618
19614
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19619
19615
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19620
19616
|
method = method || "POST";
|
|
19621
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19622
|
-
version === "1.5.
|
|
19617
|
+
var headers = {"Content-Type":contentType}, version = "1.5.13";
|
|
19618
|
+
version === "1.5.13" && (version = "latest");
|
|
19623
19619
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19624
19620
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19625
19621
|
if (authToken != null) {
|
|
@@ -27146,29 +27142,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27146
27142
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27147
27143
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27148
27144
|
(function() {
|
|
27149
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.
|
|
27145
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toBigQuery ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.video.toDrive ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.getInfo ee.data.getOperation ee.data.authenticateViaPrivateKey ee.data.createAsset ee.data.resetWorkloadTag ee.data.newTaskId ee.data.computeValue ee.data.updateAsset ee.data.cancelTask ee.data.getThumbId ee.data.getList ee.data.getVideoThumbId ee.data.setAssetAcl ee.data.createFolder ee.data.getTaskStatus ee.data.updateTask ee.data.startIngestion ee.data.startProcessing ee.data.getFilmstripThumbId ee.data.renameAsset ee.data.setAssetProperties ee.data.listAssets ee.data.setDefaultWorkloadTag ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getMapId ee.data.copyAsset ee.data.getAssetRootQuota ee.data.getTaskList ee.data.listBuckets ee.data.authenticate ee.data.deleteAsset ee.data.getWorkloadTag ee.data.getTableDownloadId ee.data.getTileUrl ee.data.startTableIngestion ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.getAssetAcl ee.data.listOperations ee.data.listImages ee.data.getDownloadId ee.data.cancelOperation ee.data.makeDownloadUrl ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.getAssetRoots ee.data.getAsset ee.data.getFeatureViewTilesKey ee.data.listFeatures ee.data.createAssetHome ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Dictionary ee.apply ee.TILE_SIZE ee.initialize ee.reset ee.call ee.Algorithms ee.InitState ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.FeatureCollection ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMapId ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getInfo ee.Filter.neq ee.Filter.lte ee.Filter.gte ee.Filter.metadata ee.Filter.date ee.Filter.bounds ee.Filter.prototype.not ee.Filter.eq ee.Filter ee.Filter.and ee.Filter.inList ee.Filter.gt ee.Filter.or ee.Filter.lt ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Rectangle ee.Geometry.prototype.toGeoJSONString ee.Geometry.LineString ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.MultiLineString ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.prototype.toGeoJSON ee.Geometry ee.Geometry.LinearRing ee.Geometry.MultiPoint ee.Geometry.BBox ee.Image.prototype.getDownloadURL ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbId ee.Image.cat ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image.prototype.select ee.Image.prototype.expression ee.Image.prototype.rename ee.Image.rgb ee.Image ee.Image.prototype.clip ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.linkCollection ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
27150
27146
|
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "), "collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "),
|
|
27151
27147
|
"image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "),
|
|
27152
27148
|
"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "),
|
|
27153
|
-
["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"],
|
|
27154
|
-
["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["
|
|
27155
|
-
["
|
|
27156
|
-
|
|
27157
|
-
"opt_callback"], ["params", "opt_callback"], ["
|
|
27158
|
-
["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [
|
|
27159
|
-
["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["
|
|
27160
|
-
["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["
|
|
27161
|
-
"opt_callback"], ["
|
|
27162
|
-
"
|
|
27149
|
+
["collection", "opt_description", "opt_assetId", "opt_maxVertices", "opt_priority"], "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description", "opt_assetId", "opt_priority"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris opt_priority".split(" "),
|
|
27150
|
+
["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["filter"], ["start", "opt_end"], ["opt_callback"], ["callback"], ["func", "var_args"], ["legacy"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"],
|
|
27151
|
+
["opt_resetDefault"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "action", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["sourceId",
|
|
27152
|
+
"destinationId", "opt_callback"], ["assetId", "properties", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["tag"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["rootId", "opt_callback"], ["opt_callback"], ["project", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId",
|
|
27153
|
+
"opt_callback"], [], ["params", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["opt_limit", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["operationName", "opt_callback"], ["id"], ["tag"], ["opt_success", "opt_error"], ["opt_callback"], ["id", "opt_callback"], ["params", "opt_callback"], ["asset", "params", "opt_callback"], ["requestedId", "opt_callback"],
|
|
27154
|
+
["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"], [], [], ["var_args"], [], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["args", "opt_column"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"],
|
|
27155
|
+
["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_callback"], ["name", "value"], ["name", "value"], ["name", "value"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry", "opt_errorMargin"], [], ["name", "value"], ["opt_filter"], ["var_args"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["var_args"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic",
|
|
27156
|
+
"opt_evenOdd"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["params", "opt_callback"],
|
|
27157
|
+
["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["r", "g", "b"], ["opt_args"], ["geometry"], [], ["params", "opt_callback"], ["params", "opt_callback"], ["args"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties",
|
|
27158
|
+
"opt_matchPropertyName"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
27163
27159
|
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toBigQuery, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset,
|
|
27164
|
-
module$contents$ee$batch_Export.
|
|
27165
|
-
ee.ComputedObject.prototype.
|
|
27166
|
-
ee.data.
|
|
27167
|
-
ee.data.
|
|
27168
|
-
ee.
|
|
27169
|
-
ee.Filter.
|
|
27170
|
-
ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image
|
|
27171
|
-
ee.ImageCollection.prototype.
|
|
27160
|
+
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.ComputedObject.prototype.getInfo,
|
|
27161
|
+
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.serialize, ee.data.getInfo, ee.data.getOperation, ee.data.authenticateViaPrivateKey, ee.data.createAsset, ee.data.resetWorkloadTag, ee.data.newTaskId, ee.data.computeValue, ee.data.updateAsset, ee.data.cancelTask, ee.data.getThumbId, ee.data.getList, ee.data.getVideoThumbId, ee.data.setAssetAcl, ee.data.createFolder, ee.data.getTaskStatus, ee.data.updateTask, ee.data.startIngestion, ee.data.startProcessing,
|
|
27162
|
+
ee.data.getFilmstripThumbId, ee.data.renameAsset, ee.data.setAssetProperties, ee.data.listAssets, ee.data.setDefaultWorkloadTag, ee.data.makeThumbUrl, ee.data.authenticateViaOauth, ee.data.getMapId, ee.data.copyAsset, ee.data.getAssetRootQuota, ee.data.getTaskList, ee.data.listBuckets, ee.data.authenticate, ee.data.deleteAsset, ee.data.getWorkloadTag, ee.data.getTableDownloadId, ee.data.getTileUrl, ee.data.startTableIngestion, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.getAssetAcl,
|
|
27163
|
+
ee.data.listOperations, ee.data.listImages, ee.data.getDownloadId, ee.data.cancelOperation, ee.data.makeDownloadUrl, ee.data.setWorkloadTag, ee.data.authenticateViaPopup, ee.data.getAssetRoots, ee.data.getAsset, ee.data.getFeatureViewTilesKey, ee.data.listFeatures, ee.data.createAssetHome, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Dictionary, ee.apply, ee.TILE_SIZE, ee.initialize, ee.reset, ee.call, ee.Algorithms,
|
|
27164
|
+
ee.InitState, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.FeatureCollection, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMapId, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getInfo, ee.Filter.neq, ee.Filter.lte, ee.Filter.gte, ee.Filter.metadata, ee.Filter.date, ee.Filter.bounds, ee.Filter.prototype.not,
|
|
27165
|
+
ee.Filter.eq, ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Rectangle, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.LineString, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.MultiLineString, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry, ee.Geometry.LinearRing, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Image.prototype.getDownloadURL,
|
|
27166
|
+
ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbId, ee.Image.cat, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image.rgb, ee.Image, ee.Image.prototype.clip, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.getMap,
|
|
27167
|
+
ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.linkCollection, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
27172
27168
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27173
27169
|
});
|
|
27174
27170
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/package.json
CHANGED
package/src/apiclient.js
CHANGED
|
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues.index');
|
|
|
24
24
|
/** @namespace */
|
|
25
25
|
const apiclient = {};
|
|
26
26
|
|
|
27
|
-
const API_CLIENT_VERSION = '1.5.
|
|
27
|
+
const API_CLIENT_VERSION = '1.5.13';
|
|
28
28
|
|
|
29
29
|
exports.VERSION = apiVersion.VERSION;
|
|
30
30
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|
|
@@ -3,9 +3,9 @@ goog.module.declareLegacyNamespace();
|
|
|
3
3
|
|
|
4
4
|
const AbstractTile = goog.require('ee.layers.AbstractTile');
|
|
5
5
|
const AbstractTileSource = goog.require('ee.layers.AbstractTileSource');
|
|
6
|
-
const ImageTile = goog.require('ee.layers.ImageTile');
|
|
7
6
|
const googString = goog.require('goog.string');
|
|
8
7
|
const stringPath = goog.require('goog.string.path');
|
|
8
|
+
const {ImageTile} = goog.require('earthengine_api.javascript.layers.imageoverlay');
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* A layer tile source for tiles served by Google Cloud Storage.
|