|
@@ -19,7 +19,8 @@ def generate_tiles(*args, **kwargs):
|
|
|
|
|
|
@shared_task
|
|
@shared_task
|
|
def pto_gen(output_pto, images):
|
|
def pto_gen(output_pto, images):
|
|
- subprocess.call(["pto_gen", "-o", output_pto] + images)
|
|
|
|
|
|
+ # Projection type 1 is cylindrical
|
|
|
|
+ subprocess.call(["pto_gen", "-p", "1", "-o", output_pto] + images)
|
|
return output_pto
|
|
return output_pto
|
|
|
|
|
|
@shared_task
|
|
@shared_task
|