Displaying 1 result from an estimated 1 matches for "path_directory_maxt".
2009 Nov 17
0
Re place NA values in matrix with the value of Nearest Neighbour
I am extracting climate data for coastal areas from 5km grid data for
specific xy coordinates that relates to individual study sites (SQ). Code so
far:
setwd("/Users/roblewis/Documents/PhD/Climate Data")
fnamestemp=read.table("Path_Directory_Maxt")
fnames=paste(fnamestemp[,1],fnamestemp[,2])
nfiles = length(fnames)
xy=as.matrix(read.table("xy_.txt"))
sq<-xy[,1]
x<-xy[,2]
y<-xy[,3]
xy<-cbind(x,y)
xy<-xy/5000
xy<- xy+41
xy<- cbind(xy[,2],xy[,1])
nfiles=2
for( imap in 2:nfiles)
{
print(fnames[ima...