Questions tagged «topojson»


5
GeoJSON太庞大-怎么办?
我正在使用leaflet.js允许网络用户选择区域。有效区域是美国各州,加拿大的天意和世界国家(美国和加拿大除外)。我自己使用Qgis构造了一个shapefile,并将其保存为geojson。我尽可能地简化了几何形状。 生成的shapefile为400kb,但geojson超过一兆字节。这比我想要的要大。我需要减少传输此信息所涉及的网络开销。 什么是正确的方法?我可以想象的选项是: 将geojson文件压缩后,在客户端上解压缩。 将客户端上的shapefile解析为geojson 从shapefile生成我自己的图块并为这些图块服务 如果有人能告诉我哪个选项是最好的(或以上都不是),我将不胜感激!


1
带自定义json的rMaps choropleth
想要使用RI制作带有包和自定义贴图的动画ChoroplethrMaps贴图。我尝试遵循此处描述的Diego Valle的示例,并为Datamaps使用自定义地图信息。 但是,地图不会显示。但是,带有正确填充键的图例随年份动画栏出现。topoJson文件似乎很好。 library(rCharts);library(rMaps);library(rgdal) map = readOGR("https://raw.githubusercontent.com/gupierre/GHA_vol/master/Data/GHA_adm/GHA_adm1.topo.json", layer="admin_1",stringsAsFactors=F) #Data: SDLOG<-read.table("https://raw.githubusercontent.com/gupierre/GHA_vol/master/Data/sdlog.csv", header=T,stringsAsFactors=F, sep =",") head(SDLOG) year name sdlog type >1 2004 Greater Accra 0.20030687 urban >2 2005 Greater Accra 0.15322712 urban >3 2006 Greater Accra 0.10782677 urban #Map: library(rCharts);library(rMaps) d1 <- ichoropleth(sdlog ~ name, data = SDLOG[SDLOG$type=="rural",], ncuts = 7, pal …
17 r  topojson  choropleth 

3
D3地图-在哪个阶段将数据引入地理区域?
我想映射一个世界choropleth以便与D3 la一起显示: http://bl.ocks.org/mbostock/4206573 http://bl.ocks.org/jasondavies/4188334 我有一个要显示为ISO-alpha-3键的数据集。所以... danger.csv iso,level AFG,100 ALB,0 DZA,12 等等 按照关于topojson的说明,我知道我可以做... wget "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/cultural/ne_50m_admin_0_countries.zip" unzip ne_50m_admin_0_countries.zip ogr2ogr -f "GeoJSON" output_features.json ne_50m_admin_0_countries.shp -select iso_a3 topojson -o topo.json output_features.json --id-property iso_a3 生成由ISO3标识的worldmap json。 我的问题是:我应该在工作流中的哪一点将anger.csv中的数据合并到地理数据中?我以前曾将qGIS作为GUI使用,但合并应该在哪里发生?在.shp中?在ogr2ogr之后?在topojson缩小之后在浏览器中动态地动态显示(例如此处http://bl.ocks.org/mbostock/4060606 http://bl.ocks.org/mbostock/3306362)? 我对python很好,但是对javascript来说还很陌生,发现自己复制和粘贴Bostock示例比实际成为那里的生成编码器更多。 (我也有一个与Stackoverflow相关但涉及更多的后续活动,也许我应该在这里进行迁移:https : //stackoverflow.com/questions/18604877/how-to-do-time-data-in-d3-maps)
12 d3  topojson 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.