Original archive format for hourly SO2 data There are three lines of information at the top of the file. There is one line of data for each hour: YY = last two digits of year MM = month DD = day of month HR = hour of day (end time of sample) A, B, C, ...T, 1, 2, ...0 = Receptor ID for 30 receptors Concentration values are in PPB Here are the first few lines from the Developmental data set listing of SO2 values. HOURLY AVERAGE SO2 CONCENTRATIONS IN PPB - KINCAID DEVELOPMENTAL DATA SET YY MM DD HR A B C D E F G H I J K L M N O P Q R S T 1 2 3 4 5 6 7 8 9 0 80 4 3 1 0 0 0 -99 -99 -99 -99 1 0 8 -99 -99 5 -99 4 2 5 1 0 12 0 15 7 22 -99 8 -99 26 -99 25 80 4 3 2 8 0 0 -99 -99 -99 -99 1 0 6 -99 -99 3 -99 2 1 3 -99 3 8 0 17 1 25 -99 5 -99 27 -99 21 80 4 3 3 1 0 0 -99 -99 -99 -99 0 0 3 -99 -99 1 -99 1 -99 2 -99 8 10 0 15 4 25 -99 7 -99 28 -99 24 80 4 3 4 0 0 0 -99 -99 -99 -99 0 0 3 -99 -99 2 -99 4 -99 5 0 7 23 0 17 1 19 -99 8 -99 28 -99 25 FORTRAN STATEMENT TO READ DATA READ(ISO2,1000) year,month,day,hour,(conc(j),j=1,30) 1000 FORMAT(i2,3i3,30i4)