--> -->
 
 
KeyError
Python 3.7.3: /uufs/chpc.utah.edu/common/home/u0553130/anaconda3/bin/python
Sat Jul 27 08:42:16 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /uufs/chpc.utah.edu/common/home/u0553130/public_html/Brian_Blaylock/cgi-bin/ts_multistations.cgi in <module>()
    133             plot_this = data[s][variable]
    134             unit = 'C'
=>  135         ax.plot(data[s]['DATETIME'], plot_this, label=s.upper())
    136         plt.title('Air Temperature')
    137         plt.ylabel('Temperature (%s)' % unit)
ax = <matplotlib.axes._subplots.AxesSubplot object>, ax.plot = <bound method Axes.plot of <matplotlib.axes._subplots.AxesSubplot object>>, data = OrderedDict([('PSRIM', {'URL': 'http://api.mesow...506, 9.383, 9.511, 9.467, 9.422, 9.217])})]), s = 'PSRIM', plot_this = array([13.011, 13.561, 14.878, 15.556, 15.972, 1... 8.561, 8.378, 8.278, 8.078, 8.039, 8.072]), label undefined, s.upper = <built-in method upper of str object>

KeyError: 'DATETIME'
      args = ('DATETIME',)
      with_traceback = <built-in method with_traceback of KeyError object>