Developing Geographic Thematic Maps with R

前端 未结 6 769
终归单人心
终归单人心 2020-12-04 04:34

There are clearly a number of packages in R for all sorts of spatial analysis. That can by seen in the CRAN Task View: Analysis of Spatial Data. These packages are numerous

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-04 05:26

    The following code has served me well. Customize it a little and you are done.
    (source: eduardoleoni.com)

    library(maptools)
    substitute your shapefiles here
    state.map <- readShapeSpatial("BRASIL.shp")
    counties.map <- readShapeSpatial("55mu2500gsd.shp")
    ## this is the variable we will be plotting
    counties.map@data$noise <- rnorm(nrow(counties.map@data))
    

    heatmap function

    plot.heat <- function(counties.map,state.map,z,title=NULL,breaks=NULL,reverse=FALSE,cex.legend=1,bw=.2,col.vec=NULL,plot.legend=TRUE) {
      ##Break down the value variable
      if (is.null(breaks)) {
        breaks=
          seq(
              floor(min(counties.map@data[,z],na.rm=TRUE)*10)/10
              ,
              ceiling(max(counties.map@data[,z],na.rm=TRUE)*10)/10
              ,.1)
      }
      counties.map@data$zCat <- cut(counties.map@data[,z],breaks,include.lowest=TRUE)
      cutpoints <- levels(counties.map@data$zCat)
      if (is.null(col.vec)) col.vec <- heat.colors(length(levels(counties.map@data$zCat)))
      if (reverse) {
        cutpointsColors <- rev(col.vec)
      } else {
        cutpointsColors <- col.vec
      }
      levels(counties.map@data$zCat) <- cutpointsColors
      plot(counties.map,border=gray(.8), lwd=bw,axes = FALSE, las = 1,col=as.character(counties.map@data$zCat))
      if (!is.null(state.map)) {
        plot(state.map,add=TRUE,lwd=1)
      }
      ##with(counties.map.c,text(x,y,name,cex=0.75))
      if (plot.legend) legend("bottomleft", cutpoints, fill = cutpointsColors,bty="n",title=title,cex=cex.legend)
      ##title("Cartogram")
    }
    

    plot it

    plot.heat(counties.map,state.map,z="noise",breaks=c(-Inf,-2,-1,0,1,2,Inf))
    

提交回复
热议问题