# Get Occurrence!
getOccurrence <-
function(pTaxon){
# library(rjson)
pTaxon = gsub(' ', '_', pTaxon)
json_file <- paste ("http://aplicacoes.jbrj.gov.br/jabot/v2/ws/server.php?coordenada=S&taxon=",pTaxon,sep="")
json_data <- fromJSON(file=json_file,method="C")
final_data <-do.call(rbind,json_data)
write.csv(final_data,"final_data.csv")
y2 <- final_data[,c("taxoncompleto","longitude","latitude")]
y2 <- cbind(as.numeric(y2[,2]),
as.numeric(y2[,3])
)
colnames(y2) <- c("Longitude","Latitude")
y2 <- data.frame(y2)
return(y2)
}
getMapOccurrence <- function(pTaxon)
{
library(RJabot)
library(maps)
library(mapdata)
sp = getOccurrence(pTaxon)
map()
points(sp$Longitude,sp$Latitude,col=2,pch=18)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.