-
Notifications
You must be signed in to change notification settings - Fork 978
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PiperOrigin-RevId: 565718645
- Loading branch information
Showing
41 changed files
with
409 additions
and
261 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ | |
* | ||
* This class manages the algorithm dictionary and creates JavaScript functions | ||
* to apply each EE algorithm. | ||
* | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.ApiFunction'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/** | ||
* @fileoverview Base class for ImageCollection and FeatureCollection. | ||
* This class is never intended to be instantiated by the user. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Collection'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
/** | ||
* @fileoverview A representation of a computed earthengine object. | ||
* | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.ComputedObject'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview An object representing a custom EE Function. | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.CustomFunction'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/** | ||
* @fileoverview Singleton for all of the library's communication | ||
* with the Earth Engine API. | ||
* @author [email protected] (Noel Gorelick) | ||
* @suppress {missingRequire} TODO(user): this shouldn't be needed | ||
* @suppress {useOfGoogProvide} TODO(user): Convert to goog.module. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
* | ||
* We don't autogenerate this class because we want the constructor | ||
* to promote by pushing things through the server-side Date() function. | ||
* | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Date'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
/** | ||
* @fileoverview A deserializer that decodes EE object trees from JSON DAGs. | ||
* | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.Deserializer'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview A wrapper for dicts. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Dictionary'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview Initialization and convenience functions for the EE library. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/** | ||
* @fileoverview Base class for Image, Feature and Collection. | ||
* This class is never intended to be instantiated by the user. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Element'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview An interface implemented by serializable objects. | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.Encodable'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview An object representing EE Features. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Feature'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview Representation of an Earth Engine FeatureCollection. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.FeatureCollection'); | ||
|
@@ -70,8 +69,8 @@ ee.FeatureCollection = function(args, opt_column) { | |
actualArgs['geometryColumn'] = opt_column; | ||
} | ||
ee.FeatureCollection.base( | ||
this, | ||
'constructor', | ||
this, | ||
'constructor', | ||
new ee.ApiFunction('Collection.loadTable'), actualArgs); | ||
} else if (Array.isArray(args)) { | ||
// A list of features. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview Collection filters. | ||
* @author [email protected] (Noel Gorelick) | ||
* | ||
* new Filter('time', low, high) | ||
* .bounds(ring) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview A base class for EE Functions. | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.Function'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview An object representing EE Geometries. | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.Geometry'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* @fileoverview A representation of an earth engine image. | ||
* See: https://sites.google.com/site/earthengineapidocs for more details. | ||
* @author [email protected] (Noel Gorelick) | ||
* See: https://developers.google.com/earth-engine/apidocs/ee-image for more | ||
* details. | ||
*/ | ||
|
||
goog.provide('ee.Image'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview Javascript representation for an Earth Engine ImageCollection. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.ImageCollection'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview A wrapper for Lists. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.List'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview A wrapper for numbers. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Number'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
/** | ||
* @fileoverview A serializer that encodes EE object trees as JSON DAGs. | ||
* | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.Serializer'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview A wrapper for strings. | ||
* @author [email protected] (Noel Gorelick) | ||
*/ | ||
|
||
goog.provide('ee.String'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
/** | ||
* @fileoverview A class to generate the ee.Terrain namespace. | ||
* | ||
* @author [email protected] (Noel Gorelick) | ||
* @suppress {useOfGoogProvide} | ||
*/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
/** | ||
* @fileoverview A set of utilities to work with EE types. | ||
* @author [email protected] (Max Shawabkeh) | ||
*/ | ||
|
||
goog.provide('ee.Types'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.