我有采取了在切萨皮克湾,美国各个网站物种丰富度的调查数据,我想以图形方式显示数据为“热图”。
我有经度/纬度坐标和丰富性值,其余转换成的数据帧SpatialPointsDataFrame
和所使用的autoKrige()
从自动地图包功能,以产生经内插的值。
首先,任何人都可以作为我是否正确地实现评论autoKrige()
函数?
其次,我无法绘制数据和覆盖地区地图的。 或者,我可以指定插值网格反映湾的边界(如建议在这里 )? 我如何可能做到这一点,在那里可以获取该信息的任何想法? 直供电网autoKrige()
似乎很容易做到。
编辑:感谢保罗为他的超级有用的帖子! 这是我现在有。 遇到了麻烦ggplot同时接受内插数据和地图投影:
require(rgdal)
require(automap)
#Generate lat/long coordinates and richness data
set.seed(6)
df=data.frame(
lat=sample(seq(36.9,39.3,by=0.01),100,rep=T),
long=sample(seq(-76.5,-76,by=0.01),100,rep=T),
fd=runif(10,0,10))
initial.df=df
#Convert dataframe into SpatialPointsDataFrame
coordinates(df)=~long+lat
#Project latlong coordinates onto an ellipse
proj4string(df)="+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs"
#+proj = the type of projection (lat/long)
#+ellps and +datum = the irregularity in the ellipse represented by planet earth
#Transform the projection into Euclidean distances
project_df=spTransform(df, CRS("+proj=merc +zone=18s +ellps=WGS84 +datum=WGS84")) #projInfo(type="proj")
#Perform the interpolation using kriging
kr=autoKrige(fd~1,project_df)
#Extract the output and convert to dataframe for easy plotting with ggplot2
kr.output=as.data.frame(kr$krige_output)
#Plot the output
#Load the map data for the Chesapeake Bay
cb=data.frame(map("state",xlim=range(initial.df$long),ylim=range(initial.df$lat),plot=F)[c("x","y")])
ggplot()+
geom_tile(data=kr.output,aes(x=x1,y=x2,fill=var1.pred))+
geom_path(data=cb,aes(x=x,y=y))+
coord_map(projection="mercator")