% This program reads GMI(F35) files % and writes out the data as shown in the verify_gmi_vN.N.txt % to write out the gmi data, use the file F35_20140519vN.N for daily % % Unzip the data file, if necessary, use matlab function gunzip % Change the file_name below to point to your data file % Remove or comment out code if you do not have that file %*****************daily******************* clear all % uncomment the needed line and adjust to your directory structure %file_name = 'your drive:\your directory\F35_20140519vN.N'; %GMI [time,sst,wspdLF,wspdMF,vapor,cloud,rain]=read_gmi_day_v8(file_name); time(170:175,274:278,1)' sst(170:175,274:278,1)' wspdLF(170:175,274:278,1)' wspdMF(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******************* clear all % uncomment the needed line and adjust to your directory structure %file_name = 'your drive:\your directory\F35_20140519vN.N_d3d'; [sst,wspdLF,wspdMF,vapor,cloud,rain]=read_gmi_averaged_v8(file_name); sst(170:175,274:278)' wspdLF(170:175,274:278)' wspdMF(170:175,274:278)' vapor(170:175,274:278)' cloud(170:175,274:278)' rain(170:175,274:278)' %*************weekly******************** clear all % uncomment the needed line and adjust to your directory structure %file_name = 'your drive:\your directory\F35_20140524vN.N'; [sst,wspdLF,wspdMF,vapor,cloud,rain]=read_gmi_averaged_v8(file_name); sst(170:175,274:278)' wspdLF(170:175,274:278)' wspdMF(170:175,274:278)' vapor(170:175,274:278)' cloud(170:175,274:278)' rain(170:175,274:278)' %*************monthly********************** clear all % uncomment the needed line and adjust to your directory structure %file_name = 'your drive:\your directory\F35_201405vN.N'; [sst,wspdLF,wspdMF,vapor,cloud,rain]=read_gmi_averaged_v8(file_name); sst(170:175,274:278)' wspdLF(170:175,274:278)' wspdMF(170:175,274:278)' vapor(170:175,274:278)' cloud(170:175,274:278)' rain(170:175,274:278)'