hour read.pro

InfoInfo
Search:    

Pro hour_read, code=code, year=year, month=month, length=length, data

if not keyword_set(month) then month=1
month = month - 1
if not keyword_set(length) then length=12
length = length - 1

path='/magneto3/maccs/murr/hour/'
path='/atmos5/2000/hour/'
path='/raid/2004/unrotated/hour/'
months = ['jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec']
days = [31,28,31,30,31,30,31,31,30,31,30,31]
if year mod 4 eq 0 then days(1)=days(1)+1
hours = days*24.
total_hours = total(hours(month:month+length))

data = fltarr(3,total_hours)

j=0
for i = 0,length do begin

endfor

end

This is a Wiki Spot wiki. Wiki Spot is a non-profit organization that helps communities collaborate via wikis.