Skip to content

Commit

Permalink
fixed all 841
Browse files Browse the repository at this point in the history
  • Loading branch information
Arohan Ajit committed Oct 2, 2024
1 parent 1b639db commit d6998f5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions gui/wxpython/iscatt/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,7 @@ def SetDataDone(self, event):
del self.busy
self.data_set = True

todo = event.ret
self.bad_bands = event.ret
bands = self.core.GetBands()

self.bad_rasts = event.ret
self.cats_mgr.SetData()
Expand Down Expand Up @@ -809,7 +807,6 @@ def ExportCatRast(self, cat_id):
def OnExportCatRastDone(self, event):
ret, err = event.ret
if ret == 0:
cat_attrs = self.GetCategoryAttrs(event.kwds["cat_id"])
GMessage(
_("Scatter plot raster of class <%s> exported to raster map <%s>.")
% (event.userdata["name"], event.kwds["rast_name"])
Expand Down
8 changes: 0 additions & 8 deletions gui/wxpython/iscatt/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ def Plot(self, cats_order, scatts, ellipses, styles):
if not e:
continue

colors = styles[cat_id]["color"].split(":")
if self.transpose:
e["theta"] = 360 - e["theta"] + 90
if e["theta"] >= 360:
Expand Down Expand Up @@ -355,9 +354,6 @@ def ZoomRectangle(self, event):
if event.button != 1:
return

cur_xlim = self.axes.get_xlim()
cur_ylim = self.axes.get_ylim()

x1, y1 = event.xdata, event.ydata
x2 = deepcopy(self.zoom_rect_coords["x"])
y2 = deepcopy(self.zoom_rect_coords["y"])
Expand Down Expand Up @@ -651,13 +647,9 @@ def __init__(self, ax, pol, empty_pol):

x, y = zip(*self.pol.xy)

style = self._getPolygonStyle()

self.line = Line2D(x, y, marker="o", markerfacecolor="r", animated=True)
self.ax.add_line(self.line)
# self._update_line(pol)

cid = self.pol.add_callback(self.poly_changed)
self.moving_ver_idx = None # the active vert

self.mode = None
Expand Down

0 comments on commit d6998f5

Please sign in to comment.