I am sorry I seemed to have misrepresented what I was trying to say. I have correct projection I need to rescale these rasters on top of my global scale map. I am pretty sure r.region is the way to go, I just do not know how to rescale 800 rasters all at once. Sorry for the confusion.
Aaron
goldneaa@onid.orst.edu wrote:
I am sorry I seemed to have misrepresented what I was trying to say.
I have correct projection I need to rescale these rasters on top of my
global scale map. I am pretty sure r.region is the way to go, I just
do not know how to rescale 800 rasters all at once.
for MAP in `g.mlist patt="*"` ; do
r.region map=$MAP n= s= e= w=
done
Hamish