, annotate.
, x ( ) y- (, ), .
( extent kwarg imshow , ):
import numpy as np
import matplotlib.pyplot as plt
data = np.random.random((10, 10))
fig, ax = plt.subplots()
im = ax.imshow(data, interpolation='nearest', cmap='gist_earth', aspect='auto',
extent=[220, 2000, 3000, 330])
ax.invert_yaxis()
ax.set(xlabel='Easting (m)', ylabel='Northing (m)', title='This is a title')
fig.colorbar(im, orientation='horizontal').set_label('Water Depth (m)')
ax.annotate('...Additional information...',
xy=(0.5, 0), xytext=(0, 10),
xycoords=('axes fraction', 'figure fraction'),
textcoords='offset points',
size=14, ha='center', va='bottom')
plt.show()

. annotate.
Annotate (xytext) (xy) , .
, :
ax.annotate('...Additional information...',
xy=(0.5, 0),
xycoords=('axes fraction', 'figure fraction'),
xytext=(0, 10),
textcoords='offset points',
size=14, ha='center', va='bottom')
, . (intro ) .