@google/earthengine 0.1.404 → 0.1.405

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/earthengine",
3
- "version": "0.1.404",
3
+ "version": "0.1.405",
4
4
  "description": "JavaScript client for Google Earth Engine API.",
5
5
  "author": "Google LLC",
6
6
  "license": "Apache-2.0",
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.404';
27
+ const API_CLIENT_VERSION = '0.1.405';
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
- * <tr>
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" (default)
801
- * or filePerBand is true. Defaults to the image id (or "download" for
802
- * computed images) when format is "ZIPPED_GEO_TIFF" or filePerBand is
803
- * true, otherwise a random character string is generated. Band names
804
- * are appended when filePerBand is true.</td>
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.</td>
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(s) wrapped in a zip file,
858
+ * <li> "ZIPPED_GEO_TIFF" (GeoTIFF file wrapped in a zip file,
856
859
  * default)</li>
857
- * <li> "GEO_TIFF" (GeoTIFF file)</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