gpt4 book ai didi

rMaps ichoropleth 与自定义 map /shp

转载 作者:行者123 更新时间:2023-12-03 06:19:42 24 4
gpt4 key购买 nike

在 R 中,我需要帮助来尝试复制教程 here让我自己的自定义 SHP(Shapefile)文件或 map 成为交互式分区统计图...

该 map 是北爱尔兰小区域的 map 。可以查到here

以下是我迄今为止采取的步骤...

我认为问题在于 geographyConfig 数据的设置...

任何帮助将不胜感激......

# Download and unzip the data
system('wget http://www.nisra.gov.uk/archive/geography/digital_products/SA2011_Esri_Shapefile.zip')
system('unzip SA2011_Esri_Shapefile.zip')

# Load libraries
library(rgdal)
library(rgeos)
library(rMaps)

shp.file <- 'SA2011.shp'

# Convert projection
system(paste0('ogr2ogr tmp.shp ',
shp.file,
' -t_srs "+proj=longlat +ellps=WGS84 +no_defs +towgs84=0,0,0"'))

# Read in the data
xx <- readOGR(dsn=getwd(),layer='tmp')
mm <- xx@data
head(mm)
n <- nrow(mm)
dat.val <- mm$Hectares

# Add extra year data
mm <- mm[rep(seq(n),3),]
mm$Hectares <- c(dat.val,rev(dat.val),dat.val/2)
mm$year <- rep(c(2000:2002),each=n)
colnames(mm)[1] <- 'ID'
id.var <- 'SA2011'


# Convert to json
system(paste0('topojson -o tmp.json -s 1e-7 -q 1e5 tmp.shp -p ID=',
id.var,
' --id-property ',
id.var))

d1 <- ichoropleth(Hectares ~ ID, data = mm, ncuts = 9, pal = 'YlOrRd',
animate = 'year', map = 'states'
)
d1$set(
geographyConfig = list(
dataUrl = "tmp.json"
),
scope = 'states',
setProjection = '#! function( element, options ) {
var projection, path;
projection = d3.geo.mercator()
.center([-7, 55]).scale(element.offsetWidth)
.translate([element.offsetWidth / 2, element.offsetHeight / 2]);

path = d3.geo.path().projection( projection );
return {path: path, projection: projection};
} !#'
)
d1$save('rMaps.html', cdn = TRUE)

加载rMaps.html不会生成相关 map ,因为它只显示底部的切口,而不显示 map 。

最佳答案

recordnotfound.com 上的许多人要求作者回复此帖子(在 recordnotfound.com 上)。我联系了 rMaps 项目的所有者 Ramnath。他建议有一个新项目提供增强的功能集:http://github.com/rstudio/leaflet

以下是有关传单项目的更多详细信息:https://recordnotfound.com/leaflet-rstudio-35205

关于rMaps ichoropleth 与自定义 map /shp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29582992/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com