Skip to content

Commit

Permalink
Merge pull request #378 from CroatianMeteorNetwork/Cybis320/issue377
Browse files Browse the repository at this point in the history
Revert error introduced by PR #350
  • Loading branch information
dvida authored Aug 21, 2024
2 parents cc9cefb + 1212522 commit 6f42cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RMS/Routines/AllskyPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def plotGrid(self, step=15):
else:
va = 'top'

self.ax.text(x, y, r"{:+d}$^\\circ$".format(dec), color='0.5', ha='center', va=va, size=7)
self.ax.text(x, y, "${:+d}^\\circ$".format(dec), color='0.5', ha='center', va=va, size=7)



Expand All @@ -158,7 +158,7 @@ def plotGrid(self, step=15):
#ra_text = (180 - ra)%360

x, y = self.raDec2XY(ra, 0)
self.ax.text(x, y, r"{:+d}$^\\circ$".format(int(ra)), color='0.5', ha='center', va='top', size=7)
self.ax.text(x, y, "${:+d}^\\circ$".format(int(ra)), color='0.5', ha='center', va='top', size=7)



Expand Down

0 comments on commit 6f42cc1

Please sign in to comment.