Skip to content

Commit 91b8e93

Browse files
committed
setup.py and readme up
1 parent 13b39cc commit 91b8e93

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ docs/_build/
3636
.vscode/
3737

3838
ee_extra/JavaScript/wip.py
39+
40+
diagram/

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ wait no more for it!
331331
- **JS Code Editor**
332332

333333
``` javascript
334-
require('users/sofiaermida/landsat_smw_lst:modules/Landsat_LST.js')
334+
var mod = require('users/sofiaermida/landsat_smw_lst:modules/Landsat_LST.js')
335335

336336
var geom = ee.Geometry.Rectangle(-8.91, 40.0, -8.3, 40.4)
337337
var LST = mod.collection("L8", "2018-05-15", "2018-05-31", geom, true)
@@ -360,14 +360,13 @@ print(LST)
360360
library(rgee)
361361
library(rgeeExtra)
362362

363-
364363
ee_Initialize()
365364

366-
module = 'users/sofiaermida/landsat_smw_lst:modules/Landsat_LST.js'
367-
mod = ee.require(module)
365+
lsmod <- 'users/sofiaermida/landsat_smw_lst:modules/Landsat_LST.js'
366+
mod <- module(lsmod)
368367

369-
geom = ee$Geometry$Rectangle(-8.91, 40.0, -8.3, 40.4)
370-
LST = mod.collection("L8", "2018-05-15", "2018-05-31", geom, TRUE)
368+
geom <- ee$Geometry$Rectangle(-8.91, 40.0, -8.3, 40.4)
369+
LST <- mod$collection("L8", "2018-05-15", "2018-05-31", geom, TRUE)
371370
print(LST)
372371
```
373372

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def read(filename):
1717
version="0.0.7",
1818
url="https://github.com/r-earthengine/ee_extra",
1919
license="Apache 2.0",
20-
author="Cesar Aybar and David Montero Loaiza",
20+
author="Cesar Aybar, David Montero Loaiza and Aaron Zuspan",
2121
author_email="[email protected]",
2222
description="A ninja Python package behind rgee, rgeeExtra and eemont.",
2323
long_description=read("README.md"),

0 commit comments

Comments
 (0)