Displaying 1 result from an estimated 1 matches for "seconddirctori".
Did you mean:
  seconddirctory
  
2013 Mar 04
1
How to loop several binary files from two directories?
I have two binary files(rasters) with the same dimensions. The first file is
called `over`  and the second is `corr`. I want to replace values in `over`
by `NA` whenever `corr` is greater than 0.5.
to read the two files we can use:
        conne <- file("C:corr.bin","rb")
        over <- readBin(conne, numeric(), size=4,  n=1440*720, signed=TRUE)
        frf <-