@google/earthengine 0.1.400 → 0.1.401
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 +45 -52
- package/build/ee_api_js.js +65 -65
- package/build/ee_api_js_debug.js +23 -30
- package/build/ee_api_js_npm.js +45 -52
- package/build/main.js +45 -52
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/examples/UserInterface/LandsatExplorer.js +10 -6
- package/src/layers/earthenginetilesource.js +20 -9
package/build/browser.js
CHANGED
|
@@ -3806,9 +3806,9 @@ DOMCONTENTLOADED:"DOMContentLoaded", ERROR:"error", HELP:"help", LOAD:"load", LO
|
|
|
3806
3806
|
SEEKED:"seeked", SEEKING:"seeking", STALLED:"stalled", SUSPEND:"suspend", TIMEUPDATE:"timeupdate", VOLUMECHANGE:"volumechange", WAITING:"waiting", SOURCEOPEN:"sourceopen", SOURCEENDED:"sourceended", SOURCECLOSED:"sourceclosed", ABORT:"abort", UPDATE:"update", UPDATESTART:"updatestart", UPDATEEND:"updateend", HASHCHANGE:"hashchange", PAGEHIDE:"pagehide", PAGESHOW:"pageshow", POPSTATE:"popstate", COPY:"copy", PASTE:"paste", CUT:"cut", BEFORECOPY:"beforecopy", BEFORECUT:"beforecut", BEFOREPASTE:"beforepaste",
|
|
3807
3807
|
ONLINE:"online", OFFLINE:"offline", MESSAGE:"message", CONNECT:"connect", INSTALL:"install", ACTIVATE:"activate", FETCH:"fetch", FOREIGNFETCH:"foreignfetch", MESSAGEERROR:"messageerror", STATECHANGE:"statechange", UPDATEFOUND:"updatefound", CONTROLLERCHANGE:"controllerchange", ANIMATIONSTART:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationStart"), ANIMATIONEND:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationEnd"), ANIMATIONITERATION:goog.events.eventTypeHelpers.getVendorPrefixedName("AnimationIteration"),
|
|
3808
3808
|
TRANSITIONEND:goog.events.eventTypeHelpers.getVendorPrefixedName("TransitionEnd"), POINTERDOWN:"pointerdown", POINTERUP:"pointerup", POINTERCANCEL:"pointercancel", POINTERMOVE:"pointermove", POINTEROVER:"pointerover", POINTEROUT:"pointerout", POINTERENTER:"pointerenter", POINTERLEAVE:"pointerleave", GOTPOINTERCAPTURE:"gotpointercapture", LOSTPOINTERCAPTURE:"lostpointercapture", MSGESTURECHANGE:"MSGestureChange", MSGESTUREEND:"MSGestureEnd", MSGESTUREHOLD:"MSGestureHold", MSGESTURESTART:"MSGestureStart",
|
|
3809
|
-
MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut", MSPOINTEROVER:"MSPointerOver", MSPOINTERUP:"MSPointerUp", TEXT:"text", TEXTINPUT:
|
|
3810
|
-
|
|
3811
|
-
|
|
3809
|
+
MSGESTURETAP:"MSGestureTap", MSGOTPOINTERCAPTURE:"MSGotPointerCapture", MSINERTIASTART:"MSInertiaStart", MSLOSTPOINTERCAPTURE:"MSLostPointerCapture", MSPOINTERCANCEL:"MSPointerCancel", MSPOINTERDOWN:"MSPointerDown", MSPOINTERENTER:"MSPointerEnter", MSPOINTERHOVER:"MSPointerHover", MSPOINTERLEAVE:"MSPointerLeave", MSPOINTERMOVE:"MSPointerMove", MSPOINTEROUT:"MSPointerOut", MSPOINTEROVER:"MSPointerOver", MSPOINTERUP:"MSPointerUp", TEXT:"text", TEXTINPUT:"textInput", COMPOSITIONSTART:"compositionstart",
|
|
3810
|
+
COMPOSITIONUPDATE:"compositionupdate", COMPOSITIONEND:"compositionend", BEFOREINPUT:"beforeinput", FULLSCREENCHANGE:"fullscreenchange", WEBKITBEGINFULLSCREEN:"webkitbeginfullscreen", WEBKITENDFULLSCREEN:"webkitendfullscreen", EXIT:"exit", LOADABORT:"loadabort", LOADCOMMIT:"loadcommit", LOADREDIRECT:"loadredirect", LOADSTART:"loadstart", LOADSTOP:"loadstop", RESPONSIVE:"responsive", SIZECHANGED:"sizechanged", UNRESPONSIVE:"unresponsive", VISIBILITYCHANGE:"visibilitychange", STORAGE:"storage", BEFOREPRINT:"beforeprint",
|
|
3811
|
+
AFTERPRINT:"afterprint", BEFOREINSTALLPROMPT:"beforeinstallprompt", APPINSTALLED:"appinstalled", CANCEL:"cancel", FINISH:"finish", REMOVE:"remove"};
|
|
3812
3812
|
goog.events.BrowserEvent = function(opt_e, opt_currentTarget) {
|
|
3813
3813
|
goog.events.Event.call(this, opt_e ? opt_e.type : "");
|
|
3814
3814
|
this.relatedTarget = this.currentTarget = this.target = null;
|
|
@@ -15206,8 +15206,8 @@ goog.dom.BrowserFeature.OFFSCREEN_CANVAS_2D = !goog.dom.BrowserFeature.ASSUME_NO
|
|
|
15206
15206
|
goog.dom.BrowserFeature.CAN_ADD_NAME_OR_TYPE_ATTRIBUTES = !0;
|
|
15207
15207
|
goog.dom.BrowserFeature.CAN_USE_CHILDREN_ATTRIBUTE = !0;
|
|
15208
15208
|
goog.dom.BrowserFeature.CAN_USE_INNER_TEXT = !1;
|
|
15209
|
-
goog.dom.BrowserFeature.CAN_USE_PARENT_ELEMENT_PROPERTY = goog.userAgent.
|
|
15210
|
-
goog.dom.BrowserFeature.INNER_HTML_NEEDS_SCOPED_ELEMENT =
|
|
15209
|
+
goog.dom.BrowserFeature.CAN_USE_PARENT_ELEMENT_PROPERTY = goog.userAgent.WEBKIT;
|
|
15210
|
+
goog.dom.BrowserFeature.INNER_HTML_NEEDS_SCOPED_ELEMENT = !1;
|
|
15211
15211
|
goog.dom.asserts = {};
|
|
15212
15212
|
goog.dom.asserts.assertIsLocation = function(o) {
|
|
15213
15213
|
if (goog.asserts.ENABLE_ASSERTS) {
|
|
@@ -16603,7 +16603,7 @@ goog.dom.getDocumentScroll = function() {
|
|
|
16603
16603
|
};
|
|
16604
16604
|
goog.dom.getDocumentScroll_ = function(doc) {
|
|
16605
16605
|
var el = goog.dom.getDocumentScrollElement_(doc), win = goog.dom.getWindow_(doc);
|
|
16606
|
-
return
|
|
16606
|
+
return new goog.math.Coordinate(win.pageXOffset || el.scrollLeft, win.pageYOffset || el.scrollTop);
|
|
16607
16607
|
};
|
|
16608
16608
|
goog.dom.getDocumentScrollElement = function() {
|
|
16609
16609
|
return goog.dom.getDocumentScrollElement_(document);
|
|
@@ -16670,7 +16670,7 @@ goog.dom.safeHtmlToNode = function(html) {
|
|
|
16670
16670
|
};
|
|
16671
16671
|
goog.dom.safeHtmlToNode_ = function(doc, html) {
|
|
16672
16672
|
var tempDiv = goog.dom.createElement_(doc, goog.dom.TagName.DIV);
|
|
16673
|
-
goog.
|
|
16673
|
+
goog.dom.safe.setInnerHtml(tempDiv, html);
|
|
16674
16674
|
return goog.dom.childrenToNode_(doc, tempDiv);
|
|
16675
16675
|
};
|
|
16676
16676
|
goog.dom.childrenToNode_ = function(doc, tempDiv) {
|
|
@@ -16831,7 +16831,7 @@ goog.dom.isWindow = function(obj) {
|
|
|
16831
16831
|
};
|
|
16832
16832
|
goog.dom.getParentElement = function(element) {
|
|
16833
16833
|
var parent;
|
|
16834
|
-
if (goog.
|
|
16834
|
+
if (goog.userAgent.WEBKIT && (parent = element.parentElement)) {
|
|
16835
16835
|
return parent;
|
|
16836
16836
|
}
|
|
16837
16837
|
parent = element.parentNode;
|
|
@@ -16859,14 +16859,6 @@ goog.dom.compareNodeOrder = function(node1, node2) {
|
|
|
16859
16859
|
if (node1.compareDocumentPosition) {
|
|
16860
16860
|
return node1.compareDocumentPosition(node2) & 2 ? 1 : -1;
|
|
16861
16861
|
}
|
|
16862
|
-
if (goog.userAgent.IE && !goog.userAgent.isDocumentModeOrHigher(9)) {
|
|
16863
|
-
if (node1.nodeType == goog.dom.NodeType.DOCUMENT) {
|
|
16864
|
-
return -1;
|
|
16865
|
-
}
|
|
16866
|
-
if (node2.nodeType == goog.dom.NodeType.DOCUMENT) {
|
|
16867
|
-
return 1;
|
|
16868
|
-
}
|
|
16869
|
-
}
|
|
16870
16862
|
if ("sourceIndex" in node1 || node1.parentNode && "sourceIndex" in node1.parentNode) {
|
|
16871
16863
|
var isElement1 = node1.nodeType == goog.dom.NodeType.ELEMENT, isElement2 = node2.nodeType == goog.dom.NodeType.ELEMENT;
|
|
16872
16864
|
if (isElement1 && isElement2) {
|
|
@@ -17032,8 +17024,7 @@ goog.dom.setFocusableTabIndex = function(element, enable) {
|
|
|
17032
17024
|
enable ? element.tabIndex = 0 : (element.tabIndex = -1, element.removeAttribute("tabIndex"));
|
|
17033
17025
|
};
|
|
17034
17026
|
goog.dom.isFocusable = function(element) {
|
|
17035
|
-
|
|
17036
|
-
return (focusable = goog.dom.nativelySupportsFocus_(element) ? !element.disabled && (!goog.dom.hasSpecifiedTabIndex_(element) || goog.dom.isTabIndexFocusable_(element)) : goog.dom.isFocusableTabIndex(element)) && goog.userAgent.IE ? goog.dom.hasNonZeroBoundingRect_(element) : focusable;
|
|
17027
|
+
return goog.dom.nativelySupportsFocus_(element) ? !element.disabled && (!goog.dom.hasSpecifiedTabIndex_(element) || goog.dom.isTabIndexFocusable_(element)) : goog.dom.isFocusableTabIndex(element);
|
|
17037
17028
|
};
|
|
17038
17029
|
goog.dom.hasSpecifiedTabIndex_ = function(element) {
|
|
17039
17030
|
return element.hasAttribute("tabindex");
|
|
@@ -17046,7 +17037,7 @@ goog.dom.nativelySupportsFocus_ = function(element) {
|
|
|
17046
17037
|
return element.tagName == goog.dom.TagName.A && element.hasAttribute("href") || element.tagName == goog.dom.TagName.INPUT || element.tagName == goog.dom.TagName.TEXTAREA || element.tagName == goog.dom.TagName.SELECT || element.tagName == goog.dom.TagName.BUTTON;
|
|
17047
17038
|
};
|
|
17048
17039
|
goog.dom.hasNonZeroBoundingRect_ = function(element) {
|
|
17049
|
-
var rect = "function" !== typeof element.getBoundingClientRect
|
|
17040
|
+
var rect = "function" !== typeof element.getBoundingClientRect ? {height:element.offsetHeight, width:element.offsetWidth} : element.getBoundingClientRect();
|
|
17050
17041
|
return null != rect && 0 < rect.height && 0 < rect.width;
|
|
17051
17042
|
};
|
|
17052
17043
|
goog.dom.getTextContent = function(node) {
|
|
@@ -18988,7 +18979,7 @@ var $jscomp$templatelit$294235699$99 = $jscomp.createTemplateTagFirstArg(["https
|
|
|
18988
18979
|
ee.apiclient = {};
|
|
18989
18980
|
var module$contents$ee$apiclient_apiclient = {};
|
|
18990
18981
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1;
|
|
18991
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
18982
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.401";
|
|
18992
18983
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
18993
18984
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
18994
18985
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -19278,8 +19269,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
19278
19269
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
19279
19270
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
19280
19271
|
method = method || "POST";
|
|
19281
|
-
var headers = {"Content-Type":contentType}, version = "0.1.
|
|
19282
|
-
"0.1.
|
|
19272
|
+
var headers = {"Content-Type":contentType}, version = "0.1.401";
|
|
19273
|
+
"0.1.401" === version && (version = "latest");
|
|
19283
19274
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
19284
19275
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
19285
19276
|
if (null != authToken) {
|
|
@@ -26345,14 +26336,15 @@ goog.structs.PriorityPool.prototype.disposeInternal = function() {
|
|
|
26345
26336
|
this.requestQueue_.clear();
|
|
26346
26337
|
this.requestQueue_ = null;
|
|
26347
26338
|
};
|
|
26348
|
-
var module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource = function(mapId, opt_profiler) {
|
|
26339
|
+
var module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource = function(mapId, opt_profiler, opt_parallelism) {
|
|
26349
26340
|
module$exports$ee$layers$AbstractTileSource.call(this);
|
|
26350
26341
|
this.mapId_ = mapId;
|
|
26351
26342
|
this.profiler_ = opt_profiler || null;
|
|
26343
|
+
this.token_count_ = opt_parallelism || module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.DEFAULT_TOKEN_COUNT_;
|
|
26352
26344
|
};
|
|
26353
26345
|
$jscomp.inherits(module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource, module$exports$ee$layers$AbstractTileSource);
|
|
26354
26346
|
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.prototype.loadTile = function(tile, opt_priority) {
|
|
26355
|
-
var ProfilerHeader = module$contents$ee$apiclient_apiclient.PROFILE_HEADER.toLowerCase(), key = goog.events.listen(tile, ee.layers.AbstractTile.EventType.STATUS_CHANGED, function() {
|
|
26347
|
+
var $jscomp$this$1134479182$2 = this, ProfilerHeader = module$contents$ee$apiclient_apiclient.PROFILE_HEADER.toLowerCase(), key = goog.events.listen(tile, ee.layers.AbstractTile.EventType.STATUS_CHANGED, function() {
|
|
26356
26348
|
switch(tile.getStatus()) {
|
|
26357
26349
|
case ee.layers.AbstractTile.Status.LOADED:
|
|
26358
26350
|
var profileId = tile.sourceResponseHeaders[ProfilerHeader];
|
|
@@ -26364,14 +26356,15 @@ module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.prototype.
|
|
|
26364
26356
|
}
|
|
26365
26357
|
}, void 0, this);
|
|
26366
26358
|
tile.sourceUrl = this.getTileUrl_(tile.coord, tile.zoom);
|
|
26367
|
-
|
|
26368
|
-
|
|
26359
|
+
this.getGlobalTokenPool_().getObject(function(token) {
|
|
26360
|
+
$jscomp$this$1134479182$2.handleAvailableToken_(tile, token);
|
|
26361
|
+
}, opt_priority);
|
|
26369
26362
|
};
|
|
26370
26363
|
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.prototype.getUniqueId = function() {
|
|
26371
26364
|
return this.mapId_.mapid + "-" + this.mapId_.token;
|
|
26372
26365
|
};
|
|
26373
26366
|
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.prototype.handleAvailableToken_ = function(tile, token) {
|
|
26374
|
-
var tokenPool =
|
|
26367
|
+
var tokenPool = this.getGlobalTokenPool_();
|
|
26375
26368
|
if (tile.isDisposed() || tile.getStatus() == ee.layers.AbstractTile.Status.ABORTED) {
|
|
26376
26369
|
tokenPool.releaseObject(token);
|
|
26377
26370
|
} else {
|
|
@@ -26385,13 +26378,13 @@ module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.prototype.
|
|
|
26385
26378
|
var url = ee.data.getTileUrl(this.mapId_, coord.x, coord.y, zoom);
|
|
26386
26379
|
return this.profiler_ && this.profiler_.isEnabled() ? url + "&profiling=1" : url;
|
|
26387
26380
|
};
|
|
26388
|
-
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.getGlobalTokenPool_ = function() {
|
|
26389
|
-
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.TOKEN_POOL_ || (module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.TOKEN_POOL_ = new goog.structs.PriorityPool(0,
|
|
26381
|
+
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.prototype.getGlobalTokenPool_ = function() {
|
|
26382
|
+
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.TOKEN_POOL_ || (module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.TOKEN_POOL_ = new goog.structs.PriorityPool(0, this.token_count_));
|
|
26390
26383
|
return module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.TOKEN_POOL_;
|
|
26391
26384
|
};
|
|
26392
26385
|
goog.exportSymbol("ee.layers.EarthEngineTileSource", module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource);
|
|
26393
26386
|
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.TOKEN_POOL_ = null;
|
|
26394
|
-
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.
|
|
26387
|
+
module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource.DEFAULT_TOKEN_COUNT_ = 4;
|
|
26395
26388
|
ee.layers.EarthEngineTileSource = module$contents$ee$layers$EarthEngineTileSource_EarthEngineTileSource;
|
|
26396
26389
|
ee.layers.FeatureViewTileSource = {};
|
|
26397
26390
|
var module$contents$ee$layers$FeatureViewTileSource_FeatureViewTileSource = function(tilesKey) {
|
|
@@ -26846,29 +26839,29 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
26846
26839
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
26847
26840
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
26848
26841
|
(function() {
|
|
26849
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
26850
|
-
orderedParamLists = [["name", "
|
|
26851
|
-
"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(" "), "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(" "),
|
|
26842
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.map.toCloudStorage 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.classifier.toAsset ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toAsset ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.iterate ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.data.makeDownloadUrl ee.data.authenticateViaPopup ee.data.getAssetRoots ee.data.listFeatures ee.data.getAsset ee.data.setWorkloadTag ee.data.createAssetHome ee.data.getInfo ee.data.createAsset ee.data.authenticateViaPrivateKey ee.data.getOperation ee.data.setDefaultWorkloadTag ee.data.newTaskId ee.data.computeValue ee.data.resetWorkloadTag ee.data.getThumbId ee.data.updateAsset ee.data.cancelTask ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.getList ee.data.createFolder ee.data.getTaskStatus ee.data.updateTask ee.data.setAssetAcl ee.data.startIngestion ee.data.startProcessing ee.data.listAssets ee.data.makeThumbUrl ee.data.renameAsset ee.data.setAssetProperties ee.data.authenticateViaOauth ee.data.getMapId ee.data.copyAsset ee.data.deleteAsset ee.data.getTaskList ee.data.listBuckets ee.data.getAssetRootQuota ee.data.getTableDownloadId ee.data.getFeatureViewTilesKey ee.data.authenticate ee.data.getTileUrl ee.data.startTableIngestion ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.getWorkloadTag ee.data.listOperations ee.data.getAssetAcl ee.data.cancelOperation ee.data.listImages ee.data.getDownloadId ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.initialize ee.call ee.reset ee.Algorithms ee.InitState ee.apply ee.TILE_SIZE ee.Element.prototype.set ee.Encodable.SourceFrame ee.Feature.prototype.getInfo ee.Feature.prototype.getMapId ee.Feature.prototype.getMap ee.Feature ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getMapId ee.Filter.bounds ee.Filter.metadata ee.Filter.and ee.Filter.gt ee.Filter.lt ee.Filter.neq ee.Filter.inList ee.Filter.or ee.Filter.lte ee.Filter.gte ee.Filter.prototype.not ee.Filter.eq ee.Filter ee.Filter.date ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPoint ee.Geometry.BBox ee.Geometry.LineString ee.Geometry.MultiPolygon ee.Geometry.prototype.serialize ee.Geometry ee.Geometry.Rectangle ee.Geometry.Polygon ee.Geometry.Point ee.Geometry.prototype.toGeoJSON ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Image ee.Image.rgb ee.Image.cat ee.Image.prototype.select ee.Image.prototype.getInfo ee.Image.prototype.getMapId ee.Image.prototype.getThumbURL ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image.prototype.getThumbId ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.linkCollection ee.ImageCollection.prototype.getMapId ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection ee.List ee.Number ee.Serializer.toCloudApiJSON ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.String ee.Terrain".split(" "),
|
|
26843
|
+
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "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(" "), "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(" "),
|
|
26852
26844
|
"collection opt_description opt_table opt_overwrite opt_append opt_selectors opt_maxVertices opt_priority".split(" "), "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions opt_priority".split(" "), "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(" "),
|
|
26853
|
-
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), "
|
|
26854
|
-
|
|
26855
|
-
["
|
|
26856
|
-
|
|
26857
|
-
|
|
26858
|
-
"
|
|
26859
|
-
["
|
|
26860
|
-
"
|
|
26861
|
-
|
|
26862
|
-
["
|
|
26863
|
-
[
|
|
26864
|
-
module$contents$ee$batch_Export.
|
|
26865
|
-
ee.
|
|
26866
|
-
ee.
|
|
26867
|
-
ee.data.
|
|
26868
|
-
ee.
|
|
26869
|
-
ee.
|
|
26870
|
-
ee.
|
|
26871
|
-
ee.
|
|
26845
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames opt_priority".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices opt_priority".split(" "), ["classifier", "opt_description",
|
|
26846
|
+
"opt_assetId", "opt_priority"], "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(" "), ["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(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_priority".split(" "),
|
|
26847
|
+
["filter"], ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["algorithm", "opt_first"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["name", "operator", "value"], ["geometry"], ["callback"], ["opt_callback"], ["legacy"], ["func", "var_args"], ["id"], ["opt_success", "opt_error"], ["opt_callback"], ["asset", "params", "opt_callback"], ["id", "opt_callback"], ["tag"], ["requestedId", "opt_callback"], ["id", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties",
|
|
26848
|
+
"opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["operationName", "opt_callback"], ["tag"], ["opt_count", "opt_callback"], ["obj", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["taskId", "opt_callback"], ["taskId",
|
|
26849
|
+
"action", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["taskId", "request", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["sourceId", "destinationId", "opt_callback"], ["assetId", "properties", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["assetId", "opt_callback"],
|
|
26850
|
+
["opt_callback"], ["project", "opt_callback"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["id", "x", "y", "z"], ["taskId", "request", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], [], ["opt_limit", "opt_callback"], ["assetId", "opt_callback"], ["operationName", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["params", "opt_callback"], ["date", "opt_tz"],
|
|
26851
|
+
["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"], [], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["args", "opt_column"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors",
|
|
26852
|
+
"opt_newProperties", "opt_retainGeometry"], ["opt_visParams", "opt_callback"], ["geometry", "opt_errorMargin"], ["name", "operator", "value"], ["var_args"], ["name", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["var_args"], ["name", "value"], ["name", "value"], [], ["name", "value"], ["opt_filter"], ["start", "opt_end"], ["var_args"], ["namedArgs"], [], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords",
|
|
26853
|
+
"opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["legacy"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["opt_args"], ["r", "g", "b"], ["var_args"], ["var_args"],
|
|
26854
|
+
["opt_callback"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["expression", "opt_map"], ["geometry"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["params", "opt_callback"], ["opt_callback"], ["selectors", "opt_names"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["imageCollection", "opt_linkedBands", "opt_linkedProperties", "opt_matchPropertyName"], ["opt_visParams", "opt_callback"], [], ["params", "opt_callback"], ["args"],
|
|
26855
|
+
["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["string"], []];
|
|
26856
|
+
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.map.toCloudStorage, 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.classifier.toAsset,
|
|
26857
|
+
module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.iterate, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.evaluate,
|
|
26858
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.data.makeDownloadUrl, ee.data.authenticateViaPopup, ee.data.getAssetRoots, ee.data.listFeatures, ee.data.getAsset, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.getInfo, ee.data.createAsset, ee.data.authenticateViaPrivateKey, ee.data.getOperation, ee.data.setDefaultWorkloadTag, ee.data.newTaskId, ee.data.computeValue, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.updateAsset,
|
|
26859
|
+
ee.data.cancelTask, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId, ee.data.getList, ee.data.createFolder, ee.data.getTaskStatus, ee.data.updateTask, ee.data.setAssetAcl, ee.data.startIngestion, ee.data.startProcessing, ee.data.listAssets, ee.data.makeThumbUrl, ee.data.renameAsset, ee.data.setAssetProperties, ee.data.authenticateViaOauth, ee.data.getMapId, ee.data.copyAsset, ee.data.deleteAsset, ee.data.getTaskList, ee.data.listBuckets, ee.data.getAssetRootQuota, ee.data.getTableDownloadId,
|
|
26860
|
+
ee.data.getFeatureViewTilesKey, ee.data.authenticate, ee.data.getTileUrl, ee.data.startTableIngestion, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.getWorkloadTag, ee.data.listOperations, ee.data.getAssetAcl, ee.data.cancelOperation, ee.data.listImages, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.initialize, ee.call, ee.reset, ee.Algorithms, ee.InitState,
|
|
26861
|
+
ee.apply, ee.TILE_SIZE, ee.Element.prototype.set, ee.Encodable.SourceFrame, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMapId, ee.Feature.prototype.getMap, ee.Feature, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getMapId, ee.Filter.bounds, ee.Filter.metadata, ee.Filter.and, ee.Filter.gt, ee.Filter.lt, ee.Filter.neq,
|
|
26862
|
+
ee.Filter.inList, ee.Filter.or, ee.Filter.lte, ee.Filter.gte, ee.Filter.prototype.not, ee.Filter.eq, ee.Filter, ee.Filter.date, ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPoint, ee.Geometry.BBox, ee.Geometry.LineString, ee.Geometry.MultiPolygon, ee.Geometry.prototype.serialize, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.Polygon, ee.Geometry.Point, ee.Geometry.prototype.toGeoJSON, ee.Geometry.MultiLineString, ee.Geometry.LinearRing,
|
|
26863
|
+
ee.Image, ee.Image.rgb, ee.Image.cat, ee.Image.prototype.select, ee.Image.prototype.getInfo, ee.Image.prototype.getMapId, ee.Image.prototype.getThumbURL, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image.prototype.getThumbId, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.linkCollection,
|
|
26864
|
+
ee.ImageCollection.prototype.getMapId, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.toCloudApiJSON, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
26872
26865
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
26873
26866
|
});
|
|
26874
26867
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|