@google/earthengine 0.1.328 → 0.1.330
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 +6 -2
- package/.tmp/METADATA +4 -4
- package/build/browser.js +184 -35
- package/build/ee_api_js.js +580 -581
- package/build/ee_api_js_debug.js +162 -13
- package/build/ee_api_js_npm.js +184 -35
- package/build/main.js +184 -35
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
package/.tmp/BUILD
CHANGED
|
@@ -389,8 +389,12 @@ Fileset(
|
|
|
389
389
|
destdir = "0.1.326",
|
|
390
390
|
),
|
|
391
391
|
FilesetEntry(
|
|
392
|
-
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.
|
|
393
|
-
destdir = "0.1.
|
|
392
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.329:public",
|
|
393
|
+
destdir = "0.1.329",
|
|
394
|
+
),
|
|
395
|
+
FilesetEntry(
|
|
396
|
+
srcdir = "//third_party/hosted_libraries/libs/earthengine/0.1.330:public",
|
|
397
|
+
destdir = "0.1.330",
|
|
394
398
|
),
|
|
395
399
|
# NEXT RELEASE GOES HERE. DO NOT REMOVE OR CHANGE THIS LINE.
|
|
396
400
|
],
|
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.330"
|
|
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.330"
|
|
16
16
|
last_upgrade_date: {
|
|
17
17
|
year: 2022
|
|
18
|
-
month:
|
|
19
|
-
day:
|
|
18
|
+
month: 11
|
|
19
|
+
day: 2
|
|
20
20
|
}
|
|
21
21
|
}
|
package/build/browser.js
CHANGED
|
@@ -1275,6 +1275,17 @@ goog.module.getInternal_ = function(name) {
|
|
|
1275
1275
|
var ns;
|
|
1276
1276
|
return null;
|
|
1277
1277
|
};
|
|
1278
|
+
goog.requireDynamic = function(name) {
|
|
1279
|
+
return null;
|
|
1280
|
+
};
|
|
1281
|
+
goog.importHandler_ = null;
|
|
1282
|
+
goog.uncompiledChunkIdHandler_ = null;
|
|
1283
|
+
goog.setImportHandlerInternalDoNotCallOrElse = function(fn) {
|
|
1284
|
+
goog.importHandler_ = fn;
|
|
1285
|
+
};
|
|
1286
|
+
goog.setUncompiledChunkIdHandlerInternalDoNotCallOrElse = function(fn) {
|
|
1287
|
+
goog.uncompiledChunkIdHandler_ = fn;
|
|
1288
|
+
};
|
|
1278
1289
|
goog.ModuleType = {ES6:"es6", GOOG:"goog"};
|
|
1279
1290
|
goog.moduleLoaderState_ = null;
|
|
1280
1291
|
goog.isInModuleLoader_ = function() {
|
|
@@ -6871,7 +6882,7 @@ function module$contents$goog$html$SafeStyle_hasBalancedSquareBrackets(value) {
|
|
|
6871
6882
|
}
|
|
6872
6883
|
return outside;
|
|
6873
6884
|
}
|
|
6874
|
-
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 =
|
|
6885
|
+
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)?|steps|var)\\([-+*/0-9a-zA-Z.%#\\[\\], ]+\\)", "g"), module$contents$goog$html$SafeStyle_COMMENT_RE =
|
|
6875
6886
|
/\/\*/;
|
|
6876
6887
|
function module$contents$goog$html$SafeStyle_sanitizeUrl(value) {
|
|
6877
6888
|
return value.replace(module$contents$goog$html$SafeStyle_URL_RE, function(match$jscomp$0, before, url, after) {
|
|
@@ -8876,6 +8887,11 @@ module$exports$eeapiclient$ee_api_client.TableFileFormatEnum = {CSV:"CSV", GEO_J
|
|
|
8876
8887
|
return [module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.TABLE_FILE_FORMAT_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.CSV, module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.GEO_JSON, module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.KML, module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.KMZ,
|
|
8877
8888
|
module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.SHP, module$exports$eeapiclient$ee_api_client.TableFileFormatEnum.TF_RECORD_TABLE];
|
|
8878
8889
|
}};
|
|
8890
|
+
module$exports$eeapiclient$ee_api_client.ITableManifestColumnDataTypeOverridesEnum = function module$contents$eeapiclient$ee_api_client_ITableManifestColumnDataTypeOverridesEnum() {
|
|
8891
|
+
};
|
|
8892
|
+
module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum = {COLUMN_DATA_TYPE_LONG:"COLUMN_DATA_TYPE_LONG", COLUMN_DATA_TYPE_NUMERIC:"COLUMN_DATA_TYPE_NUMERIC", COLUMN_DATA_TYPE_STRING:"COLUMN_DATA_TYPE_STRING", COLUMN_DATA_TYPE_UNSPECIFIED:"COLUMN_DATA_TYPE_UNSPECIFIED", values:function() {
|
|
8893
|
+
return [module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum.COLUMN_DATA_TYPE_UNSPECIFIED, module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum.COLUMN_DATA_TYPE_STRING, module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum.COLUMN_DATA_TYPE_NUMERIC, module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum.COLUMN_DATA_TYPE_LONG];
|
|
8894
|
+
}};
|
|
8879
8895
|
module$exports$eeapiclient$ee_api_client.ITableManifestCsvColumnDataTypeOverridesEnum = function module$contents$eeapiclient$ee_api_client_ITableManifestCsvColumnDataTypeOverridesEnum() {
|
|
8880
8896
|
};
|
|
8881
8897
|
module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum = {CSV_COLUMN_DATA_TYPE_LONG:"CSV_COLUMN_DATA_TYPE_LONG", CSV_COLUMN_DATA_TYPE_NUMERIC:"CSV_COLUMN_DATA_TYPE_NUMERIC", CSV_COLUMN_DATA_TYPE_STRING:"CSV_COLUMN_DATA_TYPE_STRING", CSV_COLUMN_DATA_TYPE_UNSPECIFIED:"CSV_COLUMN_DATA_TYPE_UNSPECIFIED", values:function() {
|
|
@@ -12370,16 +12386,21 @@ module$exports$eeapiclient$ee_api_client.TableManifest = function(parameters) {
|
|
|
12370
12386
|
this.Serializable$set("endTime", null == parameters.endTime ? null : parameters.endTime);
|
|
12371
12387
|
this.Serializable$set("csvColumnDataTypeOverrides", null == parameters.csvColumnDataTypeOverrides ? null : parameters.csvColumnDataTypeOverrides);
|
|
12372
12388
|
this.Serializable$set("policy", null == parameters.policy ? null : parameters.policy);
|
|
12389
|
+
this.Serializable$set("columnDataTypeOverrides", null == parameters.columnDataTypeOverrides ? null : parameters.columnDataTypeOverrides);
|
|
12373
12390
|
};
|
|
12374
12391
|
$jscomp.inherits(module$exports$eeapiclient$ee_api_client.TableManifest, module$exports$eeapiclient$domain_object.Serializable);
|
|
12375
12392
|
module$exports$eeapiclient$ee_api_client.TableManifest.prototype.getConstructor = function() {
|
|
12376
12393
|
return module$exports$eeapiclient$ee_api_client.TableManifest;
|
|
12377
12394
|
};
|
|
12378
12395
|
module$exports$eeapiclient$ee_api_client.TableManifest.prototype.getPartialClassMetadata = function() {
|
|
12379
|
-
return {arrays:{sources:module$exports$eeapiclient$ee_api_client.TableSource}, enums:{csvColumnDataTypeOverrides:module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum}, keys:"csvColumnDataTypeOverrides endTime name policy properties sources startTime uriPrefix".split(" "),
|
|
12380
|
-
isPropertyArray:!1, isSerializable:!1, isValueArray:!1}}, objects:{policy:module$exports$eeapiclient$ee_api_client.Policy}};
|
|
12396
|
+
return {arrays:{sources:module$exports$eeapiclient$ee_api_client.TableSource}, enums:{columnDataTypeOverrides:module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum, csvColumnDataTypeOverrides:module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum}, keys:"columnDataTypeOverrides csvColumnDataTypeOverrides endTime name policy properties sources startTime uriPrefix".split(" "),
|
|
12397
|
+
objectMaps:{columnDataTypeOverrides:{ctor:null, isPropertyArray:!1, isSerializable:!1, isValueArray:!1}, csvColumnDataTypeOverrides:{ctor:null, isPropertyArray:!1, isSerializable:!1, isValueArray:!1}, properties:{ctor:null, isPropertyArray:!1, isSerializable:!1, isValueArray:!1}}, objects:{policy:module$exports$eeapiclient$ee_api_client.Policy}};
|
|
12381
12398
|
};
|
|
12382
|
-
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableManifest.prototype, {
|
|
12399
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableManifest.prototype, {columnDataTypeOverrides:{configurable:!0, enumerable:!0, get:function() {
|
|
12400
|
+
return this.Serializable$has("columnDataTypeOverrides") ? this.Serializable$get("columnDataTypeOverrides") : null;
|
|
12401
|
+
}, set:function(value) {
|
|
12402
|
+
this.Serializable$set("columnDataTypeOverrides", value);
|
|
12403
|
+
}}, csvColumnDataTypeOverrides:{configurable:!0, enumerable:!0, get:function() {
|
|
12383
12404
|
return this.Serializable$has("csvColumnDataTypeOverrides") ? this.Serializable$get("csvColumnDataTypeOverrides") : null;
|
|
12384
12405
|
}, set:function(value) {
|
|
12385
12406
|
this.Serializable$set("csvColumnDataTypeOverrides", value);
|
|
@@ -12412,7 +12433,9 @@ $jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.
|
|
|
12412
12433
|
}, set:function(value) {
|
|
12413
12434
|
this.Serializable$set("uriPrefix", value);
|
|
12414
12435
|
}}});
|
|
12415
|
-
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableManifest, {
|
|
12436
|
+
$jscomp.global.Object.defineProperties(module$exports$eeapiclient$ee_api_client.TableManifest, {ColumnDataTypeOverrides:{configurable:!0, enumerable:!0, get:function() {
|
|
12437
|
+
return module$exports$eeapiclient$ee_api_client.TableManifestColumnDataTypeOverridesEnum;
|
|
12438
|
+
}}, CsvColumnDataTypeOverrides:{configurable:!0, enumerable:!0, get:function() {
|
|
12416
12439
|
return module$exports$eeapiclient$ee_api_client.TableManifestCsvColumnDataTypeOverridesEnum;
|
|
12417
12440
|
}}});
|
|
12418
12441
|
module$exports$eeapiclient$ee_api_client.TableSourceParameters = function module$contents$eeapiclient$ee_api_client_TableSourceParameters() {
|
|
@@ -14134,6 +14157,131 @@ module$contents$goog$async$FreeList_FreeList.prototype.occupants = function() {
|
|
|
14134
14157
|
return this.occupants_;
|
|
14135
14158
|
};
|
|
14136
14159
|
goog.async.FreeList = module$contents$goog$async$FreeList_FreeList;
|
|
14160
|
+
goog.dom.element = {};
|
|
14161
|
+
var module$contents$goog$dom$element_isElement = function(value) {
|
|
14162
|
+
return goog.isObject(value) && value.nodeType === goog.dom.NodeType.ELEMENT;
|
|
14163
|
+
}, module$contents$goog$dom$element_isHtmlElement = function(value) {
|
|
14164
|
+
return goog.isObject(value) && module$contents$goog$dom$element_isElement(value) && (!value.namespaceURI || "http://www.w3.org/1999/xhtml" === value.namespaceURI);
|
|
14165
|
+
}, module$contents$goog$dom$element_isHtmlElementOfType = function(value, tagName) {
|
|
14166
|
+
return goog.isObject(value) && module$contents$goog$dom$element_isHtmlElement(value) && value.tagName.toUpperCase() === tagName.toString();
|
|
14167
|
+
};
|
|
14168
|
+
goog.dom.element.isElement = module$contents$goog$dom$element_isElement;
|
|
14169
|
+
goog.dom.element.isHtmlElement = module$contents$goog$dom$element_isHtmlElement;
|
|
14170
|
+
goog.dom.element.isHtmlElementOfType = module$contents$goog$dom$element_isHtmlElementOfType;
|
|
14171
|
+
goog.dom.element.isHtmlAnchorElement = function(value) {
|
|
14172
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.A);
|
|
14173
|
+
};
|
|
14174
|
+
goog.dom.element.isHtmlButtonElement = function(value) {
|
|
14175
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.BUTTON);
|
|
14176
|
+
};
|
|
14177
|
+
goog.dom.element.isHtmlLinkElement = function(value) {
|
|
14178
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.LINK);
|
|
14179
|
+
};
|
|
14180
|
+
goog.dom.element.isHtmlImageElement = function(value) {
|
|
14181
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.IMG);
|
|
14182
|
+
};
|
|
14183
|
+
goog.dom.element.isHtmlAudioElement = function(value) {
|
|
14184
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.AUDIO);
|
|
14185
|
+
};
|
|
14186
|
+
goog.dom.element.isHtmlVideoElement = function(value) {
|
|
14187
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.VIDEO);
|
|
14188
|
+
};
|
|
14189
|
+
goog.dom.element.isHtmlInputElement = function(value) {
|
|
14190
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.INPUT);
|
|
14191
|
+
};
|
|
14192
|
+
goog.dom.element.isHtmlTextAreaElement = function(value) {
|
|
14193
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.TEXTAREA);
|
|
14194
|
+
};
|
|
14195
|
+
goog.dom.element.isHtmlCanvasElement = function(value) {
|
|
14196
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.CANVAS);
|
|
14197
|
+
};
|
|
14198
|
+
goog.dom.element.isHtmlEmbedElement = function(value) {
|
|
14199
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.EMBED);
|
|
14200
|
+
};
|
|
14201
|
+
goog.dom.element.isHtmlFormElement = function(value) {
|
|
14202
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.FORM);
|
|
14203
|
+
};
|
|
14204
|
+
goog.dom.element.isHtmlFrameElement = function(value) {
|
|
14205
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.FRAME);
|
|
14206
|
+
};
|
|
14207
|
+
goog.dom.element.isHtmlIFrameElement = function(value) {
|
|
14208
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.IFRAME);
|
|
14209
|
+
};
|
|
14210
|
+
goog.dom.element.isHtmlObjectElement = function(value) {
|
|
14211
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.OBJECT);
|
|
14212
|
+
};
|
|
14213
|
+
goog.dom.element.isHtmlScriptElement = function(value) {
|
|
14214
|
+
return module$contents$goog$dom$element_isHtmlElementOfType(value, goog.dom.TagName.SCRIPT);
|
|
14215
|
+
};
|
|
14216
|
+
goog.asserts.dom = {};
|
|
14217
|
+
var module$contents$goog$asserts$dom_assertIsHtmlElement = function(value) {
|
|
14218
|
+
goog.asserts.ENABLE_ASSERTS && !module$contents$goog$dom$element_isHtmlElement(value) && goog.asserts.fail("Argument is not an HTML Element; got: " + module$contents$goog$asserts$dom_debugStringForType(value));
|
|
14219
|
+
return value;
|
|
14220
|
+
}, module$contents$goog$asserts$dom_assertIsHtmlElementOfType = function(value, tagName) {
|
|
14221
|
+
goog.asserts.ENABLE_ASSERTS && !module$contents$goog$dom$element_isHtmlElementOfType(value, tagName) && goog.asserts.fail("Argument is not an HTML Element with tag name " + (tagName.toString() + "; got: " + module$contents$goog$asserts$dom_debugStringForType(value)));
|
|
14222
|
+
return value;
|
|
14223
|
+
}, module$contents$goog$asserts$dom_debugStringForType = function(value) {
|
|
14224
|
+
if (goog.isObject(value)) {
|
|
14225
|
+
try {
|
|
14226
|
+
return value.constructor.displayName || value.constructor.name || Object.prototype.toString.call(value);
|
|
14227
|
+
} catch (e) {
|
|
14228
|
+
return "<object could not be stringified>";
|
|
14229
|
+
}
|
|
14230
|
+
} else {
|
|
14231
|
+
return void 0 === value ? "undefined" : null === value ? "null" : typeof value;
|
|
14232
|
+
}
|
|
14233
|
+
};
|
|
14234
|
+
goog.asserts.dom.assertIsElement = function(value) {
|
|
14235
|
+
goog.asserts.ENABLE_ASSERTS && !module$contents$goog$dom$element_isElement(value) && goog.asserts.fail("Argument is not an Element; got: " + module$contents$goog$asserts$dom_debugStringForType(value));
|
|
14236
|
+
return value;
|
|
14237
|
+
};
|
|
14238
|
+
goog.asserts.dom.assertIsHtmlElement = module$contents$goog$asserts$dom_assertIsHtmlElement;
|
|
14239
|
+
goog.asserts.dom.assertIsHtmlElementOfType = module$contents$goog$asserts$dom_assertIsHtmlElementOfType;
|
|
14240
|
+
goog.asserts.dom.assertIsHtmlAnchorElement = function(value) {
|
|
14241
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.A);
|
|
14242
|
+
};
|
|
14243
|
+
goog.asserts.dom.assertIsHtmlButtonElement = function(value) {
|
|
14244
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.BUTTON);
|
|
14245
|
+
};
|
|
14246
|
+
goog.asserts.dom.assertIsHtmlLinkElement = function(value) {
|
|
14247
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.LINK);
|
|
14248
|
+
};
|
|
14249
|
+
goog.asserts.dom.assertIsHtmlImageElement = function(value) {
|
|
14250
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.IMG);
|
|
14251
|
+
};
|
|
14252
|
+
goog.asserts.dom.assertIsHtmlAudioElement = function(value) {
|
|
14253
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.AUDIO);
|
|
14254
|
+
};
|
|
14255
|
+
goog.asserts.dom.assertIsHtmlVideoElement = function(value) {
|
|
14256
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.VIDEO);
|
|
14257
|
+
};
|
|
14258
|
+
goog.asserts.dom.assertIsHtmlInputElement = function(value) {
|
|
14259
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.INPUT);
|
|
14260
|
+
};
|
|
14261
|
+
goog.asserts.dom.assertIsHtmlTextAreaElement = function(value) {
|
|
14262
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.TEXTAREA);
|
|
14263
|
+
};
|
|
14264
|
+
goog.asserts.dom.assertIsHtmlCanvasElement = function(value) {
|
|
14265
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.CANVAS);
|
|
14266
|
+
};
|
|
14267
|
+
goog.asserts.dom.assertIsHtmlEmbedElement = function(value) {
|
|
14268
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.EMBED);
|
|
14269
|
+
};
|
|
14270
|
+
goog.asserts.dom.assertIsHtmlFormElement = function(value) {
|
|
14271
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FORM);
|
|
14272
|
+
};
|
|
14273
|
+
goog.asserts.dom.assertIsHtmlFrameElement = function(value) {
|
|
14274
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.FRAME);
|
|
14275
|
+
};
|
|
14276
|
+
goog.asserts.dom.assertIsHtmlIFrameElement = function(value) {
|
|
14277
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.IFRAME);
|
|
14278
|
+
};
|
|
14279
|
+
goog.asserts.dom.assertIsHtmlObjectElement = function(value) {
|
|
14280
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.OBJECT);
|
|
14281
|
+
};
|
|
14282
|
+
goog.asserts.dom.assertIsHtmlScriptElement = function(value) {
|
|
14283
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElementOfType(value, goog.dom.TagName.SCRIPT);
|
|
14284
|
+
};
|
|
14137
14285
|
goog.dom.BrowserFeature = {};
|
|
14138
14286
|
goog.dom.BrowserFeature.ASSUME_NO_OFFSCREEN_CANVAS = !1;
|
|
14139
14287
|
goog.dom.BrowserFeature.ASSUME_OFFSCREEN_CANVAS = !1;
|
|
@@ -14297,7 +14445,7 @@ goog.dom.getElement = function(element) {
|
|
|
14297
14445
|
};
|
|
14298
14446
|
goog.dom.getHTMLElement = function(id) {
|
|
14299
14447
|
var element = goog.dom.getElement(id);
|
|
14300
|
-
return element ? goog
|
|
14448
|
+
return element ? module$contents$goog$asserts$dom_assertIsHtmlElement(element) : null;
|
|
14301
14449
|
};
|
|
14302
14450
|
goog.dom.getElementHelper_ = function(doc, element) {
|
|
14303
14451
|
return "string" === typeof element ? doc.getElementById(element) : element;
|
|
@@ -14306,12 +14454,12 @@ goog.dom.getRequiredElement = function(id) {
|
|
|
14306
14454
|
return goog.dom.getRequiredElementHelper_(document, id);
|
|
14307
14455
|
};
|
|
14308
14456
|
goog.dom.getRequiredHTMLElement = function(id) {
|
|
14309
|
-
return goog
|
|
14457
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElement(goog.dom.getRequiredElementHelper_(document, id));
|
|
14310
14458
|
};
|
|
14311
14459
|
goog.dom.getRequiredElementHelper_ = function(doc, id) {
|
|
14312
14460
|
goog.asserts.assertString(id);
|
|
14313
14461
|
var element = goog.dom.getElementHelper_(doc, id);
|
|
14314
|
-
return
|
|
14462
|
+
return goog.asserts.assert(element, "No element found with id: " + id);
|
|
14315
14463
|
};
|
|
14316
14464
|
goog.dom.$ = goog.dom.getElement;
|
|
14317
14465
|
goog.dom.getElementsByTagName = function(tagName, opt_parent) {
|
|
@@ -14333,7 +14481,7 @@ goog.dom.getElementByClass = function(className, opt_el) {
|
|
|
14333
14481
|
};
|
|
14334
14482
|
goog.dom.getHTMLElementByClass = function(className, opt_parent) {
|
|
14335
14483
|
var element = goog.dom.getElementByClass(className, opt_parent);
|
|
14336
|
-
return element ? goog
|
|
14484
|
+
return element ? module$contents$goog$asserts$dom_assertIsHtmlElement(element) : null;
|
|
14337
14485
|
};
|
|
14338
14486
|
goog.dom.getRequiredElementByClass = function(className, opt_root) {
|
|
14339
14487
|
var retValue = goog.dom.getElementByClass(className, opt_root);
|
|
@@ -14341,7 +14489,8 @@ goog.dom.getRequiredElementByClass = function(className, opt_root) {
|
|
|
14341
14489
|
};
|
|
14342
14490
|
goog.dom.getRequiredHTMLElementByClass = function(className, opt_parent) {
|
|
14343
14491
|
var retValue = goog.dom.getElementByClass(className, opt_parent);
|
|
14344
|
-
|
|
14492
|
+
goog.asserts.assert(retValue, "No HTMLElement found with className: " + className);
|
|
14493
|
+
return module$contents$goog$asserts$dom_assertIsHtmlElement(retValue);
|
|
14345
14494
|
};
|
|
14346
14495
|
goog.dom.canUseQuerySelector_ = function(parent) {
|
|
14347
14496
|
return !(!parent.querySelectorAll || !parent.querySelector);
|
|
@@ -16948,7 +17097,7 @@ goog.debug.entryPointRegistry.register(function(transformer) {
|
|
|
16948
17097
|
ee.apiclient = {};
|
|
16949
17098
|
var module$contents$ee$apiclient_apiclient = {};
|
|
16950
17099
|
ee.apiclient.VERSION = module$exports$ee$apiVersion.V1ALPHA;
|
|
16951
|
-
ee.apiclient.API_CLIENT_VERSION = "0.1.
|
|
17100
|
+
ee.apiclient.API_CLIENT_VERSION = "0.1.330";
|
|
16952
17101
|
ee.apiclient.NULL_VALUE = module$exports$eeapiclient$domain_object.NULL_VALUE;
|
|
16953
17102
|
ee.apiclient.PromiseRequestService = module$exports$eeapiclient$promise_request_service.PromiseRequestService;
|
|
16954
17103
|
ee.apiclient.MakeRequestParams = module$contents$eeapiclient$request_params_MakeRequestParams;
|
|
@@ -17229,8 +17378,8 @@ module$contents$ee$apiclient_apiclient.send = function(path, params, callback, m
|
|
|
17229
17378
|
var profileHookAtCallTime = module$contents$ee$apiclient_apiclient.profileHook_, contentType = "application/x-www-form-urlencoded";
|
|
17230
17379
|
body && (contentType = "application/json", method && method.startsWith("multipart") && (contentType = method, method = "POST"));
|
|
17231
17380
|
method = method || "POST";
|
|
17232
|
-
var headers = {"Content-Type":contentType,}, version = "0.1.
|
|
17233
|
-
"0.1.
|
|
17381
|
+
var headers = {"Content-Type":contentType,}, version = "0.1.330";
|
|
17382
|
+
"0.1.330" === version && (version = "latest");
|
|
17234
17383
|
headers[module$contents$ee$apiclient_apiclient.API_CLIENT_VERSION_HEADER] = "ee-js/" + version;
|
|
17235
17384
|
var authToken = module$contents$ee$apiclient_apiclient.getAuthToken();
|
|
17236
17385
|
if (null != authToken) {
|
|
@@ -24695,28 +24844,28 @@ ee.data.Profiler.Format.prototype.toString = function() {
|
|
|
24695
24844
|
ee.data.Profiler.Format.TEXT = new ee.data.Profiler.Format("text");
|
|
24696
24845
|
ee.data.Profiler.Format.JSON = new ee.data.Profiler.Format("json");
|
|
24697
24846
|
(function() {
|
|
24698
|
-
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction.
|
|
24699
|
-
orderedParamLists = [["name"], ["name", "namedArgs"], ["name", "
|
|
24700
|
-
"collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "image opt_description
|
|
24701
|
-
"
|
|
24702
|
-
"
|
|
24703
|
-
["
|
|
24704
|
-
|
|
24705
|
-
|
|
24706
|
-
"
|
|
24707
|
-
"
|
|
24708
|
-
["
|
|
24709
|
-
"
|
|
24710
|
-
["
|
|
24711
|
-
[ee.ApiFunction.
|
|
24712
|
-
module$contents$ee$batch_Export.
|
|
24713
|
-
ee.ComputedObject.prototype.aside, ee.data.
|
|
24714
|
-
ee.data.
|
|
24715
|
-
ee.data.
|
|
24716
|
-
ee.Feature
|
|
24717
|
-
ee.Geometry.
|
|
24718
|
-
ee.Image
|
|
24719
|
-
ee.Serializer.
|
|
24847
|
+
var exportedFnInfo = {}, orderedFnNames = "ee.ApiFunction._call ee.ApiFunction._apply ee.ApiFunction.lookup ee.batch.Export.table.toFeatureView ee.batch.Export.image.toDrive ee.batch.Export.classifier.toAsset ee.batch.Export.image.toCloudStorage ee.batch.Export.table.toCloudStorage ee.batch.Export.video.toCloudStorage ee.batch.Export.image.toAsset ee.batch.Export.table.toAsset ee.batch.Export.videoMap.toCloudStorage ee.batch.Export.map.toCloudStorage ee.batch.Export.table.toDrive ee.batch.Export.video.toDrive ee.Collection.prototype.limit ee.Collection.prototype.iterate ee.Collection.prototype.sort ee.Collection.prototype.map ee.Collection.prototype.filter ee.Collection.prototype.filterMetadata ee.Collection.prototype.filterDate ee.Collection.prototype.filterBounds ee.ComputedObject.prototype.serialize ee.ComputedObject.prototype.evaluate ee.ComputedObject.prototype.getInfo ee.ComputedObject.prototype.aside ee.data.setWorkloadTag ee.data.createAssetHome ee.data.getThumbId ee.data.setDefaultWorkloadTag ee.data.authenticateViaOauth ee.data.createAsset ee.data.getVideoThumbId ee.data.getFilmstripThumbId ee.data.resetWorkloadTag ee.data.makeThumbUrl ee.data.updateAsset ee.data.authenticate ee.data.createFolder ee.data.setAssetAcl ee.data.renameAsset ee.data.authenticateViaPopup ee.data.getDownloadId ee.data.setAssetProperties ee.data.copyAsset ee.data.authenticateViaPrivateKey ee.data.makeDownloadUrl ee.data.getAssetRootQuota ee.data.getTableDownloadId ee.data.deleteAsset ee.data.getAssetAcl ee.data.makeTableDownloadUrl ee.data.getWorkloadTag ee.data.getInfo ee.data.newTaskId ee.data.getOperation ee.data.getTaskStatus ee.data.cancelTask ee.data.getMapId ee.data.startIngestion ee.data.getTileUrl ee.data.updateTask ee.data.getList ee.data.startProcessing ee.data.listAssets ee.data.getTaskList ee.data.getFeatureViewTilesKey ee.data.getTaskListWithLimit ee.data.listImages ee.data.startTableIngestion ee.data.listFeatures ee.data.listOperations ee.data.cancelOperation ee.data.listBuckets ee.data.getAsset ee.data.computeValue ee.data.getAssetRoots ee.Date ee.Deserializer.fromCloudApiJSON ee.Deserializer.fromJSON ee.Deserializer.decodeCloudApi ee.Deserializer.decode ee.Dictionary ee.initialize ee.apply ee.TILE_SIZE ee.reset ee.InitState ee.Algorithms ee.call ee.Element.prototype.set ee.Feature.prototype.getMap ee.Feature.prototype.getInfo ee.Feature ee.FeatureCollection.prototype.getInfo ee.FeatureCollection.prototype.getMap ee.FeatureCollection.prototype.getDownloadURL ee.FeatureCollection.prototype.select ee.FeatureCollection ee.Filter.gte ee.Filter.or ee.Filter.date ee.Filter ee.Filter.inList ee.Filter.prototype.not ee.Filter.metadata ee.Filter.eq ee.Filter.neq ee.Filter.gt ee.Filter.bounds ee.Filter.lte ee.Filter.lt ee.Filter.and ee.Function.prototype.apply ee.Function.prototype.call ee.Geometry.prototype.toGeoJSONString ee.Geometry.Point ee.Geometry.BBox ee.Geometry.LinearRing ee.Geometry ee.Geometry.MultiPoint ee.Geometry.prototype.serialize ee.Geometry.MultiPolygon ee.Geometry.MultiLineString ee.Geometry.Rectangle ee.Geometry.LineString ee.Geometry.Polygon ee.Geometry.prototype.toGeoJSON ee.Image.prototype.getInfo ee.Image.prototype.rename ee.Image.prototype.getThumbURL ee.Image.prototype.getThumbId ee.Image.prototype.clip ee.Image.prototype.select ee.Image.prototype.expression ee.Image.cat ee.Image ee.Image.prototype.getMap ee.Image.prototype.getDownloadURL ee.Image.rgb ee.ImageCollection.prototype.select ee.ImageCollection ee.ImageCollection.prototype.getFilmstripThumbURL ee.ImageCollection.prototype.getVideoThumbURL ee.ImageCollection.prototype.first ee.ImageCollection.prototype.getMap ee.ImageCollection.prototype.getInfo ee.List ee.Number ee.Serializer.toReadableJSON ee.Serializer.encodeCloudApi ee.Serializer.toReadableCloudApiJSON ee.Serializer.encodeCloudApiPretty ee.Serializer.toCloudApiJSON ee.Serializer.encode ee.Serializer.toJSON ee.String ee.Terrain".split(" "),
|
|
24848
|
+
orderedParamLists = [["name", "var_args"], ["name", "namedArgs"], ["name"], "collection opt_description opt_assetId opt_maxFeaturesPerTile opt_thinningStrategy opt_thinningRanking opt_zOrderRanking".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(" "), ["classifier", "opt_description", "opt_assetId"], "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(" "),
|
|
24849
|
+
"collection opt_description opt_bucket opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".split(" "), "collection opt_description opt_bucket opt_fileNamePrefix opt_framesPerSecond opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_maxFrames".split(" "), "image opt_description opt_assetId opt_pyramidingPolicy opt_dimensions opt_region opt_scale opt_crs opt_crsTransform opt_maxPixels opt_shardSize".split(" "), ["collection", "opt_description", "opt_assetId",
|
|
24850
|
+
"opt_maxVertices"], "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_bucket opt_fileFormat opt_path opt_writePublicTiles opt_scale opt_maxZoom opt_minZoom opt_region opt_skipEmptyTiles opt_mapsApiKey opt_bucketCorsUris".split(" "),
|
|
24851
|
+
"collection opt_description opt_folder opt_fileNamePrefix opt_fileFormat opt_selectors opt_maxVertices".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(" "), ["max", "opt_property", "opt_ascending"], ["algorithm", "opt_first"], ["property", "opt_ascending"], ["algorithm", "opt_dropNulls"], ["filter"], ["name", "operator", "value"], ["start", "opt_end"], ["geometry"],
|
|
24852
|
+
["legacy"], ["callback"], ["opt_callback"], ["func", "var_args"], ["tag"], ["requestedId", "opt_callback"], ["params", "opt_callback"], ["tag"], "clientId success opt_error opt_extraScopes opt_onImmediateFailed opt_suppressDefaultScopes".split(" "), ["value", "opt_path", "opt_force", "opt_properties", "opt_callback"], ["params", "opt_callback"], ["params", "opt_callback"], ["opt_resetDefault"], ["id"], ["assetId", "asset", "updateFields", "opt_callback"], ["clientId", "success", "opt_error", "opt_extraScopes",
|
|
24853
|
+
"opt_onImmediateFailed"], ["path", "opt_force", "opt_callback"], ["assetId", "aclUpdate", "opt_callback"], ["sourceId", "destinationId", "opt_callback"], ["opt_success", "opt_error"], ["params", "opt_callback"], ["assetId", "properties", "opt_callback"], ["sourceId", "destinationId", "opt_overwrite", "opt_callback"], ["privateKey", "opt_success", "opt_error", "opt_extraScopes", "opt_suppressDefaultScopes"], ["id"], ["rootId", "opt_callback"], ["params", "opt_callback"], ["assetId", "opt_callback"],
|
|
24854
|
+
["assetId", "opt_callback"], ["id"], [], ["id", "opt_callback"], ["opt_count", "opt_callback"], ["operationName", "opt_callback"], ["taskId", "opt_callback"], ["taskId", "opt_callback"], ["params", "opt_callback"], ["taskId", "request", "opt_callback"], ["id", "x", "y", "z"], ["taskId", "action", "opt_callback"], ["params", "opt_callback"], ["taskId", "params", "opt_callback"], ["parent", "opt_params", "opt_callback"], ["opt_callback"], ["params", "opt_callback"], ["opt_limit", "opt_callback"],
|
|
24855
|
+
["parent", "opt_params", "opt_callback"], ["taskId", "request", "opt_callback"], ["asset", "params", "opt_callback"], ["opt_limit", "opt_callback"], ["operationName", "opt_callback"], ["project", "opt_callback"], ["id", "opt_callback"], ["obj", "opt_callback"], ["opt_callback"], ["date", "opt_tz"], ["json"], ["json"], ["json"], ["json"], ["opt_dict"], "opt_baseurl opt_tileurl opt_successCallback opt_errorCallback opt_xsrfToken opt_project".split(" "), ["func", "namedArgs"], [], [], [], [], ["func",
|
|
24856
|
+
"var_args"], ["var_args"], ["opt_visParams", "opt_callback"], ["opt_callback"], ["geometry", "opt_properties"], ["opt_callback"], ["opt_visParams", "opt_callback"], ["opt_format", "opt_selectors", "opt_filename", "opt_callback"], ["propertySelectors", "opt_newProperties", "opt_retainGeometry"], ["args", "opt_column"], ["name", "value"], ["var_args"], ["start", "opt_end"], ["opt_filter"], ["opt_leftField", "opt_rightValue", "opt_rightField", "opt_leftValue"], [], ["name", "operator", "value"], ["name",
|
|
24857
|
+
"value"], ["name", "value"], ["name", "value"], ["geometry", "opt_errorMargin"], ["name", "value"], ["name", "value"], ["var_args"], ["namedArgs"], ["var_args"], [], ["coords", "opt_proj"], ["west", "south", "east", "north"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["geoJson", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj"], ["legacy"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"],
|
|
24858
|
+
["coords", "opt_proj", "opt_geodesic", "opt_evenOdd"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError"], ["coords", "opt_proj", "opt_geodesic", "opt_maxError", "opt_evenOdd"], [], ["opt_callback"], ["var_args"], ["params", "opt_callback"], ["params", "opt_callback"], ["geometry"], ["var_args"], ["expression", "opt_map"], ["var_args"], ["opt_args"], ["opt_visParams", "opt_callback"], ["params", "opt_callback"], ["r", "g", "b"], ["selectors", "opt_names"], ["args"], ["params", "opt_callback"],
|
|
24859
|
+
["params", "opt_callback"], [], ["opt_visParams", "opt_callback"], ["opt_callback"], ["list"], ["number"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj"], ["obj", "opt_isCompound"], ["obj"], ["string"], []];
|
|
24860
|
+
[ee.ApiFunction._call, ee.ApiFunction._apply, ee.ApiFunction.lookup, module$contents$ee$batch_Export.table.toFeatureView, module$contents$ee$batch_Export.image.toDrive, module$contents$ee$batch_Export.classifier.toAsset, module$contents$ee$batch_Export.image.toCloudStorage, module$contents$ee$batch_Export.table.toCloudStorage, module$contents$ee$batch_Export.video.toCloudStorage, module$contents$ee$batch_Export.image.toAsset, module$contents$ee$batch_Export.table.toAsset, module$contents$ee$batch_Export.videoMap.toCloudStorage,
|
|
24861
|
+
module$contents$ee$batch_Export.map.toCloudStorage, module$contents$ee$batch_Export.table.toDrive, module$contents$ee$batch_Export.video.toDrive, ee.Collection.prototype.limit, ee.Collection.prototype.iterate, ee.Collection.prototype.sort, ee.Collection.prototype.map, ee.Collection.prototype.filter, ee.Collection.prototype.filterMetadata, ee.Collection.prototype.filterDate, ee.Collection.prototype.filterBounds, ee.ComputedObject.prototype.serialize, ee.ComputedObject.prototype.evaluate, ee.ComputedObject.prototype.getInfo,
|
|
24862
|
+
ee.ComputedObject.prototype.aside, ee.data.setWorkloadTag, ee.data.createAssetHome, ee.data.getThumbId, ee.data.setDefaultWorkloadTag, ee.data.authenticateViaOauth, ee.data.createAsset, ee.data.getVideoThumbId, ee.data.getFilmstripThumbId, ee.data.resetWorkloadTag, ee.data.makeThumbUrl, ee.data.updateAsset, ee.data.authenticate, ee.data.createFolder, ee.data.setAssetAcl, ee.data.renameAsset, ee.data.authenticateViaPopup, ee.data.getDownloadId, ee.data.setAssetProperties, ee.data.copyAsset, ee.data.authenticateViaPrivateKey,
|
|
24863
|
+
ee.data.makeDownloadUrl, ee.data.getAssetRootQuota, ee.data.getTableDownloadId, ee.data.deleteAsset, ee.data.getAssetAcl, ee.data.makeTableDownloadUrl, ee.data.getWorkloadTag, ee.data.getInfo, ee.data.newTaskId, ee.data.getOperation, ee.data.getTaskStatus, ee.data.cancelTask, ee.data.getMapId, ee.data.startIngestion, ee.data.getTileUrl, ee.data.updateTask, ee.data.getList, ee.data.startProcessing, ee.data.listAssets, ee.data.getTaskList, ee.data.getFeatureViewTilesKey, ee.data.getTaskListWithLimit,
|
|
24864
|
+
ee.data.listImages, ee.data.startTableIngestion, ee.data.listFeatures, ee.data.listOperations, ee.data.cancelOperation, ee.data.listBuckets, ee.data.getAsset, ee.data.computeValue, ee.data.getAssetRoots, ee.Date, ee.Deserializer.fromCloudApiJSON, ee.Deserializer.fromJSON, ee.Deserializer.decodeCloudApi, ee.Deserializer.decode, ee.Dictionary, ee.initialize, ee.apply, ee.TILE_SIZE, ee.reset, ee.InitState, ee.Algorithms, ee.call, ee.Element.prototype.set, ee.Feature.prototype.getMap, ee.Feature.prototype.getInfo,
|
|
24865
|
+
ee.Feature, ee.FeatureCollection.prototype.getInfo, ee.FeatureCollection.prototype.getMap, ee.FeatureCollection.prototype.getDownloadURL, ee.FeatureCollection.prototype.select, ee.FeatureCollection, ee.Filter.gte, ee.Filter.or, ee.Filter.date, ee.Filter, ee.Filter.inList, ee.Filter.prototype.not, ee.Filter.metadata, ee.Filter.eq, ee.Filter.neq, ee.Filter.gt, ee.Filter.bounds, ee.Filter.lte, ee.Filter.lt, ee.Filter.and, ee.Function.prototype.apply, ee.Function.prototype.call, ee.Geometry.prototype.toGeoJSONString,
|
|
24866
|
+
ee.Geometry.Point, ee.Geometry.BBox, ee.Geometry.LinearRing, ee.Geometry, ee.Geometry.MultiPoint, ee.Geometry.prototype.serialize, ee.Geometry.MultiPolygon, ee.Geometry.MultiLineString, ee.Geometry.Rectangle, ee.Geometry.LineString, ee.Geometry.Polygon, ee.Geometry.prototype.toGeoJSON, ee.Image.prototype.getInfo, ee.Image.prototype.rename, ee.Image.prototype.getThumbURL, ee.Image.prototype.getThumbId, ee.Image.prototype.clip, ee.Image.prototype.select, ee.Image.prototype.expression, ee.Image.cat,
|
|
24867
|
+
ee.Image, ee.Image.prototype.getMap, ee.Image.prototype.getDownloadURL, ee.Image.rgb, ee.ImageCollection.prototype.select, ee.ImageCollection, ee.ImageCollection.prototype.getFilmstripThumbURL, ee.ImageCollection.prototype.getVideoThumbURL, ee.ImageCollection.prototype.first, ee.ImageCollection.prototype.getMap, ee.ImageCollection.prototype.getInfo, ee.List, ee.Number, ee.Serializer.toReadableJSON, ee.Serializer.encodeCloudApi, ee.Serializer.toReadableCloudApiJSON, ee.Serializer.encodeCloudApiPretty,
|
|
24868
|
+
ee.Serializer.toCloudApiJSON, ee.Serializer.encode, ee.Serializer.toJSON, ee.String, ee.Terrain].forEach(function(fn, i) {
|
|
24720
24869
|
fn && (exportedFnInfo[fn.toString()] = {name:orderedFnNames[i], paramNames:orderedParamLists[i]});
|
|
24721
24870
|
});
|
|
24722
24871
|
goog.global.EXPORTED_FN_INFO = exportedFnInfo;
|