我希望在我的脚本末尾创建一个.txt
文件,该文件将在每个进程运行时通知用户,它的主要功能是确定进程的每个步骤运行多长时间。为了空间的利益,我已经消除了脚本的不同步骤,它们只是gdal工具。提前谢谢。
import datetime
from datetime import datetime
sttime = datetime.datetime.now().strftime('(Time_Run = %Y-%d-%m_%H:%M:%S)')
def timeStamped (fname, fmt='{fname}_%Y-%m-%d-%H:%M:%S .txt'):
return datetime.datetime.now().strftime(fmt).format(fname=fname)
with open(timeStamped('Files_Used_In_Sigma_Test'),'w') as outf:
outf.write("###" + sttime + "####")
outf.write(" \n")
outf.write("#######################################")
outf.write(" \n")
outf.write("SIGMA TEST -- UTILIS ISRAEL LTD.")
outf.write(" \n")
outf.write("#######################################")
outf.write(" \n")
outf.write(" \n")
outf.write(src_dataset.fileName + sttime)
outf.write(" \n")
outf.write(srcVH.fileName + sttime)
outf.write(" \n")
outf.write(str(stDev) + sttime)
outf.write(" \n")
outf.close()