Skip to content

Commit

Permalink
max_workers
Browse files Browse the repository at this point in the history
  • Loading branch information
KeiTa4446 committed Jun 12, 2024
1 parent 3a98ae7 commit ef328d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dem_to_csmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ def convert_dem_to_csmap(self):
), # 曲率
)

process.process(max_workers=self.ui.spinBoxMaxWorkers.value())

# 入力・出力をUIで操作
input_path = self.ui.mQgsFileWidget_input.filePath()
output_path = self.ui.mQgsFileWidget_output.filePath()
Expand All @@ -66,6 +64,7 @@ def convert_dem_to_csmap(self):
output_path,
chunk_size=self.ui.spinBoxChunkSize.value(),
params=params,
max_workers=self.ui.spinBoxMaxWorkers.value(),
)
except Exception as e:
iface.messageBar().pushMessage(
Expand Down

0 comments on commit ef328d6

Please sign in to comment.