gitinore *.txt files
[wrf-fire-matlab.git] / cycling / plot_contours.m
blob3cd6302905d434a96450229e396b4fd7cbfb3c58
1 function outplut = plot_contours(w)
4 %contourf(w.fxlong,w.fxlat,w.tign_g)
6 % find reduced domain
7 red = subset_domain(w)
9 prefix = '../TIFs/';
10 p=sort_rsac_files(prefix);
11 time_bounds=subset_detection_time(red,p);
12 %fig = 1;
13 %change to compute g
14 %g = load_subset_detections(prefix,p,red,time_bounds);
15 load('g.mat');
17 num_contours = 6;
18 contour_lines = linspace(red.start_time,red.end_time,num_contours);
20 contourf(red.fxlong,red.fxlat,red.tign_g,contour_lines)
21 colorbar
22 xlabel('Lon (degrees)')
23 ylabel('Lat (degrees)')
26 end