@google/earthengine 0.1.295 → 0.1.296
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 +27 -26
- package/build/ee_api_js.js +517 -516
- package/build/ee_api_js_debug.js +5 -4
- package/build/ee_api_js_npm.js +27 -26
- package/build/main.js +27 -26
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/examples/tutorials/jrc_gsw/tutorial_global_surface_water_04.js +8 -2
package/.tmp/BUILD
CHANGED
|
@@ -276,6 +276,10 @@ Fileset(
|
|
|
276
276
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.295:public",
|
|
277
277
|
destdir = "0.1.295",
|
|
278
278
|
),
|
|
279
|
+
FilesetEntry(
|
|
280
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.296:public",
|
|
281
|
+
destdir = "0.1.296",
|
|
282
|
+
),
|
|
279
283
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
280
284
|
],
|
|
281
285
|
)
|
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.296"
|
|
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.296"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2022
|
|
18
18
|
month: 1
|
|
19
|
-
day:
|
|
19
|
+
day: 27
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -17020,7 +17020,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17020
17020
|
ee.apiclient = {};
|
|
17021
17021
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17022
17022
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17023
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17023
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.296";
|
|
17024
17024
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17025
17025
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17026
17026
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17301,8 +17301,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17301
17301
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17302
17302
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17303
17303
|
method = method || "POST";
|
|
17304
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17305
|
-
"0.1.
|
|
17304
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.296";
|
|
17305
|
+
"0.1.296" === version && (version = "latest");
|
|
17306
17306
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17307
17307
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17308
17308
|
if (null != authToken) {
|
|
@@ -18988,7 +18988,8 @@ ee.data.makeMapId_ = function(mapid, token, opt_urlFormat) {
|
|
|
18988
18988
|
ee.data.getFeatureViewTilesKey = function(params, opt_callback) {
|
|
18989
18989
|
var visualizationExpression = params.visParams ? ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.visParams)) : null, map = new module$exports$eeapiclient$ee_api_client.FeatureView({name:null, asset:params.assetName, mapName:params.mapName, visualizationExpression:visualizationExpression,}), call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
18990
18990
|
return call.handle(call.featureView().create(call.projectsPath(), map, {fields:["name"]}).then(function(response) {
|
|
18991
|
-
|
|
18991
|
+
var token = response.name.split("/").pop();
|
|
18992
|
+
return {token:token.substring(0, token.lastIndexOf("-"))};
|
|
18992
18993
|
}));
|
|
18993
18994
|
};
|
|
18994
18995
|
goog.exportSymbol("ee.data.getFeatureViewTilesKey", ee.data.getFeatureViewTilesKey);
|
|
@@ -24637,28 +24638,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24637
24638
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24638
24639
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24639
24640
|
(function() {
|
|
24640
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
24641
|
-
orderedParamLists = [["name", "
|
|
24642
|
-
"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(" "), "
|
|
24643
|
-
"collection opt_description
|
|
24644
|
-
"
|
|
24645
|
-
|
|
24646
|
-
"
|
|
24647
|
-
["taskId", "opt_callback"], ["
|
|
24648
|
-
["
|
|
24649
|
-
["
|
|
24650
|
-
[], ["
|
|
24651
|
-
"opt_maxError"], ["
|
|
24652
|
-
[
|
|
24653
|
-
[ee.ApiFunction.
|
|
24654
|
-
module$contents$ee$batch_Export.table.
|
|
24655
|
-
ee.ComputedObject.prototype.
|
|
24656
|
-
ee.data.
|
|
24657
|
-
ee.data.
|
|
24658
|
-
ee.FeatureCollection
|
|
24659
|
-
ee.Geometry.
|
|
24660
|
-
ee.
|
|
24661
|
-
ee.
|
|
24641
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.table.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.map.toCloudStorage ee.batch.Export.video.toDrive ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.Collection.prototype.limit ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.data.listImages ee.data.renameAsset ee.data.getAssetAcl ee.data.listBuckets ee.data.setAssetAcl ee.data.computeValue ee.data.copyAsset ee.data.authenticate ee.data.getAssetRoots ee.data.getThumbId ee.data.deleteAsset ee.data.startIngestion ee.data.createAssetHome ee.data.getVideoThumbId ee.data.updateAsset ee.data.setAssetProperties ee.data.getTileUrl ee.data.makeThumbUrl ee.data.getDownloadId ee.data.authenticateViaPrivateKey ee.data.getFilmstripThumbId ee.data.getAssetRootQuota ee.data.createFolder ee.data.createAsset ee.data.listFeatures ee.data.getMapId ee.data.getFeatureViewTilesKey ee.data.cancelTask ee.data.startTableIngestion ee.data.makeDownloadUrl ee.data.getAsset ee.data.getTaskList ee.data.getTaskStatus ee.data.authenticateViaPopup ee.data.startProcessing ee.data.getTableDownloadId ee.data.getInfo ee.data.newTaskId ee.data.makeTableDownloadUrl ee.data.getTaskListWithLimit ee.data.updateTask ee.data.listOperations ee.data.authenticateViaOauth ee.data.getList ee.data.cancelOperation ee.data.listAssets ee.data.getOperation ee.Date ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Dictionary ee.InitState ee.apply ee.initialize ee.reset ee.call ee.TILE_SIZE ee.Algorithms ee.Element.prototype.set ee.Feature.prototype.getInfo ee.Feature ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.select ee.FeatureCollection.prototype.getDownloadURL ee.Filter ee.Filter.or ee.Filter.lt ee.Filter.prototype.not ee.Filter.date ee.Filter.bounds ee.Filter.eq ee.Filter.gte ee.Filter.lte ee.Filter.and ee.Filter.metadata ee.Filter.inList ee.Filter.neq ee.Filter.gt ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.prototype.toGeoJSON ee.Geometry.Rectangle ee.Geometry.BBox ee.Geometry ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPoint ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.LineString ee.Geometry.Point ee.Geometry.Polygon ee.Image.prototype.getDownloadURL ee.Image.prototype.rename ee.Image.prototype.select ee.Image.cat ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.rgb ee.Image.prototype.getInfo ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.select ee.ImageCollection.prototype.first ee.ImageCollection ee.ImageCollection.prototype.getMap ee.List ee.Number ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.toReadableJSON ee.String ee.Terrain".split(" "),
|
|
24642
|
+
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "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(" "), "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(" "),
|
|
24643
|
+
"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(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".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".split(" "),
|
|
24644
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "),
|
|
24645
|
+
["classifier", "opt_description", "opt_assetId"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), ["max", "opt_property", "opt_ascending"], ["name", "operator", "value"], ["start", "opt_end"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["filter"], ["algorithm", "opt_first"], ["geometry"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["callback"], ["parent", "params",
|
|
24646
|
+
"opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["obj", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"], ["taskId", "request", "opt_callback"], ["requestedId", "opt_callback"], ["params", "opt_callback"],
|
|
24647
|
+
["assetId", "asset", "updateFields", "opt_callback"], ["assetId", "properties", "opt_callback"], ["id", "x", "y", "z"], ["id"], ["params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["params", "opt_callback"], ["rootId", "opt_callback"], ["path", "opt_force", "opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["asset", "params", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"],
|
|
24648
|
+
["taskId", "opt_callback"], ["taskId", "request", "opt_callback"], ["id"], ["id", "opt_callback"], ["opt_callback"], ["taskId", "opt_callback"], ["opt_success", "opt_error"], ["taskId", "params", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["opt_count", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["taskId", "action", "opt_callback"], ["opt_limit", "opt_callback"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
|
|
24649
|
+
["params", "opt_callback"], ["operationName", "opt_callback"], ["parent", "params", "opt_callback"], ["operationName", "opt_callback"], ["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"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"],
|
|
24650
|
+
["opt_callback"], ["args", "opt_column"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_filter"], ["var_args"], ["name", "value"], [], ["start", "opt_end"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["name", "value"], ["var_args"], ["name", "operator", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["name", "value"], ["name", "value"], ["namedArgs"],
|
|
24651
|
+
["var_args"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["legacy"], [], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], ["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_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic",
|
|
24652
|
+
"opt_maxError", "opt_evenOdd"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_args"], ["params", "opt_callback"], ["expression", "opt_map"], ["geometry"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["selectors", "opt_names"], [], ["args"], ["opt_visParams", "opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj", "opt_isCompound"],
|
|
24653
|
+
["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
24654
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage,
|
|
24655
|
+
module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, ee.Collection.prototype.limit, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.iterate, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize,
|
|
24656
|
+
ee.ComputedObject.prototype.evaluate, ee.data.listImages, ee.data.renameAsset, ee.data.getAssetAcl, ee.data.listBuckets, ee.data.setAssetAcl, ee.data.computeValue, ee.data.copyAsset, ee.data.authenticate, ee.data.getAssetRoots, ee.data.getThumbId, ee.data.deleteAsset, ee.data.startIngestion, ee.data.createAssetHome, ee.data.getVideoThumbId, ee.data.updateAsset, ee.data.setAssetProperties, ee.data.getTileUrl, ee.data.makeThumbUrl, ee.data.getDownloadId, ee.data.authenticateViaPrivateKey, ee.data.getFilmstripThumbId,
|
|
24657
|
+
ee.data.getAssetRootQuota, ee.data.createFolder, ee.data.createAsset, ee.data.listFeatures, ee.data.getMapId, ee.data.getFeatureViewTilesKey, ee.data.cancelTask, ee.data.startTableIngestion, ee.data.makeDownloadUrl, ee.data.getAsset, ee.data.getTaskList, ee.data.getTaskStatus, ee.data.authenticateViaPopup, ee.data.startProcessing, ee.data.getTableDownloadId, ee.data.getInfo, ee.data.newTaskId, ee.data.makeTableDownloadUrl, ee.data.getTaskListWithLimit, ee.data.updateTask, ee.data.listOperations,
|
|
24658
|
+
ee.data.authenticateViaOauth, ee.data.getList, ee.data.cancelOperation, ee.data.listAssets, ee.data.getOperation, ee.Date, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Dictionary, ee.InitState, ee.apply, ee.initialize, ee.reset, ee.call, ee.TILE_SIZE, ee.Algorithms, ee.Element.prototype.set, ee.Feature.prototype.getInfo, ee.Feature, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo,
|
|
24659
|
+
ee.FeatureCollection, ee.FeatureCollection.prototype.select, ee.FeatureCollection.prototype.getDownloadURL, ee.Filter, ee.Filter.or, ee.Filter.lt, ee.Filter.prototype.not, ee.Filter.date, ee.Filter.bounds, ee.Filter.eq, ee.Filter.gte, ee.Filter.lte, ee.Filter.and, ee.Filter.metadata, ee.Filter.inList, ee.Filter.neq, ee.Filter.gt, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.prototype.toGeoJSON, ee.Geometry.Rectangle,
|
|
24660
|
+
ee.Geometry.BBox, ee.Geometry, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.MultiPoint, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.LineString, ee.Geometry.Point, ee.Geometry.Polygon, ee.Image.prototype.getDownloadURL, ee.Image.prototype.rename, ee.Image.prototype.select, ee.Image.cat, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.rgb, ee.Image.prototype.getInfo,
|
|
24661
|
+
ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.first, ee.ImageCollection, ee.ImageCollection.prototype.getMap, ee.List, ee.Number, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.toReadableJSON, ee.String,
|
|
24662
|
+
ee.Terrain].forEach(function(fn, i) {
|
|
24662
24663
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
24663
24664
|
});
|
|
24664
24665
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|