我目前正在尝试使用Kartograph.py按县生成房屋中值的等值线。我之前能够通过包含在我的Notebook中的配置和 CSS 字符串来构建一个 choropleth 。(请注意,这tel
是我感兴趣的变量,它dbf_in
是一个pandas DataFrame,其中包含与我的状态 shapefile 关联的 .dbf 表中的信息。)
#Create color map
col_map=dict(zip(dbf_in['tel'],dbf_in['color']))
#Generate configuration dict
config={"proj":{
"id":"laea-usa"},
"layers":{
"USA": {
"src": shp_dir+"cb_2013_us_state_5m.shp",
"attributes":"all"},
"Lakes":{
"src": shp_dir+"ne_10m_lakes.shp",
"subtract-from": "USA",
"filter":{
"scalerank":0}}},
"bounds":{
"mode":"bbox",
"data":[-180,15,-65,55],}}
#Initialize Kartograph obj1ct
K=Kartograph()
#Generate style sheet
css_list=[]
for i in range(1,5):
css_list.append('#USA[tel='+str(i)+']{fill: '+col_map[i]+'; stroke: #FFFFFF;}')
css='\n'.join(css_list)
#Generate blank map
K.generate(config, outfile='TEL_bind_states.svg',stylesheet=css)
为了完整起见,这里是 CSS 字符串:
#USA[tel=1]{fill: #fcbba1; stroke: #FFFFFF;}
#USA[tel=2]{fill: #fb694a; stroke: #FFFFFF;}
#USA[tel=3]{fill: #ca181d; stroke: #FFFFFF;}
#USA[tel=4]{fill: #67000d; stroke: #FFFFFF;}
简而言之,我能够动态构建我的 CSS 字符串,并生成以下图像的 SVG 版本:
遵循类似的协议来创建州级等值线:
#Map colors to counties
col_map=dict(zip(acs['id5'],acs['color']))
#Generate style sheet
css_list=[]
for key in col_map.keys():
css_list.append('#County[geoid='+key+']{fill: '+col_map[key]+'; stroke: #FFFFFF;}')
css='\n'.join(css_list[1:])
#Generate configuration dict
config={"proj":{
"id":"laea-usa"},
"layers":{
"County": {
"src": shp_dir+"tl_2014_us_county.shp",
"attributes":"all",
"simplify":3}},
"bounds":{
"mode":"bbox",
"data":[-180,15,-65,55],}}
#Initialize Kartograph obj1ct
K=Kartograph()
#Generate blank map
K.generate(config, outfile='blank_US_cty.svg',stylesheet=css)
这是 CSS 字符串的第一部分:
#County[geoid=16079]{fill: #fee0d2; stroke: #FFFFFF;}
#County[geoid=33017]{fill: #fdc5ae; stroke: #FFFFFF;}
#County[geoid=16073]{fill: #fee1d4; stroke: #FFFFFF;}
#County[geoid=16071]{fill: #fee3d7; stroke: #FFFFFF;}
#County[geoid=16077]{fill: #fee1d3; stroke: #FFFFFF;}
#County[geoid=16075]{fill: #fee1d3; stroke: #FFFFFF;}
#County[geoid=48093]{fill: #feeae0; stroke: #FFFFFF;}
#County[geoid=06115]{fill: #fdd0bc; stroke: #FFFFFF;}
#County[geoid=06111]{fill: #fa6648; stroke: #FFFFFF;}
然而,这一次,我似乎无法将颜色绑定到多边形上,就像我在状态中所做的那样。这一次,它产生以下图像:
关于为什么会发生这种情况的任何想法?我确实考虑过可能包含超过 3000 个项目的字典是有问题的,但是当我尝试用只有五个唯一值的变量着色时,我得到了相同的结果。