我目前正试图通过县Kartograph.py生成中位数家庭价值的等值线。我以前能够通过我Notebook中包含的配置和CSS字符串构建一个等值区。 (请注意,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个项目的字典存在问题,但是当我尝试使用只有五个唯一值的变量进行着色时,我得到了相同的结果。