--> -->
 
 
KeyError
Python 3.7.3: /uufs/chpc.utah.edu/common/home/u0553130/anaconda3/bin/python
Thu May 16 05:24:22 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([('UUSYR', {'URL': 'http://api.mesow...728, 10.639, 10.55 , 10.8 , 11.228, nan])})]), s = 'UUSYR', plot_this = array([11.122, 10.628, 10.4 , 10.189, 10.178, 1... 10.728, 10.639, 10.55 , 10.8 , 11.228, nan]), 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>