Displaying 1 result from an estimated 1 matches for "kw01_rn".
2007 Aug 08
0
Creating netcdf from table
...ation). I have Tables for every week of the year 2006, always
same coordinates but other values, i.e. time series. Now I want to create a
NetCDF file for, which is much easier to handle than 52 tables. I tried the
following for the first dataset (i.e first week):
W01<-read.table("RN_weekly/KW01_RN.dat")
long<-W01$V1
lat<-W01$V2
RN01<-W01$V3
dim1 <- dim.def.ncdf( "EW","degrees", as.double(long))
dim2 <- dim.def.ncdf( "SN","degrees", as.double(lat))
varz <- var.def.ncdf("Radon","Bq/m2/h1", list(dim1,dim2), -1,...