@google/earthengine 0.1.358 → 0.1.359
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 +2 -2
- package/.tmp/METADATA +4 -4
- package/.tmp/VERSION_BUILD +2 -2
- package/build/browser.js +17 -8
- package/build/ee_api_js.js +4 -4
- package/build/ee_api_js_debug.js +12 -3
- package/build/ee_api_js_npm.js +17 -8
- package/build/main.js +17 -8
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/.tmp/BUILD
CHANGED
|
@@ -622,8 +622,8 @@ Fileset(
|
|
|
622
622
|
destdir = "0.1.357",
|
|
623
623
|
),
|
|
624
624
|
FilesetEntry(
|
|
625
|
-
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.
|
|
626
|
-
destdir = "0.1.
|
|
625
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.359:public",
|
|
626
|
+
destdir = "0.1.359",
|
|
627
627
|
),
|
|
628
628
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
629
629
|
],
|
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.359"
|
|
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.359"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2023
|
|
18
|
-
month:
|
|
19
|
-
day:
|
|
18
|
+
month: 9
|
|
19
|
+
day: 27
|
|
20
20
|
}
|
|
21
21
|
}
|
package/.tmp/VERSION_BUILD
CHANGED
|
@@ -9,7 +9,7 @@ load("//tools/build_defs/license:license.bzl", "license")
|
|
|
9
9
|
load("//tools/build_defs/build_test:build_test.bzl", "build_test")
|
|
10
10
|
|
|
11
11
|
package(
|
|
12
|
-
default_applicable_licenses = ["//third_party/hosted_libraries/libs/earthengine/0.1.
|
|
12
|
+
default_applicable_licenses = ["//third_party/hosted_libraries/libs/earthengine/0.1.359:license"],
|
|
13
13
|
default_visibility = [
|
|
14
14
|
"//third_party/hosted_libraries/libs/earthengine:__pkg__",
|
|
15
15
|
],
|
|
@@ -17,7 +17,7 @@ package(
|
|
|
17
17
|
|
|
18
18
|
license(
|
|
19
19
|
name = "license",
|
|
20
|
-
package_name = "0.1.
|
|
20
|
+
package_name = "0.1.359",
|
|
21
21
|
)
|
|
22
22
|
|
|
23
23
|
licenses(["notice"])
|
package/build/browser.js
CHANGED
|
@@ -1240,6 +1240,11 @@ goog.readFlagInternalDoNotUseOrElse = function(googFlagId, defaultValue) {
|
|
|
1240
1240
|
};
|
|
1241
1241
|
goog.FLAGS_OBJECT_ = "CLOSURE_FLAGS";
|
|
1242
1242
|
goog.FLAGS_STAGING_DEFAULT = !0;
|
|
1243
|
+
goog.readToggleInternalDoNotCallDirectly = function(name) {
|
|
1244
|
+
return !!goog.TOGGLES_["@toggle:" + name];
|
|
1245
|
+
};
|
|
1246
|
+
goog.TOGGLE_VAR_ = "_F_toggles";
|
|
1247
|
+
goog.TOGGLES_ = goog.global[goog.TOGGLE_VAR_] || [];
|
|
1243
1248
|
goog.provide = function(name) {
|
|
1244
1249
|
if (goog.isInModuleLoader_()) {
|
|
1245
1250
|
throw Error("goog.provide cannot be used within a module.");
|
|
@@ -5684,6 +5689,10 @@ module$exports$tslib.__param = function(paramIndex, decorator) {
|
|
|
5684
5689
|
decorator(target, key, paramIndex);
|
|
5685
5690
|
};
|
|
5686
5691
|
};
|
|
5692
|
+
module$exports$tslib.__setFunctionName = function(f, name, prefix) {
|
|
5693
|
+
"symbol" === typeof name && (name = name.description ? "[".concat(name.description, "]") : "");
|
|
5694
|
+
return Object.defineProperty(f, "name", {configurable:!0, value:prefix ? "".concat(prefix, " ", name) : name});
|
|
5695
|
+
};
|
|
5687
5696
|
module$exports$tslib.__metadata = function(metadataKey, metadataValue) {
|
|
5688
5697
|
if ("object" === typeof Reflect && Reflect && "function" === typeof Reflect.metadata) {
|
|
5689
5698
|
return Reflect.metadata(metadataKey, metadataValue);
|
|
@@ -17610,7 +17619,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17610
17619
|
ee.apiclient = {};
|
|
17611
17620
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17612
17621
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17613
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17622
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.359";
|
|
17614
17623
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17615
17624
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17616
17625
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17891,8 +17900,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17891
17900
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17892
17901
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17893
17902
|
method = method || "POST";
|
|
17894
|
-
var headers = {"Content-Type":contentType}, version = "0.1.
|
|
17895
|
-
"0.1.
|
|
17903
|
+
var headers = {"Content-Type":contentType}, version = "0.1.359";
|
|
17904
|
+
"0.1.359" === version && (version = "latest");
|
|
17896
17905
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17897
17906
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17898
17907
|
if (null != authToken) {
|
|
@@ -25377,7 +25386,7 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
25377
25386
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
25378
25387
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
25379
25388
|
(function() {
|
|
25380
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.
|
|
25389
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename 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.prototype.expression ee.Image.cat ee.Image.prototype.clip 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.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
25381
25390
|
orderedParamLists = [["name"], ["name", "var_args"], ["name", "namedArgs"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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(" "),
|
|
25382
25391
|
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["classifier", "opt_description", "opt_assetId"], "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_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(" "),
|
|
25383
25392
|
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),
|
|
@@ -25388,7 +25397,7 @@ ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
|
25388
25397
|
["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["asset", "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"], ["args", "opt_column"], ["opt_callback"], ["opt_format",
|
|
25389
25398
|
"opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"],
|
|
25390
25399
|
["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["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",
|
|
25391
|
-
"opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["
|
|
25400
|
+
"opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["geometry"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"],
|
|
25392
25401
|
["obj"], ["string"], []];
|
|
25393
25402
|
[ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toAsset,
|
|
25394
25403
|
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.map, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside,
|
|
@@ -25396,9 +25405,9 @@ ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
|
25396
25405
|
ee.data.listBuckets, ee.data.createFolder, ee.data.getDownloadId, ee.data.createAssetHome, ee.data.setAssetAcl, ee.data.setWorkloadTag, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getWorkloadTag, ee.data.createAsset, ee.data.getAsset, ee.data.cancelTask, ee.data.cancelOperation, ee.data.listOperations, ee.data.getOperation, ee.data.getAssetRootQuota, ee.data.getMapId, ee.data.startTableIngestion, ee.data.listAssets, ee.data.getAssetAcl, ee.data.getTileUrl, ee.data.setAssetProperties,
|
|
25397
25406
|
ee.data.deleteAsset, ee.data.updateTask, ee.data.startProcessing, ee.data.getInfo, ee.data.authenticateViaPrivateKey, ee.data.authenticateViaOauth, ee.data.getList, ee.data.getFeatureViewTilesKey, ee.data.getTaskList, ee.data.listFeatures, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.reset, ee.apply, ee.call, ee.initialize, ee.TILE_SIZE, ee.Element.prototype.set, ee.Feature,
|
|
25398
25407
|
ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, 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.eq, ee.Filter.metadata, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte, ee.Function.prototype.call, ee.Function.prototype.apply,
|
|
25399
|
-
ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.
|
|
25400
|
-
ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.
|
|
25401
|
-
ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25408
|
+
ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL,
|
|
25409
|
+
ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.Image.prototype.clip, 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.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi,
|
|
25410
|
+
ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25402
25411
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
25403
25412
|
});
|
|
25404
25413
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/build/ee_api_js.js
CHANGED
|
@@ -456,7 +456,7 @@ Tc(q,g[m]))});return b?b(l):l};return this.callback?(xj(d,null,function(g,l){ret
|
|
|
456
456
|
yj.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=Aj();null!=d&&c.push("Authorization: "+d);a=a.body?JSON.stringify(a.body):"";return[c.join("\r\n")+"\r\n\r\n"+a,b]};
|
|
457
457
|
var Bj=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"))}},uj=function(){var a=Cj.replace(/\/api$/,"");return"window"in r&&!a.match(/^https?:\/\/content-/)?a.replace(/^(https?:\/\/)(.*\.googleapis\.com)$/,"$1content-$2"):a},Ej=function(a,b,c){var d=[];a&&(d=d.concat(Dj));
|
|
458
458
|
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},Kj=function(a,b,c){Fj&&Gj&&Fj({client_id:String(Gj),immediate:!0,scope:Hj.join(" ")},function(d){if("immediate_failed"==d.error&&c)c();else if("window"in r)try{Ij(function(){try{r.gapi.auth.setToken(d),Jj(a,b,d)}catch(e){b(e.toString())}})}catch(e){b(e.toString())}else Jj(a,
|
|
459
|
-
b,d)})},Aj=function(){Lj&&0<=Date.now()-Lj&&Mj();return Nj},Mj=function(){Lj=Nj=null},rj=function(a,b,c,d){null!=a?Cj=a:Oj||(Cj="https://earthengine.googleapis.com/api");null!=b?Pj=b:Oj||(Pj="https://earthengine.googleapis.com");void 0!==c&&(Qj=c);qj=null!=d?d:qj||"earthengine-legacy";Oj=!0},xj=function(a,b,c,d,e,f){rj();var g=Rj,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.
|
|
459
|
+
b,d)})},Aj=function(){Lj&&0<=Date.now()-Lj&&Mj();return Nj},Mj=function(){Lj=Nj=null},rj=function(a,b,c,d){null!=a?Cj=a:Oj||(Cj="https://earthengine.googleapis.com/api");null!=b?Pj=b:Oj||(Pj="https://earthengine.googleapis.com");void 0!==c&&(Qj=c);qj=null!=d?d:qj||"earthengine-legacy";Oj=!0},xj=function(a,b,c,d,e,f){rj();var g=Rj,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.359";"0.1.359"===
|
|
460
460
|
m&&(m="latest");l["x-goog-api-client"]="ee-js/"+m;m=Aj();if(null!=m)l.Authorization=m;else if(c&&Fj&&Gj)return Kj(function(){Sj(g,function(){xj(a,b,c,d)})}),null;b=b?b.clone():new Kd;null!=Tj&&b.add("key",Tj);g&&(l["X-Earth-Engine-Computation-Profiling"]="1");qj&&"earthengine-legacy"!==qj&&(l["X-Goog-User-Project"]=qj);b=Uj(b,a);null!=Qj&&(l["X-XSRF-Token"]=Qj);null!=Vj&&(l["X-Earth-Engine-App-ID-Token"]=Vj);m=e||null;var q=b?b.toString():"";"POST"===d&&void 0===e?m=q:/^[\s\xa0]*$/.test(q)||(a+=-1!=
|
|
461
461
|
a.indexOf("?")?"&":"?",a+=q);e=a.startsWith("/")?Cj+a:a;if(c)return Wj.push(Xj(e,c,d,m,l,f)),Yj.mf(),null;q=function(D,Q){this.setRequestHeader&&this.setRequestHeader(Q,D)};var v=0;for(f=null!=f?f:5;;){var B=cj(aj);B.open(d,e,!1);Cb(l,q,B);B.send(m);if(429!=B.status||v>f)break;v++}return Zj(B.status,function(D){try{return B.getResponseHeader(D)}catch(Q){return null}},B.responseText,g,void 0,e,d)},Xj=function(a,b,c,d,e,f){var g=0,l={url:a,method:c,content:d,headers:e},m=Rj,q=null!=f?f:10;l.callback=
|
|
462
462
|
function(v){v=v.target;if(429==v.getStatus()&&g<q)return g++,setTimeout(function(){Wj.push(l);Yj.mf()},Math.min(12E4,1E3*Math.pow(2,g))),null;var B=Zj,D=v.getStatus(),Q=u(v.getResponseHeader,v);try{var Y=v.s?v.s.responseText:""}catch(T){Wi(v.ia,"Can not get responseText: "+T.message),Y=""}return B(D,Q,Y,m,b,a,c)};return l},Sj=function(a,b){var c=Rj;try{Rj=a,b.call(void 0)}finally{Rj=c}},Zj=function(a,b,c,d,e,f,g){var l=d?b("X-Earth-Engine-Computation-Profile"):"";l&&d&&d(l);var m=function(Y){try{var T=
|
|
@@ -703,7 +703,7 @@ h.yl=function(){if(!this.lc){var a=u(function(d){this.lc||(jq(this.ga,this.fa,d)
|
|
|
703
703
|
h.ga=null;h.Qi=null;h.Ka=null;h.ni=null;var Iq=["load","abort","error"],Jq=function(){y.call(this);this.Fa=!1};p(Jq,y);Jq.prototype.setActive=function(a){this.Fa=a};Jq.prototype.isActive=function(){return this.Fa};var Eq=function(a,b){zq.call(this,a,b)};p(Eq,zq);Eq.prototype.Ye=function(){return new Jq};Eq.prototype.Bd=function(a){a.Sa()};Eq.prototype.Of=function(a){return!a.Ta&&!a.isActive()};var Kq=function(a,b,c,d,e){Kc.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.ug=new Fc;this.Pf=1;this.wa=e||null};p(Kq,Kc);h=Kq.prototype;h.Oe=function(a){return Zb(this,"tileevent",a)};h.Zf=function(a){gc(a)};
|
|
704
704
|
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=Lc(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=th("DIV",{id:b});var d=(new Date).getTime()/1E3;this.Cb.push(b);Al(Fq).send(b,a,d,u(this.Yk,this,c,b));Hp(this);return c};h.Rc=function(){return this.Cb.length};
|
|
705
705
|
h.releaseTile=function(a){Al(Fq).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.ug.remove(b);""!==a.id&&(this.tg.remove(a.id),this.wa&&this.wa.ql(a.id))};h.setOpacity=function(a){this.Pf=a;var b=this.ug.Ea();rc(b,function(c){Sp(c,a)})};
|
|
706
|
-
h.Yk=function(a,b,c,d){"error"==c.type?(Ya(this.Cb,b),this.tg.add(b),this.dispatchEvent(c)):(Ya(this.Cb,b),c.target&&"load"==c.type&&(c=c.target,this.ug.add(c),1!=this.Pf&&Sp(c,this.Pf),a.appendChild(c)),Hp(this));this.wa&&null!==d&&this.wa.Mk(b,d)};w("ee.MapLayerOverlay",Kq);Kq.prototype.removeTileCallback=Kq.prototype.Zf;Kq.prototype.addTileCallback=Kq.prototype.Oe;Kq.prototype.getTile=Kq.prototype.getTile;Kq.prototype.setOpacity=Kq.prototype.setOpacity;Kq.prototype.releaseTile=Kq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.
|
|
706
|
+
h.Yk=function(a,b,c,d){"error"==c.type?(Ya(this.Cb,b),this.tg.add(b),this.dispatchEvent(c)):(Ya(this.Cb,b),c.target&&"load"==c.type&&(c=c.target,this.ug.add(c),1!=this.Pf&&Sp(c,this.Pf),a.appendChild(c)),Hp(this));this.wa&&null!==d&&this.wa.Mk(b,d)};w("ee.MapLayerOverlay",Kq);Kq.prototype.removeTileCallback=Kq.prototype.Zf;Kq.prototype.addTileCallback=Kq.prototype.Oe;Kq.prototype.getTile=Kq.prototype.getTile;Kq.prototype.setOpacity=Kq.prototype.setOpacity;Kq.prototype.releaseTile=Kq.prototype.releaseTile;(function(){var a={},b="ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image.prototype.expression ee.Image ee.Image.prototype.rename 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.prototype.clip 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.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
707
707
|
c=[["name"],["name","var_args"],["name","namedArgs"],"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),["collection","opt_description","opt_assetId","opt_maxVertices"],"collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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(" "),
|
|
708
708
|
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),["classifier","opt_description","opt_assetId"],"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_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(" "),
|
|
709
709
|
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "),"image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "),
|
|
@@ -713,7 +713,7 @@ c=[["name"],["name","var_args"],["name","namedArgs"],"collection opt_description
|
|
|
713
713
|
["taskId","params","opt_callback"],["id","opt_callback"],["privateKey","opt_success","opt_error","opt_extraScopes","opt_suppressDefaultScopes"],"clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),["params","opt_callback"],["params","opt_callback"],["opt_callback"],["asset","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(" "),
|
|
714
714
|
[],["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"],["propertySelectors","opt_newProperties","opt_retainGeometry"],["name","value"],["var_args"],["var_args"],["name","value"],["start","opt_end"],["opt_leftField","opt_rightValue","opt_rightField","opt_leftValue"],[],["opt_filter"],["name","value"],["name","operator","value"],
|
|
715
715
|
["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"],["coords","opt_proj","opt_geodesic","opt_maxError"],["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",
|
|
716
|
-
"opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["opt_args"],["var_args"],["opt_visParams","opt_callback"],["params","opt_callback"],["r","g","b"],["opt_callback"],["
|
|
716
|
+
"opt_geodesic","opt_evenOdd"],["coords","opt_proj","opt_geodesic","opt_maxError"],["expression","opt_map"],["opt_args"],["var_args"],["opt_visParams","opt_callback"],["params","opt_callback"],["r","g","b"],["opt_callback"],["params","opt_callback"],["params","opt_callback"],["var_args"],["geometry"],["var_args"],["params","opt_callback"],["params","opt_callback"],["opt_visParams","opt_callback"],["opt_callback"],[],["selectors","opt_names"],["args"],["list"],["number"],["obj"],["obj"],["obj"],["obj"],
|
|
717
717
|
["obj"],["obj","opt_isCompound"],["obj"],["string"],[]];[bn,O,cn,Ho,Io,Jo,Do,Ko,No,Fo,Mo,Bo,Go,Eo,Lo,V.prototype.map,V.prototype.wh,V.prototype.kf,V.prototype.sort,V.prototype.filter,V.prototype.Kh,V.prototype.lf,V.prototype.limit,M.prototype.U,M.prototype.evaluate,M.prototype.Eg,M.prototype.xa,Bl,Hm,Em,Xl,xm,Dl,qm,Zl,Nl,$l,Dm,Ol,Rl,Wl,Om,Nm,Vl,Ql,Pl,ym,Cm,Tl,Am,Im,Mm,Ul,zm,Hl,Bm,tm,fm,cm,bm,dm,Km,Jl,sm,wm,Gm,Kl,Jm,Fm,em,mm,tm,El,Cl,vm,Ll,am,Ml,dp,ip,mp,hp,gp,np,yp,Ap,zp,Cp,Bp,wp,256,R.prototype.set,
|
|
718
|
-
W,W.prototype.getMap,W.prototype.U,X,X.prototype.U,X.prototype.ub,X.prototype.getMap,X.prototype.select,Sn,Wn,Xn,Tn,Yn,Zn,U.prototype.xc,U,Qn,ao,Rn,$n,Un,Vn,Xm.prototype.call,Xm.prototype.apply,Hn,S.prototype.le,S.prototype.wg,Bn,wn,Fn,S.prototype.xa,In,S,zn,Gn,An,En,L,L.prototype.ti,L.prototype.getMap,L.prototype.ub,oo,L.prototype.U,L.prototype.
|
|
718
|
+
W,W.prototype.getMap,W.prototype.U,X,X.prototype.U,X.prototype.ub,X.prototype.getMap,X.prototype.select,Sn,Wn,Xn,Tn,Yn,Zn,U.prototype.xc,U,Qn,ao,Rn,$n,Un,Vn,Xm.prototype.call,Xm.prototype.apply,Hn,S.prototype.le,S.prototype.wg,Bn,wn,Fn,S.prototype.xa,In,S,zn,Gn,An,En,L.prototype.l,L,L.prototype.ti,L.prototype.getMap,L.prototype.ub,oo,L.prototype.U,L.prototype.uf,L.prototype.Jd,L.prototype.select,L.prototype.clip,po,Z.prototype.sf,Z.prototype.vf,Z.prototype.getMap,Z.prototype.U,Z.prototype.first,Z.prototype.select,
|
|
719
719
|
Z,qo,Uo,$k,el,cl,fl,gl,Xk,Yk,Xo,qp].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
|
@@ -1240,6 +1240,11 @@ goog.readFlagInternalDoNotUseOrElse = function(googFlagId, defaultValue) {
|
|
|
1240
1240
|
};
|
|
1241
1241
|
goog.FLAGS_OBJECT_ = "CLOSURE_FLAGS";
|
|
1242
1242
|
goog.FLAGS_STAGING_DEFAULT = !0;
|
|
1243
|
+
goog.readToggleInternalDoNotCallDirectly = function(name) {
|
|
1244
|
+
return !!goog.TOGGLES_["@toggle:" + name];
|
|
1245
|
+
};
|
|
1246
|
+
goog.TOGGLE_VAR_ = "_F_toggles";
|
|
1247
|
+
goog.TOGGLES_ = goog.global[goog.TOGGLE_VAR_] || [];
|
|
1243
1248
|
goog.provide = function(name) {
|
|
1244
1249
|
if (goog.isInModuleLoader_()) {
|
|
1245
1250
|
throw Error("goog.provide cannot be used within a module.");
|
|
@@ -5684,6 +5689,10 @@ module$exports$tslib.__param = function(paramIndex, decorator) {
|
|
|
5684
5689
|
decorator(target, key, paramIndex);
|
|
5685
5690
|
};
|
|
5686
5691
|
};
|
|
5692
|
+
module$exports$tslib.__setFunctionName = function(f, name, prefix) {
|
|
5693
|
+
"symbol" === typeof name && (name = name.description ? "[".concat(name.description, "]") : "");
|
|
5694
|
+
return Object.defineProperty(f, "name", {configurable:!0, value:prefix ? "".concat(prefix, " ", name) : name});
|
|
5695
|
+
};
|
|
5687
5696
|
module$exports$tslib.__metadata = function(metadataKey, metadataValue) {
|
|
5688
5697
|
if ("object" === typeof Reflect && Reflect && "function" === typeof Reflect.metadata) {
|
|
5689
5698
|
return Reflect.metadata(metadataKey, metadataValue);
|
|
@@ -17610,7 +17619,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17610
17619
|
ee.apiclient = {};
|
|
17611
17620
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17612
17621
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17613
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17622
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.359";
|
|
17614
17623
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17615
17624
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17616
17625
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17891,8 +17900,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17891
17900
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17892
17901
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17893
17902
|
method = method || "POST";
|
|
17894
|
-
var headers = {"Content-Type":contentType}, version = "0.1.
|
|
17895
|
-
"0.1.
|
|
17903
|
+
var headers = {"Content-Type":contentType}, version = "0.1.359";
|
|
17904
|
+
"0.1.359" === version && (version = "latest");
|
|
17896
17905
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17897
17906
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17898
17907
|
if (null != authToken) {
|
package/build/ee_api_js_npm.js
CHANGED
|
@@ -1240,6 +1240,11 @@ goog.readFlagInternalDoNotUseOrElse = function(googFlagId, defaultValue) {
|
|
|
1240
1240
|
};
|
|
1241
1241
|
goog.FLAGS_OBJECT_ = "CLOSURE_FLAGS";
|
|
1242
1242
|
goog.FLAGS_STAGING_DEFAULT = !0;
|
|
1243
|
+
goog.readToggleInternalDoNotCallDirectly = function(name) {
|
|
1244
|
+
return !!goog.TOGGLES_["@toggle:" + name];
|
|
1245
|
+
};
|
|
1246
|
+
goog.TOGGLE_VAR_ = "_F_toggles";
|
|
1247
|
+
goog.TOGGLES_ = goog.global[goog.TOGGLE_VAR_] || [];
|
|
1243
1248
|
goog.provide = function(name) {
|
|
1244
1249
|
if (goog.isInModuleLoader_()) {
|
|
1245
1250
|
throw Error("goog.provide cannot be used within a module.");
|
|
@@ -5684,6 +5689,10 @@ module$exports$tslib.__param = function(paramIndex, decorator) {
|
|
|
5684
5689
|
decorator(target, key, paramIndex);
|
|
5685
5690
|
};
|
|
5686
5691
|
};
|
|
5692
|
+
module$exports$tslib.__setFunctionName = function(f, name, prefix) {
|
|
5693
|
+
"symbol" === typeof name && (name = name.description ? "[".concat(name.description, "]") : "");
|
|
5694
|
+
return Object.defineProperty(f, "name", {configurable:!0, value:prefix ? "".concat(prefix, " ", name) : name});
|
|
5695
|
+
};
|
|
5687
5696
|
module$exports$tslib.__metadata = function(metadataKey, metadataValue) {
|
|
5688
5697
|
if ("object" === typeof Reflect && Reflect && "function" === typeof Reflect.metadata) {
|
|
5689
5698
|
return Reflect.metadata(metadataKey, metadataValue);
|
|
@@ -17610,7 +17619,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17610
17619
|
ee.apiclient = {};
|
|
17611
17620
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17612
17621
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17613
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17622
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.359";
|
|
17614
17623
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17615
17624
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17616
17625
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17891,8 +17900,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17891
17900
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17892
17901
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17893
17902
|
method = method || "POST";
|
|
17894
|
-
var headers = {"Content-Type":contentType}, version = "0.1.
|
|
17895
|
-
"0.1.
|
|
17903
|
+
var headers = {"Content-Type":contentType}, version = "0.1.359";
|
|
17904
|
+
"0.1.359" === version && (version = "latest");
|
|
17896
17905
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17897
17906
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17898
17907
|
if (null != authToken) {
|
|
@@ -25377,7 +25386,7 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
25377
25386
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
25378
25387
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
25379
25388
|
(function() {
|
|
25380
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.
|
|
25389
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename 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.prototype.expression ee.Image.cat ee.Image.prototype.clip 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.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
25381
25390
|
orderedParamLists = [["name"], ["name", "var_args"], ["name", "namedArgs"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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(" "),
|
|
25382
25391
|
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["classifier", "opt_description", "opt_assetId"], "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_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(" "),
|
|
25383
25392
|
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),
|
|
@@ -25388,7 +25397,7 @@ ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
|
25388
25397
|
["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["asset", "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"], ["args", "opt_column"], ["opt_callback"], ["opt_format",
|
|
25389
25398
|
"opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"],
|
|
25390
25399
|
["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["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",
|
|
25391
|
-
"opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["
|
|
25400
|
+
"opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["geometry"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"],
|
|
25392
25401
|
["obj"], ["string"], []];
|
|
25393
25402
|
[ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toAsset,
|
|
25394
25403
|
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.map, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside,
|
|
@@ -25396,9 +25405,9 @@ ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
|
25396
25405
|
ee.data.listBuckets, ee.data.createFolder, ee.data.getDownloadId, ee.data.createAssetHome, ee.data.setAssetAcl, ee.data.setWorkloadTag, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getWorkloadTag, ee.data.createAsset, ee.data.getAsset, ee.data.cancelTask, ee.data.cancelOperation, ee.data.listOperations, ee.data.getOperation, ee.data.getAssetRootQuota, ee.data.getMapId, ee.data.startTableIngestion, ee.data.listAssets, ee.data.getAssetAcl, ee.data.getTileUrl, ee.data.setAssetProperties,
|
|
25397
25406
|
ee.data.deleteAsset, ee.data.updateTask, ee.data.startProcessing, ee.data.getInfo, ee.data.authenticateViaPrivateKey, ee.data.authenticateViaOauth, ee.data.getList, ee.data.getFeatureViewTilesKey, ee.data.getTaskList, ee.data.listFeatures, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.reset, ee.apply, ee.call, ee.initialize, ee.TILE_SIZE, ee.Element.prototype.set, ee.Feature,
|
|
25398
25407
|
ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, 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.eq, ee.Filter.metadata, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte, ee.Function.prototype.call, ee.Function.prototype.apply,
|
|
25399
|
-
ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.
|
|
25400
|
-
ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.
|
|
25401
|
-
ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25408
|
+
ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL,
|
|
25409
|
+
ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.Image.prototype.clip, 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.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi,
|
|
25410
|
+
ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25402
25411
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
25403
25412
|
});
|
|
25404
25413
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|
package/build/main.js
CHANGED
|
@@ -1242,6 +1242,11 @@ goog.readFlagInternalDoNotUseOrElse = function(googFlagId, defaultValue) {
|
|
|
1242
1242
|
};
|
|
1243
1243
|
goog.FLAGS_OBJECT_ = "CLOSURE_FLAGS";
|
|
1244
1244
|
goog.FLAGS_STAGING_DEFAULT = !0;
|
|
1245
|
+
goog.readToggleInternalDoNotCallDirectly = function(name) {
|
|
1246
|
+
return !!goog.TOGGLES_["@toggle:" + name];
|
|
1247
|
+
};
|
|
1248
|
+
goog.TOGGLE_VAR_ = "_F_toggles";
|
|
1249
|
+
goog.TOGGLES_ = goog.global[goog.TOGGLE_VAR_] || [];
|
|
1245
1250
|
goog.provide = function(name) {
|
|
1246
1251
|
if (goog.isInModuleLoader_()) {
|
|
1247
1252
|
throw Error("goog.provide cannot be used within a module.");
|
|
@@ -5686,6 +5691,10 @@ module$exports$tslib.__param = function(paramIndex, decorator) {
|
|
|
5686
5691
|
decorator(target, key, paramIndex);
|
|
5687
5692
|
};
|
|
5688
5693
|
};
|
|
5694
|
+
module$exports$tslib.__setFunctionName = function(f, name, prefix) {
|
|
5695
|
+
"symbol" === typeof name && (name = name.description ? "[".concat(name.description, "]") : "");
|
|
5696
|
+
return Object.defineProperty(f, "name", {configurable:!0, value:prefix ? "".concat(prefix, " ", name) : name});
|
|
5697
|
+
};
|
|
5689
5698
|
module$exports$tslib.__metadata = function(metadataKey, metadataValue) {
|
|
5690
5699
|
if ("object" === typeof Reflect && Reflect && "function" === typeof Reflect.metadata) {
|
|
5691
5700
|
return Reflect.metadata(metadataKey, metadataValue);
|
|
@@ -17612,7 +17621,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17612
17621
|
ee.apiclient = {};
|
|
17613
17622
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17614
17623
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17615
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17624
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.359";
|
|
17616
17625
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17617
17626
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17618
17627
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17893,8 +17902,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17893
17902
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17894
17903
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17895
17904
|
method = method || "POST";
|
|
17896
|
-
var headers = {"Content-Type":contentType}, version = "0.1.
|
|
17897
|
-
"0.1.
|
|
17905
|
+
var headers = {"Content-Type":contentType}, version = "0.1.359";
|
|
17906
|
+
"0.1.359" === version && (version = "latest");
|
|
17898
17907
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17899
17908
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17900
17909
|
if (null != authToken) {
|
|
@@ -25379,7 +25388,7 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
25379
25388
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
25380
25389
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
25381
25390
|
(function() {
|
|
25382
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.Image.prototype.getInfo ee.Image.prototype.
|
|
25391
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.lookup ee.ApiFunction._call ee.ApiFunction._apply ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.table.toFeatureView ee.batch.Export.image.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.classifier.toAsset ee.batch.Export.map.toCloudStorage ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.map ee.Collection.prototype.filterBounds ee.Collection.prototype.filterDate ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.serialize ee.data.authenticateViaPopup ee.data.updateAsset ee.data.copyAsset ee.data.newTaskId ee.data.listImages ee.data.authenticate ee.data.startIngestion ee.data.getTaskStatus ee.data.computeValue ee.data.getTaskListWithLimit ee.data.renameAsset ee.data.getThumbId ee.data.makeThumbUrl ee.data.makeTableDownloadUrl ee.data.resetWorkloadTag ee.data.setDefaultWorkloadTag ee.data.getTableDownloadId ee.data.getFilmstripThumbId ee.data.getVideoThumbId ee.data.listBuckets ee.data.createFolder ee.data.getDownloadId ee.data.createAssetHome ee.data.setAssetAcl ee.data.setWorkloadTag ee.data.makeDownloadUrl ee.data.getAssetRoots ee.data.getWorkloadTag ee.data.createAsset ee.data.getAsset ee.data.cancelTask ee.data.cancelOperation ee.data.listOperations ee.data.getOperation ee.data.getAssetRootQuota ee.data.getMapId ee.data.startTableIngestion ee.data.listAssets ee.data.getAssetAcl ee.data.getTileUrl ee.data.setAssetProperties ee.data.deleteAsset ee.data.updateTask ee.data.startProcessing ee.data.getInfo ee.data.authenticateViaPrivateKey ee.data.authenticateViaOauth ee.data.getList ee.data.getFeatureViewTilesKey ee.data.getTaskList ee.data.listFeatures ee.Date ee.Deserializer.decodeCloudApi ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decode ee.Dictionary ee.Algorithms ee.InitState ee.reset ee.apply ee.call ee.initialize ee.TILE_SIZE ee.Element.prototype.set ee.Feature ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.select 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.eq ee.Filter.metadata 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.Point ee.Geometry.LinearRing ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry ee.Geometry.MultiPoint ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Image ee.Image.prototype.rename 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.prototype.expression ee.Image.cat ee.Image.prototype.clip 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.toReadableJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
25383
25392
|
orderedParamLists = [["name"], ["name", "var_args"], ["name", "namedArgs"], "collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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(" "),
|
|
25384
25393
|
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["classifier", "opt_description", "opt_assetId"], "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_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(" "),
|
|
25385
25394
|
"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_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "image opt_description opt_folder opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "),
|
|
@@ -25390,7 +25399,7 @@ ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
|
25390
25399
|
["params", "opt_callback"], ["params", "opt_callback"], ["opt_callback"], ["asset", "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"], ["args", "opt_column"], ["opt_callback"], ["opt_format",
|
|
25391
25400
|
"opt_selectors", "opt_filename", "opt_callback"], ["opt_visParams", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["name", "value"], ["var_args"], ["var_args"], ["name", "value"], ["start", "opt_end"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["opt_filter"], ["name", "value"], ["name", "operator", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"],
|
|
25392
25401
|
["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], [], ["west", "south", "east", "north"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["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",
|
|
25393
|
-
"opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["
|
|
25402
|
+
"opt_maxError"], ["opt_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["geometry"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], [], ["selectors", "opt_names"], ["args"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"],
|
|
25394
25403
|
["obj"], ["string"], []];
|
|
25395
25404
|
[ee.ApiFunction.lookup, ee.ApiFunction._call, ee.ApiFunction._apply, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toAsset,
|
|
25396
25405
|
module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.map, ee.Collection.prototype.filterBounds, ee.Collection.prototype.filterDate, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.iterate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.ComputedObject.prototype.getInfo, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.aside,
|
|
@@ -25398,9 +25407,9 @@ ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
|
25398
25407
|
ee.data.listBuckets, ee.data.createFolder, ee.data.getDownloadId, ee.data.createAssetHome, ee.data.setAssetAcl, ee.data.setWorkloadTag, ee.data.makeDownloadUrl, ee.data.getAssetRoots, ee.data.getWorkloadTag, ee.data.createAsset, ee.data.getAsset, ee.data.cancelTask, ee.data.cancelOperation, ee.data.listOperations, ee.data.getOperation, ee.data.getAssetRootQuota, ee.data.getMapId, ee.data.startTableIngestion, ee.data.listAssets, ee.data.getAssetAcl, ee.data.getTileUrl, ee.data.setAssetProperties,
|
|
25399
25408
|
ee.data.deleteAsset, ee.data.updateTask, ee.data.startProcessing, ee.data.getInfo, ee.data.authenticateViaPrivateKey, ee.data.authenticateViaOauth, ee.data.getList, ee.data.getFeatureViewTilesKey, ee.data.getTaskList, ee.data.listFeatures, ee.Date, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decode, ee.Dictionary, ee.Algorithms, ee.InitState, ee.reset, ee.apply, ee.call, ee.initialize, ee.TILE_SIZE, ee.Element.prototype.set, ee.Feature,
|
|
25400
25409
|
ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo, ee.FeatureCollection, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.select, 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.eq, ee.Filter.metadata, ee.Filter.neq, ee.Filter.bounds, ee.Filter.gt, ee.Filter.lte, ee.Function.prototype.call, ee.Function.prototype.apply,
|
|
25401
|
-
ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.
|
|
25402
|
-
ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.
|
|
25403
|
-
ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25410
|
+
ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Geometry.prototype.toGeoJSONString, ee.Geometry.BBox, ee.Geometry.Point, ee.Geometry.LinearRing, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Image, ee.Image.prototype.rename, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.Image.prototype.getInfo, ee.Image.prototype.getThumbURL,
|
|
25411
|
+
ee.Image.prototype.getThumbId, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat, ee.Image.prototype.clip, 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.toReadableJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encodeCloudApi,
|
|
25412
|
+
ee.Serializer.toCloudApiJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
25404
25413
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
25405
25414
|
});
|
|
25406
25415
|
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.359';
|
|
29
29
|
|
|
30
30
|
exports.VERSION = apiVersion.VERSION;
|
|
31
31
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|