Skip to content

Commit 9468d27

Browse files
committed
Update cli command help info for mosaic functionality
1 parent 621f773 commit 9468d27

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

planet/scripts/v1.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,12 +238,13 @@ def list_mosaics(pretty):
238238
@mosaics.command('search')
239239
@click.argument('name')
240240
@click.option('--rbox', type=BoundingBox(), help=(
241-
'Region to download as a comma-delimited string:'
241+
'Region to query as a comma-delimited string:'
242242
' lon_min,lat_min,lon_max,lat_max'
243243
))
244244
@limit_option(None)
245245
@pretty
246246
def search_mosaics(name, rbox, limit, pretty):
247+
'''Get quad IDs and information for a mosaic'''
247248
cl = clientv1()
248249
mosaic, = cl.get_mosaic_by_name(name).items_iter(1)
249250
response = call_and_wrap(cl.get_quads, mosaic, rbox)
@@ -275,7 +276,7 @@ def quad_info(name, quad, pretty):
275276
@click.argument('quad')
276277
@pretty
277278
def quad_contributions(name, quad, pretty):
278-
'''Get contributing scenes for a specific mosaic quad'''
279+
'''Get contributing scenes for a mosaic quad'''
279280
cl = clientv1()
280281
mosaic, = cl.get_mosaic_by_name(name).items_iter(1)
281282
quad = cl.get_quad_by_id(mosaic, quad).get()

0 commit comments

Comments
 (0)