Skip to content
Snippets Groups Projects
Commit d9edc173 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

chore: Run maskregion with 6 processors

parent 9b79e577
Branches
No related tags found
No related merge requests found
Pipeline #3759 failed
...@@ -201,7 +201,7 @@ if __name__ == "__main__": ...@@ -201,7 +201,7 @@ if __name__ == "__main__":
if mask_file_path is not None: if mask_file_path is not None:
logging.info(f"Mask file with {os.path.basename(mask_file_path)}") logging.info(f"Mask file with {os.path.basename(mask_file_path)}")
run_command( run_command(
command=f"cdo -maskregion,{mask_file_path} {unmasked_result_file} {final_result_file}", command=f"cdo -P 6 -maskregion,{mask_file_path} {unmasked_result_file} {final_result_file}",
) )
else: else:
os.rename(unmasked_result_file, final_result_file) os.rename(unmasked_result_file, final_result_file)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment