Skip to content
Snippets Groups Projects
Commit 60668b2c authored by Dario Barghini's avatar Dario Barghini
Browse files

Fixed warning in plot.py

parent cde0c720
No related branches found
No related tags found
No related merge requests found
......@@ -452,7 +452,7 @@ class Plot(object):
'Sky Brightness ('+config._device_shorttype+'_'+\
config._observatory_name+')\n',fontsize='x-large')
self.thegraph_sunalt.set_xlabel('Solar altitude (deg)',fontsize='large')
self.thegraph_sunalt.set_ylabel('Sky Brightness (mag/$\mathregular{arcsec^2}$)',fontsize='medium')
self.thegraph_sunalt.set_ylabel(r'Sky Brightness (mag/$\mathregular{arcsec^2}$)',fontsize='medium')
# Auxiliary plot (Temperature)
'''
......@@ -495,7 +495,7 @@ class Plot(object):
#self.thegraph_time.set_title('Sky Brightness (SQM-'+config._observatory_name+')',\
# fontsize='x-large')
self.thegraph_time.set_xlabel('Time (UTC'+UTC_offset_label+')',fontsize='large')
self.thegraph_time.set_ylabel('Sky Brightness (mag/$\mathregular{arcsec^2}$)',fontsize='medium')
self.thegraph_time.set_ylabel(r'Sky Brightness (mag/$\mathregular{arcsec^2}$)',fontsize='medium')
# Auxiliary plot (Temperature)
'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment