Skip to content

Commit

Permalink
Use table for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Feb 26, 2021
1 parent 480d896 commit f1a8bc0
Showing 1 changed file with 51 additions and 8 deletions.
Expand Up @@ -3,14 +3,57 @@ <h2>DESCRIPTION</h2>
<em>i.landsat.download</em> allows to search and download Landsat TM, ETM and OLI data
from USGS <a href="https://earthexplorer.usgs.gov/">EarthExplorer</a> through
the <a href="https://github.com/yannforget/landsatxplore">landsatxplore</a>
Python library. Datasets currently supported include: Landsat 5 TM ("landsat_tm_c1"),
Landsat 7 ETM ("landsat_etm_c1") and Landsat 8 OLI ("landsat_8_c1") from
<a href="https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-1?qt-science_support_page_related_con=1#qt-science_support_page_related_con">Collection 1</a>.
In addition, the following datasets are supported from
<a href="https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2?qt-science_support_page_related_con=2#qt-science_support_page_related_con">Collection 2</a>
as well: Landsat 5 TM Level1 ("landsat_tm_c2_l1"),
Landsat 7 ETM Level1 ("landsat_etm_c2_l1"), Landsat 7 ETM Level2 ("landsat_etm_c2_l2"),
Landsat 8 OLI Level1 ("landsat_ot_c2_l1") and Landsat 8 OLI Level2 ("landsat_ot_c2_l2")
Python library. Datasets currently supported include
<a href="https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-1?qt-science_support_page_related_con=1#qt-science_support_page_related_con">Collection 1</a>
and
<a href="https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2?qt-science_support_page_related_con=2#qt-science_support_page_related_con">Collection 2</a>.

<table>
<thead>
<tr>
<th>Dataset Name</th>
<th>Dataset ID</th>
</tr>
</thead>
<tbody>
<tr>
<td>Landsat 5 TM Collection 1 Level 1</td>
<td><code>landsat_tm_c1</code></td>
</tr>
<tr>
<td>Landsat 5 TM Collection 2 Level 1</td>
<td><code>landsat_tm_c2_l1</code></td>
</tr>
<tr>
<td>Landsat 5 TM Collection 2 Level 2</td>
<td><code>landsat_tm_c2_l2</code></td>
</tr>
<tr>
<td>Landsat 7 ETM+ Collection 1 Level 1</td>
<td><code>landsat_etm_c1</code></td>
</tr>
<tr>
<td>Landsat 7 ETM+ Collection 2 Level 1</td>
<td><code>landsat_etm_c2_l1</code></td>
</tr>
<tr>
<td>Landsat 7 ETM+ Collection 2 Level 2</td>
<td><code>landsat_etm_c2_l2</code></td>
</tr>
<tr>
<td>Landsat 8 Collection 1 Level 1</td>
<td><code>landsat_8_c1</code></td>
</tr>
<tr>
<td>Landsat 8 Collection 2 Level 1</td>
<td><code>landsat_ot_c2_l1</code></td>
</tr>
<tr>
<td>Landsat 8 Collection 2 Level 2</td>
<td><code>landsat_ot_c2_l2</code></td>
</tr>
</tbody>
</table>

<p>
To connect to EarthExplorer both a <em>user</em> name and <em>password</em>
Expand Down

0 comments on commit f1a8bc0

Please sign in to comment.