Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Scisco committed Feb 18, 2016
2 parents c36e927 + 288dd16 commit 0b0050f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Commands

--clip Clip the image with the bounding box provided. Values must be in WGS84 datum,
and with longitude and latitude units of decimal degrees separated by comma.
Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,50.2682767372753
Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,50.2682767372753

-u --upload Upload to S3 after the image processing completed

Expand Down Expand Up @@ -106,7 +106,7 @@ Commands

--clip Clip the image with the bounding box provided. Values must be in WGS84 datum,
and with longitude and latitude units of decimal degrees separated by comma.
Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,50.2682767372753
Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,50.2682767372753

-v, --verbose Show verbose output

Expand Down
8 changes: 4 additions & 4 deletions landsat/landsat.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
--clip Clip the image with the bounding box provided. Values must be in WGS84 datum,
and with longitude and latitude units of decimal degrees separated by comma.
Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,
Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,
50.2682767372753
-u --upload Upload to S3 after the image processing completed
Expand Down Expand Up @@ -135,7 +135,7 @@
--clip Clip the image with the bounding box provided. Values must be in WGS84 datum,
and with longitude and latitude units of decimal degrees separated by comma.
Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,
Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,
50.2682767372753
-v, --verbose Show verbose output
Expand Down Expand Up @@ -222,7 +222,7 @@ def args_options():
parser_download.add_argument('--clip', help='Clip the image with the bounding box provided. Values must be in ' +
'WGS84 datum, and with longitude and latitude units of decimal degrees ' +
'separated by comma.' +
'Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,' +
'Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,' +
'50.2682767372753')
parser_download.add_argument('-u', '--upload', action='store_true',
help='Upload to S3 after the image processing completed')
Expand All @@ -249,7 +249,7 @@ def args_options():
parser_process.add_argument('--clip', help='Clip the image with the bounding box provided. Values must be in ' +
'WGS84 datum, and with longitude and latitude units of decimal degrees ' +
'separated by comma.' +
'Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,' +
'Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,' +
'50.2682767372753')
parser_process.add_argument('-b', '--bands', help='specify band combinations. Default is 432'
'Example: --bands 321', default='432')
Expand Down

0 comments on commit 0b0050f

Please sign in to comment.