ここでは、ポリゴン化を使用しないソリューション: (エレガントではありませんが、機能します)。ただし、穴/島を値 (つまり 999) に再分類し、他のすべての非島を NA に再分類する必要があります。このような:
x <- raster(x=matrix(rep(NA,36), nrow=6), xmn=-1000, xmx=1000, ymn=-100, ymx=900)
x[c(8, 15, 16, 17, 22, 25, 26, 30, 31)] <- 999
plot(x)
次に、この関数を使用しclump()
て島があるかどうかを確認します。その関数の優れた点は、これらの島の ID も返すことです。
#Get Islands with IDs
cl <- clump(x,directions=8)
plot(cl)
次に、島の周波数からデータフレームを作成します (これは、各島の ID を取得するためのものです)。
freqCl <- as.data.frame(freq(cl))
#remove the (row) which corresponds to the NA values (this is important for the last step)
freqCl <- freqCl[-which(is.na(freqCl$value)),]
島が国境に接しているかどうかを確認します。
#Check if the island touches any border and therefore isn't a "real island" (first and last column or row)
noIslandID <- c()
#First row
if(any(rownames(freqCl) %in% cl[1,])){
eliminate <- rownames(freqCl)[rownames(freqCl) %in% cl[1,]]
noIslandID <- append(noIslandID, eliminate)
}
#Last row
if(any(rownames(freqCl) %in% cl[nrow(cl),])){
eliminate <- rownames(freqCl)[rownames(freqCl) %in% cl[nrow(cl),]]
noIslandID <- append(noIslandID, eliminate)
}
#First col
if(any(rownames(freqCl) %in% cl[,1])){
eliminate <- rownames(freqCl)[rownames(freqCl) %in% cl[,1]]
noIslandID <- append(noIslandID, eliminate)
}
#Last col
if(any(rownames(freqCl) %in% cl[,ncol(cl)])){
eliminate <- rownames(freqCl)[rownames(freqCl) %in% cl[,ncol(cl)]]
noIslandID <- append(noIslandID, eliminate)
}
国境に接する島を排除する:
noIslandID <- unique(noIslandID)
IslandID <- setdiff(rownames(freqCl), noIslandID)
最後のステップで、最初のラスターからすべての「実際の島」に 1 を割り当てます。
for(i in 1:length(IslandID)) {
x[cl[]==as.numeric(IslandID[i])] <- 1
}
plot(x)