@google/earthengine 0.1.404 → 0.1.406
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/build/ee_api_js.js +16 -16
- package/build/ee_api_js_debug.js +97 -98
- package/build/ee_api_js_npm.js +119 -120
- package/package.json +1 -1
- package/src/apiclient.js +1 -1
- package/src/data.js +13 -9
- package/src/geometry.js +1 -1
- package/build/browser.js +0 -26812
- package/build/main.js +0 -26813
package/package.json
CHANGED
package/src/apiclient.js
CHANGED
|
@@ -24,7 +24,7 @@ const {trustedResourceUrl} = goog.require('safevalues');
|
|
|
24
24
|
/** @namespace */
|
|
25
25
|
const apiclient = {};
|
|
26
26
|
|
|
27
|
-
const API_CLIENT_VERSION = '0.1.
|
|
27
|
+
const API_CLIENT_VERSION = '0.1.406';
|
|
28
28
|
|
|
29
29
|
exports.VERSION = apiVersion.VERSION;
|
|
30
30
|
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
|
package/src/data.js
CHANGED
|
@@ -795,13 +795,14 @@ ee.data.makeThumbUrl = function(id) {
|
|
|
795
795
|
* @param {!Object} params An object containing download options with the
|
|
796
796
|
* following possible values:
|
|
797
797
|
* <table>
|
|
798
|
-
|
|
798
|
+
* <tr>
|
|
799
799
|
* <td><code> name: </code> a base name to use when constructing
|
|
800
|
-
* filenames. Only applicable when format is "ZIPPED_GEO_TIFF"
|
|
801
|
-
* or filePerBand is true.
|
|
802
|
-
*
|
|
803
|
-
*
|
|
804
|
-
*
|
|
800
|
+
* filenames. Only applicable when format is "ZIPPED_GEO_TIFF"
|
|
801
|
+
* (default), "ZIPPED_GEO_TIFF_PER_BAND", or filePerBand is true.
|
|
802
|
+
* Defaults to the image id (or "download" for computed images) when
|
|
803
|
+
* format is "ZIPPED_GEO_TIFF", "ZIPPED_GEO_TIFF_PER_BAND", or
|
|
804
|
+
* filePerBand is true, otherwise a random character string is
|
|
805
|
+
* generated. Band names are appended when filePerBand is true.</td>
|
|
805
806
|
* </tr>
|
|
806
807
|
* <tr>
|
|
807
808
|
* <td><code> bands: </code> a description of the bands to download. Must
|
|
@@ -847,14 +848,17 @@ ee.data.makeThumbUrl = function(id) {
|
|
|
847
848
|
* <tr>
|
|
848
849
|
* <td><code> filePerBand: </code> whether to produce a separate GeoTIFF
|
|
849
850
|
* per band (boolean). Defaults to true. If false, a single GeoTIFF is
|
|
850
|
-
* produced and all band-level transformations will be ignored
|
|
851
|
+
* produced and all band-level transformations will be ignored. Note
|
|
852
|
+
* that this is ignored if the format is "ZIPPED_GEO_TIFF" or
|
|
853
|
+
* "ZIPPED_GEO_TIFF_PER_BAND".</td>
|
|
851
854
|
* </tr>
|
|
852
855
|
* <tr>
|
|
853
856
|
* <td><code> format: </code> the download format. One of:
|
|
854
857
|
* <ul>
|
|
855
|
-
* <li> "ZIPPED_GEO_TIFF" (GeoTIFF file
|
|
858
|
+
* <li> "ZIPPED_GEO_TIFF" (GeoTIFF file wrapped in a zip file,
|
|
856
859
|
* default)</li>
|
|
857
|
-
* <li> "
|
|
860
|
+
* <li> "ZIPPED_GEO_TIFF_PER_BAND" (Multiple GeoTIFF files wrapped
|
|
861
|
+
* in a zip file)</li>
|
|
858
862
|
* <li> "NPY" (NumPy binary format)</li>
|
|
859
863
|
* </ul>
|
|
860
864
|
* If "GEO_TIFF" or "NPY", filePerBand and all band-level
|
package/src/geometry.js
CHANGED
|
@@ -320,7 +320,7 @@ goog.inherits(ee.Geometry.Rectangle, ee.Geometry);
|
|
|
320
320
|
/**
|
|
321
321
|
* Constructs a rectangle whose edges are lines of latitude and longitude.
|
|
322
322
|
*
|
|
323
|
-
* The result is a planar
|
|
323
|
+
* The result is a planar rectangle in EPSG:4326.
|
|
324
324
|
*
|
|
325
325
|
* If (east - west) ≥ 360 then the longitude range will be normalized to -180 to
|
|
326
326
|
* +180; otherwise they will be treated as designating points on a circle (e.g.
|