Skip to content

Commit eb9b5c5

Browse files
committed
removes interpolation on thmap display
1 parent 1dfbab4 commit eb9b5c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solarannotator/gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, config):
5151
self.region_patches = []
5252
self.axs = canvas.figure.subplots(ncols=2, sharex=True, sharey=True)
5353
self.preview_axesimage = self.axs[0].imshow(self.preview_data, vmin=0, vmax=1, cmap='gray', origin='lower')
54-
self.thmap_axesimage = self.axs[1].imshow(self.thmap_data, origin='lower',
54+
self.thmap_axesimage = self.axs[1].imshow(self.thmap_data, origin='lower', interpolation='none',
5555
vmin=0, vmax=config.max_index, cmap=config.solar_cmap)
5656
self.axs[0].set_axis_off()
5757
self.axs[1].set_axis_off()

0 commit comments

Comments
 (0)