@google/earthengine 0.1.340 → 0.1.342
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 +8 -0
- package/.tmp/METADATA +3 -3
- package/build/browser.js +25 -28
- package/build/ee_api_js.js +15 -15
- package/build/ee_api_js_debug.js +3 -6
- package/build/ee_api_js_npm.js +25 -28
- package/build/main.js +25 -28
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/geometry.js +1 -1
package/.tmp/BUILD
CHANGED
|
@@ -428,6 +428,14 @@ Fileset(
|
|
|
428
428
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.340:public",
|
|
429
429
|
destdir = "0.1.340",
|
|
430
430
|
),
|
|
431
|
+
FilesetEntry(
|
|
432
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.341:public",
|
|
433
|
+
destdir = "0.1.341",
|
|
434
|
+
),
|
|
435
|
+
FilesetEntry(
|
|
436
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.342:public",
|
|
437
|
+
destdir = "0.1.342",
|
|
438
|
+
),
|
|
431
439
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
432
440
|
],
|
|
433
441
|
)
|
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.342"
|
|
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.342"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2023
|
|
18
18
|
month: 2
|
|
19
|
-
day:
|
|
19
|
+
day: 22
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -1223,9 +1223,6 @@ goog.define = function(name, defaultValue) {
|
|
|
1223
1223
|
goog.FEATURESET_YEAR = 2012;
|
|
1224
1224
|
goog.DEBUG = !0;
|
|
1225
1225
|
goog.LOCALE = "en";
|
|
1226
|
-
goog.getLocale = function() {
|
|
1227
|
-
return "en";
|
|
1228
|
-
};
|
|
1229
1226
|
goog.TRUSTED_SITE = !0;
|
|
1230
1227
|
goog.DISALLOW_TEST_ONLY_CODE = !goog.DEBUG;
|
|
1231
1228
|
goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING = !1;
|
|
@@ -17543,7 +17540,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17543
17540
|
ee.apiclient = {};
|
|
17544
17541
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17545
17542
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17546
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17543
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.342";
|
|
17547
17544
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17548
17545
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17549
17546
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17824,8 +17821,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17824
17821
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17825
17822
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17826
17823
|
method = method || "POST";
|
|
17827
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17828
|
-
"0.1.
|
|
17824
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.342";
|
|
17825
|
+
"0.1.342" === version && (version = "latest");
|
|
17829
17826
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17830
17827
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17831
17828
|
if (null != authToken) {
|
|
@@ -25295,28 +25292,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
25295
25292
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
25296
25293
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
25297
25294
|
(function() {
|
|
25298
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.
|
|
25299
|
-
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "
|
|
25300
|
-
|
|
25301
|
-
"image opt_description
|
|
25302
|
-
"
|
|
25303
|
-
["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["
|
|
25304
|
-
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["
|
|
25305
|
-
["
|
|
25306
|
-
"opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "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(" "),
|
|
25307
|
-
[], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["
|
|
25308
|
-
"operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"],
|
|
25309
|
-
"opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["
|
|
25310
|
-
"
|
|
25311
|
-
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.
|
|
25312
|
-
module$contents$ee$batch_Export.
|
|
25313
|
-
ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.
|
|
25314
|
-
ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.
|
|
25315
|
-
ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.
|
|
25316
|
-
ee.Feature.prototype.
|
|
25317
|
-
ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.
|
|
25318
|
-
ee.Image.prototype.
|
|
25319
|
-
ee.Serializer.encodeCloudApi, ee.Serializer.
|
|
25295
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getOperation ee.data.getList ee.data.listAssets ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getMapId ee.data.startIngestion ee.data.createAssetHome ee.data.getAssetAcl ee.data.cancelOperation ee.data.listOperations ee.data.authenticate ee.data.listFeatures ee.data.setAssetAcl ee.data.getTaskList ee.data.createAsset ee.data.deleteAsset ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getThumbId ee.data.getFeatureViewTilesKey ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.updateTask ee.data.startProcessing ee.data.copyAsset ee.data.getWorkloadTag ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.getTileUrl ee.data.getTableDownloadId ee.data.computeValue ee.data.authenticateViaPrivateKey ee.data.getTaskStatus ee.data.getInfo ee.data.updateAsset ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.getAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.listImages ee.data.newTaskId ee.data.cancelTask ee.data.listBuckets ee.data.getDownloadId ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.Filter.lt ee.Filter.and ee.Filter.or ee.Filter.gte ee.Filter.date ee.Filter.inList ee.Filter.prototype.not ee.Filter ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.bounds ee.Filter.gt ee.Filter.lte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.clip ee.Image.prototype.expression ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
25296
|
+
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
25297
|
+
"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_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(" "),
|
|
25298
|
+
"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_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_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
25299
|
+
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["algorithm", "opt_dropNulls"], ["filter"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["name", "operator", "value"], ["start", "opt_end"], ["property", "opt_ascending"],
|
|
25300
|
+
["geometry"], ["callback"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["requestedId", "opt_callback"], ["assetId", "opt_callback"], ["operationName", "opt_callback"], ["opt_limit", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["asset", "params",
|
|
25301
|
+
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["assetId", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["params", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["tag"], ["opt_success", "opt_error"],
|
|
25302
|
+
["taskId", "action", "opt_callback"], ["taskId", "params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], [], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["obj", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["taskId", "opt_callback"], ["id", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["id"],
|
|
25303
|
+
["assetId", "properties", "opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
|
|
25304
|
+
[], [], [], [], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"],
|
|
25305
|
+
["name", "operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"],
|
|
25306
|
+
["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geometry"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams",
|
|
25307
|
+
"opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
25308
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toDrive, 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.image.toAsset, module$contents$ee$batch_Export.image.toCloudStorage,
|
|
25309
|
+
module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside,
|
|
25310
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getMapId, ee.data.startIngestion, ee.data.createAssetHome, ee.data.getAssetAcl, ee.data.cancelOperation, ee.data.listOperations, ee.data.authenticate, ee.data.listFeatures, ee.data.setAssetAcl, ee.data.getTaskList, ee.data.createAsset, ee.data.deleteAsset, ee.data.makeThumbUrl, ee.data.authenticateViaOauth,
|
|
25311
|
+
ee.data.getFilmstripThumbId, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.setDefaultWorkloadTag, ee.data.createFolder, ee.data.setWorkloadTag, ee.data.authenticateViaPopup, ee.data.updateTask, ee.data.startProcessing, ee.data.copyAsset, ee.data.getWorkloadTag, ee.data.renameAsset, ee.data.getTaskListWithLimit, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.computeValue, ee.data.authenticateViaPrivateKey, ee.data.getTaskStatus,
|
|
25312
|
+
ee.data.getInfo, ee.data.updateAsset, ee.data.makeTableDownloadUrl, ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.call, ee.initialize, ee.TILE_SIZE, ee.Algorithms, ee.reset, ee.InitState,
|
|
25313
|
+
ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.Filter.lt, ee.Filter.and, ee.Filter.or, ee.Filter.gte, ee.Filter.date, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte,
|
|
25314
|
+
ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.clip, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getMap,
|
|
25315
|
+
ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.cat, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON,
|
|
25316
|
+
ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25320
25317
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
25321
25318
|
});
|
|
25322
25319
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/build/ee_api_js.js
CHANGED
|
@@ -451,7 +451,7 @@ Lc(q,g[m]))});return b?b(l):l};return this.callback?(hj(d,null,function(g,l){ret
|
|
|
451
451
|
ij.prototype.send=function(a,b){var c=[a.B+" "+a.path+" HTTP/1.1"];c.push("Content-Type: application/json; charset=utf-8");var d=kj();null!=d&&c.push("Authorization: "+d);a=a.body?JSON.stringify(a.body):"";return[c.join("\r\n")+"\r\n\r\n"+a,b]};
|
|
452
452
|
var lj=function(a,b,c){a=n(b.split("--"+a.split("; boundary=")[1]));for(b=a.next();!b.done;b=a.next())if(b=b.value.split("\r\n\r\n"),!(3>b.length)){var d=b[0].match(/\r\nContent-ID: <response-([^>]*)>/)[1],e=Number(b[1].match(/^HTTP\S*\s(\d+)\s/)[1]);c(d,e,b.slice(2).join("\r\n\r\n"))}},fj=function(){var a=nj.replace(/\/api$/,"");return"window"in r&&!a.match(/^https?:\/\/content-/)?a.replace(/^(https?:\/\/)(.*\.googleapis\.com)$/,"$1content-$2"):a},pj=function(a,b,c){var d=[];a&&(d=d.concat(oj));
|
|
453
453
|
b&&d.push("https://www.googleapis.com/auth/devstorage.read_write");a=d=d.concat(c);c=b=0;for(var e={};c<a.length;){var f=a[c++],g=t(f)?"o"+ya(f):(typeof f).charAt(0)+f;Object.prototype.hasOwnProperty.call(e,g)||(e[g]=!0,a[b++]=f)}a.length=b;return d},vj=function(a,b,c){qj&&rj&&qj({client_id:String(rj),immediate:!0,scope:sj.join(" ")},function(d){if("immediate_failed"==d.error&&c)c();else if("window"in r)try{tj(function(){try{r.gapi.auth.setToken(d),uj(a,b,d)}catch(e){b(e.toString())}})}catch(e){b(e.toString())}else uj(a,
|
|
454
|
-
b,d)})},kj=function(){wj&&0<=Date.now()-wj&&xj();return yj},xj=function(){wj=yj=null},cj=function(a,b,c,d){null!=a?nj=a:zj||(nj="https://earthengine.googleapis.com/api");null!=b?Aj=b:zj||(Aj="https://earthengine.googleapis.com");void 0!==c&&(Bj=c);bj=null!=d?d:bj||"earthengine-legacy";zj=!0},hj=function(a,b,c,d,e,f){cj();var g=Cj,l="application/x-www-form-urlencoded";e&&(l="application/json",d&&d.startsWith("multipart")&&(l=d,d="POST"));d=d||"POST";l={"Content-Type":l};var m="0.1.
|
|
454
|
+
b,d)})},kj=function(){wj&&0<=Date.now()-wj&&xj();return yj},xj=function(){wj=yj=null},cj=function(a,b,c,d){null!=a?nj=a:zj||(nj="https://earthengine.googleapis.com/api");null!=b?Aj=b:zj||(Aj="https://earthengine.googleapis.com");void 0!==c&&(Bj=c);bj=null!=d?d:bj||"earthengine-legacy";zj=!0},hj=function(a,b,c,d,e,f){cj();var g=Cj,l="application/x-www-form-urlencoded";e&&(l="application/json",d&&d.startsWith("multipart")&&(l=d,d="POST"));d=d||"POST";l={"Content-Type":l};var m="0.1.342";"0.1.342"===
|
|
455
455
|
m&&(m="latest");l["x-goog-api-client"]="ee-js/"+m;m=kj();if(null!=m)l.Authorization=m;else if(c&&qj&&rj)return vj(function(){Dj(g,function(){hj(a,b,c,d)})}),null;b=b?b.clone():new wd;null!=Ej&&b.add("key",Ej);g&&(l["X-Earth-Engine-Computation-Profiling"]="1");bj&&"earthengine-legacy"!==bj&&(l["X-Goog-User-Project"]=bj);b=Fj(b,a);null!=Bj&&(l["X-XSRF-Token"]=Bj);null!=Gj&&(l["X-Earth-Engine-App-ID-Token"]=Gj);m=e||null;var q=b?b.toString():"";"POST"===d&&void 0===e?m=q:/^[\s\xa0]*$/.test(q)||(a+=-1!=
|
|
456
456
|
a.indexOf("?")?"&":"?",a+=q);e=a.startsWith("/")?nj+a:a;if(c)return Hj.push(Ij(e,c,d,m,l,f)),Jj.lf(),null;q=function(D,R){this.setRequestHeader&&this.setRequestHeader(R,D)};var v=0;for(f=null!=f?f:5;;){var B=Oi(Mi);B.open(d,e,!1);ub(l,q,B);B.send(m);if(429!=B.status||v>f)break;v++}return Kj(B.status,function(D){try{return B.getResponseHeader(D)}catch(R){return null}},B.responseText,g,void 0,e,d)},Ij=function(a,b,c,d,e,f){var g=0,l={url:a,method:c,content:d,headers:e},m=Cj,q=null!=f?f:10;l.callback=
|
|
457
457
|
function(v){v=v.target;if(429==v.getStatus()&&g<q)return g++,setTimeout(function(){Hj.push(l);Jj.lf()},Math.min(12E4,1E3*Math.pow(2,g))),null;var B=Kj,D=v.getStatus(),R=u(v.getResponseHeader,v);try{var Z=v.s?v.s.responseText:""}catch(U){Hi(v.ia,"Can not get responseText: "+U.message),Z=""}return B(D,R,Z,m,b,a,c)};return l},Dj=function(a,b){var c=Cj;try{Cj=a,b.call(void 0)}finally{Cj=c}},Kj=function(a,b,c,d,e,f,g){var l=d?b("X-Earth-Engine-Computation-Profile"):"";l&&d&&d(l);var m=function(Z){try{var U=
|
|
@@ -696,17 +696,17 @@ h.zl=function(){if(!this.mc){var a=u(function(d){this.mc||(Vp(this.ga,this.fa,d)
|
|
|
696
696
|
h.ga=null;h.Ri=null;h.La=null;h.mi=null;var tq=["load","abort","error"],uq=function(){Ea.call(this);this.Ga=!1};p(uq,Ea);uq.prototype.setActive=function(a){this.Ga=a};uq.prototype.isActive=function(){return this.Ga};var pq=function(a,b){kq.call(this,a,b)};p(pq,kq);pq.prototype.Xe=function(){return new uq};pq.prototype.Ad=function(a){a.Ta()};pq.prototype.Of=function(a){return!a.Ua&&!a.isActive()};var vq=function(a,b,c,d,e){Cc.call(this,a,b,c,d,e);this.minZoom=d.minZoom||0;this.maxZoom=d.maxZoom||20;if(!window.google||!window.google.maps)throw Error("Google Maps API hasn't been initialized.");this.tileSize=d.tileSize||new google.maps.Size(256,256);this.name=d.name;this.vg=new xc;this.Pf=1;this.wa=e||null};p(vq,Cc);h=vq.prototype;h.Ne=function(a){return Rb(this,"tileevent",a)};h.Zf=function(a){Zb(a)};
|
|
697
697
|
h.getTile=function(a,b,c){if(b<this.minZoom||0>a.y||a.y>=1<<b)return a=c.createElement("IMG"),a.style.width="0px",a.style.height="0px",a;b=Dc(this,a,b);a=[this.url,b].join("/")+"?token="+this.token;this.wa&&this.wa.isEnabled()&&(a+="&profiling=1");b=[b,this.Ab,this.token].join("/");this.Ab+=1;c=eh("DIV",{id:b});var d=(new Date).getTime()/1E3;this.Cb.push(b);ll(qq).send(b,a,d,u(this.Zk,this,c,b));sp(this);return c};h.Qc=function(){return this.Cb.length};
|
|
698
698
|
h.releaseTile=function(a){ll(qq).abort(a.id);if(void 0!==a.firstElementChild)var b=a.firstElementChild;else for(b=a.firstChild;b&&1!=b.nodeType;)b=b.nextSibling;this.vg.remove(b);""!==a.id&&(this.ug.remove(a.id),this.wa&&this.wa.rl(a.id))};h.setOpacity=function(a){this.Pf=a;var b=this.vg.Fa();jc(b,function(c){Dp(c,a)})};
|
|
699
|
-
h.Zk=function(a,b,c,d){"error"==c.type?(Za(this.Cb,b),this.ug.add(b),this.dispatchEvent(c)):(Za(this.Cb,b),c.target&&"load"==c.type&&(c=c.target,this.vg.add(c),1!=this.Pf&&Dp(c,this.Pf),a.appendChild(c)),sp(this));this.wa&&null!==d&&this.wa.Nk(b,d)};w("ee.MapLayerOverlay",vq);vq.prototype.removeTileCallback=vq.prototype.Zf;vq.prototype.addTileCallback=vq.prototype.Ne;vq.prototype.getTile=vq.prototype.getTile;vq.prototype.setOpacity=vq.prototype.setOpacity;vq.prototype.releaseTile=vq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.
|
|
700
|
-
c=[["name"],["name","namedArgs"],["name","var_args"],"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(" "),["collection","opt_description","opt_assetId","opt_maxVertices"],"
|
|
701
|
-
|
|
702
|
-
"image opt_description
|
|
703
|
-
"
|
|
704
|
-
["opt_callback"],["legacy"],["operationName","opt_callback"],["params","opt_callback"],["parent","opt_params","opt_callback"],["id"],["opt_callback"],["
|
|
705
|
-
["opt_callback"],["
|
|
706
|
-
"
|
|
707
|
-
"opt_callback"],["opt_count","opt_callback"],["taskId","opt_callback"],["project","opt_callback"],["params","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(" "),[
|
|
708
|
-
"
|
|
709
|
-
[],[],["west","south","east","north"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj"],["legacy"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["geoJson","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["
|
|
710
|
-
["
|
|
711
|
-
V.prototype.kf,V.prototype.jf,V.prototype.sort,V.prototype.xh,M.prototype.evaluate,M.prototype.Fg,M.prototype.U,M.prototype.xa,Pl,gm,hm,Fl,km,bm,
|
|
712
|
-
Im.prototype.apply,sn,S.prototype.ke,S.prototype.xg,mn,qn,gn,S.prototype.xa,tn,S,kn,rn,ln,pn,L.prototype.
|
|
699
|
+
h.Zk=function(a,b,c,d){"error"==c.type?(Za(this.Cb,b),this.ug.add(b),this.dispatchEvent(c)):(Za(this.Cb,b),c.target&&"load"==c.type&&(c=c.target,this.vg.add(c),1!=this.Pf&&Dp(c,this.Pf),a.appendChild(c)),sp(this));this.wa&&null!==d&&this.wa.Nk(b,d)};w("ee.MapLayerOverlay",vq);vq.prototype.removeTileCallback=vq.prototype.Zf;vq.prototype.addTileCallback=vq.prototype.Ne;vq.prototype.getTile=vq.prototype.getTile;vq.prototype.setOpacity=vq.prototype.setOpacity;vq.prototype.releaseTile=vq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getOperation ee.data.getList ee.data.listAssets ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getMapId ee.data.startIngestion ee.data.createAssetHome ee.data.getAssetAcl ee.data.cancelOperation ee.data.listOperations ee.data.authenticate ee.data.listFeatures ee.data.setAssetAcl ee.data.getTaskList ee.data.createAsset ee.data.deleteAsset ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getThumbId ee.data.getFeatureViewTilesKey ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.updateTask ee.data.startProcessing ee.data.copyAsset ee.data.getWorkloadTag ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.getTileUrl ee.data.getTableDownloadId ee.data.computeValue ee.data.authenticateViaPrivateKey ee.data.getTaskStatus ee.data.getInfo ee.data.updateAsset ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.getAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.listImages ee.data.newTaskId ee.data.cancelTask ee.data.listBuckets ee.data.getDownloadId ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.Filter.lt ee.Filter.and ee.Filter.or ee.Filter.gte ee.Filter.date ee.Filter.inList ee.Filter.prototype.not ee.Filter ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.bounds ee.Filter.gt ee.Filter.lte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.clip ee.Image.prototype.expression ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
700
|
+
c=[["name"],["name","namedArgs"],["name","var_args"],"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(" "),["collection","opt_description","opt_assetId","opt_maxVertices"],["classifier","opt_description","opt_assetId"],"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
701
|
+
"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_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(" "),
|
|
702
|
+
"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_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_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
703
|
+
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),["algorithm","opt_dropNulls"],["filter"],["max","opt_property","opt_ascending"],["algorithm","opt_first"],["name","operator","value"],["start","opt_end"],["property","opt_ascending"],["geometry"],["callback"],
|
|
704
|
+
["func","var_args"],["opt_callback"],["legacy"],["operationName","opt_callback"],["params","opt_callback"],["parent","opt_params","opt_callback"],["id"],["opt_callback"],["params","opt_callback"],["taskId","request","opt_callback"],["requestedId","opt_callback"],["assetId","opt_callback"],["operationName","opt_callback"],["opt_limit","opt_callback"],["clientId","success","opt_error","opt_extraScopes","opt_onImmediateFailed"],["asset","params","opt_callback"],["assetId","aclUpdate","opt_callback"],
|
|
705
|
+
["opt_callback"],["value","opt_path","opt_force","opt_properties","opt_callback"],["assetId","opt_callback"],["id"],"clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),["params","opt_callback"],["params","opt_callback"],["opt_resetDefault"],["params","opt_callback"],["params","opt_callback"],["tag"],["path","opt_force","opt_callback"],["tag"],["opt_success","opt_error"],["taskId","action","opt_callback"],["taskId","params","opt_callback"],["sourceId",
|
|
706
|
+
"destinationId","opt_overwrite","opt_callback"],[],["sourceId","destinationId","opt_callback"],["opt_limit","opt_callback"],["id","x","y","z"],["params","opt_callback"],["obj","opt_callback"],["privateKey","opt_success","opt_error","opt_extraScopes","opt_suppressDefaultScopes"],["taskId","opt_callback"],["id","opt_callback"],["assetId","asset","updateFields","opt_callback"],["id"],["assetId","properties","opt_callback"],["id","opt_callback"],["rootId","opt_callback"],["taskId","request","opt_callback"],
|
|
707
|
+
["parent","opt_params","opt_callback"],["opt_count","opt_callback"],["taskId","opt_callback"],["project","opt_callback"],["params","opt_callback"],["date","opt_tz"],["json"],["json"],["json"],["json"],["opt_dict"],["func","namedArgs"],["func","var_args"],"opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),[],[],[],[],["var_args"],["geometry","opt_properties"],["opt_visParams","opt_callback"],["opt_callback"],["propertySelectors","opt_newProperties",
|
|
708
|
+
"opt_retainGeometry"],["args","opt_column"],["opt_callback"],["opt_format","opt_selectors","opt_filename","opt_callback"],["opt_visParams","opt_callback"],["name","value"],["var_args"],["var_args"],["name","value"],["start","opt_end"],["opt_leftField","opt_rightValue","opt_rightField","opt_leftValue"],[],["opt_filter"],["name","operator","value"],["name","value"],["name","value"],["geometry","opt_errorMargin"],["name","value"],["name","value"],["var_args"],["namedArgs"],["coords","opt_proj","opt_geodesic",
|
|
709
|
+
"opt_maxError","opt_evenOdd"],[],[],["west","south","east","north"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj"],["legacy"],["coords","opt_proj","opt_geodesic","opt_maxError","opt_evenOdd"],["geoJson","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj"],["coords","opt_proj","opt_geodesic","opt_maxError"],["coords","opt_proj","opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["geometry"],["expression","opt_map"],["var_args"],["opt_args"],
|
|
710
|
+
["opt_visParams","opt_callback"],["params","opt_callback"],["r","g","b"],["opt_callback"],["params","opt_callback"],["params","opt_callback"],["var_args"],["var_args"],["params","opt_callback"],["params","opt_callback"],["opt_visParams","opt_callback"],["opt_callback"],[],["selectors","opt_names"],["args"],["list"],["number"],["obj","opt_isCompound"],["obj"],["obj"],["obj"],["obj"],["obj"],["obj"],["string"],[]];[Nm,Om,O,po,to,yo,so,wo,uo,xo,mo,oo,vo,qo,ro,V.prototype.map,V.prototype.filter,V.prototype.limit,
|
|
711
|
+
V.prototype.Mh,V.prototype.kf,V.prototype.jf,V.prototype.sort,V.prototype.xh,M.prototype.evaluate,M.prototype.Fg,M.prototype.U,M.prototype.xa,Pl,gm,hm,Fl,km,ul,bm,lm,rm,Ol,Nl,ol,xl,tm,Ml,mm,qm,Cl,nl,Bl,Al,zm,zl,wl,ym,nm,xm,ml,Ql,Yl,pm,sl,om,Ll,vl,Gl,yl,pl,Kl,em,sm,Hl,um,em,vm,dm,im,Il,Rl,jm,El,Po,Yo,So,To,Uo,Zo,np,mp,hp,256,jp,kp,lp,Q.prototype.set,W,W.prototype.getMap,W.prototype.U,X.prototype.select,X,X.prototype.U,X.prototype.ub,X.prototype.getMap,Dn,Hn,In,En,Jn,Kn,T.prototype.wc,T,Mn,Bn,Cn,Ln,
|
|
712
|
+
Fn,Gn,Im.prototype.call,Im.prototype.apply,sn,S.prototype.ke,S.prototype.xg,mn,qn,gn,S.prototype.xa,tn,S,kn,rn,ln,pn,L.prototype.clip,L.prototype.l,L.prototype.si,L,L.prototype.getMap,L.prototype.ub,Zn,L.prototype.U,L.prototype.sf,L.prototype.Id,L.prototype.select,$n,Y.prototype.qf,Y.prototype.vf,Y.prototype.getMap,Y.prototype.U,Y.prototype.first,Y.prototype.select,Y,ao,Fo,Ik,Jk,Lk,Ok,Sk,Qk,Rk,Io,bp].forEach(function(d,e){d&&(a[d.toString()]={name:b[e],paramNames:c[e]})});r.EXPORTED_FN_INFO=a})();}).call(this);
|
package/build/ee_api_js_debug.js
CHANGED
|
@@ -1223,9 +1223,6 @@ goog.define = function(name, defaultValue) {
|
|
|
1223
1223
|
goog.FEATURESET_YEAR = 2012;
|
|
1224
1224
|
goog.DEBUG = !0;
|
|
1225
1225
|
goog.LOCALE = "en";
|
|
1226
|
-
goog.getLocale = function() {
|
|
1227
|
-
return "en";
|
|
1228
|
-
};
|
|
1229
1226
|
goog.TRUSTED_SITE = !0;
|
|
1230
1227
|
goog.DISALLOW_TEST_ONLY_CODE = !goog.DEBUG;
|
|
1231
1228
|
goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING = !1;
|
|
@@ -17543,7 +17540,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17543
17540
|
ee.apiclient = {};
|
|
17544
17541
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17545
17542
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17546
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17543
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.342";
|
|
17547
17544
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17548
17545
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17549
17546
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17824,8 +17821,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17824
17821
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17825
17822
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17826
17823
|
method = method || "POST";
|
|
17827
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17828
|
-
"0.1.
|
|
17824
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.342";
|
|
17825
|
+
"0.1.342" === version && (version = "latest");
|
|
17829
17826
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17830
17827
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17831
17828
|
if (null != authToken) {
|
package/build/ee_api_js_npm.js
CHANGED
|
@@ -1223,9 +1223,6 @@ goog.define = function(name, defaultValue) {
|
|
|
1223
1223
|
goog.FEATURESET_YEAR = 2012;
|
|
1224
1224
|
goog.DEBUG = !0;
|
|
1225
1225
|
goog.LOCALE = "en";
|
|
1226
|
-
goog.getLocale = function() {
|
|
1227
|
-
return "en";
|
|
1228
|
-
};
|
|
1229
1226
|
goog.TRUSTED_SITE = !0;
|
|
1230
1227
|
goog.DISALLOW_TEST_ONLY_CODE = !goog.DEBUG;
|
|
1231
1228
|
goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING = !1;
|
|
@@ -17543,7 +17540,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17543
17540
|
ee.apiclient = {};
|
|
17544
17541
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17545
17542
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17546
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17543
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.342";
|
|
17547
17544
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17548
17545
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17549
17546
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17824,8 +17821,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17824
17821
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17825
17822
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17826
17823
|
method = method || "POST";
|
|
17827
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17828
|
-
"0.1.
|
|
17824
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.342";
|
|
17825
|
+
"0.1.342" === version && (version = "latest");
|
|
17829
17826
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17830
17827
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17831
17828
|
if (null != authToken) {
|
|
@@ -25295,28 +25292,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
25295
25292
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
25296
25293
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
25297
25294
|
(function() {
|
|
25298
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.
|
|
25299
|
-
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "
|
|
25300
|
-
|
|
25301
|
-
"image opt_description
|
|
25302
|
-
"
|
|
25303
|
-
["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["
|
|
25304
|
-
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["
|
|
25305
|
-
["
|
|
25306
|
-
"opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "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(" "),
|
|
25307
|
-
[], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["
|
|
25308
|
-
"operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"],
|
|
25309
|
-
"opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["
|
|
25310
|
-
"
|
|
25311
|
-
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.
|
|
25312
|
-
module$contents$ee$batch_Export.
|
|
25313
|
-
ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.
|
|
25314
|
-
ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.
|
|
25315
|
-
ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.
|
|
25316
|
-
ee.Feature.prototype.
|
|
25317
|
-
ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.
|
|
25318
|
-
ee.Image.prototype.
|
|
25319
|
-
ee.Serializer.encodeCloudApi, ee.Serializer.
|
|
25295
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getOperation ee.data.getList ee.data.listAssets ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getMapId ee.data.startIngestion ee.data.createAssetHome ee.data.getAssetAcl ee.data.cancelOperation ee.data.listOperations ee.data.authenticate ee.data.listFeatures ee.data.setAssetAcl ee.data.getTaskList ee.data.createAsset ee.data.deleteAsset ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getThumbId ee.data.getFeatureViewTilesKey ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.updateTask ee.data.startProcessing ee.data.copyAsset ee.data.getWorkloadTag ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.getTileUrl ee.data.getTableDownloadId ee.data.computeValue ee.data.authenticateViaPrivateKey ee.data.getTaskStatus ee.data.getInfo ee.data.updateAsset ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.getAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.listImages ee.data.newTaskId ee.data.cancelTask ee.data.listBuckets ee.data.getDownloadId ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.Filter.lt ee.Filter.and ee.Filter.or ee.Filter.gte ee.Filter.date ee.Filter.inList ee.Filter.prototype.not ee.Filter ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.bounds ee.Filter.gt ee.Filter.lte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.clip ee.Image.prototype.expression ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
25296
|
+
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
25297
|
+
"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_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(" "),
|
|
25298
|
+
"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_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_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
25299
|
+
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["algorithm", "opt_dropNulls"], ["filter"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["name", "operator", "value"], ["start", "opt_end"], ["property", "opt_ascending"],
|
|
25300
|
+
["geometry"], ["callback"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["requestedId", "opt_callback"], ["assetId", "opt_callback"], ["operationName", "opt_callback"], ["opt_limit", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["asset", "params",
|
|
25301
|
+
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["assetId", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["params", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["tag"], ["opt_success", "opt_error"],
|
|
25302
|
+
["taskId", "action", "opt_callback"], ["taskId", "params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], [], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["obj", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["taskId", "opt_callback"], ["id", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["id"],
|
|
25303
|
+
["assetId", "properties", "opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
|
|
25304
|
+
[], [], [], [], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"],
|
|
25305
|
+
["name", "operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"],
|
|
25306
|
+
["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geometry"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams",
|
|
25307
|
+
"opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
25308
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toDrive, 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.image.toAsset, module$contents$ee$batch_Export.image.toCloudStorage,
|
|
25309
|
+
module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside,
|
|
25310
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getMapId, ee.data.startIngestion, ee.data.createAssetHome, ee.data.getAssetAcl, ee.data.cancelOperation, ee.data.listOperations, ee.data.authenticate, ee.data.listFeatures, ee.data.setAssetAcl, ee.data.getTaskList, ee.data.createAsset, ee.data.deleteAsset, ee.data.makeThumbUrl, ee.data.authenticateViaOauth,
|
|
25311
|
+
ee.data.getFilmstripThumbId, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.setDefaultWorkloadTag, ee.data.createFolder, ee.data.setWorkloadTag, ee.data.authenticateViaPopup, ee.data.updateTask, ee.data.startProcessing, ee.data.copyAsset, ee.data.getWorkloadTag, ee.data.renameAsset, ee.data.getTaskListWithLimit, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.computeValue, ee.data.authenticateViaPrivateKey, ee.data.getTaskStatus,
|
|
25312
|
+
ee.data.getInfo, ee.data.updateAsset, ee.data.makeTableDownloadUrl, ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.call, ee.initialize, ee.TILE_SIZE, ee.Algorithms, ee.reset, ee.InitState,
|
|
25313
|
+
ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.Filter.lt, ee.Filter.and, ee.Filter.or, ee.Filter.gte, ee.Filter.date, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte,
|
|
25314
|
+
ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.clip, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getMap,
|
|
25315
|
+
ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.cat, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON,
|
|
25316
|
+
ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25320
25317
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
25321
25318
|
});
|
|
25322
25319
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/build/main.js
CHANGED
|
@@ -1225,9 +1225,6 @@ goog.define = function(name, defaultValue) {
|
|
|
1225
1225
|
goog.FEATURESET_YEAR = 2012;
|
|
1226
1226
|
goog.DEBUG = !0;
|
|
1227
1227
|
goog.LOCALE = "en";
|
|
1228
|
-
goog.getLocale = function() {
|
|
1229
|
-
return "en";
|
|
1230
|
-
};
|
|
1231
1228
|
goog.TRUSTED_SITE = !0;
|
|
1232
1229
|
goog.DISALLOW_TEST_ONLY_CODE = !goog.DEBUG;
|
|
1233
1230
|
goog.ENABLE_CHROME_APP_SAFE_SCRIPT_LOADING = !1;
|
|
@@ -17545,7 +17542,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17545
17542
|
ee.apiclient = {};
|
|
17546
17543
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17547
17544
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17548
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17545
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.342";
|
|
17549
17546
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17550
17547
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17551
17548
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17826,8 +17823,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17826
17823
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17827
17824
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17828
17825
|
method = method || "POST";
|
|
17829
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17830
|
-
"0.1.
|
|
17826
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.342";
|
|
17827
|
+
"0.1.342" === version && (version = "latest");
|
|
17831
17828
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17832
17829
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17833
17830
|
if (null != authToken) {
|
|
@@ -25297,28 +25294,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
25297
25294
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
25298
25295
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
25299
25296
|
(function() {
|
|
25300
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.
|
|
25301
|
-
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "
|
|
25302
|
-
|
|
25303
|
-
"image opt_description
|
|
25304
|
-
"
|
|
25305
|
-
["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["
|
|
25306
|
-
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["
|
|
25307
|
-
["
|
|
25308
|
-
"opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "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(" "),
|
|
25309
|
-
[], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["
|
|
25310
|
-
"operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"],
|
|
25311
|
-
"opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["
|
|
25312
|
-
"
|
|
25313
|
-
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.
|
|
25314
|
-
module$contents$ee$batch_Export.
|
|
25315
|
-
ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.
|
|
25316
|
-
ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.
|
|
25317
|
-
ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.
|
|
25318
|
-
ee.Feature.prototype.
|
|
25319
|
-
ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.
|
|
25320
|
-
ee.Image.prototype.
|
|
25321
|
-
ee.Serializer.encodeCloudApi, ee.Serializer.
|
|
25297
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._apply ee.ApiFunction._call ee.batch.Export.image.toDrive ee.batch.Export.table.toAsset ee.batch.Export.classifier.toAsset ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.batch.Export.table.toFeatureView ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toCloudStorage ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.serialize ee.data.getOperation ee.data.getList ee.data.listAssets ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getMapId ee.data.startIngestion ee.data.createAssetHome ee.data.getAssetAcl ee.data.cancelOperation ee.data.listOperations ee.data.authenticate ee.data.listFeatures ee.data.setAssetAcl ee.data.getTaskList ee.data.createAsset ee.data.deleteAsset ee.data.makeThumbUrl ee.data.authenticateViaOauth ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.resetWorkloadTag ee.data.getThumbId ee.data.getFeatureViewTilesKey ee.data.setDefaultWorkloadTag ee.data.createFolder ee.data.setWorkloadTag ee.data.authenticateViaPopup ee.data.updateTask ee.data.startProcessing ee.data.copyAsset ee.data.getWorkloadTag ee.data.renameAsset ee.data.getTaskListWithLimit ee.data.getTileUrl ee.data.getTableDownloadId ee.data.computeValue ee.data.authenticateViaPrivateKey ee.data.getTaskStatus ee.data.getInfo ee.data.updateAsset ee.data.makeTableDownloadUrl ee.data.setAssetProperties ee.data.getAsset ee.data.getAssetRootQuota ee.data.startTableIngestion ee.data.listImages ee.data.newTaskId ee.data.cancelTask ee.data.listBuckets ee.data.getDownloadId ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Dictionary ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Algorithms ee.reset ee.InitState ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection.prototype.select ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.Filter.lt ee.Filter.and ee.Filter.or ee.Filter.gte ee.Filter.date ee.Filter.inList ee.Filter.prototype.not ee.Filter ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.bounds ee.Filter.gt ee.Filter.lte ee.Function.prototype.call ee.Function.prototype.apply ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Geometry.prototype.toGeoJSONString ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry.Point ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.clip ee.Image.prototype.expression ee.Image.prototype.rename ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.select ee.Image.cat ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.select ee.ImageCollection ee.List ee.Number ee.Serializer.encode ee.Serializer.toJSON ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.String ee.Terrain".split(" "),
|
|
25298
|
+
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "var_args"], "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(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], ["classifier", "opt_description", "opt_assetId"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),
|
|
25299
|
+
"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_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(" "),
|
|
25300
|
+
"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_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_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
25301
|
+
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["algorithm", "opt_dropNulls"], ["filter"], ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["name", "operator", "value"], ["start", "opt_end"], ["property", "opt_ascending"],
|
|
25302
|
+
["geometry"], ["callback"], ["func", "var_args"], ["opt_callback"], ["legacy"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["id"], ["opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["requestedId", "opt_callback"], ["assetId", "opt_callback"], ["operationName", "opt_callback"], ["opt_limit", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["asset", "params",
|
|
25303
|
+
"opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["assetId", "opt_callback"], ["id"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["params", "opt_callback"], ["params", "opt_callback"], ["tag"], ["path", "opt_force", "opt_callback"], ["tag"], ["opt_success", "opt_error"],
|
|
25304
|
+
["taskId", "action", "opt_callback"], ["taskId", "params", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], [], ["sourceId", "destinationId", "opt_callback"], ["opt_limit", "opt_callback"], ["id", "x", "y", "z"], ["params", "opt_callback"], ["obj", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["taskId", "opt_callback"], ["id", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["id"],
|
|
25305
|
+
["assetId", "properties", "opt_callback"], ["id", "opt_callback"], ["rootId", "opt_callback"], ["taskId", "request", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_count", "opt_callback"], ["taskId", "opt_callback"], ["project", "opt_callback"], ["params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], ["func", "namedArgs"], ["func", "var_args"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "),
|
|
25306
|
+
[], [], [], [], ["var_args"], ["geometry", "opt_properties"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"],
|
|
25307
|
+
["name", "operator", "value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"],
|
|
25308
|
+
["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geometry"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams",
|
|
25309
|
+
"opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj", "opt_isCompound"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["string"], []];
|
|
25310
|
+
[ee.ApiFunction.lookup, ee.ApiFunction._apply, ee.ApiFunction._call, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.table.toDrive, 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.image.toAsset, module$contents$ee$batch_Export.image.toCloudStorage,
|
|
25311
|
+
module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside,
|
|
25312
|
+
ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.serialize, ee.data.getOperation, ee.data.getList, ee.data.listAssets, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getMapId, ee.data.startIngestion, ee.data.createAssetHome, ee.data.getAssetAcl, ee.data.cancelOperation, ee.data.listOperations, ee.data.authenticate, ee.data.listFeatures, ee.data.setAssetAcl, ee.data.getTaskList, ee.data.createAsset, ee.data.deleteAsset, ee.data.makeThumbUrl, ee.data.authenticateViaOauth,
|
|
25313
|
+
ee.data.getFilmstripThumbId, ee.data.getVideoThumbId, ee.data.resetWorkloadTag, ee.data.getThumbId, ee.data.getFeatureViewTilesKey, ee.data.setDefaultWorkloadTag, ee.data.createFolder, ee.data.setWorkloadTag, ee.data.authenticateViaPopup, ee.data.updateTask, ee.data.startProcessing, ee.data.copyAsset, ee.data.getWorkloadTag, ee.data.renameAsset, ee.data.getTaskListWithLimit, ee.data.getTileUrl, ee.data.getTableDownloadId, ee.data.computeValue, ee.data.authenticateViaPrivateKey, ee.data.getTaskStatus,
|
|
25314
|
+
ee.data.getInfo, ee.data.updateAsset, ee.data.makeTableDownloadUrl, ee.data.setAssetProperties, ee.data.getAsset, ee.data.getAssetRootQuota, ee.data.startTableIngestion, ee.data.listImages, ee.data.newTaskId, ee.data.cancelTask, ee.data.listBuckets, ee.data.getDownloadId, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Dictionary, ee.apply, ee.call, ee.initialize, ee.TILE_SIZE, ee.Algorithms, ee.reset, ee.InitState,
|
|
25315
|
+
ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.Filter.lt, ee.Filter.and, ee.Filter.or, ee.Filter.gte, ee.Filter.date, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte,
|
|
25316
|
+
ee.Function.prototype.call, ee.Function.prototype.apply, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image.prototype.clip, ee.Image.prototype.expression, ee.Image.prototype.rename, ee.Image, ee.Image.prototype.getMap,
|
|
25317
|
+
ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.cat, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.List, ee.Number, ee.Serializer.encode, ee.Serializer.toJSON,
|
|
25318
|
+
ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.toCloudApiJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25322
25319
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
25323
25320
|
});
|
|
25324
25321
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/package.json
CHANGED
package/src/apiclient.js
CHANGED
|
@@ -25,7 +25,7 @@ const {PromiseRequestService} = goog.require('eeapiclient.promise_request_servic
|
|
|
25
25
|
/** @namespace */
|
|
26
26
|
const apiclient = {};
|
|
27
27
|
|
|
28
|
-
const API_CLIENT_VERSION = '0.1.
|
|
28
|
+
const API_CLIENT_VERSION = '0.1.342';
|
|
29
29
|
|
|
30
30
|
exports.VERSION = apiVersion.VERSION;
|
|
31
31
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|
package/src/geometry.js
CHANGED
|
@@ -337,7 +337,7 @@ goog.inherits(ee.Geometry.Rectangle, ee.Geometry);
|
|
|
337
337
|
* @param {number} south The southernmost enclosed latitude. If less than -90°
|
|
338
338
|
* (south pole), will be treated as -90°.
|
|
339
339
|
* @param {number} east The easternmost enclosed longitude.
|
|
340
|
-
* @param {number} north The northernmost enclosed
|
|
340
|
+
* @param {number} north The northernmost enclosed latitude. If greater than
|
|
341
341
|
* +90° (north pole), will be treated as +90°.
|
|
342
342
|
* @constructor
|
|
343
343
|
* @extends {ee.Geometry.Rectangle}
|