These are some upgrated MATLAB code based on hmjbarbosa/aeronet repository. Version 3.0 products is supported and basic functions, like reading data and data visualization, are added.
Request data from web service can be done through AERONET Web Service. For individual site, you can follow the method described in hmjbarbosa/aeronet.
Download the data manually with the method described in Data Download.
Install the toolbox
setupAERONETToolbox;
Read data
AOD = read_aeronet_AOD_v3_lev2(file);
Visualize the data
mask = (AOD_Res.PWV < 6) & (AOD_Res.AOD_500 ~= -999) & (AOD_Res.AE_440_870 ~= -999);
display_time_series(AOD_Res.date_time(mask), AOD_Res.AOD_500(mask), 'AOD @ 500 nm', 'Sunphotometer analysis for Taihu');
You can follow the example in this repository to start some basic analysis.
There are some basic visualization functions inside the lib
folder. Below are some figures that can be produced by the function: