@google/earthengine 0.1.332 → 0.1.334
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 +50 -40
- package/build/ee_api_js.js +39 -38
- package/build/ee_api_js_debug.js +28 -19
- package/build/ee_api_js_npm.js +50 -40
- package/build/main.js +50 -40
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/data.js +36 -12
- package/src/encodable.js +1 -1
package/.tmp/BUILD
CHANGED
|
@@ -404,6 +404,10 @@ Fileset(
|
|
|
404
404
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.332:public",
|
|
405
405
|
destdir = "0.1.332",
|
|
406
406
|
),
|
|
407
|
+
FilesetEntry(
|
|
408
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.334:public",
|
|
409
|
+
destdir = "0.1.334",
|
|
410
|
+
),
|
|
407
411
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
408
412
|
],
|
|
409
413
|
)
|
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.334"
|
|
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.334"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2022
|
|
18
18
|
month: 11
|
|
19
|
-
day:
|
|
19
|
+
day: 30
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -5616,9 +5616,7 @@ ee.TileEvent = function(count) {
|
|
|
5616
5616
|
this.count = count;
|
|
5617
5617
|
};
|
|
5618
5618
|
goog.inherits(ee.TileEvent, goog.events.Event);
|
|
5619
|
-
var module$exports$tslib = {}, module$contents$tslib_extendStatics = Object.setPrototypeOf ||
|
|
5620
|
-
d.__proto__ = b;
|
|
5621
|
-
} || function(d, b) {
|
|
5619
|
+
var module$exports$tslib = {}, module$contents$tslib_extendStatics = Object.setPrototypeOf || function(d, b) {
|
|
5622
5620
|
for (var p in b) {
|
|
5623
5621
|
Object.prototype.hasOwnProperty.call(b, p) && (d[p] = b[p]);
|
|
5624
5622
|
}
|
|
@@ -17105,7 +17103,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17105
17103
|
ee.apiclient = {};
|
|
17106
17104
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17107
17105
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17108
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17106
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.334";
|
|
17109
17107
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17110
17108
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17111
17109
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17386,8 +17384,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17386
17384
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17387
17385
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17388
17386
|
method = method || "POST";
|
|
17389
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17390
|
-
"0.1.
|
|
17387
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.334";
|
|
17388
|
+
"0.1.334" === version && (version = "latest");
|
|
17391
17389
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17392
17390
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17393
17391
|
if (null != authToken) {
|
|
@@ -17790,7 +17788,7 @@ ee.rpc_convert.orientation = function(orientation) {
|
|
|
17790
17788
|
return "VERTICAL";
|
|
17791
17789
|
}
|
|
17792
17790
|
var upper = orientation.toUpperCase();
|
|
17793
|
-
if ("HORIZONTAL" !== upper
|
|
17791
|
+
if ("HORIZONTAL" !== upper && "VERTICAL" !== upper) {
|
|
17794
17792
|
throw Error('Orientation must be "horizontal" or "vertical"');
|
|
17795
17793
|
}
|
|
17796
17794
|
return upper;
|
|
@@ -19092,8 +19090,10 @@ ee.data.getMapId = function(params, opt_callback) {
|
|
|
19092
19090
|
if (void 0 !== params.version) {
|
|
19093
19091
|
throw Error("Image version specification not supported.");
|
|
19094
19092
|
}
|
|
19095
|
-
var map = new module$exports$eeapiclient$ee_api_client.EarthEngineMap({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.image)), fileFormat:ee.rpc_convert.fileFormat(params.format), bandIds:ee.rpc_convert.bandList(params.bands), visualizationOptions:ee.rpc_convert.visualizationOptions(params),}),
|
|
19096
|
-
|
|
19093
|
+
var map = new module$exports$eeapiclient$ee_api_client.EarthEngineMap({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.image)), fileFormat:ee.rpc_convert.fileFormat(params.format), bandIds:ee.rpc_convert.bandList(params.bands), visualizationOptions:ee.rpc_convert.visualizationOptions(params),}), queryParams = {fields:"name"}, workloadTag = ee.data.getWorkloadTag();
|
|
19094
|
+
workloadTag && (queryParams.workloadTag = workloadTag);
|
|
19095
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
19096
|
+
return call.handle(call.maps().create(call.projectsPath(), map, queryParams).then(function(response) {
|
|
19097
19097
|
return ee.data.makeMapId_(response.name, "");
|
|
19098
19098
|
}));
|
|
19099
19099
|
};
|
|
@@ -19158,23 +19158,29 @@ ee.data.getThumbId = function(params, opt_callback) {
|
|
|
19158
19158
|
if (void 0 !== params.dimensions) {
|
|
19159
19159
|
throw Error('"dimensions" is not supported in call to ee.data.getThumbId. Use ee.Image.getThumbURL.');
|
|
19160
19160
|
}
|
|
19161
|
-
var thumbnail = new module$exports$eeapiclient$ee_api_client.Thumbnail({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.image)), fileFormat:ee.rpc_convert.fileFormat(params.format), filenamePrefix:params.name, bandIds:ee.rpc_convert.bandList(params.bands), visualizationOptions:ee.rpc_convert.visualizationOptions(params), grid:null,}),
|
|
19162
|
-
|
|
19161
|
+
var thumbnail = new module$exports$eeapiclient$ee_api_client.Thumbnail({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.image)), fileFormat:ee.rpc_convert.fileFormat(params.format), filenamePrefix:params.name, bandIds:ee.rpc_convert.bandList(params.bands), visualizationOptions:ee.rpc_convert.visualizationOptions(params), grid:null,}), queryParams = {fields:"name"}, workloadTag = ee.data.getWorkloadTag();
|
|
19162
|
+
workloadTag && (queryParams.workloadTag = workloadTag);
|
|
19163
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
19164
|
+
return call.handle(call.thumbnails().create(call.projectsPath(), thumbnail, queryParams).then(function(response) {
|
|
19163
19165
|
return {thumbid:response.name, token:""};
|
|
19164
19166
|
}));
|
|
19165
19167
|
};
|
|
19166
19168
|
goog.exportSymbol("ee.data.getThumbId", ee.data.getThumbId);
|
|
19167
19169
|
ee.data.getVideoThumbId = function(params, opt_callback) {
|
|
19168
19170
|
var videoOptions = new module$exports$eeapiclient$ee_api_client.VideoOptions({framesPerSecond:params.framesPerSecond || null, maxFrames:params.maxFrames || null, maxPixelsPerFrame:params.maxPixelsPerFrame || null,}), request = new module$exports$eeapiclient$ee_api_client.VideoThumbnail({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.imageCollection)), fileFormat:ee.rpc_convert.fileFormat(params.format),
|
|
19169
|
-
videoOptions:videoOptions, grid:null,}),
|
|
19170
|
-
|
|
19171
|
+
videoOptions:videoOptions, grid:null,}), queryParams = {fields:"name"}, workloadTag = ee.data.getWorkloadTag();
|
|
19172
|
+
workloadTag && (queryParams.workloadTag = workloadTag);
|
|
19173
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
19174
|
+
return call.handle(call.videoThumbnails().create(call.projectsPath(), request, queryParams).then(function(response) {
|
|
19171
19175
|
return {thumbid:response.name, token:""};
|
|
19172
19176
|
}));
|
|
19173
19177
|
};
|
|
19174
19178
|
goog.exportSymbol("ee.data.getVideoThumbId", ee.data.getVideoThumbId);
|
|
19175
19179
|
ee.data.getFilmstripThumbId = function(params, opt_callback) {
|
|
19176
|
-
var request = new module$exports$eeapiclient$ee_api_client.FilmstripThumbnail({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.imageCollection)), fileFormat:ee.rpc_convert.fileFormat(params.format), orientation:ee.rpc_convert.orientation(params.orientation), grid:null,}),
|
|
19177
|
-
|
|
19180
|
+
var request = new module$exports$eeapiclient$ee_api_client.FilmstripThumbnail({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(params.imageCollection)), fileFormat:ee.rpc_convert.fileFormat(params.format), orientation:ee.rpc_convert.orientation(params.orientation), grid:null,}), queryParams = {fields:"name"}, workloadTag = ee.data.getWorkloadTag();
|
|
19181
|
+
workloadTag && (queryParams.workloadTag = workloadTag);
|
|
19182
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
19183
|
+
return call.handle(call.filmstripThumbnails().create(call.projectsPath(), request, queryParams).then(function(response) {
|
|
19178
19184
|
return {thumbid:response.name, token:""};
|
|
19179
19185
|
}));
|
|
19180
19186
|
};
|
|
@@ -19226,8 +19232,10 @@ ee.data.getDownloadId = function(params, opt_callback) {
|
|
|
19226
19232
|
}
|
|
19227
19233
|
var image = ee.data.images.buildDownloadIdImage(params.image, params), thumbnail = new module$exports$eeapiclient$ee_api_client.Thumbnail({name:null, expression:ee.data.expressionAugmenter_(ee.Serializer.encodeCloudApiExpression(image)), fileFormat:ee.rpc_convert.fileFormat(params.format), filenamePrefix:params.name, bandIds:params.bands && ee.rpc_convert.bandList(params.bands.map(function(band) {
|
|
19228
19234
|
return band.id;
|
|
19229
|
-
})), grid:null,}),
|
|
19230
|
-
|
|
19235
|
+
})), grid:null,}), queryParams = {fields:"name"}, workloadTag = ee.data.getWorkloadTag();
|
|
19236
|
+
workloadTag && (queryParams.workloadTag = workloadTag);
|
|
19237
|
+
var call = new module$contents$ee$apiclient_Call(opt_callback);
|
|
19238
|
+
return call.handle(call.thumbnails().create(call.projectsPath(), thumbnail, queryParams).then(function(response) {
|
|
19231
19239
|
return {docid:response.name, token:""};
|
|
19232
19240
|
}));
|
|
19233
19241
|
};
|
|
@@ -19250,8 +19258,9 @@ ee.data.getTableDownloadId = function(params, opt_callback) {
|
|
|
19250
19258
|
throw Error("'selectors' parameter must be an array of strings.");
|
|
19251
19259
|
}
|
|
19252
19260
|
}
|
|
19253
|
-
var table = new module$exports$eeapiclient$ee_api_client.Table({name:null, expression:expression, fileFormat:fileFormat, selectors:selectors, filename:params.filename || null,});
|
|
19254
|
-
|
|
19261
|
+
var table = new module$exports$eeapiclient$ee_api_client.Table({name:null, expression:expression, fileFormat:fileFormat, selectors:selectors, filename:params.filename || null,}), queryParams = {fields:"name"}, workloadTag = ee.data.getWorkloadTag();
|
|
19262
|
+
workloadTag && (queryParams.workloadTag = workloadTag);
|
|
19263
|
+
return call.handle(call.tables().create(call.projectsPath(), table, queryParams).then(function(res) {
|
|
19255
19264
|
return {docid:res.name || "", token:""};
|
|
19256
19265
|
}));
|
|
19257
19266
|
};
|
|
@@ -24828,27 +24837,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24828
24837
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24829
24838
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24830
24839
|
(function() {
|
|
24831
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
24832
|
-
orderedParamLists = [["name", "
|
|
24833
|
-
|
|
24834
|
-
|
|
24835
|
-
|
|
24836
|
-
["
|
|
24837
|
-
|
|
24838
|
-
["
|
|
24839
|
-
["
|
|
24840
|
-
["
|
|
24841
|
-
"
|
|
24842
|
-
|
|
24843
|
-
[
|
|
24844
|
-
module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.
|
|
24845
|
-
ee.
|
|
24846
|
-
ee.
|
|
24847
|
-
ee.data.
|
|
24848
|
-
ee.
|
|
24849
|
-
ee.
|
|
24850
|
-
ee.
|
|
24851
|
-
ee.
|
|
24840
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.map.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toAsset ee.batch.Export.video.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.Collection.prototype.filter ee.Collection.prototype.filterDate ee.Collection.prototype.map ee.Collection.prototype.limit ee.Collection.prototype.sort ee.Collection.prototype.iterate ee.Collection.prototype.filterBounds ee.Collection.prototype.filterMetadata ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.computeValue ee.data.newTaskId ee.data.getMapId ee.data.getTaskStatus ee.data.listFeatures ee.data.getTileUrl ee.data.getFeatureViewTilesKey ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getTaskList ee.data.getTaskListWithLimit ee.data.authenticate ee.data.listOperations ee.data.cancelOperation ee.data.authenticateViaPopup ee.data.getInfo ee.data.getTableDownloadId ee.data.getOperation ee.data.setWorkloadTag ee.data.createAssetHome ee.data.getDownloadId ee.data.setDefaultWorkloadTag ee.data.createAsset ee.data.cancelTask ee.data.resetWorkloadTag ee.data.makeThumbUrl ee.data.updateAsset ee.data.startIngestion ee.data.updateTask ee.data.makeDownloadUrl ee.data.getList ee.data.createFolder ee.data.getThumbId ee.data.setAssetAcl ee.data.startProcessing ee.data.listAssets ee.data.renameAsset ee.data.setAssetProperties ee.data.makeTableDownloadUrl ee.data.copyAsset ee.data.listImages ee.data.startTableIngestion ee.data.getAssetRootQuota ee.data.deleteAsset ee.data.listBuckets ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.getAsset ee.data.getAssetAcl ee.data.getWorkloadTag ee.data.getAssetRoots ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Dictionary ee.initialize ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.call ee.Element.prototype.set ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection 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.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry ee.Geometry.MultiPoint ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.rename ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.ImageCollection.prototype.select ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
24841
|
+
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
24842
|
+
"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
24843
|
+
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".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".split(" "), "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
24844
|
+
"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(" "), ["classifier", "opt_description", "opt_assetId"], ["filter"], ["start", "opt_end"], ["algorithm", "opt_dropNulls"], ["max", "opt_property", "opt_ascending"], ["property", "opt_ascending"], ["algorithm", "opt_first"], ["geometry"], ["name", "operator", "value"], ["callback"],
|
|
24845
|
+
["opt_callback"], ["func", "var_args"], ["legacy"], ["obj", "opt_callback"], ["opt_count", "opt_callback"], ["params", "opt_callback"], ["taskId", "opt_callback"], ["asset", "params", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["opt_callback"], ["opt_limit", "opt_callback"], ["clientId",
|
|
24846
|
+
"success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["opt_success", "opt_error"], ["id", "opt_callback"], ["params", "opt_callback"], ["operationName", "opt_callback"], ["tag"], ["requestedId", "opt_callback"], ["params", "opt_callback"], ["tag"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["taskId", "opt_callback"], ["opt_resetDefault"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"],
|
|
24847
|
+
["taskId", "request", "opt_callback"], ["taskId", "action", "opt_callback"], ["id"], ["params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["assetId", "properties", "opt_callback"], ["id"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["parent", "opt_params", "opt_callback"],
|
|
24848
|
+
["taskId", "request", "opt_callback"], ["rootId", "opt_callback"], ["assetId", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["id", "opt_callback"], ["assetId", "opt_callback"], [], ["opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "namedArgs"], [], [], [], [], ["func", "var_args"], ["var_args"],
|
|
24849
|
+
["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["name", "operator", "value"], ["name", "value"], ["name",
|
|
24850
|
+
"value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], [], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj",
|
|
24851
|
+
"opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["selectors", "opt_names"], ["args"], ["params", "opt_callback"], ["params", "opt_callback"],
|
|
24852
|
+
[], ["opt_visParams", "opt_callback"], ["opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
|
|
24853
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.video.toDrive, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toCloudStorage,
|
|
24854
|
+
module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, ee.Collection.prototype.filter, ee.Collection.prototype.filterDate, ee.Collection.prototype.map, ee.Collection.prototype.limit, ee.Collection.prototype.sort, ee.Collection.prototype.iterate, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterMetadata, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.aside,
|
|
24855
|
+
ee.ComputedObject.prototype.serialize, ee.data.computeValue, ee.data.newTaskId, ee.data.getMapId, ee.data.getTaskStatus, ee.data.listFeatures, ee.data.getTileUrl, ee.data.getFeatureViewTilesKey, ee.data.authenticateViaPrivateKey, ee.data.authenticateViaOauth, ee.data.getTaskList, ee.data.getTaskListWithLimit, ee.data.authenticate, ee.data.listOperations, ee.data.cancelOperation, ee.data.authenticateViaPopup, ee.data.getInfo, ee.data.getTableDownloadId, ee.data.getOperation, ee.data.setWorkloadTag,
|
|
24856
|
+
ee.data.createAssetHome, ee.data.getDownloadId, ee.data.setDefaultWorkloadTag, ee.data.createAsset, ee.data.cancelTask, ee.data.resetWorkloadTag, ee.data.makeThumbUrl, ee.data.updateAsset, ee.data.startIngestion, ee.data.updateTask, ee.data.makeDownloadUrl, ee.data.getList, ee.data.createFolder, ee.data.getThumbId, ee.data.setAssetAcl, ee.data.startProcessing, ee.data.listAssets, ee.data.renameAsset, ee.data.setAssetProperties, ee.data.makeTableDownloadUrl, ee.data.copyAsset, ee.data.listImages,
|
|
24857
|
+
ee.data.startTableIngestion, ee.data.getAssetRootQuota, ee.data.deleteAsset, ee.data.listBuckets, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId, ee.data.getAsset, ee.data.getAssetAcl, ee.data.getWorkloadTag, ee.data.getAssetRoots, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Dictionary, ee.initialize, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.call, ee.Element.prototype.set, ee.Feature.prototype.getMap,
|
|
24858
|
+
ee.Feature.prototype.getInfo, ee.Feature, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection, 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,
|
|
24859
|
+
ee.Geometry.prototype.toGeoJSONString, ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.Image.prototype.rename, ee.Image.prototype.select, ee.Image.prototype.expression,
|
|
24860
|
+
ee.Image.cat, ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty,
|
|
24861
|
+
ee.Serializer.toCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
24852
24862
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
24853
24863
|
});
|
|
24854
24864
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|