示例#1
0
文件: grid.py 项目: relaxar/mcidasv
def maxOverTime(field, makeTimes=0):
    """Take the max of the values in each time step
    If makeTimes is true (1) then we return a field mapping all of the times
    to the average. Else we just return the max """
    return GridMath.maxOverTime(field, makeTimes)
示例#2
0
def maxOverTime(field,makeTimes=0):
    """Take the max of the values in each time step
    If makeTimes is true (1) then we return a field mapping all of the times
    to the average. Else we just return the max """
    return GridMath.maxOverTime(field,makeTimes);