Skip to content

Plotting .shp and over()

1 message · Barry Rowlingson

#
On Tue, Apr 9, 2013 at 4:41 PM, Steven Ranney <steven.ranney at gmail.com> wrote:

            
R doesn't (or rarely) replaces objects - you need to assign the
result of spTransform to something, eg:

barabayTrans = spTransform(barabay, CRS("..etc..."))

otherwise R just prints the result of spTransform, which is what you saw!

Barry