@google/earthengine 0.1.298 → 0.1.299
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.tmp/BUILD +4 -0
- package/.tmp/METADATA +3 -3
- package/build/browser.js +72 -29
- package/build/ee_api_js.js +557 -554
- package/build/ee_api_js_debug.js +50 -7
- package/build/ee_api_js_npm.js +72 -29
- package/build/main.js +72 -29
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/collection.js +2 -1
package/.tmp/BUILD
CHANGED
|
@@ -288,6 +288,10 @@ Fileset(
|
|
|
288
288
|
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.298:public",
|
|
289
289
|
destdir = "0.1.298",
|
|
290
290
|
),
|
|
291
|
+
FilesetEntry(
|
|
292
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.299:public",
|
|
293
|
+
destdir = "0.1.299",
|
|
294
|
+
),
|
|
291
295
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
292
296
|
],
|
|
293
297
|
)
|
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.299"
|
|
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.299"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2022
|
|
18
18
|
month: 2
|
|
19
|
-
day:
|
|
19
|
+
day: 16
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -6646,11 +6646,12 @@ goog.dom.tags.isVoidTag = function(tagName) {
|
|
|
6646
6646
|
};
|
|
6647
6647
|
goog.html = {};
|
|
6648
6648
|
goog.html.trustedtypes = {};
|
|
6649
|
+
goog.html.trustedtypes.POLICY_NAME = goog.TRUSTED_TYPES_POLICY_NAME ? goog.TRUSTED_TYPES_POLICY_NAME + "#html" : "";
|
|
6649
6650
|
goog.html.trustedtypes.getPolicyPrivateDoNotAccessOrElse = function() {
|
|
6650
|
-
if (!goog.
|
|
6651
|
+
if (!goog.html.trustedtypes.POLICY_NAME) {
|
|
6651
6652
|
return null;
|
|
6652
6653
|
}
|
|
6653
|
-
void 0 === goog.html.trustedtypes.cachedPolicy_ && (goog.html.trustedtypes.cachedPolicy_ = goog.createTrustedTypesPolicy(goog.
|
|
6654
|
+
void 0 === goog.html.trustedtypes.cachedPolicy_ && (goog.html.trustedtypes.cachedPolicy_ = goog.createTrustedTypesPolicy(goog.html.trustedtypes.POLICY_NAME));
|
|
6654
6655
|
return goog.html.trustedtypes.cachedPolicy_;
|
|
6655
6656
|
};
|
|
6656
6657
|
goog.string.TypedString = function() {
|
|
@@ -7241,7 +7242,7 @@ function module$contents$goog$html$SafeStyle_hasBalancedSquareBrackets(value) {
|
|
|
7241
7242
|
}
|
|
7242
7243
|
return outside;
|
|
7243
7244
|
}
|
|
7244
|
-
var module$contents$goog$html$SafeStyle_VALUE_RE = RegExp("^[-,.\"'%_!#/ a-zA-Z0-9\\[\\]]+$"), module$contents$goog$html$SafeStyle_URL_RE = RegExp("\\b(url\\([ \t\n]*)('[ -&(-\\[\\]-~]*'|\"[ !#-\\[\\]-~]*\"|[!#-&*-\\[\\]-~]*)([ \t\n]*\\))", "g"), module$contents$goog$html$SafeStyle_FUNCTIONS_RE = RegExp("\\b(calc|cubic-bezier|fit-content|hsl|hsla|linear-gradient|matrix|minmax|repeat|rgb|rgba|(rotate|scale|translate)(X|Y|Z|3d)?|var)\\([-+*/0-9a-zA-Z.%#\\[\\], ]+\\)", "g"), module$contents$goog$html$SafeStyle_COMMENT_RE =
|
|
7245
|
+
var module$contents$goog$html$SafeStyle_VALUE_RE = RegExp("^[-,.\"'%_!#/ a-zA-Z0-9\\[\\]]+$"), module$contents$goog$html$SafeStyle_URL_RE = RegExp("\\b(url\\([ \t\n]*)('[ -&(-\\[\\]-~]*'|\"[ !#-\\[\\]-~]*\"|[!#-&*-\\[\\]-~]*)([ \t\n]*\\))", "g"), module$contents$goog$html$SafeStyle_FUNCTIONS_RE = RegExp("\\b(calc|cubic-bezier|fit-content|hsl|hsla|linear-gradient|matrix|minmax|radial-gradient|repeat|rgb|rgba|(rotate|scale|translate)(X|Y|Z|3d)?|var)\\([-+*/0-9a-zA-Z.%#\\[\\], ]+\\)", "g"), module$contents$goog$html$SafeStyle_COMMENT_RE =
|
|
7245
7246
|
/\/\*/;
|
|
7246
7247
|
function module$contents$goog$html$SafeStyle_sanitizeUrl(value) {
|
|
7247
7248
|
return value.replace(module$contents$goog$html$SafeStyle_URL_RE, function(match$jscomp$0, before, url, after) {
|
|
@@ -9231,6 +9232,11 @@ module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum = {CANCELLED
|
|
|
9231
9232
|
return [module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.STATE_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.PENDING, module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.RUNNING, module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.CANCELLING, module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.SUCCEEDED,
|
|
9232
9233
|
module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.CANCELLED, module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum.FAILED];
|
|
9233
9234
|
}};
|
|
9235
|
+
module$exports$eeapiclient$ee_api_client.IOperationNotificationSeverityEnum = function module$contents$eeapiclient$ee_api_client_IOperationNotificationSeverityEnum() {
|
|
9236
|
+
};
|
|
9237
|
+
module$exports$eeapiclient$ee_api_client.OperationNotificationSeverityEnum = {SEVERE:"SEVERE", SEVERITY_UNSPECIFIED:"SEVERITY_UNSPECIFIED", WARNING:"WARNING", values:function() {
|
|
9238
|
+
return [module$exports$eeapiclient$ee_api_client.OperationNotificationSeverityEnum.SEVERITY_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.OperationNotificationSeverityEnum.WARNING, module$exports$eeapiclient$ee_api_client.OperationNotificationSeverityEnum.SEVERE];
|
|
9239
|
+
}};
|
|
9234
9240
|
module$exports$eeapiclient$ee_api_client.IPixelDataTypePrecisionEnum = function module$contents$eeapiclient$ee_api_client_IPixelDataTypePrecisionEnum() {
|
|
9235
9241
|
};
|
|
9236
9242
|
module$exports$eeapiclient$ee_api_client.PixelDataTypePrecisionEnum = {DOUBLE:"DOUBLE", FLOAT:"FLOAT", INT:"INT", PRECISION_UNSPECIFIED:"PRECISION_UNSPECIFIED", values:function() {
|
|
@@ -11949,13 +11955,14 @@ module$exports$eeapiclient$ee_api_client.OperationMetadata = function(parameters
|
|
|
11949
11955
|
this.Serializable$set("attempt", null == parameters.attempt ? null : parameters.attempt);
|
|
11950
11956
|
this.Serializable$set("scriptUri", null == parameters.scriptUri ? null : parameters.scriptUri);
|
|
11951
11957
|
this.Serializable$set("destinationUris", null == parameters.destinationUris ? null : parameters.destinationUris);
|
|
11958
|
+
this.Serializable$set("notifications", null == parameters.notifications ? null : parameters.notifications);
|
|
11952
11959
|
};
|
|
11953
11960
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.OperationMetadata, module$exports$eeapiclient$domain_object.Serializable);
|
|
11954
11961
|
module$exports$eeapiclient$ee_api_client.OperationMetadata.prototype.getConstructor = function() {
|
|
11955
11962
|
return module$exports$eeapiclient$ee_api_client.OperationMetadata;
|
|
11956
11963
|
};
|
|
11957
11964
|
module$exports$eeapiclient$ee_api_client.OperationMetadata.prototype.getPartialClassMetadata = function() {
|
|
11958
|
-
return {arrays:{stages:module$exports$eeapiclient$ee_api_client.OperationStage}, enums:{state:module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum}, keys:"attempt createTime description destinationUris endTime priority progress scriptUri stages startTime state type updateTime".split(" ")};
|
|
11965
|
+
return {arrays:{notifications:module$exports$eeapiclient$ee_api_client.OperationNotification, stages:module$exports$eeapiclient$ee_api_client.OperationStage}, enums:{state:module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum}, keys:"attempt createTime description destinationUris endTime notifications priority progress scriptUri stages startTime state type updateTime".split(" ")};
|
|
11959
11966
|
};
|
|
11960
11967
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.OperationMetadata.prototype, {attempt:{configurable:!0, enumerable:!0, get:function() {
|
|
11961
11968
|
return this.Serializable$has("attempt") ? this.Serializable$get("attempt") : null;
|
|
@@ -11977,6 +11984,10 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
11977
11984
|
return this.Serializable$has("endTime") ? this.Serializable$get("endTime") : null;
|
|
11978
11985
|
}, set:function(value) {
|
|
11979
11986
|
this.Serializable$set("endTime", value);
|
|
11987
|
+
}}, notifications:{configurable:!0, enumerable:!0, get:function() {
|
|
11988
|
+
return this.Serializable$has("notifications") ? this.Serializable$get("notifications") : null;
|
|
11989
|
+
}, set:function(value) {
|
|
11990
|
+
this.Serializable$set("notifications", value);
|
|
11980
11991
|
}}, priority:{configurable:!0, enumerable:!0, get:function() {
|
|
11981
11992
|
return this.Serializable$has("priority") ? this.Serializable$get("priority") : null;
|
|
11982
11993
|
}, set:function(value) {
|
|
@@ -12013,6 +12024,38 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
12013
12024
|
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.OperationMetadata, {State:{configurable:!0, enumerable:!0, get:function() {
|
|
12014
12025
|
return module$exports$eeapiclient$ee_api_client.OperationMetadataStateEnum;
|
|
12015
12026
|
}}});
|
|
12027
|
+
module$exports$eeapiclient$ee_api_client.OperationNotificationParameters = function module$contents$eeapiclient$ee_api_client_OperationNotificationParameters() {
|
|
12028
|
+
};
|
|
12029
|
+
module$exports$eeapiclient$ee_api_client.OperationNotification = function(parameters) {
|
|
12030
|
+
parameters = void 0 === parameters ? {} : parameters;
|
|
12031
|
+
module$exports$eeapiclient$domain_object.Serializable.call(this);
|
|
12032
|
+
this.Serializable$set("severity", null == parameters.severity ? null : parameters.severity);
|
|
12033
|
+
this.Serializable$set("topic", null == parameters.topic ? null : parameters.topic);
|
|
12034
|
+
this.Serializable$set("detail", null == parameters.detail ? null : parameters.detail);
|
|
12035
|
+
};
|
|
12036
|
+
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.OperationNotification, module$exports$eeapiclient$domain_object.Serializable);
|
|
12037
|
+
module$exports$eeapiclient$ee_api_client.OperationNotification.prototype.getConstructor = function() {
|
|
12038
|
+
return module$exports$eeapiclient$ee_api_client.OperationNotification;
|
|
12039
|
+
};
|
|
12040
|
+
module$exports$eeapiclient$ee_api_client.OperationNotification.prototype.getPartialClassMetadata = function() {
|
|
12041
|
+
return {enums:{severity:module$exports$eeapiclient$ee_api_client.OperationNotificationSeverityEnum}, keys:["detail", "severity", "topic"]};
|
|
12042
|
+
};
|
|
12043
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.OperationNotification.prototype, {detail:{configurable:!0, enumerable:!0, get:function() {
|
|
12044
|
+
return this.Serializable$has("detail") ? this.Serializable$get("detail") : null;
|
|
12045
|
+
}, set:function(value) {
|
|
12046
|
+
this.Serializable$set("detail", value);
|
|
12047
|
+
}}, severity:{configurable:!0, enumerable:!0, get:function() {
|
|
12048
|
+
return this.Serializable$has("severity") ? this.Serializable$get("severity") : null;
|
|
12049
|
+
}, set:function(value) {
|
|
12050
|
+
this.Serializable$set("severity", value);
|
|
12051
|
+
}}, topic:{configurable:!0, enumerable:!0, get:function() {
|
|
12052
|
+
return this.Serializable$has("topic") ? this.Serializable$get("topic") : null;
|
|
12053
|
+
}, set:function(value) {
|
|
12054
|
+
this.Serializable$set("topic", value);
|
|
12055
|
+
}}});
|
|
12056
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.OperationNotification, {Severity:{configurable:!0, enumerable:!0, get:function() {
|
|
12057
|
+
return module$exports$eeapiclient$ee_api_client.OperationNotificationSeverityEnum;
|
|
12058
|
+
}}});
|
|
12016
12059
|
module$exports$eeapiclient$ee_api_client.OperationStageParameters = function module$contents$eeapiclient$ee_api_client_OperationStageParameters() {
|
|
12017
12060
|
};
|
|
12018
12061
|
module$exports$eeapiclient$ee_api_client.OperationStage = function(parameters) {
|
|
@@ -17016,7 +17059,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
17016
17059
|
ee.apiclient = {};
|
|
17017
17060
|
var module$contents$ee$apiclient_apiclient = {};
|
|
17018
17061
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
17019
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17062
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.299";
|
|
17020
17063
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
17021
17064
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
17022
17065
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17297,8 +17340,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17297
17340
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17298
17341
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17299
17342
|
method = method || "POST";
|
|
17300
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17301
|
-
"0.1.
|
|
17343
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.299";
|
|
17344
|
+
"0.1.299" === version && (version = "latest");
|
|
17302
17345
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17303
17346
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17304
17347
|
if (null != authToken) {
|
|
@@ -24636,28 +24679,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24636
24679
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24637
24680
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24638
24681
|
(function() {
|
|
24639
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
24640
|
-
orderedParamLists = [["name", "
|
|
24641
|
-
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond
|
|
24642
|
-
"
|
|
24643
|
-
"
|
|
24644
|
-
["
|
|
24645
|
-
["
|
|
24646
|
-
"
|
|
24647
|
-
"
|
|
24648
|
-
["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
["string"], []];
|
|
24652
|
-
[ee.ApiFunction.
|
|
24653
|
-
module$contents$ee$batch_Export.
|
|
24654
|
-
ee.ComputedObject.prototype.
|
|
24655
|
-
ee.data.
|
|
24656
|
-
ee.data.
|
|
24657
|
-
ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.Filter.gte, ee.Filter.bounds, ee.Filter.
|
|
24658
|
-
ee.Geometry.
|
|
24659
|
-
ee.
|
|
24660
|
-
ee.
|
|
24682
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction.lookup ee.ApiFunction._apply ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.image.toDrive ee.batch.Export.video.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.table.toFeatureView ee.batch.Export.classifier.toAsset ee.batch.Export.image.toAsset ee.batch.Export.table.toDrive ee.batch.Export.table.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.video.toDrive ee.Collection.prototype.filterDate ee.Collection.prototype.filterMetadata ee.Collection.prototype.limit ee.Collection.prototype.filterBounds ee.Collection.prototype.map ee.Collection.prototype.sort ee.Collection.prototype.filter ee.Collection.prototype.iterate ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.aside ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.evaluate ee.data.renameAsset ee.data.getAssetAcl ee.data.listBuckets ee.data.authenticateViaPopup ee.data.authenticate ee.data.copyAsset ee.data.getAssetRoots ee.data.deleteAsset ee.data.startProcessing ee.data.startIngestion ee.data.createAssetHome ee.data.getTileUrl ee.data.authenticateViaOauth ee.data.authenticateViaPrivateKey ee.data.createAsset ee.data.listFeatures ee.data.createFolder ee.data.getMapId ee.data.updateAsset ee.data.getFeatureViewTilesKey ee.data.startTableIngestion ee.data.getAsset ee.data.makeDownloadUrl ee.data.setAssetAcl ee.data.getTaskList ee.data.computeValue ee.data.getThumbId ee.data.updateTask ee.data.getInfo ee.data.getTaskListWithLimit ee.data.makeTableDownloadUrl ee.data.listOperations ee.data.setAssetProperties ee.data.getVideoThumbId ee.data.newTaskId ee.data.getList ee.data.makeThumbUrl ee.data.getOperation ee.data.getTableDownloadId ee.data.getAssetRootQuota ee.data.cancelOperation ee.data.cancelTask ee.data.getFilmstripThumbId ee.data.getDownloadId ee.data.getTaskStatus ee.data.listImages ee.data.listAssets ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.decode ee.Deserializer.decodeCloudApi ee.Deserializer.fromJSON ee.Dictionary ee.reset ee.call ee.apply ee.InitState ee.TILE_SIZE ee.initialize ee.Algorithms ee.Element.prototype.set ee.Feature ee.Feature.prototype.getInfo ee.Feature.prototype.getMap ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getInfo ee.FeatureCollection ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.Filter.date ee.Filter.gte ee.Filter.bounds ee.Filter.neq ee.Filter.and ee.Filter.metadata ee.Filter.gt ee.Filter.lte ee.Filter.inList ee.Filter ee.Filter.or ee.Filter.prototype.not ee.Filter.eq ee.Filter.lt ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSON ee.Geometry ee.Geometry.Rectangle ee.Geometry.BBox ee.Geometry.prototype.toGeoJSONString ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.LinearRing ee.Geometry.Point ee.Geometry.Polygon ee.Geometry.prototype.serialize ee.Geometry.LineString ee.Geometry.MultiPoint ee.Image.cat ee.Image.prototype.getInfo ee.Image.prototype.select ee.Image.prototype.rename ee.Image.rgb ee.Image.prototype.getMap ee.Image.prototype.getThumbURL ee.Image ee.Image.prototype.getThumbId ee.Image.prototype.expression ee.Image.prototype.clip ee.Image.prototype.getDownloadURL ee.ImageCollection ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.select ee.ImageCollection.prototype.getInfo ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getVideoThumbURL ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApi ee.Serializer.toCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
24683
|
+
orderedParamLists = [["name", "var_args"], ["name"], ["name", "namedArgs"], "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(" "), "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(" "),
|
|
24684
|
+
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".split(" "), ["classifier", "opt_description", "opt_assetId"], "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "),
|
|
24685
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), ["collection", "opt_description", "opt_assetId", "opt_maxVertices"], "image opt_description opt_bucket opt_fileNamePrefix opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize opt_fileDimensions opt_skipEmptyTiles opt_fileFormat opt_formatOptions".split(" "), "image opt_description opt_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris".split(" "),
|
|
24686
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), ["start", "opt_end"], ["name", "operator", "value"], ["max", "opt_property", "opt_ascending"], ["geometry"], ["algorithm", "opt_dropNulls"], ["property", "opt_ascending"], ["filter"], ["algorithm", "opt_first"], ["legacy"], ["func", "var_args"], ["opt_callback"], ["callback"], ["sourceId", "destinationId", "opt_callback"],
|
|
24687
|
+
["assetId", "opt_callback"], ["project", "opt_callback"], ["opt_success", "opt_error"], ["clientId", "success", "opt_error", "opt_extraScopes", "opt_onImmediateFailed"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["opt_callback"], ["assetId", "opt_callback"], ["taskId", "params", "opt_callback"], ["taskId", "request", "opt_callback"], ["requestedId", "opt_callback"], ["id", "x", "y", "z"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "),
|
|
24688
|
+
["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["asset", "params", "opt_callback"], ["path", "opt_force", "opt_callback"], ["params", "opt_callback"], ["assetId", "asset", "updateFields", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["id", "opt_callback"], ["id"], ["assetId", "aclUpdate", "opt_callback"], ["opt_callback"], ["obj", "opt_callback"],
|
|
24689
|
+
["params", "opt_callback"], ["taskId", "action", "opt_callback"], ["id", "opt_callback"], ["opt_limit", "opt_callback"], ["id"], ["opt_limit", "opt_callback"], ["assetId", "properties", "opt_callback"], ["params", "opt_callback"], ["opt_count", "opt_callback"], ["params", "opt_callback"], ["id"], ["operationName", "opt_callback"], ["params", "opt_callback"], ["rootId", "opt_callback"], ["operationName", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"],
|
|
24690
|
+
["taskId", "opt_callback"], ["parent", "params", "opt_callback"], ["parent", "params", "opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], [], ["func", "var_args"], ["func", "namedArgs"], [], [], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), [], ["var_args"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["args",
|
|
24691
|
+
"opt_column"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["start", "opt_end"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["var_args"], ["name", "operator", "value"], ["name", "value"], ["name", "value"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], ["opt_filter"], ["var_args"], [], ["name", "value"], ["name", "value"], ["namedArgs"], ["var_args"], [],
|
|
24692
|
+
["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["west", "south", "east", "north"], [], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords",
|
|
24693
|
+
"opt_proj"], ["var_args"], ["opt_callback"], ["var_args"], ["var_args"], ["r", "g", "b"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["opt_args"], ["params", "opt_callback"], ["expression", "opt_map"], ["geometry"], ["params", "opt_callback"], ["args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["selectors", "opt_names"], ["opt_callback"], [], ["params", "opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"],
|
|
24694
|
+
["obj"], ["string"], []];
|
|
24695
|
+
[ee.ApiFunction._call, ee.ApiFunction.lookup, ee.ApiFunction._apply, module$contents$ee$batch_Export.videoMap.toCloudStorage, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.table.toAsset,
|
|
24696
|
+
module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.limit, ee.Collection.prototype.filterBounds, ee.Collection.prototype.map, ee.Collection.prototype.sort, ee.Collection.prototype.filter, ee.Collection.prototype.iterate, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.aside, ee.ComputedObject.prototype.getInfo,
|
|
24697
|
+
ee.ComputedObject.prototype.evaluate, ee.data.renameAsset, ee.data.getAssetAcl, ee.data.listBuckets, ee.data.authenticateViaPopup, ee.data.authenticate, ee.data.copyAsset, ee.data.getAssetRoots, ee.data.deleteAsset, ee.data.startProcessing, ee.data.startIngestion, ee.data.createAssetHome, ee.data.getTileUrl, ee.data.authenticateViaOauth, ee.data.authenticateViaPrivateKey, ee.data.createAsset, ee.data.listFeatures, ee.data.createFolder, ee.data.getMapId, ee.data.updateAsset, ee.data.getFeatureViewTilesKey,
|
|
24698
|
+
ee.data.startTableIngestion, ee.data.getAsset, ee.data.makeDownloadUrl, ee.data.setAssetAcl, ee.data.getTaskList, ee.data.computeValue, ee.data.getThumbId, ee.data.updateTask, ee.data.getInfo, ee.data.getTaskListWithLimit, ee.data.makeTableDownloadUrl, ee.data.listOperations, ee.data.setAssetProperties, ee.data.getVideoThumbId, ee.data.newTaskId, ee.data.getList, ee.data.makeThumbUrl, ee.data.getOperation, ee.data.getTableDownloadId, ee.data.getAssetRootQuota, ee.data.cancelOperation, ee.data.cancelTask,
|
|
24699
|
+
ee.data.getFilmstripThumbId, ee.data.getDownloadId, ee.data.getTaskStatus, ee.data.listImages, ee.data.listAssets, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.decode, ee.Deserializer.decodeCloudApi, ee.Deserializer.fromJSON, ee.Dictionary, ee.reset, ee.call, ee.apply, ee.InitState, ee.TILE_SIZE, ee.initialize, ee.Algorithms, ee.Element.prototype.set, ee.Feature, ee.Feature.prototype.getInfo, ee.Feature.prototype.getMap, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getInfo,
|
|
24700
|
+
ee.FeatureCollection, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.Filter.date, ee.Filter.gte, ee.Filter.bounds, ee.Filter.neq, ee.Filter.and, ee.Filter.metadata, ee.Filter.gt, ee.Filter.lte, ee.Filter.inList, ee.Filter, ee.Filter.or, ee.Filter.prototype.not, ee.Filter.eq, ee.Filter.lt, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSON, ee.Geometry, ee.Geometry.Rectangle, ee.Geometry.BBox, ee.Geometry.prototype.toGeoJSONString,
|
|
24701
|
+
ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.LinearRing, ee.Geometry.Point, ee.Geometry.Polygon, ee.Geometry.prototype.serialize, ee.Geometry.LineString, ee.Geometry.MultiPoint, ee.Image.cat, ee.Image.prototype.getInfo, ee.Image.prototype.select, ee.Image.prototype.rename, ee.Image.rgb, ee.Image.prototype.getMap, ee.Image.prototype.getThumbURL, ee.Image, ee.Image.prototype.getThumbId, ee.Image.prototype.expression, ee.Image.prototype.clip, ee.Image.prototype.getDownloadURL,
|
|
24702
|
+
ee.ImageCollection, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.select, ee.ImageCollection.prototype.getInfo, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getVideoThumbURL, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toCloudApiJSON, ee.Serializer.encodeCloudApiPretty, ee.Serializer.encode, ee.Serializer.toJSON, ee.String,
|
|
24703
|
+
ee.Terrain].forEach(function(fn, i) {
|
|
24661
24704
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
24662
24705
|
});
|
|
24663
24706
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|