adding requests to conda install docs
[JPSSData.git] / plot_granules.m
blob53e979bc7b85860c9202031dd8790d0a4b8521d7
1 function plot_granules(granules)
2 % Call:
3 % plot_granules(granules)
5 % Description:
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}));
17 end
19 end