Skip to content

ZPYin/AERONET-Data-Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AERONET-Data-Analysis

MIT license

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.

Data Download

Request data from web service can be done through AERONET Web Service. For individual site, you can follow the method described in hmjbarbosa/aeronet.

Usage

Download the data manually with the method described in Data Download.

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.

Figures

There are some basic visualization functions inside the lib folder. Below are some figures that can be produced by the function:

AOD by time series AOD by month FMF by time series FMF by month DR by month LR by month Size distribution by month

About

Enable reading and plot the Version 3, level 2.0 products from AERONET

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages