示例#1
0
文件: grid.py 项目: relaxar/mcidasv
def sumOverTime(field, makeTimes=0):
    """Take the sum 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 sum """
    return GridMath.sumOverTime(field, makeTimes)
示例#2
0
def sumOverTime(field,makeTimes=0):
    """Take the sum 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 sum """
    return GridMath.sumOverTime(field,makeTimes);