Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit b5ab80a

Browse files
committed
Readme update
1 parent 9b0eda3 commit b5ab80a

File tree

1 file changed

+19
-8
lines changed

1 file changed

+19
-8
lines changed

Readme.md

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,21 +57,32 @@ No setup.py is available at the moment. Please download the pyEOM folder and set
5757
Available datasets
5858
------------------
5959
* MODIS Surface Reflectance: MOD09A1, MOD09Q1
60-
* MODIS Snow: MOD10A1, MYD10A1, MOD10A2, MYD10A2, MOD10C1, MYD10C1, MOD10C2, MYD10C2, MOD10CM, MYD10CM
60+
* MODIS Snow Cover: MOD10A1, MYD10A1, MOD10A2, MYD10A2, MOD10C1, MYD10C1, MOD10C2, MYD10C2, MOD10CM, MYD10CM
6161
* MODIS Land Surface Temperature: MOD11A1, MYD11A1, MOD11A2, MYD11A2, MOD11B1, MYD11B1, MOD11C1, MYD11C1, MOD11C2, MYD11C2, MOD11C3, MYD11C3
6262
* MODIS Vegetation Indices: MOD13A1, MYD13A1, MOD13A2, MYD13A2, MOD13A3, MYD13A3, MOD13C1, MYD13C1, MOD13C2, MYD13C2, MOD13Q1, MYD13Q1
63-
* MODIS MCD15A2, MCD15A3
64-
* MODIS MCD43A3
65-
* MODIS MOD44B
66-
* MODIS MCD45A1
63+
* MODIS Leaf Area Index - FPAR: MCD15A2, MCD15A3
64+
* MODIS Albedo: MCD43A3
65+
* MODIS Vegetation Continuous Fields: MOD44B
66+
* MODIS Thermal Anomalies & Fire: MCD45A1
6767

6868
Further information to the datasets can be found at the following sites:
69-
* http://lpdaac.usgs.gov/products/modis_products_table
70-
* NSIDC
69+
* NASA LPDAAC: http://lpdaac.usgs.gov/products/modis_products_table
70+
* NSIDC DAAC: http://nsidc.org/data/modis/data_summaries/index.html
71+
72+
Several MODIS and especially Landsat datasets are also available using Google Earth Engine.
7173

7274
Google Earth Engine
7375
-------------------
7476

7577
If you have an account for the Google Earth Engine (https://earthengine.google.org), you can also use the Python bindings to have access to specific MODIS products and Landsat datasets.
7678

77-
Please set the variables MY_SERVICE_ACCOUNT and MY_PRIVATE_KEY_FILE in gee_init.py to your service account username and the private key file.
79+
Please set the variables MY_SERVICE_ACCOUNT and MY_PRIVATE_KEY_FILE in gee_init.py to your service account username and the private key file.
80+
81+
*Examples:*
82+
from pyEOM.datasets import Landsat
83+
source = Landsat.GEE({'dataset': 'LANDSAT/LC8_L1T', 'geom': 'POINT(11 51)'})
84+
output = source.ingest()
85+
86+
from pyEOM.datasets import MODIS
87+
source = MODIS.GEE({'dataset': 'MODIS/MOD13Q1', 'geom': 'POINT(11 51)'})
88+
output = source.ingest()

0 commit comments

Comments
 (0)