Re: [R-sig-Geo] mass importing rasters

2010-09-13 Thread Martin Brandt
This is a great solution, thanks everyone! -Ursprüngliche Nachricht- Von: Robert J. Hijmans [mailto:r.hijm...@gmail.com] Gesendet: Sonntag, 12. September 2010 23:18 An: Martin Brandt Cc: r-sig-geo@stat.math.ethz.ch Betreff: Re: [R-sig-Geo] mass importing rasters You have not said what

Re: [R-sig-Geo] mass importing rasters

2010-09-12 Thread Nikhil Kaza
This is neat! On Sep 12, 2010, at 5:18 PM, Robert J. Hijmans wrote: You have not said what type of objects you want, but here's one option: library(raster) s <- stack(list.files(pattern='*.tif')) Robert On Sun, Sep 12, 2010 at 10:29 PM, Martin Brandt wrote: a simple question: how can I

Re: [R-sig-Geo] mass importing rasters

2010-09-12 Thread Robert J. Hijmans
You have not said what type of objects you want, but here's one option: library(raster) s <- stack(list.files(pattern='*.tif')) Robert On Sun, Sep 12, 2010 at 10:29 PM, Martin Brandt wrote: > a simple question: > how can I automatically import a huge bunch of rasters (Geotiffs) to R? > With a f

Re: [R-sig-Geo] mass importing rasters

2010-09-12 Thread Thomas Adams
Martin, Depending on what you are doing, you may want to consider the use of GRASS GIS (http://grass.osgeo.org/) in combination with R. This has been a successful strategy for me in the past, not using Geotiffs, however. The advantage is that the Geotiffs can be imported into GRASS GIS format

Re: [R-sig-Geo] mass importing rasters

2010-09-12 Thread Nikhil Kaza
haven't tried this. but some variant of this should work for (f in dir()){ assign(f, readGDAL(f)) } Nikhil Kaza Asst. Professor, City and Regional Planning University of North Carolina nikhil.l...@gmail.com On Sep 12, 2010, at 4:29 PM, Martin Brandt wrote: a simple question: how can I auto

[R-sig-Geo] mass importing rasters

2010-09-12 Thread Martin Brandt
a simple question: how can I automatically import a huge bunch of rasters (Geotiffs) to R? With a for loop? I didn't find how to do that in the docs.. Each variable name should be the original raster name, but that's not important. greets, Martin ___ R-