Finding presence data for species distribution modelling (SDM)

[This article was first published on Ecological Modelling... » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Getting presence data of species is often not easy and can be a major obstacle when attempting to model the distribution of species. One way is using the GBIF data base. Here I show one way how to obtain presence data for the wolf (Canis lupus) for Poland with R.


library(dismo)
library(maps)

# get wolf presence data from gbif
wolf <- gbif("canis", "lupus", geo=T)

# get coordinates of poland
poland <- maps("world", country="poland")

# get only wolf data within poland
w.pol <- wolf[point.in.polygon(wolf$lon, wolf$lat, poland$x, poland$y)==1,]

# plot data
map("world", "poland", fill=T, col="grey84")
points(w.pol$lon, w.pol$lat)
map.axes()


To leave a comment for the author, please follow the link and comment on their blog: Ecological Modelling... » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)