Skip to content

Commit

Permalink
Merge pull request #180 from bradh/develop
Browse files Browse the repository at this point in the history
Minor spelling fixes.
  • Loading branch information
Scisco committed Apr 15, 2016
2 parents 48cc76d + 0422e3a commit 87873fc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions docs/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Commands
--pansharpen Whether to also pansharpen the processed image.
Pansharpening requires larger memory

--ndvi Calculates NDVI and produce a RGB GTiff with seperate colorbar.
--ndvi Calculates NDVI and produce a RGB GTiff with separate colorbar.

--ndvigrey Calculates NDVI and produce a greyscale GTiff.

Expand Down Expand Up @@ -100,7 +100,7 @@ Commands
--pansharpen Whether to also pansharpen the process image.
Pansharpening requires larger memory

--ndvi Calculates NDVI and produce a RGB GTiff with seperate colorbar.
--ndvi Calculates NDVI and produce a RGB GTiff with separate colorbar.

--ndvigrey Calculates NDVI and produce a greyscale GTiff.

Expand Down Expand Up @@ -129,7 +129,7 @@ Commands
positional arguments:
{search,download,process}
Landsat Utility
search Search Landsat metdata
search Search Landsat metadata
download Download images from Google Storage
process Process Landsat imagery

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Upgrade

$: pip install -U landsat-util

If you have installed previous version of landsat using brew, first run::
If you have installed a previous version of landsat using brew, first run::

$: brew uninstall landsat-util

Expand Down
4 changes: 2 additions & 2 deletions docs/notes.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Important Notes
===============

- All downloaded and processed images are stored at your home directory in landsat forlder: ``~/landsat``
- All downloaded and processed images are stored at your home directory in landsat folder: ``~/landsat``

- The image thumbnail web address that is included in the results can be used to make sure that clouds are not obscuring the subject of interest. Run the search again if you need to narrow down your result and then start downloading images. Each image is usually more than 700mb and it might takes a very long time if there are too many images to download
- The image thumbnail web address that is included in the results can be used to make sure that clouds are not obscuring the subject of interest. Run the search again if you need to narrow down your result and then start downloading images. Each image is usually more than 700mb and it might take a very long time if there are too many images to download

- Image processing is a very heavy and resource consuming task. Each process takes about 5-10 mins. We recommend that you run the processes in smaller badges. Pansharpening, while increasing image resolution 2x, substantially increases processing time.

Expand Down
6 changes: 3 additions & 3 deletions docs/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Search returns information about all landsat tiles that match your criteria. Th
Search for landsat tiles in a given geographical region, using any of the following:

- **Paths and rows**: If you know the paths and rows you want to search for.
- **Latidue and Longitude**: If you need the latitude and longitude of the point you want to search for.
- **Latitude and Longitude**: If you need the latitude and longitude of the point you want to search for.

Additionally filter your search using the following parameters:

Expand All @@ -38,7 +38,7 @@ Search by latitude and longitude::

Search by latitude and longitude with pure json output (you should install geojsonio-cli first)::

$: landsat search --lat 38.9004204 --lon -77.0237117 --geojson | geojosnio
$: landsat search --lat 38.9004204 --lon -77.0237117 --geojson | geojsonio

Show search output on geojsonio::

Expand Down Expand Up @@ -88,7 +88,7 @@ Process *and* pansharpen a downloaded image::

$: landsat process path/to/LC80090452014008LGN00.tar.bz --pansharpen

Clip an image before processing (The coordinates shows below show Prague)::
Clip an image before processing (The coordinates below show Prague)::

$: landsat process path/to/LC81920252015157LGN00.tar.bz --pansharpen --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,50.2682767372753

Expand Down
6 changes: 3 additions & 3 deletions landsat/landsat.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
--pansharpen Whether to also pansharpen the processed image.
Pansharpening requires larger memory
--ndvi Calculates NDVI and produce a RGB GTiff with seperate colorbar.
--ndvi Calculates NDVI and produce a RGB GTiff with separate colorbar.
--ndvigrey Calculates NDVI and produce a greyscale GTiff.
Expand Down Expand Up @@ -135,7 +135,7 @@
--pansharpen Whether to also pansharpen the process image.
Pansharpening requires larger memory
--ndvi Calculates NDVI and produce a RGB GTiff with seperate colorbar.
--ndvi Calculates NDVI and produce a RGB GTiff with separate colorbar.
--ndvigrey Calculates NDVI and produce a greyscale GTiff.
Expand Down Expand Up @@ -182,7 +182,7 @@ def args_options():

# Search Logic
parser_search = subparsers.add_parser('search',
help='Search Landsat metdata')
help='Search Landsat metadata')

# Global search options
parser_search.add_argument('-l', '--limit', default=10, type=int,
Expand Down

0 comments on commit 87873fc

Please sign in to comment.