Merge branch 'femwind' of github.com:janmandel/wrf-fire-matlab into femwind
[wrf-fire-matlab.git] / detection / time2datenum.m
blobebfa23150b325612ac55d6cbf23631ca30dc3dfe
1 function d=time2datenum(t,red)
2 % convert time in seconds since sim start to datenum
3 % t     time in seconds since sim start
4 % red   structure with fields:
5 %       red.max_tign_g    a reference time as  seconds since sim start
6 %       red.time          the same time as datenum
7 % d     time as datenum
8 d= t/(24*3600) + red.start_datenum;
9 end