我想使用BIEN使用的相同方法绘制物种出现的多边形,因此我可以使用我的多边形和他们的多边形。当他们有更多的发生点时,他们使用Maxent来模拟物种的出现。
因此,这是一个BIEN多边形:
library(BIEN)
Mormolyca_ringens<- BIEN_ranges_load_species(species = "Mormolyca ringens")
#And this is a polygon, yes. A SpatialPolygonsDataFrame.
plot(wrld_simpl, xlim=c(-100,-40), ylim=c(-30,30), axes=TRUE,col="light yellow", bg="light blue")
plot(Mormolyca_ringens, col="green", add=TRUE)
Mormolyca ringens多边形
好的,那我正在尝试绘制我的多边形,因为BIEN缺少一些我需要的物种。
# first, you need to download the Maxent software here: http://biodiversityinformatics.amnh.org/open_source/maxent/
#and paste the "maxent.jar" file in the ’java’ folder of the ’dismo’ package, which is here:
system.file("java", package="dismo")
#You have to do this **before** loading the libraries
#install.packages("rJava")
library(rJava)
#If you get the message that cannot load this library, it's possible that your version of java is not 64bit.
#Go to Oracle and install Java for windows 64bit.
#If library still doesn't load: Look in your computer for the path where the java's jre file is and paste in the code below
Sys.setenv(JAVA_HOME="your\\path\\for\\jre") #mine is "C:\\Program Files\\Java\\jre1.8.0_144", for example
library(rJava)
library(dismo)
library(maptools)
#Giving credits: I wrote the following code based on this tutorial: https://cran.r-project.org/web/packages/dismo/vignettes/sdm.pdf
#Preparing the example data - the map
data(wrld_simpl)
ext = extent(-90, -32, -33, 23)
#Preparing the example data - presence data for Bradypus variegatus
file <- paste(system.file(package="dismo"), "/ex/bradypus.csv", sep="")
bradypus <- read.table(file, header=TRUE, sep=',')
bradypus <- bradypus[,-1] #don't need th first col
#Getting the predictors (the variables)
files <- list.files(path=paste(system.file(package="dismo"),
'/ex', sep=''), pattern='grd', full.names=TRUE )
predictors <- stack(files)
#making a training and a testing set.
group <- kfold(bradypus, 5)
pres_train <- bradypus[group != 1, ]
pres_test <- bradypus[group == 1, ]
#Creating the background
backg <- randomPoints(predictors, n=1000, ext=ext, extf = 1.25)
colnames(backg) = c('lon', 'lat')
group <- kfold(backg, 5)
backg_train <- backg[group != 1, ]
backg_test <- backg[group == 1, ]
# Running maxent
xm <- maxent(predictors, pres_train, factors='biome')
plot(xm)
#A response plot:
response(xm)
# Evaluating and predicting
e <- evaluate(pres_test, backg_test, xm, predictors)
px <- predict(predictors, xm, ext=ext, progress='text', overwrite=TRUE)
#Checking result of the prediction
par(mfrow=c(1,2))
plot(px, main='Maxent, raw values')
plot(wrld_simpl, add=TRUE, border='dark grey')
tr <- threshold(e, 'spec_sens')
plot(px > tr, main='presence/absence')
plot(wrld_simpl, add=TRUE, border='dark grey')
points(pres_train, pch='+')
此时,我有以下图片:
预测例子的发生
我正试图用这段代码从这个栅格中制作一个多边形:
predic_pol<-rasterToPolygons(px )
还有:
px_rec<-reclassify(px, rcl=0.5, include.lowest=FALSE)
px_pol<-rasterToPolygons(px_rec)
但我不断获得我的范围的像素版本
你可以给我一个提示,这样我就可以从这个光栅中提取多边形,就像BIEN那样吗? (我也不熟悉建模和R ...欢迎任何提示)
编辑:这是px控制台输出:
> px
class : RasterLayer
dimensions : 172, 176, 30272 (nrow, ncol, ncell)
resolution : 0.5, 0.5 (x, y)
extent : -120, -32, -56, 30 (xmin, xmax, ymin, ymax)
coord. ref. : +proj=longlat +datum=WGS84 +ellps=WGS84 +towgs84=0,0,0
data source : C:\Users\thai\Documents\ORCHIDACEAE\Ecologicos\w2\predictions\Trigonidiumobtusum_prediction.grd
names : layer
values : 6.705387e-06, 0.9999983 (min, max)
提前谢谢
感谢@Val,我得到了这个:
#Getting only the values>tr to make the polygon
#"tr" is what gives me the green raster instear of the multicolour one
pol <- rasterToPolygons(px>tr,function(x) x == 1,dissolve=T)
#Ploting
plot(wrld_simpl, xlim=c(-120,-20), ylim=c(-60,10), axes=TRUE,col="light yellow", bg="light blue")
plot(pol, add=T, col="green")
现在我有我想要的东西!谢谢! (图中的多边形不一样,因为我在@Val的回答中使用了我在环境中使用的不同数据集)
你知道如何平滑边缘,所以我得到一个非像素化的多边形吗?
答案 0 :(得分:1)
我不了解BIEN,所以我真的不看你的例子。我只是将您的问题/问题概括为以下内容:
你有一个二进制栅格(0表示缺席,1表示存在),你想将1的所有区域转换为多边形。
对于您的px
栅格,您的值不是0和1但更多基本上 0且基本上 1有点奇怪。但如果这是一个问题,那可能很容易解决。
所以我试图用巴西的区域重建你的例子:
library(raster)
library(rgeos)
# get Brasil borders
shp <- getData(country = 'BRA',level=0)
#create binary raster
r <- raster(extent(shp),resolution=c(0.5,0.5))
r[] <- NA # values have to be NA for the buffering
# take centroid of Brasil as center of species presence
cent <- gCentroid(shp)
# set to 1
r[cellFromXY(r,cent)] <- 1
# buffer presence
r <- buffer(r,width=1000000)
# set rest 0
r[is.na(r)] <- 0
# mask by borders
r <- mask(r,shp)
我猜你的光栅足够接近:
现在转换为多边形:
pol <- rasterToPolygons(r,function(x) x == 1,dissolve=T)
我使用一个函数来获取值为1的像素。此外,我将多边形溶解为不具有单个像素多边形,而是一个区域。有关其他选项,请参阅rasterToPolygons
。
现在将边框和新多边形绘制在一起:
plot(shp)
plot(pol,col='red',add=T)
你有它,分布的多边形。这是控制台输出:
> pol
class : SpatialPolygonsDataFrame
features : 1
extent : -62.98971, -43.48971, -20.23512, -1.735122 (xmin, xmax, ymin, ymax)
coord. ref. : NA
variables : 1
names : layer
min values : 1
max values : 1
希望有所帮助!
您必须清楚,多边形的像素化边界代表数据的准确表示。因此,任何改变都意味着精度的损失。现在,根据您的目的,这可能无关紧要。
有多种方法可以实现它,无论是在光栅侧还是分解和平滑/过滤等,或者在多边形一侧,您可以将特定滤镜应用于this等多边形。 / p>
如果它纯粹是审美的,您可以尝试gSimplify
包中的rgeos
:
# adjust tol for smoothness
pol_sm <- gSimplify(pol,tol=0.5)
plot(pol)
lines(pol_sm,col='red',lwd=2)