Re: [R-sig-Geo] extract values to points

2009-03-12 Thread Frauke Barthold
Dear list, thank you very much for all the many suggestions on how to extract values to points! I ended up using the RSAGA package with the pick.from.ascii.grid() function. Cheers, Frauke > Date: Tue, 10 Mar 2009 20:19:17 +0800 > Subject: Re: [R-sig-Geo] extract values to points

Re: [R-sig-Geo] extract values to points

2009-03-10 Thread Robert Hijmans
Just for the record. this is how I would do this with the raster package (Kamran's example should work, but seems a bit unnecessarily complex; just what we are trying to avoid with that package :): install.packages("raster", repos="http://R-Forge.R-project.org";) library(raster) xy <- your matrix

Re: [R-sig-Geo] extract values to points

2009-03-10 Thread Paul Hiemstra
Hi, Funny to see how you can do things in multiple ways in R :). To add to the possibilities, you could probably also get this functionality using R and Grass. I would personally recommend to use overlay() as you don't have to install anything apart from the sp package, unlike using rsaga an

Re: [R-sig-Geo] extract values to points

2009-03-10 Thread Paul Hiemstra
Hi, An option using only R is to use the overlay() command from the sp package, try running this example: # Load data library(sp) data(meuse) # point data coordinates(meuse) = ~x+y data(meuse.grid) # grid data gridded(meuse.grid) = ~x+y overlay(meuse.grid, meuse) # Returns the indices in meus

Re: [R-sig-Geo] extract values to points

2009-03-05 Thread Alexander Brenning
Hi Frauke, in the RSAGA package there is a function pick.from.ascii.grid which does exactly what you want. Even works with large grids as it can process them row by row. I use it for extracting point data from stacks of Landsat bands, terrain attributes etc. Here a case study (landslide suscepti