@google/earthengine 0.1.305 → 0.1.306
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/.tmp/BUILD +4 -0
- package/.tmp/METADATA +3 -3
- package/build/browser.js +114 -69
- package/build/ee_api_js.js +470 -465
- package/build/ee_api_js_debug.js +92 -47
- package/build/ee_api_js_npm.js +114 -69
- package/build/main.js +114 -69
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/.tmp/BUILD
CHANGED
|
@@ -316,6 +316,10 @@ Fileset(
|
|
|
316
316
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.305:public",
|
|
317
317
|
destdir = "0.1.305",
|
|
318
318
|
),
|
|
319
|
+
FilesetEntry(
|
|
320
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.306:public",
|
|
321
|
+
destdir = "0.1.306",
|
|
322
|
+
),
|
|
319
323
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
320
324
|
],
|
|
321
325
|
)
|
package/.tmp/METADATA
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Format: google3/devtools/metadata/metadata.proto (go/google3metadata)
|
|
2
2
|
|
|
3
|
-
name: "0.1.
|
|
3
|
+
name: "0.1.306"
|
|
4
4
|
description:
|
|
5
5
|
"Google Earth Engine is a cloud-based platform for planetary-scale "
|
|
6
6
|
"environmental data analysis. The Earth Engine JavaScript API allows "
|
|
@@ -12,10 +12,10 @@ third_party {
|
|
|
12
12
|
type: GIT
|
|
13
13
|
value: "https://github.com/google/earthengine-api.git"
|
|
14
14
|
}
|
|
15
|
-
version: "v0.1.
|
|
15
|
+
version: "v0.1.306"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2022
|
|
18
18
|
month: 4
|
|
19
|
-
day:
|
|
19
|
+
day: 13
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -2080,7 +2080,7 @@ function module$contents$goog$array_toArray(object) {
|
|
|
2080
2080
|
}
|
|
2081
2081
|
return [];
|
|
2082
2082
|
}
|
|
2083
|
-
|
|
2083
|
+
goog.array.toArray = module$contents$goog$array_toArray;
|
|
2084
2084
|
goog.array.clone = module$contents$goog$array_toArray;
|
|
2085
2085
|
function module$contents$goog$array_extend(arr1, var_args) {
|
|
2086
2086
|
for (var i = 1; i < arguments.length; i++) {
|
|
@@ -2565,7 +2565,7 @@ goog.debug.getStacktraceHelper_ = function(fn, visited) {
|
|
|
2565
2565
|
default:
|
|
2566
2566
|
argDesc = typeof arg;
|
|
2567
2567
|
}
|
|
2568
|
-
40 < argDesc.length && (argDesc = argDesc.
|
|
2568
|
+
40 < argDesc.length && (argDesc = argDesc.slice(0, 40) + "...");
|
|
2569
2569
|
sb.push(argDesc);
|
|
2570
2570
|
}
|
|
2571
2571
|
visited.push(fn);
|
|
@@ -2637,10 +2637,10 @@ goog.string.internal.endsWith = function(str, suffix) {
|
|
|
2637
2637
|
return 0 <= l && str.indexOf(suffix, l) == l;
|
|
2638
2638
|
};
|
|
2639
2639
|
goog.string.internal.caseInsensitiveStartsWith = function(str, prefix) {
|
|
2640
|
-
return 0 == goog.string.internal.caseInsensitiveCompare(prefix, str.
|
|
2640
|
+
return 0 == goog.string.internal.caseInsensitiveCompare(prefix, str.slice(0, prefix.length));
|
|
2641
2641
|
};
|
|
2642
2642
|
goog.string.internal.caseInsensitiveEndsWith = function(str, suffix) {
|
|
2643
|
-
return 0 == goog.string.internal.caseInsensitiveCompare(suffix, str.
|
|
2643
|
+
return 0 == goog.string.internal.caseInsensitiveCompare(suffix, str.slice(str.length - suffix.length));
|
|
2644
2644
|
};
|
|
2645
2645
|
goog.string.internal.caseInsensitiveEquals = function(str1, str2) {
|
|
2646
2646
|
return str1.toLowerCase() == str2.toLowerCase();
|
|
@@ -2881,36 +2881,26 @@ function module$contents$goog$labs$userAgent$browser_matchSafari() {
|
|
|
2881
2881
|
function module$contents$goog$labs$userAgent$browser_matchCoast() {
|
|
2882
2882
|
return module$contents$goog$labs$userAgent$browser_useUserAgentDataBrand() ? !1 : module$contents$goog$labs$userAgent$util_matchUserAgent("Coast");
|
|
2883
2883
|
}
|
|
2884
|
-
function module$contents$goog$labs$userAgent$browser_matchIosWebview() {
|
|
2885
|
-
return (module$contents$goog$labs$userAgent$util_matchUserAgent("iPad") || module$contents$goog$labs$userAgent$util_matchUserAgent("iPhone")) && !module$contents$goog$labs$userAgent$browser_matchSafari() && !module$contents$goog$labs$userAgent$browser_matchChrome() && !module$contents$goog$labs$userAgent$browser_matchCoast() && !module$contents$goog$labs$userAgent$browser_matchFirefox() && module$contents$goog$labs$userAgent$util_matchUserAgent("AppleWebKit");
|
|
2886
|
-
}
|
|
2887
2884
|
function module$contents$goog$labs$userAgent$browser_matchChrome() {
|
|
2888
2885
|
return module$contents$goog$labs$userAgent$browser_useUserAgentDataBrand() ? module$contents$goog$labs$userAgent$util_matchUserAgentDataBrand(module$contents$goog$labs$userAgent$browser_Brand.CHROMIUM) : (module$contents$goog$labs$userAgent$util_matchUserAgent("Chrome") || module$contents$goog$labs$userAgent$util_matchUserAgent("CriOS")) && !module$contents$goog$labs$userAgent$browser_matchEdgeHtml() || module$contents$goog$labs$userAgent$browser_isSilk();
|
|
2889
2886
|
}
|
|
2890
2887
|
function module$contents$goog$labs$userAgent$browser_matchAndroidBrowser() {
|
|
2891
2888
|
return module$contents$goog$labs$userAgent$util_matchUserAgent("Android") && !(module$contents$goog$labs$userAgent$browser_matchChrome() || module$contents$goog$labs$userAgent$browser_matchFirefox() || module$contents$goog$labs$userAgent$browser_matchOpera() || module$contents$goog$labs$userAgent$browser_isSilk());
|
|
2892
2889
|
}
|
|
2893
|
-
var module$contents$goog$labs$userAgent$browser_isOpera = module$contents$goog$labs$userAgent$browser_matchOpera;
|
|
2894
2890
|
goog.labs.userAgent.browser.isOpera = module$contents$goog$labs$userAgent$browser_matchOpera;
|
|
2895
|
-
var module$contents$goog$labs$userAgent$browser_isIE = module$contents$goog$labs$userAgent$browser_matchIE;
|
|
2896
2891
|
goog.labs.userAgent.browser.isIE = module$contents$goog$labs$userAgent$browser_matchIE;
|
|
2897
|
-
var module$contents$goog$labs$userAgent$browser_isEdge = module$contents$goog$labs$userAgent$browser_matchEdgeHtml;
|
|
2898
2892
|
goog.labs.userAgent.browser.isEdge = module$contents$goog$labs$userAgent$browser_matchEdgeHtml;
|
|
2899
|
-
var module$contents$goog$labs$userAgent$browser_isEdgeChromium = module$contents$goog$labs$userAgent$browser_matchEdgeChromium;
|
|
2900
2893
|
goog.labs.userAgent.browser.isEdgeChromium = module$contents$goog$labs$userAgent$browser_matchEdgeChromium;
|
|
2901
|
-
var module$contents$goog$labs$userAgent$browser_isOperaChromium = module$contents$goog$labs$userAgent$browser_matchOperaChromium;
|
|
2902
2894
|
goog.labs.userAgent.browser.isOperaChromium = module$contents$goog$labs$userAgent$browser_matchOperaChromium;
|
|
2903
|
-
var module$contents$goog$labs$userAgent$browser_isFirefox = module$contents$goog$labs$userAgent$browser_matchFirefox;
|
|
2904
2895
|
goog.labs.userAgent.browser.isFirefox = module$contents$goog$labs$userAgent$browser_matchFirefox;
|
|
2905
|
-
var module$contents$goog$labs$userAgent$browser_isSafari = module$contents$goog$labs$userAgent$browser_matchSafari;
|
|
2906
2896
|
goog.labs.userAgent.browser.isSafari = module$contents$goog$labs$userAgent$browser_matchSafari;
|
|
2907
2897
|
var module$contents$goog$labs$userAgent$browser_isCoast = module$contents$goog$labs$userAgent$browser_matchCoast;
|
|
2908
2898
|
goog.labs.userAgent.browser.isCoast = module$contents$goog$labs$userAgent$browser_matchCoast;
|
|
2909
|
-
|
|
2910
|
-
goog
|
|
2899
|
+
goog.labs.userAgent.browser.isIosWebview = function module$contents$goog$labs$userAgent$browser_matchIosWebview() {
|
|
2900
|
+
return (module$contents$goog$labs$userAgent$util_matchUserAgent("iPad") || module$contents$goog$labs$userAgent$util_matchUserAgent("iPhone")) && !module$contents$goog$labs$userAgent$browser_matchSafari() && !module$contents$goog$labs$userAgent$browser_matchChrome() && !module$contents$goog$labs$userAgent$browser_matchCoast() && !module$contents$goog$labs$userAgent$browser_matchFirefox() && module$contents$goog$labs$userAgent$util_matchUserAgent("AppleWebKit");
|
|
2901
|
+
};
|
|
2911
2902
|
var module$contents$goog$labs$userAgent$browser_isChrome = module$contents$goog$labs$userAgent$browser_matchChrome;
|
|
2912
2903
|
goog.labs.userAgent.browser.isChrome = module$contents$goog$labs$userAgent$browser_matchChrome;
|
|
2913
|
-
var module$contents$goog$labs$userAgent$browser_isAndroidBrowser = module$contents$goog$labs$userAgent$browser_matchAndroidBrowser;
|
|
2914
2904
|
goog.labs.userAgent.browser.isAndroidBrowser = module$contents$goog$labs$userAgent$browser_matchAndroidBrowser;
|
|
2915
2905
|
function module$contents$goog$labs$userAgent$browser_isSilk() {
|
|
2916
2906
|
return module$contents$goog$labs$userAgent$util_matchUserAgent("Silk");
|
|
@@ -5506,7 +5496,7 @@ goog.structs.Set = function(opt_values) {
|
|
|
5506
5496
|
goog.structs.Set.getUid_ = goog.getUid;
|
|
5507
5497
|
goog.structs.Set.getKey_ = function(val) {
|
|
5508
5498
|
var type = typeof val;
|
|
5509
|
-
return "object" == type && val || "function" == type ? "o" + goog.getUid(val) : type.
|
|
5499
|
+
return "object" == type && val || "function" == type ? "o" + goog.getUid(val) : type.slice(0, 1) + val;
|
|
5510
5500
|
};
|
|
5511
5501
|
goog.structs.Set.prototype.getCount = function() {
|
|
5512
5502
|
return this.map_.size;
|
|
@@ -7355,10 +7345,10 @@ module$contents$goog$html$SafeHtml_SafeHtml.BR = function() {
|
|
|
7355
7345
|
}();
|
|
7356
7346
|
goog.html.SafeHtml = module$contents$goog$html$SafeHtml_SafeHtml;
|
|
7357
7347
|
goog.html.uncheckedconversions = {};
|
|
7358
|
-
goog.html.uncheckedconversions.safeHtmlFromStringKnownToSatisfyTypeContract = function(justification, html
|
|
7348
|
+
goog.html.uncheckedconversions.safeHtmlFromStringKnownToSatisfyTypeContract = function(justification, html) {
|
|
7359
7349
|
goog.asserts.assertString(goog.string.Const.unwrap(justification), "must provide justification");
|
|
7360
7350
|
goog.asserts.assert(!goog.string.internal.isEmptyOrWhitespace(goog.string.Const.unwrap(justification)), "must provide non-empty justification");
|
|
7361
|
-
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(html,
|
|
7351
|
+
return module$contents$goog$html$SafeHtml_SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(html, null);
|
|
7362
7352
|
};
|
|
7363
7353
|
goog.html.uncheckedconversions.safeScriptFromStringKnownToSatisfyTypeContract = function(justification, script) {
|
|
7364
7354
|
goog.asserts.assertString(goog.string.Const.unwrap(justification), "must provide justification");
|
|
@@ -7696,7 +7686,7 @@ goog.string.unescapeEntitiesUsingDom_ = function(str, opt_document) {
|
|
|
7696
7686
|
return value;
|
|
7697
7687
|
}
|
|
7698
7688
|
if ("#" == entity.charAt(0)) {
|
|
7699
|
-
var n = Number("0" + entity.
|
|
7689
|
+
var n = Number("0" + entity.slice(1));
|
|
7700
7690
|
isNaN(n) || (value = String.fromCharCode(n));
|
|
7701
7691
|
}
|
|
7702
7692
|
value || (goog.dom.safe.setInnerHtml(div, goog.html.uncheckedconversions.safeHtmlFromStringKnownToSatisfyTypeContract(goog.string.Const.from("Single HTML entity."), s + " ")), value = div.firstChild.nodeValue.slice(0, -1));
|
|
@@ -7716,7 +7706,7 @@ goog.string.unescapePureXmlEntities_ = function(str) {
|
|
|
7716
7706
|
return '"';
|
|
7717
7707
|
default:
|
|
7718
7708
|
if ("#" == entity.charAt(0)) {
|
|
7719
|
-
var n = Number("0" + entity.
|
|
7709
|
+
var n = Number("0" + entity.slice(1));
|
|
7720
7710
|
if (!isNaN(n)) {
|
|
7721
7711
|
return String.fromCharCode(n);
|
|
7722
7712
|
}
|
|
@@ -7804,7 +7794,7 @@ goog.string.countOf = function(s, ss) {
|
|
|
7804
7794
|
};
|
|
7805
7795
|
goog.string.removeAt = function(s, index, stringLength) {
|
|
7806
7796
|
var resultStr = s;
|
|
7807
|
-
0 <= index && index < s.length && 0 < stringLength && (resultStr = s.
|
|
7797
|
+
0 <= index && index < s.length && 0 < stringLength && (resultStr = s.slice(0, index) + s.slice(index + stringLength));
|
|
7808
7798
|
return resultStr;
|
|
7809
7799
|
};
|
|
7810
7800
|
goog.string.remove = function(str, substr) {
|
|
@@ -7878,7 +7868,7 @@ goog.string.toTitleCase = function(str, opt_delimiters) {
|
|
|
7878
7868
|
});
|
|
7879
7869
|
};
|
|
7880
7870
|
goog.string.capitalize = function(str) {
|
|
7881
|
-
return String(str.charAt(0)).toUpperCase() + String(str.
|
|
7871
|
+
return String(str.charAt(0)).toUpperCase() + String(str.slice(1)).toLowerCase();
|
|
7882
7872
|
};
|
|
7883
7873
|
goog.string.parseInt = function(value) {
|
|
7884
7874
|
isFinite(value) && (value = String(value));
|
|
@@ -8027,10 +8017,7 @@ goog.uri.utils.getScheme = function(uri) {
|
|
|
8027
8017
|
};
|
|
8028
8018
|
goog.uri.utils.getEffectiveScheme = function(uri) {
|
|
8029
8019
|
var scheme = goog.uri.utils.getScheme(uri);
|
|
8030
|
-
|
|
8031
|
-
var protocol = goog.global.self.location.protocol;
|
|
8032
|
-
scheme = protocol.substr(0, protocol.length - 1);
|
|
8033
|
-
}
|
|
8020
|
+
!scheme && goog.global.self && goog.global.self.location && (scheme = goog.global.self.location.protocol.slice(0, -1));
|
|
8034
8021
|
return scheme ? scheme.toLowerCase() : "";
|
|
8035
8022
|
};
|
|
8036
8023
|
goog.uri.utils.getUserInfoEncoded = function(uri) {
|
|
@@ -8059,7 +8046,7 @@ goog.uri.utils.getQueryData = function(uri) {
|
|
|
8059
8046
|
};
|
|
8060
8047
|
goog.uri.utils.getFragmentEncoded = function(uri) {
|
|
8061
8048
|
var hashIndex = uri.indexOf("#");
|
|
8062
|
-
return 0 > hashIndex ? null : uri.
|
|
8049
|
+
return 0 > hashIndex ? null : uri.slice(hashIndex + 1);
|
|
8063
8050
|
};
|
|
8064
8051
|
goog.uri.utils.setFragmentEncoded = function(uri, fragment) {
|
|
8065
8052
|
return goog.uri.utils.removeFragment(uri) + (fragment ? "#" + fragment : "");
|
|
@@ -8081,7 +8068,7 @@ goog.uri.utils.getPathAndAfter = function(uri) {
|
|
|
8081
8068
|
};
|
|
8082
8069
|
goog.uri.utils.removeFragment = function(uri) {
|
|
8083
8070
|
var hashIndex = uri.indexOf("#");
|
|
8084
|
-
return 0 > hashIndex ? uri : uri.
|
|
8071
|
+
return 0 > hashIndex ? uri : uri.slice(0, hashIndex);
|
|
8085
8072
|
};
|
|
8086
8073
|
goog.uri.utils.haveSameDomain = function(uri1, uri2) {
|
|
8087
8074
|
var pieces1 = goog.uri.utils.split(uri1), pieces2 = goog.uri.utils.split(uri2);
|
|
@@ -8109,7 +8096,7 @@ goog.uri.utils.splitQueryData_ = function(uri) {
|
|
|
8109
8096
|
} else {
|
|
8110
8097
|
queryData = uri.substring(questionIndex + 1, hashIndex);
|
|
8111
8098
|
}
|
|
8112
|
-
return [uri.
|
|
8099
|
+
return [uri.slice(0, questionIndex), queryData, uri.slice(hashIndex)];
|
|
8113
8100
|
};
|
|
8114
8101
|
goog.uri.utils.joinQueryData_ = function(parts) {
|
|
8115
8102
|
return parts[0] + (parts[1] ? "?" + parts[1] : "") + parts[2];
|
|
@@ -8189,7 +8176,7 @@ goog.uri.utils.getParamValue = function(uri, keyEncoded) {
|
|
|
8189
8176
|
endPosition = hashOrEndIndex;
|
|
8190
8177
|
}
|
|
8191
8178
|
foundIndex += keyEncoded.length + 1;
|
|
8192
|
-
return goog.string.urlDecode(uri.
|
|
8179
|
+
return goog.string.urlDecode(uri.slice(foundIndex, -1 !== endPosition ? endPosition : 0));
|
|
8193
8180
|
};
|
|
8194
8181
|
goog.uri.utils.getParamValues = function(uri, keyEncoded) {
|
|
8195
8182
|
for (var hashOrEndIndex = uri.search(goog.uri.utils.hashOrEndRe_), position = 0, foundIndex, result = []; 0 <= (foundIndex = goog.uri.utils.findParam_(uri, position, keyEncoded, hashOrEndIndex));) {
|
|
@@ -8198,7 +8185,7 @@ goog.uri.utils.getParamValues = function(uri, keyEncoded) {
|
|
|
8198
8185
|
position = hashOrEndIndex;
|
|
8199
8186
|
}
|
|
8200
8187
|
foundIndex += keyEncoded.length + 1;
|
|
8201
|
-
result.push(goog.string.urlDecode(uri.
|
|
8188
|
+
result.push(goog.string.urlDecode(uri.slice(foundIndex, Math.max(position, 0))));
|
|
8202
8189
|
}
|
|
8203
8190
|
return result;
|
|
8204
8191
|
};
|
|
@@ -8207,7 +8194,7 @@ goog.uri.utils.removeParam = function(uri, keyEncoded) {
|
|
|
8207
8194
|
for (var hashOrEndIndex = uri.search(goog.uri.utils.hashOrEndRe_), position = 0, foundIndex, buffer = []; 0 <= (foundIndex = goog.uri.utils.findParam_(uri, position, keyEncoded, hashOrEndIndex));) {
|
|
8208
8195
|
buffer.push(uri.substring(position, foundIndex)), position = Math.min(uri.indexOf("&", foundIndex) + 1 || hashOrEndIndex, hashOrEndIndex);
|
|
8209
8196
|
}
|
|
8210
|
-
buffer.push(uri.
|
|
8197
|
+
buffer.push(uri.slice(position));
|
|
8211
8198
|
return buffer.join("").replace(goog.uri.utils.trailingQueryPunctuationRe_, "$1");
|
|
8212
8199
|
};
|
|
8213
8200
|
goog.uri.utils.setParam = function(uri, keyEncoded, value) {
|
|
@@ -8216,16 +8203,16 @@ goog.uri.utils.setParam = function(uri, keyEncoded, value) {
|
|
|
8216
8203
|
goog.uri.utils.setParamsFromMap = function(uri, params) {
|
|
8217
8204
|
var parts = goog.uri.utils.splitQueryData_(uri), queryData = parts[1], buffer = [];
|
|
8218
8205
|
queryData && queryData.split("&").forEach(function(pair) {
|
|
8219
|
-
var indexOfEquals = pair.indexOf("=");
|
|
8220
|
-
params.hasOwnProperty(
|
|
8206
|
+
var indexOfEquals = pair.indexOf("="), name = 0 <= indexOfEquals ? pair.slice(0, indexOfEquals) : pair;
|
|
8207
|
+
params.hasOwnProperty(name) || buffer.push(pair);
|
|
8221
8208
|
});
|
|
8222
8209
|
parts[1] = goog.uri.utils.appendQueryData_(buffer.join("&"), goog.uri.utils.buildQueryDataFromMap(params));
|
|
8223
8210
|
return goog.uri.utils.joinQueryData_(parts);
|
|
8224
8211
|
};
|
|
8225
8212
|
goog.uri.utils.appendPath = function(baseUri, path) {
|
|
8226
8213
|
goog.uri.utils.assertNoFragmentsOrQueries_(baseUri);
|
|
8227
|
-
goog.string.endsWith(baseUri, "/") && (baseUri = baseUri.
|
|
8228
|
-
goog.string.startsWith(path, "/") && (path = path.
|
|
8214
|
+
goog.string.endsWith(baseUri, "/") && (baseUri = baseUri.slice(0, -1));
|
|
8215
|
+
goog.string.startsWith(path, "/") && (path = path.slice(1));
|
|
8229
8216
|
return "" + baseUri + "/" + path;
|
|
8230
8217
|
};
|
|
8231
8218
|
goog.uri.utils.setPath = function(uri, path) {
|
|
@@ -8282,7 +8269,7 @@ goog.Uri.prototype.resolve = function(relativeUri) {
|
|
|
8282
8269
|
path = "/" + path;
|
|
8283
8270
|
} else {
|
|
8284
8271
|
var lastSlashIndex = absoluteUri.getPath().lastIndexOf("/");
|
|
8285
|
-
-1 != lastSlashIndex && (path = absoluteUri.getPath().
|
|
8272
|
+
-1 != lastSlashIndex && (path = absoluteUri.getPath().slice(0, lastSlashIndex + 1) + path);
|
|
8286
8273
|
}
|
|
8287
8274
|
}
|
|
8288
8275
|
path = goog.Uri.removeDotSegments(path);
|
|
@@ -10695,15 +10682,20 @@ module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters = fu
|
|
|
10695
10682
|
module$exports$eeapiclient$domain_object.Serializable.call(this);
|
|
10696
10683
|
this.Serializable$set("thinningOptions", null == parameters.thinningOptions ? null : parameters.thinningOptions);
|
|
10697
10684
|
this.Serializable$set("rankingOptions", null == parameters.rankingOptions ? null : parameters.rankingOptions);
|
|
10685
|
+
this.Serializable$set("prerenderingOptions", null == parameters.prerenderingOptions ? null : parameters.prerenderingOptions);
|
|
10698
10686
|
};
|
|
10699
10687
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters, module$exports$eeapiclient$domain_object.Serializable);
|
|
10700
10688
|
module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters.prototype.getConstructor = function() {
|
|
10701
10689
|
return module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters;
|
|
10702
10690
|
};
|
|
10703
10691
|
module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters.prototype.getPartialClassMetadata = function() {
|
|
10704
|
-
return {keys:["rankingOptions", "thinningOptions"], objects:{rankingOptions:module$exports$eeapiclient$ee_api_client.RankingOptions, thinningOptions:module$exports$eeapiclient$ee_api_client.ThinningOptions}};
|
|
10692
|
+
return {keys:["prerenderingOptions", "rankingOptions", "thinningOptions"], objects:{prerenderingOptions:module$exports$eeapiclient$ee_api_client.PrerenderingOptions, rankingOptions:module$exports$eeapiclient$ee_api_client.RankingOptions, thinningOptions:module$exports$eeapiclient$ee_api_client.ThinningOptions}};
|
|
10705
10693
|
};
|
|
10706
|
-
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters.prototype, {
|
|
10694
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.FeatureViewIngestionTimeParameters.prototype, {prerenderingOptions:{configurable:!0, enumerable:!0, get:function() {
|
|
10695
|
+
return this.Serializable$has("prerenderingOptions") ? this.Serializable$get("prerenderingOptions") : null;
|
|
10696
|
+
}, set:function(value) {
|
|
10697
|
+
this.Serializable$set("prerenderingOptions", value);
|
|
10698
|
+
}}, rankingOptions:{configurable:!0, enumerable:!0, get:function() {
|
|
10707
10699
|
return this.Serializable$has("rankingOptions") ? this.Serializable$get("rankingOptions") : null;
|
|
10708
10700
|
}, set:function(value) {
|
|
10709
10701
|
this.Serializable$set("rankingOptions", value);
|
|
@@ -12063,6 +12055,30 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
12063
12055
|
}, set:function(value) {
|
|
12064
12056
|
this.Serializable$set("version", value);
|
|
12065
12057
|
}}});
|
|
12058
|
+
module$exports$eeapiclient$ee_api_client.PrerenderingOptionsParameters = function module$contents$eeapiclient$ee_api_client_PrerenderingOptionsParameters() {
|
|
12059
|
+
};
|
|
12060
|
+
module$exports$eeapiclient$ee_api_client.PrerenderingOptions = function(parameters) {
|
|
12061
|
+
parameters = void 0 === parameters ? {} : parameters;
|
|
12062
|
+
module$exports$eeapiclient$domain_object.Serializable.call(this);
|
|
12063
|
+
this.Serializable$set("prerenderTiles", null == parameters.prerenderTiles ? null : parameters.prerenderTiles);
|
|
12064
|
+
this.Serializable$set("tileLimiting", null == parameters.tileLimiting ? null : parameters.tileLimiting);
|
|
12065
|
+
};
|
|
12066
|
+
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.PrerenderingOptions, module$exports$eeapiclient$domain_object.Serializable);
|
|
12067
|
+
module$exports$eeapiclient$ee_api_client.PrerenderingOptions.prototype.getConstructor = function() {
|
|
12068
|
+
return module$exports$eeapiclient$ee_api_client.PrerenderingOptions;
|
|
12069
|
+
};
|
|
12070
|
+
module$exports$eeapiclient$ee_api_client.PrerenderingOptions.prototype.getPartialClassMetadata = function() {
|
|
12071
|
+
return {keys:["prerenderTiles", "tileLimiting"], objects:{tileLimiting:module$exports$eeapiclient$ee_api_client.TileLimiting}};
|
|
12072
|
+
};
|
|
12073
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.PrerenderingOptions.prototype, {prerenderTiles:{configurable:!0, enumerable:!0, get:function() {
|
|
12074
|
+
return this.Serializable$has("prerenderTiles") ? this.Serializable$get("prerenderTiles") : null;
|
|
12075
|
+
}, set:function(value) {
|
|
12076
|
+
this.Serializable$set("prerenderTiles", value);
|
|
12077
|
+
}}, tileLimiting:{configurable:!0, enumerable:!0, get:function() {
|
|
12078
|
+
return this.Serializable$has("tileLimiting") ? this.Serializable$get("tileLimiting") : null;
|
|
12079
|
+
}, set:function(value) {
|
|
12080
|
+
this.Serializable$set("tileLimiting", value);
|
|
12081
|
+
}}});
|
|
12066
12082
|
module$exports$eeapiclient$ee_api_client.RankByAttributeRuleParameters = function module$contents$eeapiclient$ee_api_client_RankByAttributeRuleParameters() {
|
|
12067
12083
|
};
|
|
12068
12084
|
module$exports$eeapiclient$ee_api_client.RankByAttributeRule = function(parameters) {
|
|
@@ -12726,6 +12742,35 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
12726
12742
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.Thumbnail, {FileFormat:{configurable:!0, enumerable:!0, get:function() {
|
|
12727
12743
|
return module$exports$eeapiclient$ee_api_client.ThumbnailFileFormatEnum;
|
|
12728
12744
|
}}});
|
|
12745
|
+
module$exports$eeapiclient$ee_api_client.TileLimitingParameters = function module$contents$eeapiclient$ee_api_client_TileLimitingParameters() {
|
|
12746
|
+
};
|
|
12747
|
+
module$exports$eeapiclient$ee_api_client.TileLimiting = function(parameters) {
|
|
12748
|
+
parameters = void 0 === parameters ? {} : parameters;
|
|
12749
|
+
module$exports$eeapiclient$domain_object.Serializable.call(this);
|
|
12750
|
+
this.Serializable$set("maxPrerenderZoom", null == parameters.maxPrerenderZoom ? null : parameters.maxPrerenderZoom);
|
|
12751
|
+
this.Serializable$set("minVerticesPerTile", null == parameters.minVerticesPerTile ? null : parameters.minVerticesPerTile);
|
|
12752
|
+
this.Serializable$set("neighborDepth", null == parameters.neighborDepth ? null : parameters.neighborDepth);
|
|
12753
|
+
};
|
|
12754
|
+
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.TileLimiting, module$exports$eeapiclient$domain_object.Serializable);
|
|
12755
|
+
module$exports$eeapiclient$ee_api_client.TileLimiting.prototype.getConstructor = function() {
|
|
12756
|
+
return module$exports$eeapiclient$ee_api_client.TileLimiting;
|
|
12757
|
+
};
|
|
12758
|
+
module$exports$eeapiclient$ee_api_client.TileLimiting.prototype.getPartialClassMetadata = function() {
|
|
12759
|
+
return {keys:["maxPrerenderZoom", "minVerticesPerTile", "neighborDepth"]};
|
|
12760
|
+
};
|
|
12761
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TileLimiting.prototype, {maxPrerenderZoom:{configurable:!0, enumerable:!0, get:function() {
|
|
12762
|
+
return this.Serializable$has("maxPrerenderZoom") ? this.Serializable$get("maxPrerenderZoom") : null;
|
|
12763
|
+
}, set:function(value) {
|
|
12764
|
+
this.Serializable$set("maxPrerenderZoom", value);
|
|
12765
|
+
}}, minVerticesPerTile:{configurable:!0, enumerable:!0, get:function() {
|
|
12766
|
+
return this.Serializable$has("minVerticesPerTile") ? this.Serializable$get("minVerticesPerTile") : null;
|
|
12767
|
+
}, set:function(value) {
|
|
12768
|
+
this.Serializable$set("minVerticesPerTile", value);
|
|
12769
|
+
}}, neighborDepth:{configurable:!0, enumerable:!0, get:function() {
|
|
12770
|
+
return this.Serializable$has("neighborDepth") ? this.Serializable$get("neighborDepth") : null;
|
|
12771
|
+
}, set:function(value) {
|
|
12772
|
+
this.Serializable$set("neighborDepth", value);
|
|
12773
|
+
}}});
|
|
12729
12774
|
module$exports$eeapiclient$ee_api_client.TileOptionsParameters = function module$contents$eeapiclient$ee_api_client_TileOptionsParameters() {
|
|
12730
12775
|
};
|
|
12731
12776
|
module$exports$eeapiclient$ee_api_client.TileOptions = function(parameters) {
|
|
@@ -16108,7 +16153,7 @@ goog.json.Serializer.charsToReplace_ = /\uffff/.test("\uffff") ? /[\\"\x00-\x1f\
|
|
|
16108
16153
|
goog.json.Serializer.prototype.serializeString_ = function(s, sb) {
|
|
16109
16154
|
sb.push('"', s.replace(goog.json.Serializer.charsToReplace_, function(c) {
|
|
16110
16155
|
var rv = goog.json.Serializer.charToJsonCharCache_[c];
|
|
16111
|
-
rv || (rv = "\\u" + (c.charCodeAt(0) | 65536).toString(16).
|
|
16156
|
+
rv || (rv = "\\u" + (c.charCodeAt(0) | 65536).toString(16).slice(1), goog.json.Serializer.charToJsonCharCache_[c] = rv);
|
|
16112
16157
|
return rv;
|
|
16113
16158
|
}), '"');
|
|
16114
16159
|
};
|
|
@@ -16345,7 +16390,7 @@ third_party$javascript$closure$log$log$classdecl$var5.prototype.getLogRegistryEn
|
|
|
16345
16390
|
if (entry) {
|
|
16346
16391
|
return void 0 !== level && (entry.level = level), entry;
|
|
16347
16392
|
}
|
|
16348
|
-
var lastDotIndex = name.lastIndexOf("."),
|
|
16393
|
+
var lastDotIndex = name.lastIndexOf("."), parentName = name.slice(0, Math.max(lastDotIndex, 0)), parentLogRegistryEntry = this.getLogRegistryEntry(parentName), logRegistryEntry = new goog.log.LogRegistryEntry_(name, parentLogRegistryEntry);
|
|
16349
16394
|
this.entries[name] = logRegistryEntry;
|
|
16350
16395
|
parentLogRegistryEntry.children.push(logRegistryEntry);
|
|
16351
16396
|
void 0 !== level && (logRegistryEntry.level = level);
|
|
@@ -16908,7 +16953,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
16908
16953
|
ee.apiclient = {};
|
|
16909
16954
|
var module$contents$ee$apiclient_apiclient = {};
|
|
16910
16955
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
16911
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
16956
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.306";
|
|
16912
16957
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
16913
16958
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
16914
16959
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17189,8 +17234,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17189
17234
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17190
17235
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17191
17236
|
method = method || "POST";
|
|
17192
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17193
|
-
"0.1.
|
|
17237
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.306";
|
|
17238
|
+
"0.1.306" === version && (version = "latest");
|
|
17194
17239
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17195
17240
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17196
17241
|
if (null != authToken) {
|
|
@@ -23640,7 +23685,7 @@ goog.string.path.dirname = function(path) {
|
|
|
23640
23685
|
};
|
|
23641
23686
|
goog.string.path.extension = function(path) {
|
|
23642
23687
|
var baseName = goog.string.path.baseName(path).replace(/\.+/g, "."), separatorIndex = baseName.lastIndexOf(".");
|
|
23643
|
-
return 0 >= separatorIndex ? "" : baseName.
|
|
23688
|
+
return 0 >= separatorIndex ? "" : baseName.slice(separatorIndex + 1);
|
|
23644
23689
|
};
|
|
23645
23690
|
goog.string.path.join = function(var_args) {
|
|
23646
23691
|
for (var path = arguments[0], i = 1; i < arguments.length; i++) {
|
|
@@ -24551,28 +24596,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24551
24596
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24552
24597
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24553
24598
|
(function() {
|
|
24554
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction.
|
|
24555
|
-
orderedParamLists = [["name", "namedArgs"], ["name"
|
|
24556
|
-
"collection opt_description
|
|
24557
|
-
|
|
24558
|
-
["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "
|
|
24559
|
-
|
|
24560
|
-
"
|
|
24561
|
-
"opt_callback"], ["assetId", "opt_callback"], ["id", "
|
|
24562
|
-
["
|
|
24563
|
-
|
|
24564
|
-
"value"], ["
|
|
24565
|
-
"
|
|
24566
|
-
["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
24567
|
-
[ee.ApiFunction._apply, ee.ApiFunction.
|
|
24568
|
-
module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.
|
|
24569
|
-
ee.ComputedObject.prototype.
|
|
24570
|
-
ee.data.
|
|
24571
|
-
ee.data.
|
|
24572
|
-
ee.FeatureCollection.prototype.
|
|
24573
|
-
ee.Geometry
|
|
24574
|
-
ee.
|
|
24575
|
-
ee.Terrain].forEach(function(fn, i) {
|
|
24599
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._apply ee.ApiFunction._call ee.ApiFunction.lookup ee.batch.Export.table.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.video.toCloudStorage ee.Collection.prototype.filterDate ee.Collection.prototype.limit ee.Collection.prototype.filterBounds ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filter ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.evaluate ee.data.startIngestion ee.data.listAssets ee.data.renameAsset ee.data.updateTask ee.data.copyAsset ee.data.startProcessing ee.data.listImages ee.data.getTaskList ee.data.deleteAsset ee.data.listBuckets ee.data.getTaskListWithLimit ee.data.getAssetAcl ee.data.startTableIngestion ee.data.getAssetRoots ee.data.listOperations ee.data.cancelOperation ee.data.createAssetHome ee.data.getAsset ee.data.createAsset ee.data.getInfo ee.data.getOperation ee.data.updateAsset ee.data.authenticateViaOauth ee.data.getList ee.data.createFolder ee.data.cancelTask ee.data.setAssetAcl ee.data.getTileUrl ee.data.authenticate ee.data.setAssetProperties ee.data.getAssetRootQuota ee.data.authenticateViaPopup ee.data.getDownloadId ee.data.getFeatureViewTilesKey ee.data.authenticateViaPrivateKey ee.data.makeDownloadUrl ee.data.listFeatures ee.data.getTableDownloadId ee.data.computeValue ee.data.makeTableDownloadUrl ee.data.newTaskId ee.data.getThumbId ee.data.getVideoThumbId ee.data.getTaskStatus ee.data.getMapId ee.data.getFilmstripThumbId ee.data.makeThumbUrl ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Dictionary ee.initialize ee.call ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.inList ee.Filter.prototype.not ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getThumbURL ee.Image.prototype.getInfo ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.String ee.Terrain".split(" "),
|
|
24600
|
+
orderedParamLists = [["name", "namedArgs"], ["name", "var_args"], ["name"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_writePublicTiles opt_minZoom opt_maxZoom opt_scale opt_region opt_skipEmptyTiles opt_minTimeMachineZoomSubset opt_maxTimeMachineZoomSubset opt_tileWidth opt_tileHeight opt_tileStride opt_videoFormat opt_version opt_mapsApiKey opt_bucketCorsUris".split(" "),
|
|
24601
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris".split(" "),
|
|
24602
|
+
"image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".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".split(" "),
|
|
24603
|
+
["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["start", "opt_end"], ["max", "opt_property", "opt_ascending"], ["geometry"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["name", "operator", "value"], ["filter"], ["legacy"], ["opt_callback"], ["func",
|
|
24604
|
+
"var_args"], ["callback"], ["taskId", "request", "opt_callback"], ["parent", "params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["taskId", "action", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "params", "opt_callback"], ["opt_callback"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"],
|
|
24605
|
+
["opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["requestedId", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["id", "opt_callback"], ["operationName", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId",
|
|
24606
|
+
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["id", "x", "y", "z"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["assetId", "properties", "opt_callback"], ["rootId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["asset", "params", "opt_callback"], ["params", "opt_callback"], ["obj", "opt_callback"],
|
|
24607
|
+
["id"], ["opt_count", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "var_args"], ["func", "namedArgs"], [], [], [], [], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"],
|
|
24608
|
+
["opt_callback"], ["args", "opt_column"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["name", "operator", "value"], ["name", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name",
|
|
24609
|
+
"value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic",
|
|
24610
|
+
"opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["var_args"], ["expression", "opt_map"], ["var_args"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["params", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["geometry"], ["params", "opt_callback"], ["params", "opt_callback"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["args"], ["list"],
|
|
24611
|
+
["number"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
24612
|
+
[ee.ApiFunction._apply, ee.ApiFunction._call, ee.ApiFunction.lookup, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toDrive,
|
|
24613
|
+
module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.video.toCloudStorage, ee.Collection.prototype.filterDate, ee.Collection.prototype.limit, ee.Collection.prototype.filterBounds, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filter, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.aside,
|
|
24614
|
+
ee.ComputedObject.prototype.evaluate, ee.data.startIngestion, ee.data.listAssets, ee.data.renameAsset, ee.data.updateTask, ee.data.copyAsset, ee.data.startProcessing, ee.data.listImages, ee.data.getTaskList, ee.data.deleteAsset, ee.data.listBuckets, ee.data.getTaskListWithLimit, ee.data.getAssetAcl, ee.data.startTableIngestion, ee.data.getAssetRoots, ee.data.listOperations, ee.data.cancelOperation, ee.data.createAssetHome, ee.data.getAsset, ee.data.createAsset, ee.data.getInfo, ee.data.getOperation,
|
|
24615
|
+
ee.data.updateAsset, ee.data.authenticateViaOauth, ee.data.getList, ee.data.createFolder, ee.data.cancelTask, ee.data.setAssetAcl, ee.data.getTileUrl, ee.data.authenticate, ee.data.setAssetProperties, ee.data.getAssetRootQuota, ee.data.authenticateViaPopup, ee.data.getDownloadId, ee.data.getFeatureViewTilesKey, ee.data.authenticateViaPrivateKey, ee.data.makeDownloadUrl, ee.data.listFeatures, ee.data.getTableDownloadId, ee.data.computeValue, ee.data.makeTableDownloadUrl, ee.data.newTaskId, ee.data.getThumbId,
|
|
24616
|
+
ee.data.getVideoThumbId, ee.data.getTaskStatus, ee.data.getMapId, ee.data.getFilmstripThumbId, ee.data.makeThumbUrl, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Dictionary, ee.initialize, ee.call, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo,
|
|
24617
|
+
ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.Filter.gte, ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.gt, ee.Filter.bounds, ee.Filter.lte, ee.Filter.lt, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize,
|
|
24618
|
+
ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getThumbURL, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbId,
|
|
24619
|
+
ee.Image.prototype.clip, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi,
|
|
24620
|
+
ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
24576
24621
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
24577
24622
|
});
|
|
24578
24623
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|