如何在世界 scatter_geo 上仅显示美国的国家边界?
我正在使用plotly express scattergeo 在世界地图上绘制一些数据点,但我也希望在州一级显示美国。当我使用时,“世界”范围不会对 showsubunits 参数做出反应:
fig.update_geos(
visible=True, resolution=50, scope='world',
showcountires=True, countrycolor="Black",
showsubunits=True, subunitcolor='Brown')
但是,当我将范围仅限于美国时,“美国”范围会做出反应并显示州界线。 有没有一种方法可以以某种方式覆盖仅包含国家边界的世界地图和包含国家边界的美国地图,以获取同一组散布纬度/经度数据?作为一个更普遍的问题,我可以有选择地定义在州一级显示哪些国家/地区吗?
I'm using plotly express scattergeo to plot some data points on a world map but I also like to have the US be shown at the state level. The 'world' scope doesn't react to the showsubunits argument when I use:
fig.update_geos(
visible=True, resolution=50, scope='world',
showcountires=True, countrycolor="Black",
showsubunits=True, subunitcolor='Brown')
However, the 'usa' scope does and shows the state lines when I limit my scope only to US.
Is there a way to somehow overlay a world map with only country borders and also a US map with state borders for the same set of scatter lat/lon data? As a more general question, can I selectively define which countries to show at the state level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)