Removed --orthophoto-bigtiff

Former-commit-id: e2d7b8269e
pull/1161/head
Piero Toffanin 2019-09-15 15:59:42 -04:00
rodzic a41efc5549
commit c06f0b93e5
2 zmienionych plików z 1 dodań i 11 usunięć

Wyświetl plik

@ -498,16 +498,6 @@ def config():
help='Set the compression to use. Note that this could '
'break gdal_translate if you don\'t know what you '
'are doing. Options: %(choices)s.\nDefault: %(default)s')
parser.add_argument('--orthophoto-bigtiff',
type=str,
choices=['YES', 'NO','IF_NEEDED','IF_SAFER'],
default='IF_SAFER',
help='Control whether the created orthophoto is a BigTIFF or '
'classic TIFF. BigTIFF is a variant for files larger than '
'4GiB of data. Options are %(choices)s. See GDAL specs: '
'https://www.gdal.org/frmt_gtiff.html for more info. '
'\nDefault: %(default)s')
parser.add_argument('--orthophoto-cutline',
action='store_true',

Wyświetl plik

@ -6,7 +6,7 @@ def get_orthophoto_vars(args):
'TILED': 'NO' if args.orthophoto_no_tiled else 'YES',
'COMPRESS': args.orthophoto_compression,
'PREDICTOR': '2' if args.orthophoto_compression in ['LZW', 'DEFLATE'] else '1',
'BIGTIFF': args.orthophoto_bigtiff,
'BIGTIFF': 'IF_SAFER',
'BLOCKXSIZE': 512,
'BLOCKYSIZE': 512,
'NUM_THREADS': args.max_concurrency