Bonjour,

je reviens vers vous pour résoudre un petit problème d'affichage d'un petit zoom dans une petit subpanel

error et que le rightpanelbottomright has no attribut right

je comprends pas c'est quoi le problème voilà la partie du code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
 
class MiddlePanelBottom(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent, name="MiddleBottom", style = wx.SUNKEN_BORDER)
        self.SetBackgroundColour('black')
        self.top = MiddlePanelBottomTop(self)
        self.bottom = MiddlePanelBottomBottom(self)
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.top, 0.5, wx.EXPAND)
        sizer.Add(self.bottom, 5, wx.EXPAND)
 
        self.SetSizer(sizer)
 
 
 
 
 
 
 
 
# ------------ RIGHT ------------
 
class RightPanelTop(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent)
        self.SetBackgroundColour('black')
        canal=wx.Button(self,-1,"Variable",size=(140,30),pos=(100,0))
        dynamique=wx.Button(self,-1,"Dynamique",size=(140,30),pos=(240,0))
        file = wx.Button(self,-1,"File", size = (110,30),pos=(0,0))
        dynamique.SetBackgroundColour('white')
        canal.SetBackgroundColour('white')
        file.SetBackgroundColour('white')
        dynamique.Bind(wx.EVT_BUTTON, self.OnClick)
        file.Bind(wx.EVT_BUTTON, self.onOpen)
 
    def onOpen(self, event):
        wildcard = "netCDF4 files (*.nc)|*.nc| HDF5 files (*.h5) |*.h5"
        dialog = wx.FileDialog(self, "Open netCDF4 Files| HDF5 files", wildcard=wildcard,
                               style=wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
 
        if dialog.ShowModal() == wx.ID_CANCEL:
            return
 
        path = dialog.GetPath()
 
        if os.path.exists(path):
            with open(path) as fobj:
                for line in fobj:
                    self.my_text.WriteText(line)
 
    def OnClick(self,event):
        dlg = wx.TextEntryDialog(self, 'Enter Dynamique of image','Dynamique de image')
 
        if dlg.ShowModal() == wx.ID_OK:
         self.text.SetValue("Dynamique:"+dlg.GetValue())
        dlg.Destroy()
 
class RightPanel(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent,style = wx.SUNKEN_BORDER)
 
        self.top = RightPanelTop(self)
        self.bottom = RightPanelBottom(self)
 
        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.top, 1, wx.EXPAND)
        sizer.Add(self.bottom, 1, wx.EXPAND)
        self.SetSizer(sizer)
 
class PanelBottom(wx.Panel):
    def __init__(self,parent):
        super().__init__(parent)
        self.SetBackgroundColour('grey77')
 
class PanelTop(wx.Panel):
    def __init__(self,parent):
        super().__init__(parent)
 
 
 
        left = SubPanelLeft(self)
        self.right = RightPanelBottomTopRight(self)
        midlle = SubPanelMiddle(self)
        sizer1 = wx.BoxSizer(wx.HORIZONTAL)
        sizer1.Add(left, 1, wx.EXPAND)
        sizer1.Add(midlle, 1, wx.EXPAND)
        sizer1.Add(self.right, 1, wx.EXPAND)
 
        self.SetSizer(sizer1)
 
class MiddlePanelBottomTop(wx.Panel): #dans cette panel j defini que les button 
    def __init__(self, parent):
        super().__init__(parent , name= " MiddleBottomTop", size = (30,30))
        self.SetBackgroundColour('white')
 
        canal=wx.Button(self,-1,"Variable",size=(140,30),pos=(100,0))
        dynamique=wx.Button(self,-1,"Dynamique",size=(140,30),pos=(240,0))
        file = wx.Button(self,-1,"File", size = (110,30),pos=(0,0))
        dynamique.SetBackgroundColour('white')
        canal.SetBackgroundColour('white')
        file.SetBackgroundColour('white')
        dynamique.Bind(wx.EVT_BUTTON, self.OnClick)
        file.Bind(wx.EVT_BUTTON, self.onOpen)
        self.load_options = "netCDF4 files (nc)|*.nc| Text files (txt) |*.txt| All files |*.*"
 
 
 
    def onOpen(self, event):
        wildcard = "netCDF4 files (*.nc)|*.nc"
        dialog = wx.FileDialog(self, "Open netCDF4 Files", wildcard=wildcard,
                               style=wx.FD_OPEN | wx.FD_FILE_MUST_EXIST)
 
        if dialog.ShowModal() == wx.ID_CANCEL:
            return
        path = dialog.GetPath()
 
        if os.path.exists(path):
            with open(path) as fobj:
                for line in fobj:
                    self.my_text.WriteText(line)
 
    def OnClick(self,event):
        dlg = wx.TextEntryDialog(self, 'Enter Dynamique of image','Dynamique de image')
 
        if dlg.ShowModal() == wx.ID_OK:
         self.text.SetValue("Dynamique:"+dlg.GetValue())
        dlg.Destroy()
class MiddlePanelBottomBottom(wx.Panel): #ici l'affichage 
    def __init__(self, parent):
        super().__init__(parent, name = " MiddleBottomBottom",size = (200,200))
        self.SetBackgroundColour('black')
    def Update(self,zoom_axes):
 
 
        self.figure = Figure(figsize =(5,3))
        self.axes = self.figure.add_subplot(111)
        self.canvas = FigureCanvas(self,0, self.figure)
        self.sizer = wx.BoxSizer ( wx.VERTICAL)
        self.sizer.Add(self.canvas,0, wx.EXPAND)
        self.SetSizer(self.sizer)
        self.axes.axis(zoom_axes)
 
        path=file_names
        nc = netCDF4.Dataset(file_names)
 
 
        lons = nc.variables['lon'][:]
        lats = nc.variables['lat'][:]
        air_dep = nc.variables['air_dep'][:,:,:]
        air_dep = air_dep[0,:,:]
 
        self.axes.pcolormesh(air_dep)
        self.canvas.draw()
        self.Refresh()
        try:
            self.RS.set_visible(False)
        except:
            pass
 
        self.RS = RectangleSelector(self.axes,self.line_select_callback,
                                       drawtype='box', useblit=False,
                                       button=[1, 3],minspanx=5, minspany=5,
                                       spancoords='pixels',
                                       interactive=True, rectprops = dict(facecolor='None',edgecolor='red',alpha=5,fill=False))
        self.RS.to_draw.set_visible(True)
        self.RS.extents = (1,0,1,0)
 
    def line_select_callback(self, eclick, erelease):
        'eclick and erelease are the press and release events'
        x1, y1 = eclick.xdata, eclick.ydata
        x2, y2 = erelease.xdata, erelease.ydata
        self.zoom_axes=[x1,x2,y1,y2]
 
        self.GrandParent.bottom.top.right.Update(self.zoom_axes)
 
class RightPanelBottom(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent)
        self.SetBackgroundColour('snow2')
 
        self.top = PanelTop(self)
        self.bottom = PanelBottom(self)
        sizer1 = wx.BoxSizer(wx.VERTICAL)
        sizer1.Add(self.top, 1, wx.EXPAND)
        sizer1.Add(self.bottom, 1, wx.EXPAND)
        self.SetSizer(sizer1)
 
 
class SubPanelLeft(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent,style = wx.SUNKEN_BORDER)
        self.SetBackgroundColour('black')
 
class SubPanelMiddle(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent,style = wx.SUNKEN_BORDER)
        self.SetBackgroundColour('black')
 
class RightPanelBottomTopRight(wx.Panel):
    def __init__(self, parent):
        super().__init__(parent,name = "BottomTopRight", style = wx.SUNKEN_BORDER)
        self.SetBackgroundColour('black')
    def Update(self,zoom_axes):
 
        self.figure = Figure(figsize =(2.5,2.5))
        self.canvas = FigureCanvas(self, 1, self.figure)
        self.axes = self.figure.add_subplot(111)
        self.figure.subplots_adjust(left=0.009,right=0.9,bottom=0.2,top=0.98)
 
 
 
        self.axes.axis(zoom_axes)
 
        path=file_names
        nc = netCDF4.Dataset(file_names)
 
 
        lons = nc.variables['lon'][:]
        lats = nc.variables['lat'][:]
        air_dep = nc.variables['air_dep'][:,:,:]
        air_dep = air_dep[0,:,:]
 
        self.axes.pcolormesh(air_dep)
        self.axes.get_xaxis().set_visible(False)
        self.axes.get_yaxis().set_visible(False)
        self.canvas.draw()
        self.Refresh()
 
 
app = wx.App()
frame = MainFrame(None).Show()
app.MainLoop()
j'aimerai afficher la partie du zoom de Middlepanelbottombottom vers RightpanelBottomtopright

mais j'arrive pas *

merci d'avance