Skip to content

Commit 0b0050f

Browse files
author
Scisco
committed
Merge branch 'master' into develop
2 parents c36e927 + 288dd16 commit 0b0050f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/commands.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Commands
7070

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

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

@@ -106,7 +106,7 @@ Commands
106106

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

111111
-v, --verbose Show verbose output
112112

landsat/landsat.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
9393
--clip Clip the image with the bounding box provided. Values must be in WGS84 datum,
9494
and with longitude and latitude units of decimal degrees separated by comma.
95-
Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,
95+
Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,
9696
50.2682767372753
9797
9898
-u --upload Upload to S3 after the image processing completed
@@ -135,7 +135,7 @@
135135
136136
--clip Clip the image with the bounding box provided. Values must be in WGS84 datum,
137137
and with longitude and latitude units of decimal degrees separated by comma.
138-
Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,
138+
Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,
139139
50.2682767372753
140140
141141
-v, --verbose Show verbose output
@@ -222,7 +222,7 @@ def args_options():
222222
parser_download.add_argument('--clip', help='Clip the image with the bounding box provided. Values must be in ' +
223223
'WGS84 datum, and with longitude and latitude units of decimal degrees ' +
224224
'separated by comma.' +
225-
'Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,' +
225+
'Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,' +
226226
'50.2682767372753')
227227
parser_download.add_argument('-u', '--upload', action='store_true',
228228
help='Upload to S3 after the image processing completed')
@@ -249,7 +249,7 @@ def args_options():
249249
parser_process.add_argument('--clip', help='Clip the image with the bounding box provided. Values must be in ' +
250250
'WGS84 datum, and with longitude and latitude units of decimal degrees ' +
251251
'separated by comma.' +
252-
'Example: --clip -346.06658935546875,49.93531194616915,-345.4595947265625,' +
252+
'Example: --clip=-346.06658935546875,49.93531194616915,-345.4595947265625,' +
253253
'50.2682767372753')
254254
parser_process.add_argument('-b', '--bands', help='specify band combinations. Default is 432'
255255
'Example: --bands 321', default='432')

0 commit comments

Comments
 (0)