bcgov/cccharts

Which ecoprovince is Race Rocks in?

Closed this issue · 1 comments

Lat 48.18, Long -123.32

For some reason it is not falling in an ecoprovince from bcmaps.

I guess we'd better call it Georgia Depression:

library(bcmaps)
plot(spTransform(ecoprovinces, CRS("+init=epsg:4326")))
rr <- data.frame(x = -123.32, y = 48.14)
coordinates(rr) <- ~x+y
plot(rr, add = TRUE, col = "red", cex = 15)

capture