本文整理汇总了Python中PISM.timestamp方法的典型用法代码示例。如果您正苦于以下问题:Python PISM.timestamp方法的具体用法?Python PISM.timestamp怎么用?Python PISM.timestamp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PISM
的用法示例。
在下文中一共展示了PISM.timestamp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: writeProvenance
# 需要导入模块: import PISM [as 别名]
# 或者: from PISM import timestamp [as 别名]
def writeProvenance(outfile, message=None):
"""Saves the time and command line arguments (or the provided `message`) to
the ``history`` attribute of the :file:`.nc` file `outfile`"""
com = PISM.Context().com
ds = PISM.PIO(com, "netcdf3", outfile, PISM.PISM_READWRITE)
if message is None:
message = PISM.timestamp(com) + ": " + PISM.args_string()
ds.append_history(message)
ds.put_att_text("PISM_GLOBAL", "source", "PISM " + PISM.PISM_Revision)
ds.close()