在散景服务器配置中,如何从客户端浏览器获取x,y坐标到服务器

时间:2017-02-26 03:45:39

标签: javascript python bokeh

我有一个名为getcoords.py的散景服务器应用程序。我使用:bokeh serve getcoords.py启动服务器。我的HoverTool具有CustomJS回调函数。此外,我有一个quad glyphon_change配置为在服务器端触发selected事件。每次点击onTab quad时都会执行glyph功能。当我点击字形时,我想以某种方式与客户端通信并获得指针坐标。这是代码:

import bokeh
import bokeh.plotting

p = bokeh.plotting.figure(plot_height=200,x_range=(0,10),y_range=(0,10))
imquad = p.quad(top=[8], bottom=[2], left=[2], right=[8])

sourceXY = bokeh.models.ColumnDataSource(data=dict(x = [0], y = [0]))

callback_hover = bokeh.models.CustomJS(args=dict(sourceXY=sourceXY), code="""
    console.log('Coords:'+sourceXY.data['x'] +','+sourceXY.data['y'])
    sourceXY.data['x'] = [cb_data['geometry'].x];
    sourceXY.data['y'] = [cb_data['geometry'].y];
    sourceXY.trigger('change');
    """)
def onHover(attr, old, new):
    print "Hover"

counter = 0

def onTab(attr, old, new):
    global counter
    print "Tap on quad. Coordinates:",sourceXY.data['x'], sourceXY.data['y']
    sourceXY.data['x'], sourceXY.data['y'] = [counter],[counter]
    counter += 1
    sourceXY.trigger('data',None,None)
    # unselecting imquad to keep triggering on_change:
    new['1d']['indices'] = []

imquad.data_source.on_change('selected',onTab)

hover_tool = bokeh.models.HoverTool(callback=callback_hover)
tap_tool   = bokeh.models.TapTool()
p.add_tools(tap_tool)
p.add_tools(hover_tool)

bokeh.io.curdoc().add_root(p)

以下是浏览器的屏幕截图,显示JavaScript控制台日志。 Coords:0,0 1,1 2,2 3,3 4,4对应于一次点击四字形的时刻,这些值从服务器发送到客户端浏览器。 javascript CustomJS代码首先显示sourceXY的值,然后将其替换为x和y数据坐标。当您移动鼠标时,sourceXY正在使用这些坐标进行更新,只要您不点击,这些就会在JS控制台中显示。

enter image description here

这是服务器端控制台的屏幕截图。每次点击四字形时,都会执行onTab(attr,old,new)例程。首先,它显示存储在sourceXY中的值,然后分配一个全局计数器值,每次执行例程时该值增加1。以下是我希望能够从客户端读取sourceXY的值,但我无法做到。

wirelessprv-XX-XXX-XXX-XXX:GetCoords pablo$ bokeh serve getcoords.py 
2017-02-25 21:26:00,899 Starting Bokeh server version 0.12.4
2017-02-25 21:26:00,911 Starting Bokeh server on port 5006 with applications at paths ['/getcoords']
2017-02-25 21:26:00,912 Starting Bokeh server with process id: 36965
2017-02-25 21:26:01,267 200 GET /getcoords (::1) 85.38ms
2017-02-25 21:26:01,785 WebSocket connection opened
2017-02-25 21:26:01,788 ServerConnection created
Tap on quad. Coordinates: [0] [0]
Tap on quad. Coordinates: [0] [0]
Tap on quad. Coordinates: [1] [1]
Tap on quad. Coordinates: [2] [2]
Tap on quad. Coordinates: [3] [3]

我尝试创建一个ColumnDataSource名为sourceXY,在CustomJS客户端更新。然后,当我点击字形时,服务器端的python代码读取尚未更新的服务器端ColumnDataSource的值,然后修改它以测试服务器到客户端的通信。该部分工作得很好,因为客户端能够读取从服务器发送的x和y。 我想知道是否有办法从客户端到服务器端获取ColumnDataSource(或点击发生时的坐标本身)中保存的坐标。 欢迎任何建议,意见。感谢。

1 个答案:

答案 0 :(得分:2)

我找到了一种更新从服务器到客户端的坐标值的方法。我发现该解决方案更新了来自TextInput的{​​{1}} javascript回调的CustomJS模型。我会把我的解决方案放在这里以防万一有人可以从中受益。

HoverTool

每次点击import bokeh import bokeh.plotting p = bokeh.plotting.figure(plot_height=200,x_range=(0,10),y_range=(0,10)) imquad = p.quad(top=[8], bottom=[2], left=[2], right=[8]) textxy = bokeh.models.TextInput(title="xy val", value='') callback_hover = bokeh.models.CustomJS(args=dict(textxy=textxy), code=""" textxy.value = cb_data['geometry'].x + ',' + cb_data['geometry'].y; console.log(textxy.value); """) def onTab(attr, old, new): print "tap:",textxy.value # unselecting imquad to keep triggering on_change: new['1d']['indices'] = [] imquad.data_source.on_change('selected',onTab) hover_tool = bokeh.models.HoverTool(callback=callback_hover) tap_tool = bokeh.models.TapTool() p.add_tools(tap_tool) p.add_tools(hover_tool) bokeh.io.curdoc().add_root(p) quad时,控制台的输出都会显示正确的坐标:

glyph

更新新的Bokeh版本。测试0.12.16

要使这种方法起作用,需要将TextInput模型添加到客户端布局中。这里它被添加为行的一部分并且被禁用:

wirelessprv-XXX-XXX-XXX-XXX:GetCoords pablo$ bokeh serve getcoords.py 
2017-02-26 18:09:44,189 Starting Bokeh server version 0.12.4
2017-02-26 18:09:44,199 Starting Bokeh server on port 5006 with applications at paths ['/getcoords']
2017-02-26 18:09:44,199 Starting Bokeh server with process id: 42626
2017-02-26 18:09:46,841 200 GET /getcoords (::1) 68.90ms
2017-02-26 18:09:47,282 WebSocket connection opened
2017-02-26 18:09:47,283 ServerConnection created
tap: 3.3528435714104643,3.925695345068399
tap: 5.715666419702689,6.670813794893257
tap: 6.649805685306592,3.341627589786514
tap: 7.913641162300107,2.407119181335499
tap: 7.913641162300107,7.66372897887246

应该提到的是,import bokeh import bokeh.plotting p = bokeh.plotting.figure(plot_height=200,x_range=(0,10),y_range=(0,10)) imquad = p.quad(top=[8], bottom=[2], left=[2], right=[8]) textxy = bokeh.models.TextInput(title="xy val", value='',disabled=True) callback_hover = bokeh.models.CustomJS(args=dict(textxy=textxy), code=""" textxy.value = cb_data['geometry'].x + ',' + cb_data['geometry'].y; console.log(textxy.value); """) def onTab(attr, old, new): print "tap:",textxy.value imquad.data_source.on_change('selected',onTab) hover_tool = bokeh.models.HoverTool(callback=callback_hover) tap_tool = bokeh.models.TapTool() p.add_tools(tap_tool) p.add_tools(hover_tool) layout = bokeh.layouts.row(p,textxy) bokeh.io.curdoc().add_root(layout) 模型可以以相同的方式发送在bokeh.models.Div回调功能中更新的x,y坐标。