1 function plot_granules(granules)
3 % plot_granules(granules)
6 % Plot all the granules in a matlab strucure. The matlab structure has to
7 % contain a layer of satellite product and date and the lon, lat and fire
8 % information for each satellite product and date.
10 % Developed in Matlab 9.2.0.556344 (R2017a) on MACINTOSH.
11 % Angel Farguell (angel.farguell@gmail.com), 2018-08-24
12 %-------------------------------------------------------------------------
14 granule=fields(granules);
15 for ii=1:length(granule)
16 plot_granule(granules.(granule{ii}));