Changing setup.py option to ut=1 and new function to read VIIRS 375m data, uncompleted.
[JPSSData.git] / plot_results.m
blobc20f3f14a9574aa07c45907345c20bdbc283d7e2
1 load result.mat
3 tscale = 24*3600;
5 figure, mesh(fxlon,fxlat,U/tscale), title('Upper bound (U) from satellite fire detections'), xlabel('Longitude'), ylabel('Latitude'), zlabel('Time in days')
6 figure, mesh(fxlon,fxlat,L/tscale), title('Lower bound (L) from satellite fire detections'), xlabel('Longitude'), ylabel('Latitude'), zlabel('Time in days')
7 figure, mesh(fxlon,fxlat,T/tscale), title('Mask (T) surrounding the fire detections'), xlabel('Longitude'), ylabel('Latitude'), zlabel('Time in days')
9 Ln=L; Ln(T==(time_scale_num(2)-time_scale_num(1)))=0;
10 figure, mesh(fxlon,fxlat,Ln/tscale), hold on, mesh(fxlon,fxlat,U/tscale), title('Upper vs Lower bounds masked'), xlabel('Longitude'), ylabel('Latitude'), zlabel('Time in days')