https://github.com/gee-community/example-scripts
Example scripts originally derived from Prof. Dana Tomlin's handouts for his course on Geospatial Software Design. Shared with his permission.
https://github.com/gee-community/example-scripts
earth-engine google-earth-engine javascript python
Last synced: 6 months ago
JSON representation
Example scripts originally derived from Prof. Dana Tomlin's handouts for his course on Geospatial Software Design. Shared with his permission.
- Host: GitHub
- URL: https://github.com/gee-community/example-scripts
- Owner: gee-community
- License: mit
- Created: 2017-10-03T18:57:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-22T17:29:59.000Z (over 7 years ago)
- Last Synced: 2025-04-30T13:17:30.297Z (6 months ago)
- Topics: earth-engine, google-earth-engine, javascript, python
- Size: 76.7 MB
- Stars: 89
- Watchers: 18
- Forks: 47
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# example-scripts
- Example scripts originally derived from [Prof. Dana Tomlin](https://www.design.upenn.edu/landscape-architecture/people/c-dana-tomlin)'s handouts for his course on [Geospatial Software Design](http://environment.yale.edu/courses/2017-2018/detail/754/). Shared with his permission with the intention that the examples will be maintained by the Earth Engine user community.
- We aim to have examples in both JavaScript and Python, but will begin with adding Javascript examples initially.
- The layout of the pages will be as follows:# Name of Method
- Description of what it does.## Syntax
#### JavaScript
```
A = method(B)
```Description of syntax and arguments.
#### Python
```
A = method(B)
```Description of syntax and arguments.
## Examples
#### JavaScript
```javascript
var example = some('Javascript')
```#### Python
```python
example = some('Python')
```