Able to skip poles
Signed-off-by: merspieler <merspieler@airmail.cc>
This commit is contained in:
parent
6559e6d2d9
commit
3e4a5e6cee
1 changed files with 15 additions and 2 deletions
|
@ -184,8 +184,21 @@ else:
|
|||
start_time = time.time()
|
||||
|
||||
# Build poles first
|
||||
run_all("n-pole", -180, 80, 180, 90, 360, threads)
|
||||
run_all("s-pole", -180, -90, 180, -80, 360, threads)
|
||||
skip = False
|
||||
for area in exclude:
|
||||
if area == "n-pole":
|
||||
skip = True
|
||||
break
|
||||
if not skip:
|
||||
run_all("n-pole", -180, 80, 180, 90, 360, threads)
|
||||
|
||||
skip = False
|
||||
for area in exclude:
|
||||
if area == "s-pole":
|
||||
skip = True
|
||||
break
|
||||
if not skip:
|
||||
run_all("s-pole", -180, -90, 180, -80, 360, threads)
|
||||
|
||||
for i in range(-8, 8):
|
||||
i *= 10
|
||||
|
|
Loading…
Reference in a new issue