kopia lustrzana https://github.com/OpenDroneMap/WebODM
Fix var override
rodzic
44b2495291
commit
4897d4e52a
|
@ -311,7 +311,7 @@ class Tiles(TaskNestedView):
|
||||||
if hillshade == '' or hillshade == '0': hillshade = None
|
if hillshade == '' or hillshade == '0': hillshade = None
|
||||||
if tilesize == '' or tilesize is None: tilesize = 256
|
if tilesize == '' or tilesize is None: tilesize = 256
|
||||||
if bands == 'auto' and formula:
|
if bands == 'auto' and formula:
|
||||||
bands, _ = get_auto_bands(task.orthophoto_bands, formula)
|
bands, _discard_ = get_auto_bands(task.orthophoto_bands, formula)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
tilesize = int(tilesize)
|
tilesize = int(tilesize)
|
||||||
|
@ -561,7 +561,7 @@ class Export(TaskNestedView):
|
||||||
|
|
||||||
if formula and bands:
|
if formula and bands:
|
||||||
if bands == 'auto':
|
if bands == 'auto':
|
||||||
bands, _ = get_auto_bands(task.orthophoto_bands, formula)
|
bands, _discard_ = get_auto_bands(task.orthophoto_bands, formula)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
expr, _discard_ = lookup_formula(formula, bands)
|
expr, _discard_ = lookup_formula(formula, bands)
|
||||||
|
|
Ładowanie…
Reference in New Issue