You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Fixes introduced to the software components:

1. wflow_bin

a. pcrut.py (line 10 - 17)

try:

    from PCRaster import *
    from PCRaster.Framework import *
    from PCRaster.NumPy import *
except ImportError:
    from pcraster import *
    from pcraster.framework import *

b. wf_DynamicFramework.py (line 33 - 41)

1. line 33 - 41
try:
    import PCRaster
    from PCRaster import *
    from PCRaster.Framework import *
    from PCRaster.NumPy import *
except ImportError:
    import pcraster as PCRaster
    from pcraster import *
    from pcraster.framework import *
    #from pcraster.numpy import *

2. line 811 - 814
        try:
            import PCRaster
        except ImportError:
            import pcraster as PCRaster

3. line 879 - 882
        try:
            import PCRaster
        except ImportError:
            import pcraster as PCRaster

4. line 921 -922
  def setQuiet(self,quiet=True):
    self.showWarning("I'm not going to be quiet!!!!")

  • No labels