Project

General

Profile

Download (7.63 KB) Statistics
| Branch: | Revision:
1
### Process a folder of daily MOD35 HDF files to produce a climatology
2

    
3
## import commandline arguments
4
library(getopt)
5
## get options
6
opta <- getopt(matrix(c(
7
                        'tile', 't', 1, 'character',
8
                        'verbose','v',1,'logical'
9
                        ), ncol=4, byrow=TRUE))
10

    
11
tile=opta$tile #tile="h11v08"
12
verbose=opta$verbose  #print out extensive information for debugging?
13

    
14
### directory containing daily files
15
outdir=paste("daily/",tile,"/",sep="")  #directory for separate daily files
16

    
17
### directory to hold climatology
18
outdir2="summary" #directory for combined daily files and summarized files
19
if(!file.exists(outdir2)) dir.create(outdir2)
20

    
21
### path to NCO
22
ncopath="/nasa/sles11/nco/4.0.8/gcc/mpt/bin/"
23

    
24
### Vector of variables that must be in file or they will be deleted.
25
###  Formated as output from system(paste("cdo -s showvar ",fdly$path[i]),intern=T)
26
#finalvars=" CER COT CLD"
27

    
28

    
29
################################################################################
30
## Get list of all daily files
31
if(verbose) print("Checking daily output in preparation for generating climatology")
32

    
33
 fdly=data.frame(path=list.files(outdir,pattern="nc$",full=T),stringsAsFactors=F)
34
  fdly$file=basename(fdly$path)
35
  fdly$dateid=substr(fdly$file,14,21)
36
  fdly$date=as.Date(substr(fdly$file,14,21),"%Y%m%d")
37
  fdly$month=format(fdly$date,"%m")
38
  fdly$year=format(fdly$date,"%Y")
39
nrow(fdly)
40

    
41
## check validity (via npar and ntime) of nc files
42
#for(i in 1:nrow(fdly)){
43
#  fdly$ntime[i]<-as.numeric(system(paste("cdo -s ntime ",fdly$path[i]),intern=T))
44
#  fdly$npar[i]<-as.numeric(system(paste("cdo -s npar ",fdly$path[i]),intern=T))
45
#  fdly$fyear[i]<-as.numeric(system(paste("cdo -s showyear ",fdly$path[i]),intern=T))
46
#  fdly$fmonth[i]<-as.numeric(system(paste("cdo -s showmon ",fdly$path[i]),intern=T))
47
#  fdly$fvar[i]<-system(paste("cdo -s showvar ",fdly$path[i]),intern=T)
48
#  print(paste(i," out of ",nrow(fdly)," for year ",  fdly$fyear[i]))
49
#}
50

    
51
## print some summaries
52
if(verbose) print("Summary of available daily files")
53
print(table(fdly$year))
54
print(table(fdly$month))
55
#print(table(fdly$fvar))
56

    
57
## Identify which files failed test
58
#fdly$drop=is.na(fdly$npar)|fdly$fvar!=finalvars
59

    
60
## delete files that fail check?
61
delete=F
62
if(delete) {
63
  print(paste(sum(fdly$drop),"files will be deleted"))
64
  file.remove(as.character(fdly$path[fdly$drop]))
65
}
66
## remove dropped files from list
67
#fdly=fdly[!fdly$drop,]
68

    
69
#################################################################################
70
## Combine the year-by-year files into a single daily file in the summary directory (for archiving)
71
if(verbose) print("Merging daily files into single file output")
72

    
73
## create temporary directory to put intermediate files (will be deleted when R quits)
74
tsdir=paste(tempdir(),"/summary",sep="")
75
if(!file.exists(tsdir)) dir.create(tsdir,recursive=T)
76

    
77
## merge all daily files to create a single file with all dates
78
system(paste(ncopath,"ncrcat -O ",outdir,"/*nc ",outdir2,"/MOD35_",tile,"_daily.nc",sep=""))
79
 
80
## Update attributes
81
system(paste(ncopath,"ncatted ",
82
" -a units,time,o,c,\"days since 2000-1-1 0:0:0\" ",
83
" -a title,global,o,c,\"MODIS Cloud Product (MOD35) Daily Timeseries\" ",
84
" -a institution,global,o,c,\"Yale University\" ",
85
" -a source,global,o,c,\"MODIS Cloud Mask (MOD35)\" ",
86
" -a comment,global,o,c,\"Compiled by Adam M. Wilson (adam.wilson@yale.edu)\" ",
87
outdir2,"/MOD35_",tile,"_daily.nc",sep=""))
88

    
89
### produce a monthly timeseries?
90
#system(paste("cdo -O monmean ",outdir2,"/MOD35_",tile,"_daily.nc ",tsdir,"/MOD35_",tile,"_monmean.nc",sep=""))
91

    
92
#############################
93
##  Generate the Climatologies
94
if(verbose) print("Generate monthly climatologies")
95

    
96
myear=as.integer(max(fdly$year))  #this year will be used in all dates of monthly climatologies (and day will = 15)
97

    
98
## Monthly means
99
if(verbose) print("Calculating the monthly means")
100
system(paste("cdo -O sorttimestamp -setyear,",myear," -setday,15 -ymonmean ",outdir2,"/MOD35_",tile,"_daily.nc ",tsdir,"/MOD35_",tile,"_ymonmean.nc",sep=""),wait=T)
101

    
102
## Monthly standard deviation
103
if(verbose) print("Calculating the monthly SD")
104
system(paste("cdo -O sorttimestamp -setyear,",myear," -setday,15 -ymonstd ",outdir2,"/MOD35_",tile,"_daily.nc ",tsdir,"/MOD35_",tile,"_ymonstd.nc",sep=""))
105
system(paste(ncopath,"ncrename -v PClear,PClear_sd ",tsdir,"/MOD35_",tile,"_ymonstd.nc",sep=""))
106
system(paste(ncopath,"ncatted ",
107
" -a long_name,PClear_sd,o,c,\"Standard Deviation of p(clear)\" ",
108
tsdir,"/MOD35_",tile,"_ymonstd.nc",sep=""))
109

    
110
## frequency of cloud days p(clear<90%)  
111
if(verbose) print("Calculating the proportion of cloudy and probably cloudy days")
112
system(paste("cdo -O  sorttimestamp -setyear,",myear," -setday,15 -nint -mulc,100 -ymonmean -lec,90 -setrtomiss,100,255 -selvar,PClear ",outdir2,"/MOD35_",tile,"_daily.nc ",tsdir,"/MOD35_",tile,"_ymoncld01.nc",sep=""))
113
system(paste(ncopath,"ncrename -v PClear,CF ",tsdir,"/MOD35_",tile,"_ymoncld01.nc",sep=""))
114
system(paste(ncopath,"ncatted ",
115
" -a long_name,CF,o,c,\"Proportion of Days with probability of clear < 90%\" ",
116
" -a units,CF,o,c,\"Proportion\" ",
117
tsdir,"/MOD35_",tile,"_ymoncld01.nc",sep=""))
118

    
119
## number of observations
120
#if(verbose) print("Calculating the number of missing variables")
121
#system(paste("cdo -O sorttimestamp  -setyear,",myear," -setday,15 -nint -mulc,100 -ymonmean  -mulc,1.0 -eqc,9999 -setmisstoc,9999   -selvar,CLD ",outdir2,"/MOD35_",tile,"_daily.nc ",tsdir,"/MOD35_",tile,"_ymonmiss.nc",sep=""))
122
#system(paste(ncopath,"ncrename -v CLD,CLD_pmiss ",tsdir,"/MOD35_",tile,"_ymonmiss.nc",sep=""))
123
#system(paste(ncopath,"ncatted ",
124
#" -a long_name,CLD_pmiss,o,c,\"Proportion of Days with missing data for CLD\" ",
125
#" -a scale_factor,CLD_pmiss,o,d,0.01 ",
126
#" -a units,CLD_pmiss,o,c,\"Proportion\" ",
127
#tsdir,"/MOD35_",tile,"_ymonmiss.nc",sep=""))
128

    
129
## TODO: fix projection information so GDAL can read it correctly.
130
## clean up variables?
131

    
132
## append variables to a single file
133
if(verbose) print("Append all monthly climatologies into a single file")
134
system(paste(ncopath,"ncks -O ",tsdir,"/MOD35_",tile,"_ymonmean.nc  ",tsdir,"/MOD35_",tile,"_ymon.nc",sep=""))
135
system(paste(ncopath,"ncks -A ",tsdir,"/MOD35_",tile,"_ymonstd.nc  ",tsdir,"/MOD35_",tile,"_ymon.nc",sep=""))
136
system(paste(ncopath,"ncks -A ",tsdir,"/MOD35_",tile,"_ymoncld01.nc  ",tsdir,"/MOD35_",tile,"_ymon.nc",sep=""))
137

    
138
## append sinusoidal grid from one of input files as CDO doesn't transfer all attributes
139
if(verbose) print("Clean up file (update attributes, flip latitudes, add grid description")
140

    
141
#system(paste(ncopath,"ncea -d time,0,1 -v sinusoidal ",list.files(outdir,full=T,pattern="[.]nc$")[1],"  ",tsdir,"/sinusoidal.nc",sep=""))
142
#system(paste(ncopath,"ncks -A -d time,0,1 -v sinusoidal ",list.files(outdir,full=T,pattern="[.]nc$")[1],"  ",tsdir,"/MOD35_",tile,"_ymon.nc",sep=""))
143

    
144
## invert latitude so it plays nicely with gdal
145
system(paste(ncopath,"ncpdq -O -a -y ",tsdir,"/MOD35_",tile,"_ymon.nc ",outdir2,"/MOD35_",tile,".nc",sep=""))
146

    
147
## update attributes
148
system(paste(ncopath,"ncatted ",
149
#" -a standard_parallel,sinusoidal,o,c,\"0\" ",
150
#" -a longitude_of_central_meridian,sinusoidal,o,c,\"0\" ",
151
#" -a latitude_of_central_meridian,sinusoidal,o,c,\"0\" ",
152
" -a units,time,o,c,\"days since 2000-1-1 0:0:0\" ",
153
" -a title,global,o,c,\"MODIS Cloud Product (MOD35) Climatology\" ",
154
" -a institution,global,o,c,\"Yale University\" ",
155
" -a source,global,o,c,\"MODIS Cloud Product (MOD35)\" ",
156
" -a comment,global,o,c,\"Compiled by Adam M. Wilson (adam.wilson@yale.edu)\" ",
157
outdir2,"/MOD35_",tile,".nc",sep=""))
158

    
159

    
160
print(paste("###############################  Processed ",nrow(fdly),"days for tile:",tile," ###################################################"))
161
print("Years:")
162
print(table(fdly$fyear))
163
print("Months:")
164
print(table(fdly$fmonth))
165

    
166
## quit R
167
q("no")
168
 
(17-17/27)