Skip to content

How to plot sample point values overlaid onto a map #3510

Answered by dopplershift
edrewitz asked this question in Q&A
Discussion options

You must be logged in to vote
  • There's the clabel() matplotlib plotting method if you want to label the contours
  • You could use plt.text() or ax.text() with an appropriate transform argument to put the text at that location
  • If there are a lot of points, you might want to use MetPy's StationPlot class, which you could do something like:
sp = StationPlot(ax, lon, lat, transform=ccrs.PlateCarree())
sp.plot_parameter('C', my_data_vals)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@edrewitz
Comment options

Answer selected by edrewitz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants