尝试使用choropleth
在离线模式下从没有外部互联网访问权限的计算机上绘制plotly
地图是不可行的。我正在从plotly tutorial运行示例choropleth
脚本。
从控制台的检查来看,似乎很高兴地寻找无法从计算机访问的https://cdn.plot.ly/usa_110m.json。
在https://community.plot.ly/t/loading-geo-assets-offline-solved/11869中询问了一个相关问题dash
。具体来说,解决方案是从本地服务器提供文件,并通过plotly
配置将该文件传递为:
plotlyConfig = {'topojsonURL':'http://127.0.0.1:%i/assets/'%portnumber} if offline else {}
gr = dcc.Graph(id='inputMap', config=plotlyConfig, figure = fig)
有没有办法将类似的配置传递给jupyter笔记本?