当前位置:   article > 正文

记录使用R语言+ggplot绘制地图_r语言区域分布图

r语言区域分布图
setwd("D:/projects/0605")
# Load packages
library(sp)
library(mapproj)
library(maptools)
library(ggplot2)
library(maptools)
library(maps)
library(sf)
library(ggspatial)
library(scales)
library(cowplot)
fun.generate_random_points <- function(center, radius, count) {
    x <- center
    y <- center[1]
    xs <- runif(count, x, radius * x * sin(runif(1, 0, 360)))
    ys <- runif(count, y, radius * y * cos(runif(1, 0, 360)))
    print(xs)
    print(ys)
    points <- array(c(xs, ys), dim = c(2, count))
    return(points)
}

fun.draw <- function(data, layers, color, fillField, stroke, size, lineWith, lineType, pointShape, alpha, scale_position, north_position, chart_color) {
    # 初始化绘图
    g <- ggplot()
    # 柱狀圖
    g_bar <- ggplot()
    # 循环背景图层
    for (layer in layers) {
        # 读取背景图层信息
        lyr_data <- st_read(layer)
        g <- g + geom_sf(data = lyr_data, )
    }
    # 点图层
    point_lyr <- st_read(data)
    # 获取purchase字段列数据
    purchase_list <- point_lyr$PURCHASE
    # 最大值
    max_value <- max(as.vector(purchase_list), na.rm = TRUE)
    # 最小值
    min_value <- min(purchase_list)
    # 差值
    diff <- max_value - min_value
    # 分级数
    breaks <- c()
    # 各级计数
    counts <- c()
    i <- 0
    # 计算级别,分10级
    while (i < 10) {
        breaks <- c(breaks, (diff / 10) * i)
        counts <- c(counts, 0)
        i <- i + 1
    }
    counts <- list(counts)
    print(counts[[1]][0])
    # 各级别计数
    for (j in purchase_list) {
        temp <- 0
        for (n in breaks) {
            temp <- temp + 1
            if (j <= n) {
                counts[[1]][temp] <- counts[[1]][temp] + 1
            }
        }
    }
    # list转向量数组
    counts <- as.numeric(unlist(counts))
    print(breaks)
    print(counts)
    # 创建柱状条数据
    bar_data <- data.frame(breaks, counts)


    # point_lyr <- fortify(point_lyr)
    # 绘制比例尺
    g <- g + annotation_scale(location = scale_position) +
        # spatial-aware automagic north arrow
        annotation_north_arrow(
            location = north_position, which_north = "false",
            style = north_arrow_fancy_orienteering
        )
    #设置颜色 
    if (is.list(color)) {
        g <- g + geom_sf(
            data = point_lyr, aes(fill = PURCHASE, size = size, alpha = alpha),
            shape = pointShape, stroke = stroke,
            size = size
        ) + scale_fill_gradient(low = color[1], high = color[2])
    } else {
        g <- g + geom_sf(
            data = point_lyr, aes(size = size, fill = color, alpha = alpha),
            size = size,
            shape = pointShape, stroke = stroke
        )
    }
    #绘制柱状图
    g_bar <- ggplot(data = bar_data, mapping = aes(
        x = breaks, y = counts,
        fill = "#413a00"
    )) +
        geom_bar(stat = "identity")
    gg <- ggdraw() +
        draw_plot(g, 0, 0.5, 1, 0.5) + draw_plot(g_bar, 0, 0, 1, 0.5)
    #输出图形,不打印可能无法输出图形 
    print(gg)
}
data <- "Data/LNHP3.shp"
layers <- c("Data/LN_bou_p1.shp", "Data/LN_bou_p2.shp")
color <- list("green", "red")
print(color[1])
# 运行函数
# north_poisition scale_position tl,tr,bl,br
fun.draw(data, layers, color, "PURCHASE", pointShape = 21, .25, size = 3, alpha = 0.75, north_position = "tl", scale_position = "bl")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115

效果
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/669180
推荐阅读
相关标签
  

闽ICP备14008679号