Skip to content

Instantly share code, notes, and snippets.

@donkarlo
Created August 13, 2022 21:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donkarlo/4cb08c22930bc992b19d18b61a864a5f to your computer and use it in GitHub Desktop.
Save donkarlo/4cb08c22930bc992b19d18b61a864a5f to your computer and use it in GitHub Desktop.
mpl.use("TkAgg")
plt.ion()
fig, axes = plt.subplots(2, 1)
line1, = axes[0].plot(np.random.randn(100))
plt.show()
def updateGpsPlot(robotSpecificGpsTimeRows):
line1.set_xdata( robotSpecificGpsTimeRows[:, 1])
line1.set_ydata( robotSpecificGpsTimeRows[:, 2])
fig.canvas.draw()
fig.canvas.flush_events()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment