- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 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/
我正在制作一个Linux内核设备驱动程序(Linux redhat 2.6.32-358.el6.x86_64 x86_64 GNU/Linux)。每当我尝试使用 rmap 函数(例如 rmap_wa
在 R 中,我需要帮助来尝试复制教程 here让我自己的自定义 SHP(Shapefile)文件或 map 成为交互式分区统计图... 该 map 是北爱尔兰小区域的 map 。可以查到here 。
我刚刚在 R 中发现了一个名为 rMaps 的有趣包,我发现有一个名为 ichoropleth() 的函数可以绘制一个国家(或地区?)的 map 。我认为 R 中目前没有帮助文件来检查此函数中的所有参
redis redisson 集合操作 相关类及接口 Rlist:链表 ?
Perl 的 Data::Rmap允许您在数据结构列表上递归评估 BLOCK(在本地设置 $_ 到每个元素)并返回由此类评估结果组成的列表。 $_ 可用于修改元素。 这对于迭代嵌套哈希或哈希数组的层次
代码示例: map = client.getMap(...) list = client.getList(); map.put(.., list); ... list.add(....); ... t
我看到 RMap ( https://static.javadoc.io/org.redisson/redisson/3.5.6/org/redisson/api/RMap.html ) 有 putA
图例和标签(州缩写)未在 Shiny 应用程序的美国等值区中显示。但是,当我在 RStudio 控制台的 global.R 函数中运行代码时,标签和图例都显示正常。请帮忙! 代码如下: global.
我是一名优秀的程序员,十分优秀!