Skip to content
Prev 17791 / 29559 Next

Problem with SpatialPolygons.SpatialPixels object

the function is no longer exported as function, but rather as coerce method:

gridPol <- as(gridPix, "SpatialPolygons")

will call this function. Calling the old function can be done with

gridPol <- sp:::as.SpatialPolygons.SpatialPixels(gridPix)

but is not recommended - names of unexported functions may change
without warning.
On 03/17/2013 12:54 PM, ASANTOS wrote: