[GRASS-SVN] r38062 - grass-addons/vector/v.krige

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jun 24 13:53:35 EDT 2009


Author: aghisla
Date: 2009-06-24 13:53:34 -0400 (Wed, 24 Jun 2009)
New Revision: 38062

Modified:
   grass-addons/vector/v.krige/v.krige.py
Log:
wx.CallAfter can be improved - still lag in interface creation


Modified: grass-addons/vector/v.krige/v.krige.py
===================================================================
--- grass-addons/vector/v.krige/v.krige.py	2009-06-24 16:56:59 UTC (rev 38061)
+++ grass-addons/vector/v.krige/v.krige.py	2009-06-24 17:53:34 UTC (rev 38062)
@@ -97,6 +97,7 @@
         for Rpackage in ["automap", "gstat", "geoR"]:
             self.CreatePage(package = Rpackage)
         
+        
         #@TODO(anne): check this dependency at the beginning.
         if self.RPackagesBook.GetPageCount() == 0:
             wx.MessageBox(parent=self,
@@ -266,7 +267,7 @@
     #    RBookPanel.__init__(self, parent, *args, **kwargs)
         
     def FitVariogram(self, Formula, InputData):
-        return robjects.r.autofitVariogram(Formula, InputData)
+        pass
         
     def DoKriging():
         pass
@@ -277,11 +278,9 @@
     #    RBookPanel.__init__(self, parent, *args, **kwargs)
         
     def FitVariogram(self, Formula, InputData):
-        return robjects.r.autofitVariogram(Formula, InputData)
+        pass
         
     def DoKriging():
-        #BUG: automap autoKrige() does not seem to handle projected data.
-        #current workaround would be create projected grid with estimation locations..
         pass  
 def main(argv=None):
     if argv is None:
@@ -311,6 +310,7 @@
     k.Centre()
     k.Show()
     app.MainLoop()
+    
 
 if __name__ == '__main__':
     main()



More information about the grass-commit mailing list