Hi Steve,

On Mon, Jun 25, 2012 at 9:47 PM, Steven Winter <stevenwinte...@yahoo.com> wrote:
> Given a set of latitude and longitude coordinates pairs (stored in variables 
> "latitudevals" and "longitudevals"), I would like to plot them onto the image 
> of a equirectangular world map. I would like to plot each coordinate pair 
> with a red circle, if possible. Does anyone have any suggestions as to how I 
> go about doing this, whether using R or using another program like Google 
> maps?

This might help:

library(maps)
map("world")
lon <- c(-75, -70, 10)
lat <- c(42, -45, 50)
points(lon, lat, col="red", pch=19)

Sarah


> Thank you,
> Steve
>        [[alternative HTML version deleted]]
>


-- 
Sarah Goslee
http://www.functionaldiversity.org

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to