Skip to content
Prev 23755 / 29559 Next

Take mean of list of raster stacks

Thanks Edzer.  Makes sense!  Is there an easier way to inspect what
specific function will be resolved to with a particular call other
than "getMethod"?  For e.g., considering our discussion, how would I
have used getMethod (or some other method) to learn how
raster::overlay is being called (i.e. actual arguments and what the
final call would look like)?  Julia has a great macro @which which
does the resolution and shows you what specific method will be called.
Check out @which 1 + 2 vs @which 1 + 2 + 3 vs @which 1 + 2 + 3 + 4 vs
@which 1 + (2 + (3 + 4)) on a julia interpreter.  We need something
like this for R, especially for spatial objects.

Regardless, thanks for your explanation.  It's very helpful.
Cordially,
Vijay.

On Wed, Dec 2, 2015 at 12:50 PM, Edzer Pebesma
<edzer.pebesma at uni-muenster.de> wrote: