|
From: Jonathan_Kowalik <jon...@na...> - 2014-04-30 08:20:41
|
I already got the answer:
ax = plt.gca()
def format_coord(x, y):
return 'x=%.4f, y=%.4f'%(m(x, y, inverse = True))
ax.format_coord = format_coord
This does exactly what I wanted. :-)
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/Interactively-get-readable-i-e-lng-lat-coordinates-from-a-matplotlib-basemap-plot-tp43328p43330.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
|