From 9c32cd5a5d426f9c313de99b822eb0250b25cfd9 Mon Sep 17 00:00:00 2001 From: Emmanuel Heriberto Oceguera Conchas <e.oceguera@gmx.de> Date: Fri, 14 Oct 2022 14:12:44 +0200 Subject: [PATCH] updated --- netCDF_visualizer_funtionality.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/netCDF_visualizer_funtionality.py b/netCDF_visualizer_funtionality.py index 61a2da8..2579024 100644 --- a/netCDF_visualizer_funtionality.py +++ b/netCDF_visualizer_funtionality.py @@ -100,8 +100,6 @@ class maskAndFuntionality (BASE, WIDGET): #we remove the path from the text space self.text_set.clear() - - def loadNetCDF(self): """This function loads the netCDF file""" @@ -124,7 +122,8 @@ class maskAndFuntionality (BASE, WIDGET): ncVarValues = ncVar.values() #we get the units of the variables ncVarUnits = ncVar.values() - + + #we show the variables in the list self.ListWidget.addItems(ncVarNames) #we show the dimensions in the list @@ -139,5 +138,4 @@ class maskAndFuntionality (BASE, WIDGET): #we close the netCDF file ncFile.close() - def -- GitLab