% This program reads amsr-e or amsr-j files (version-5) % and writes out the data as shown in the verify_amsre_v5.txt file % or the verify_amsrj_v5.txt file % % Unzip the data file, if necessary % Change the file_name below to point to your data file % Remove or comment out code if you do not have that file %*****************daily******************* %choose one of the lines below file_name = 'your drive:\your directory\amsre_20020715v5.dat'; file_name = 'your drive:\your directory\amsrj_20030912v5.dat'; [time,sst,wind,vapor,cloud,rain] = read_amsr_day_v5(file_name); time (170:175,274:278,1)' sst (170:175,274:278,1)' wind (170:175,274:278,1)' vapor(170:175,274:278,1)' cloud(170:175,274:278,1)' rain (170:175,274:278,1)' %****************3-day******************* %choose one of the lines below file_name = 'your drive:\your directory\amsre_20020715v5_d3d.dat'; file_name = 'your drive:\your directory\amsrj_20030912v5_d3d.dat'; [sst,wind,vapor,cloud,rain] = read_amsr_averaged_v5(file_name); sst (170:175,274:278)' wind (170:175,274:278)' vapor(170:175,274:278)' cloud(170:175,274:278)' rain (170:175,274:278)' %*************weekly******************** %choose one of the lines below file_name = 'your drive:\your directory\amsre_20020720v5.dat'; file_name = 'your drive:\your directory\amsrj_20030913v5.dat'; [sst,wind,vapor,cloud,rain] = read_amsr_averaged_v5(file_name); sst (170:175,274:278)' wind (170:175,274:278)' vapor(170:175,274:278)' cloud(170:175,274:278)' rain (170:175,274:278)' %*************monthly********************** %choose one of the lines below file_name = 'your drive:\your directory\amsre_200207v5.dat'; file_name = 'your drive:\your directory\amsrj_200309v5.dat'; [sst,wind,vapor,cloud,rain] = read_amsr_averaged_v5(file_name); sst (170:175,274:278)' wind (170:175,274:278)' vapor(170:175,274:278)' cloud(170:175,274:278)' rain (170:175,274:278)'