Commit ddf1559dd6f4018dc52f9e3a76e909b586f889ec
1 parent
6db456c5
Exists in
master
change the example line so that it points to an existing product
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
README.md
... | ... | @@ -10,22 +10,22 @@ This routine may be used in two ways : |
10 | 10 | |
11 | 11 | - by providing the WRS-2 coordinates of the LANDSAT scene, for instance, (198,030) for Toulouse. And, as LANDSAT passes every 16 days, you also have to provide with the -d option, the exact value of a LANDSAT overpass. Example: |
12 | 12 | |
13 | -` python download_landsat_scene.py -o scene -t LC8 -a 2013 -d 113 -f 365 -s 199030 -u usgs.txt` | |
13 | +` download_landsat_scene.py -o scene -a 2013 -d 106 -f 365 -s 181025 -u ../usgs.txt -p ../proxy.txt --output /mnt/data/LANDSAT8/N0/` | |
14 | 14 | |
15 | 15 | - by providing a list of products to download, as in the example below: |
16 | 16 | |
17 | -` python download_landsat_scene.py -o liste -l list2_landsat8.txt -u usgs.txt` | |
17 | +` python download_landsat_scene.py -o liste -l list2_landsat8.txt -u usgs.txt --output /mnt/data/LANDSAT8/N0/` | |
18 | 18 | |
19 | 19 | with a file list2_landsat8.txt as provide below (the landsat references must exist in the earthexplorer catalog) : |
20 | 20 | |
21 | - ` Tunisie LC81910352013160LGN00` | |
21 | +` Tunisie LC81910352013160LGN00` | |
22 | 22 | |
23 | - ` Tunisie LC81910362013160LGN00` | |
23 | +` Tunisie LC81910362013160LGN00` | |
24 | 24 | |
25 | 25 | The usgs.txt must contain your username and password on the same line separated by a blank. |
26 | 26 | |
27 | -The files will be downloaded to /tmp/Landsat, unless you change the default folder with --output option | |
27 | +If you do not use the --ouput option, the files will be downloaded to /tmp/Landsat (provided it exists) | |
28 | 28 | |
29 | 29 | To see all the options : |
30 | - ` download_landsat_scene.py -h` | |
30 | +` download_landsat_scene.py -h` | |
31 | 31 | ... | ... |