我正在尝试使用散景来绘制地图上的数据:
from bokeh.io import output_file, show
from bokeh.plotting import figure
from bokeh.tile_providers import CARTODBPOSITRON_RETINA
lat = 8350000 #
lon = -4888000
fig = figure(tools='pan, wheel_zoom,reset', x_range=(lon-100000,lon+100000), y_range=(lat-100000, lat+100000))
fig.square_x(lon,lat, size = 25, fill_color = None,line_color = "green", line_width = 2)
fig.axis.visible = True
fig.add_tile(CARTODBPOSITRON_RETINA)
output_file("CARTODBPOSITRON_RETINA_plot.html")
show(fig)
我想使用地理坐标(例如十进制度数)向地图添加点。如何将地理坐标转换为散景中使用的坐标?此外,我不知道如何将轴更改为度。 谢谢你的帮助。