Add map location

This commit is contained in:
Dustin Pianalto 2018-05-04 10:40:49 -08:00
parent c7e0fe017c
commit bd34de573c

View File

@ -592,7 +592,7 @@ class Utils:
draw_map(m) draw_map(m)
x, y = m(lon, lat) x, y = m(lon, lat)
plt.plot(x, y, 'ok', markersize=5, color='red') plt.plot(x, y, 'ok', markersize=5, color='red')
plt.text(x, y, ' Palmer', fontsize=12, color='red') plt.text(x, y, f' {location.title()}', fontsize=12, color='red')
plt.tight_layout() plt.tight_layout()
img = BytesIO() img = BytesIO()