@google/earthengine 1.5.11 → 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 +67 -66
- package/build/ee_api_js.js +653 -654
- package/build/ee_api_js_debug.js +44 -43
- package/build/ee_api_js_npm.js +67 -66
- package/build/main.js +67 -66
- package/package.json +1 -1
- package/src/apiclient.js +12 -3
- 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,
|
|
1263
|
-
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.
|
|
@@ -2996,7 +2996,8 @@ function module$contents$safevalues$builders$url_builders_sanitizeUrl(url, allow
|
|
|
2996
2996
|
}
|
|
2997
2997
|
module$exports$safevalues$builders$url_builders.sanitizeUrl = module$contents$safevalues$builders$url_builders_sanitizeUrl;
|
|
2998
2998
|
function module$contents$safevalues$builders$url_builders_objectUrlFromSafeSource(source) {
|
|
2999
|
-
|
|
2999
|
+
var windowAsAny = window;
|
|
3000
|
+
if (typeof MediaSource !== "undefined" && source instanceof MediaSource || typeof windowAsAny.ManagedMediaSource !== "undefined" && source instanceof windowAsAny.ManagedMediaSource) {
|
|
3000
3001
|
return module$contents$safevalues$internals$url_impl_createUrlInternal(URL.createObjectURL(source));
|
|
3001
3002
|
}
|
|
3002
3003
|
if (!module$contents$safevalues$builders$url_builders_isSafeMimeType(source.type)) {
|
|
@@ -4441,14 +4442,13 @@ goog.debug.freeze = function(arg) {
|
|
|
4441
4442
|
goog.log = {};
|
|
4442
4443
|
goog.log.ENABLED = goog.debug.LOGGING_ENABLED;
|
|
4443
4444
|
goog.log.ROOT_LOGGER_NAME = "";
|
|
4444
|
-
|
|
4445
|
+
goog.log.Level = function(name, value) {
|
|
4445
4446
|
this.name = name;
|
|
4446
4447
|
this.value = value;
|
|
4447
4448
|
};
|
|
4448
|
-
|
|
4449
|
+
goog.log.Level.prototype.toString = function() {
|
|
4449
4450
|
return this.name;
|
|
4450
4451
|
};
|
|
4451
|
-
goog.log.Level = third_party$javascript$closure$log$log$classdecl$var0;
|
|
4452
4452
|
goog.log.Level.OFF = new goog.log.Level("OFF", Infinity);
|
|
4453
4453
|
goog.log.Level.SHOUT = new goog.log.Level("SHOUT", 1200);
|
|
4454
4454
|
goog.log.Level.SEVERE = new goog.log.Level("SEVERE", 1E3);
|
|
@@ -4484,17 +4484,16 @@ goog.log.Level.getPredefinedLevelByValue = function(value) {
|
|
|
4484
4484
|
}
|
|
4485
4485
|
return null;
|
|
4486
4486
|
};
|
|
4487
|
-
|
|
4487
|
+
goog.log.Logger = function() {
|
|
4488
4488
|
};
|
|
4489
|
-
|
|
4489
|
+
goog.log.Logger.prototype.getName = function() {
|
|
4490
4490
|
};
|
|
4491
|
-
goog.log.Logger = third_party$javascript$closure$log$log$classdecl$var1;
|
|
4492
4491
|
goog.log.Logger.Level = goog.log.Level;
|
|
4493
|
-
|
|
4492
|
+
goog.log.LogBuffer = function(capacity) {
|
|
4494
4493
|
this.capacity_ = typeof capacity === "number" ? capacity : goog.log.LogBuffer.CAPACITY;
|
|
4495
4494
|
this.clear();
|
|
4496
4495
|
};
|
|
4497
|
-
|
|
4496
|
+
goog.log.LogBuffer.prototype.addRecord = function(level, msg, loggerName) {
|
|
4498
4497
|
if (!this.isBufferingEnabled()) {
|
|
4499
4498
|
return new goog.log.LogRecord(level, msg, loggerName);
|
|
4500
4499
|
}
|
|
@@ -4508,7 +4507,7 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.addRecord = func
|
|
|
4508
4507
|
this.isFull_ = curIndex == this.capacity_ - 1;
|
|
4509
4508
|
return this.buffer_[curIndex] = new goog.log.LogRecord(level, msg, loggerName);
|
|
4510
4509
|
};
|
|
4511
|
-
|
|
4510
|
+
goog.log.LogBuffer.prototype.forEachRecord = function(func) {
|
|
4512
4511
|
var buffer = this.buffer_;
|
|
4513
4512
|
if (buffer[0]) {
|
|
4514
4513
|
var curIndex = this.curIndex_, i = this.isFull_ ? curIndex : -1;
|
|
@@ -4517,18 +4516,17 @@ third_party$javascript$closure$log$log$classdecl$var2.prototype.forEachRecord =
|
|
|
4517
4516
|
} while (i !== curIndex);
|
|
4518
4517
|
}
|
|
4519
4518
|
};
|
|
4520
|
-
|
|
4519
|
+
goog.log.LogBuffer.prototype.isBufferingEnabled = function() {
|
|
4521
4520
|
return this.capacity_ > 0;
|
|
4522
4521
|
};
|
|
4523
|
-
|
|
4522
|
+
goog.log.LogBuffer.prototype.isFull = function() {
|
|
4524
4523
|
return this.isFull_;
|
|
4525
4524
|
};
|
|
4526
|
-
|
|
4525
|
+
goog.log.LogBuffer.prototype.clear = function() {
|
|
4527
4526
|
this.buffer_ = Array(this.capacity_);
|
|
4528
4527
|
this.curIndex_ = -1;
|
|
4529
4528
|
this.isFull_ = !1;
|
|
4530
4529
|
};
|
|
4531
|
-
goog.log.LogBuffer = third_party$javascript$closure$log$log$classdecl$var2;
|
|
4532
4530
|
goog.log.LogBuffer.CAPACITY = 0;
|
|
4533
4531
|
goog.log.LogBuffer.getInstance = function() {
|
|
4534
4532
|
goog.log.LogBuffer.instance_ || (goog.log.LogBuffer.instance_ = new goog.log.LogBuffer(goog.log.LogBuffer.CAPACITY));
|
|
@@ -4537,11 +4535,11 @@ goog.log.LogBuffer.getInstance = function() {
|
|
|
4537
4535
|
goog.log.LogBuffer.isBufferingEnabled = function() {
|
|
4538
4536
|
return goog.log.LogBuffer.getInstance().isBufferingEnabled();
|
|
4539
4537
|
};
|
|
4540
|
-
|
|
4538
|
+
goog.log.LogRecord = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4541
4539
|
this.exception_ = void 0;
|
|
4542
4540
|
this.reset(level || goog.log.Level.OFF, msg, loggerName, time, sequenceNumber);
|
|
4543
4541
|
};
|
|
4544
|
-
|
|
4542
|
+
goog.log.LogRecord.prototype.reset = function(level, msg, loggerName, time, sequenceNumber) {
|
|
4545
4543
|
this.time_ = time || goog.now();
|
|
4546
4544
|
this.level_ = level;
|
|
4547
4545
|
this.msg_ = msg;
|
|
@@ -4549,42 +4547,41 @@ third_party$javascript$closure$log$log$classdecl$var3.prototype.reset = function
|
|
|
4549
4547
|
this.exception_ = void 0;
|
|
4550
4548
|
this.sequenceNumber_ = typeof sequenceNumber === "number" ? sequenceNumber : goog.log.LogRecord.nextSequenceNumber_;
|
|
4551
4549
|
};
|
|
4552
|
-
|
|
4550
|
+
goog.log.LogRecord.prototype.getLoggerName = function() {
|
|
4553
4551
|
return this.loggerName_;
|
|
4554
4552
|
};
|
|
4555
|
-
|
|
4553
|
+
goog.log.LogRecord.prototype.setLoggerName = function(name) {
|
|
4556
4554
|
this.loggerName_ = name;
|
|
4557
4555
|
};
|
|
4558
|
-
|
|
4556
|
+
goog.log.LogRecord.prototype.getException = function() {
|
|
4559
4557
|
return this.exception_;
|
|
4560
4558
|
};
|
|
4561
|
-
|
|
4559
|
+
goog.log.LogRecord.prototype.setException = function(exception) {
|
|
4562
4560
|
this.exception_ = exception;
|
|
4563
4561
|
};
|
|
4564
|
-
|
|
4562
|
+
goog.log.LogRecord.prototype.getLevel = function() {
|
|
4565
4563
|
return this.level_;
|
|
4566
4564
|
};
|
|
4567
|
-
|
|
4565
|
+
goog.log.LogRecord.prototype.setLevel = function(level) {
|
|
4568
4566
|
this.level_ = level;
|
|
4569
4567
|
};
|
|
4570
|
-
|
|
4568
|
+
goog.log.LogRecord.prototype.getMessage = function() {
|
|
4571
4569
|
return this.msg_;
|
|
4572
4570
|
};
|
|
4573
|
-
|
|
4571
|
+
goog.log.LogRecord.prototype.setMessage = function(msg) {
|
|
4574
4572
|
this.msg_ = msg;
|
|
4575
4573
|
};
|
|
4576
|
-
|
|
4574
|
+
goog.log.LogRecord.prototype.getMillis = function() {
|
|
4577
4575
|
return this.time_;
|
|
4578
4576
|
};
|
|
4579
|
-
|
|
4577
|
+
goog.log.LogRecord.prototype.setMillis = function(time) {
|
|
4580
4578
|
this.time_ = time;
|
|
4581
4579
|
};
|
|
4582
|
-
|
|
4580
|
+
goog.log.LogRecord.prototype.getSequenceNumber = function() {
|
|
4583
4581
|
return this.sequenceNumber_;
|
|
4584
4582
|
};
|
|
4585
|
-
goog.log.LogRecord = third_party$javascript$closure$log$log$classdecl$var3;
|
|
4586
4583
|
goog.log.LogRecord.nextSequenceNumber_ = 0;
|
|
4587
|
-
|
|
4584
|
+
goog.log.LogRegistryEntry_ = function(name, parent) {
|
|
4588
4585
|
this.level = null;
|
|
4589
4586
|
this.handlers = [];
|
|
4590
4587
|
this.parent = (parent === void 0 ? null : parent) || null;
|
|
@@ -4593,7 +4590,7 @@ var third_party$javascript$closure$log$log$classdecl$var4 = function(name, paren
|
|
|
4593
4590
|
return name;
|
|
4594
4591
|
}};
|
|
4595
4592
|
};
|
|
4596
|
-
|
|
4593
|
+
goog.log.LogRegistryEntry_.prototype.getEffectiveLevel = function() {
|
|
4597
4594
|
if (this.level) {
|
|
4598
4595
|
return this.level;
|
|
4599
4596
|
}
|
|
@@ -4603,21 +4600,20 @@ third_party$javascript$closure$log$log$classdecl$var4.prototype.getEffectiveLeve
|
|
|
4603
4600
|
goog.asserts.fail("Root logger has no level set.");
|
|
4604
4601
|
return goog.log.Level.OFF;
|
|
4605
4602
|
};
|
|
4606
|
-
|
|
4603
|
+
goog.log.LogRegistryEntry_.prototype.publish = function(logRecord) {
|
|
4607
4604
|
for (var target = this; target;) {
|
|
4608
4605
|
target.handlers.forEach(function(handler) {
|
|
4609
4606
|
handler(logRecord);
|
|
4610
4607
|
}), target = target.parent;
|
|
4611
4608
|
}
|
|
4612
4609
|
};
|
|
4613
|
-
goog.log.
|
|
4614
|
-
var third_party$javascript$closure$log$log$classdecl$var5 = function() {
|
|
4610
|
+
goog.log.LogRegistry_ = function() {
|
|
4615
4611
|
this.entries = {};
|
|
4616
4612
|
var rootLogRegistryEntry = new goog.log.LogRegistryEntry_(goog.log.ROOT_LOGGER_NAME);
|
|
4617
4613
|
rootLogRegistryEntry.level = goog.log.Level.CONFIG;
|
|
4618
4614
|
this.entries[goog.log.ROOT_LOGGER_NAME] = rootLogRegistryEntry;
|
|
4619
4615
|
};
|
|
4620
|
-
|
|
4616
|
+
goog.log.LogRegistry_.prototype.getLogRegistryEntry = function(name, level) {
|
|
4621
4617
|
var entry = this.entries[name];
|
|
4622
4618
|
if (entry) {
|
|
4623
4619
|
return level !== void 0 && (entry.level = level), entry;
|
|
@@ -4628,13 +4624,12 @@ third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEn
|
|
|
4628
4624
|
level !== void 0 && (logRegistryEntry.level = level);
|
|
4629
4625
|
return logRegistryEntry;
|
|
4630
4626
|
};
|
|
4631
|
-
|
|
4627
|
+
goog.log.LogRegistry_.prototype.getAllLoggers = function() {
|
|
4632
4628
|
var $jscomp$this$17096019$34 = this;
|
|
4633
4629
|
return Object.keys(this.entries).map(function(loggerName) {
|
|
4634
4630
|
return $jscomp$this$17096019$34.entries[loggerName].logger;
|
|
4635
4631
|
});
|
|
4636
4632
|
};
|
|
4637
|
-
goog.log.LogRegistry_ = third_party$javascript$closure$log$log$classdecl$var5;
|
|
4638
4633
|
goog.log.LogRegistry_.getInstance = function() {
|
|
4639
4634
|
goog.log.LogRegistry_.instance_ || (goog.log.LogRegistry_.instance_ = new goog.log.LogRegistry_());
|
|
4640
4635
|
return goog.log.LogRegistry_.instance_;
|
|
@@ -6522,8 +6517,10 @@ module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__async_throw_on_un
|
|
|
6522
6517
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ve_logging__enable = !1;
|
|
6523
6518
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_context_per_component__enable = !1;
|
|
6524
6519
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable = !1;
|
|
6520
|
+
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__fixed_noopener_behavior__enable = !1;
|
|
6525
6521
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__wiz_enable_native_promise__enable = !1;
|
|
6526
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;
|
|
6527
6524
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__web_storage_is_available_cache_once__enable = !1;
|
|
6528
6525
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_disabled_flag__enable = !1;
|
|
6529
6526
|
module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__testonly_debug_flag__enable = !1;
|
|
@@ -6536,8 +6533,10 @@ goog.flags.ASYNC_THROW_ON_UNICODE_TO_BYTE = module$exports$closure$flags$flags$2
|
|
|
6536
6533
|
goog.flags.CLIENT_ONLY_WIZ_VE_LOGGING = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_ve_logging__enable : goog.readFlagInternalDoNotUseOrElse(725719775, !1);
|
|
6537
6534
|
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);
|
|
6538
6535
|
goog.flags.CLIENT_ONLY_WIZ_SINK_LAZY_TSX_EXECUTION = module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__use_toggles ? module$exports$closure$flags$flags$2etoggles.TOGGLE_GoogFlags__client_only_wiz_sink_lazy_tsx_execution__enable : goog.readFlagInternalDoNotUseOrElse(568333945, !1);
|
|
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);
|
|
6539
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);
|
|
6540
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);
|
|
6541
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);
|
|
6542
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);
|
|
6543
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);
|
|
@@ -16848,7 +16847,7 @@ module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanit
|
|
|
16848
16847
|
["LINK", new Map([["href", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY, conditions:new Map([["rel", new Set("alternate author bookmark canonical cite help icon license next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" "))]])}]])], ["SOURCE", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}],
|
|
16849
16848
|
["srcset", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET}]])], ["IMG", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}], ["srcset", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY_FOR_SRCSET}]])],
|
|
16850
16849
|
["VIDEO", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}]])], ["AUDIO", new Map([["src", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_USE_RESOURCE_URL_POLICY}]])]], module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_ALLOWED_GLOBAL_ATTRIBUTES =
|
|
16851
|
-
"title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked cite color cols colspan controls controlslist datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden ismap label lang loop max maxlength media minlength min multiple muted nonce open placeholder poster preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
|
|
16850
|
+
"title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked cite color cols colspan controls controlslist crossorigin datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden ismap label lang loop max maxlength media minlength min multiple muted nonce open placeholder poster preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
|
|
16852
16851
|
module$contents$safevalues$builders$html_sanitizer$sanitizer_table$default_sanitizer_table_GLOBAL_ATTRIBUTE_POLICIES = [["dir", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
|
|
16853
16852
|
return new Map([["dir", new Set(["auto", "ltr", "rtl"])]]);
|
|
16854
16853
|
})}], ["async", {policyAction:module$exports$safevalues$builders$html_sanitizer$sanitizer_table$sanitizer_table.AttributePolicyAction.KEEP_AND_NORMALIZE, conditions:module$contents$safevalues$internals$pure_pure(function() {
|
|
@@ -19317,7 +19316,7 @@ var $jscomp$templatelit$m1153655765$99 = $jscomp.createTemplateTagFirstArg(["htt
|
|
|
19317
19316
|
ee.apiclient = {};
|
|
19318
19317
|
var module$contents$ee$apiclient_apiclient = {};
|
|
19319
19318
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
19320
|
-
ee.apiclient.API_CLIENT_VERSION = "1.5.
|
|
19319
|
+
ee.apiclient.API_CLIENT_VERSION = "1.5.13";
|
|
19321
19320
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
19322
19321
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
19323
19322
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19615,8 +19614,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19615
19614
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19616
19615
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19617
19616
|
method = method || "POST";
|
|
19618
|
-
var headers = {"Content-Type":contentType}, version = "1.5.
|
|
19619
|
-
version === "1.5.
|
|
19617
|
+
var headers = {"Content-Type":contentType}, version = "1.5.13";
|
|
19618
|
+
version === "1.5.13" && (version = "latest");
|
|
19620
19619
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19621
19620
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19622
19621
|
if (authToken != null) {
|
|
@@ -19843,7 +19842,8 @@ module$contents$ee$apiclient_apiclient.authTokenRefresher_ = null;
|
|
|
19843
19842
|
module$contents$ee$apiclient_apiclient.AUTH_SCOPE_ = "https://www.googleapis.com/auth/earthengine";
|
|
19844
19843
|
module$contents$ee$apiclient_apiclient.READ_ONLY_AUTH_SCOPE_ = "https://www.googleapis.com/auth/earthengine.readonly";
|
|
19845
19844
|
module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_ = "https://www.googleapis.com/auth/cloud-platform";
|
|
19846
|
-
module$contents$ee$apiclient_apiclient.
|
|
19845
|
+
module$contents$ee$apiclient_apiclient.GOOGLE_DRIVE_SCOPE_ = "https://www.googleapis.com/auth/drive";
|
|
19846
|
+
module$contents$ee$apiclient_apiclient.DEFAULT_AUTH_SCOPES_ = [module$contents$ee$apiclient_apiclient.AUTH_SCOPE_, module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_, module$contents$ee$apiclient_apiclient.GOOGLE_DRIVE_SCOPE_];
|
|
19847
19847
|
module$contents$ee$apiclient_apiclient.STORAGE_SCOPE_ = "https://www.googleapis.com/auth/devstorage.read_write";
|
|
19848
19848
|
module$contents$ee$apiclient_apiclient.cloudApiKey_ = null;
|
|
19849
19849
|
module$contents$ee$apiclient_apiclient.initialized_ = !1;
|
|
@@ -19880,6 +19880,7 @@ ee.apiclient.send = module$contents$ee$apiclient_apiclient.send;
|
|
|
19880
19880
|
ee.apiclient.AUTH_SCOPE = module$contents$ee$apiclient_apiclient.AUTH_SCOPE_;
|
|
19881
19881
|
ee.apiclient.READ_ONLY_AUTH_SCOPE = module$contents$ee$apiclient_apiclient.READ_ONLY_AUTH_SCOPE_;
|
|
19882
19882
|
ee.apiclient.CLOUD_PLATFORM_SCOPE = module$contents$ee$apiclient_apiclient.CLOUD_PLATFORM_SCOPE_;
|
|
19883
|
+
ee.apiclient.GOOGLE_DRIVE_SCOPE = module$contents$ee$apiclient_apiclient.GOOGLE_DRIVE_SCOPE_;
|
|
19883
19884
|
ee.apiclient.STORAGE_SCOPE = module$contents$ee$apiclient_apiclient.STORAGE_SCOPE_;
|
|
19884
19885
|
ee.apiclient.DEFAULT_AUTH_SCOPES = module$contents$ee$apiclient_apiclient.DEFAULT_AUTH_SCOPES_;
|
|
19885
19886
|
ee.apiclient.makeRequest = module$contents$ee$apiclient_apiclient.makeRequest_;
|
|
@@ -27141,29 +27142,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
27141
27142
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
27142
27143
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
27143
27144
|
(function() {
|
|
27144
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
27145
|
-
orderedParamLists = [["name", "
|
|
27146
|
-
"
|
|
27147
|
-
"
|
|
27148
|
-
"
|
|
27149
|
-
["
|
|
27150
|
-
["
|
|
27151
|
-
|
|
27152
|
-
["params", "opt_callback"], ["
|
|
27153
|
-
["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"], [], ["
|
|
27154
|
-
["
|
|
27155
|
-
|
|
27156
|
-
"opt_callback"], ["
|
|
27157
|
-
["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"
|
|
27158
|
-
[ee.ApiFunction.
|
|
27159
|
-
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.
|
|
27160
|
-
ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.data.
|
|
27161
|
-
ee.data.
|
|
27162
|
-
ee.data.
|
|
27163
|
-
ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature
|
|
27164
|
-
ee.Filter, ee.Filter.and, ee.Filter.inList, ee.Filter.gt, ee.Filter.or, ee.Filter.lt, ee.
|
|
27165
|
-
ee.Image, ee.Image.prototype.
|
|
27166
|
-
ee.ImageCollection.prototype.
|
|
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(" "),
|
|
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(" "),
|
|
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(" "),
|
|
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(" "),
|
|
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"], []];
|
|
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,
|
|
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) {
|
|
27167
27168
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
27168
27169
|
});
|
|
27169
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;
|
|
@@ -1546,13 +1546,21 @@ apiclient.READ_ONLY_AUTH_SCOPE_ = 'https://www.googleapis.com/auth/earthengine.r
|
|
|
1546
1546
|
apiclient.CLOUD_PLATFORM_SCOPE_ =
|
|
1547
1547
|
'https://www.googleapis.com/auth/cloud-platform';
|
|
1548
1548
|
|
|
1549
|
+
/**
|
|
1550
|
+
* The OAuth scope for Google Drive.
|
|
1551
|
+
* @private @const {string}
|
|
1552
|
+
*/
|
|
1553
|
+
apiclient.GOOGLE_DRIVE_SCOPE_ = 'https://www.googleapis.com/auth/drive';
|
|
1554
|
+
|
|
1549
1555
|
/**
|
|
1550
1556
|
* The OAuth scopes automatically requested unless explicitly suppressed via the
|
|
1551
1557
|
* relevant API auth call.
|
|
1552
1558
|
* @private @const {!Array<string>}
|
|
1553
1559
|
*/
|
|
1554
|
-
apiclient.DEFAULT_AUTH_SCOPES_ =
|
|
1555
|
-
|
|
1560
|
+
apiclient.DEFAULT_AUTH_SCOPES_ = [
|
|
1561
|
+
apiclient.AUTH_SCOPE_, apiclient.CLOUD_PLATFORM_SCOPE_,
|
|
1562
|
+
apiclient.GOOGLE_DRIVE_SCOPE_
|
|
1563
|
+
];
|
|
1556
1564
|
|
|
1557
1565
|
|
|
1558
1566
|
/**
|
|
@@ -1752,6 +1760,7 @@ exports.send = apiclient.send;
|
|
|
1752
1760
|
exports.AUTH_SCOPE = apiclient.AUTH_SCOPE_;
|
|
1753
1761
|
exports.READ_ONLY_AUTH_SCOPE = apiclient.READ_ONLY_AUTH_SCOPE_;
|
|
1754
1762
|
exports.CLOUD_PLATFORM_SCOPE = apiclient.CLOUD_PLATFORM_SCOPE_;
|
|
1763
|
+
exports.GOOGLE_DRIVE_SCOPE = apiclient.GOOGLE_DRIVE_SCOPE_;
|
|
1755
1764
|
exports.STORAGE_SCOPE = apiclient.STORAGE_SCOPE_;
|
|
1756
1765
|
exports.DEFAULT_AUTH_SCOPES = apiclient.DEFAULT_AUTH_SCOPES_;
|
|
1757
1766
|
|
|
@@ -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.
|