Merge branch 'fixf'
[wrf-fire-matlab.git] / cycling / detection_list.m
blob923c2bf3a9a204e4dddbcc75f2abdfba395e4bb7
1 function d = detection_list(g,r)
2 %d = detection_list(g)
3 %inputs :
4 %   g       struct, satellite data from subset_detections
5 %   r       struct, fire data from subset_domain
6 %output ;
7 %   d       nx2  array with lon,lat of detections
10 min_con = 7;
11 mask = zeros(size(g(1).fxdata));
12 for i = 1:length(g)
13     mask = mask + double(g(i).fxdata >= min_con);
14 end
16 % plot the fires
17 %figure,mesh(r.fxlong,r.fxlat,mask)
19 d = mask;
20 end
21