Skip to content

Commit

Permalink
v0.1.275
Browse files Browse the repository at this point in the history
  • Loading branch information
bengalin committed Jul 29, 2021
1 parent 2f2e562 commit 67371ce
Show file tree
Hide file tree
Showing 10 changed files with 718 additions and 627 deletions.
12 changes: 12 additions & 0 deletions javascript/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -199,3 +199,15 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

====================================================================================
The following applies to MochiKit, embedded in Closure in compiled JavaScript files.
====================================================================================

Copyright (c) 2005 Bob Ippolito. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1,132 changes: 568 additions & 564 deletions javascript/build/ee_api_js.js

Large diffs are not rendered by default.

78 changes: 58 additions & 20 deletions javascript/build/ee_api_js_debug.js

Large diffs are not rendered by default.

111 changes: 75 additions & 36 deletions javascript/build/ee_api_js_npm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/earthengine",
"version": "0.1.274",
"version": "0.1.275",
"description": "JavaScript client for Google Earth Engine API.",
"author": "Google LLC",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/apiclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const {PromiseRequestService} = goog.require('eeapiclient.promise_request_servic
const apiclient = {};


const API_CLIENT_VERSION = '0.1.274';
const API_CLIENT_VERSION = '0.1.275';

exports.VERSION = apiVersion.VERSION;
exports.API_CLIENT_VERSION = API_CLIENT_VERSION;
Expand Down
1 change: 1 addition & 0 deletions javascript/src/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,7 @@ ee.data.makeMapId_ = function(mapid, token, opt_urlFormat = '') {
return {mapid, token, formatTileUrl, urlFormat};
};


/**
* Sends a request to compute a value.
* @param {*} obj
Expand Down
3 changes: 0 additions & 3 deletions javascript/src/layers/abstracttilesource.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const Disposable = goog.require('goog.Disposable');

/**
* An abstract class for a layer tile source.
* @package
* @ignore
* @unrestricted
*/
Expand All @@ -18,13 +17,11 @@ const AbstractTileSource = class extends Disposable {
* Asynchronously loads the tile's source data.
* @param {!AbstractTile} tile The tile to load.
* @param {number=} opt_priority The priority of the tile. May be ignored.
* @package
*/
AbstractTileSource.prototype.loadTile = goog.abstractMethod;

/**
* @return {string} A unique ID for this tile source.
* @package
*/
AbstractTileSource.prototype.getUniqueId = goog.abstractMethod;

Expand Down
2 changes: 1 addition & 1 deletion python/ee/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""The EE Python library."""

__version__ = '0.1.274'
__version__ = '0.1.275'

# Using lowercase function naming to match the JavaScript names.
# pylint: disable=g-bad-name
Expand Down
2 changes: 1 addition & 1 deletion python/ee/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(self):
_PROFILE_RESPONSE_HEADER_LOWERCASE = 'x-earth-engine-computation-profile'

# The HTTP header through which profiling is requested when using the Cloud API.
_PROFILE_REQUEST_HEADER = 'X-Earth-Engine-Computation-Profile'
_PROFILE_REQUEST_HEADER = 'X-Earth-Engine-Computation-Profiling'

# The HTTP header through which a user project override is provided.
_USER_PROJECT_OVERRIDE_HEADER = 'X-Goog-User-Project'
Expand Down

0 comments on commit 67371ce

Please sign in to comment.