Changeset 4537


Ignore:
Timestamp:
Aug 5, 2020 1:12:21 PM (3 years ago)
Author:
vondreele
Message:

comment out 'Spotmask missing' message
remove aspect='equal' from a Plot.contour command; not now used by matplotlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIplot.py

    r4535 r4537  
    59675967        Z = np.reshape(Z,(npts,npts))
    59685968        try:
    5969             CS = Plot.contour(Y,X,Z,aspect='equal')
     5969            CS = Plot.contour(Y,X,Z)
     5970#            CS = Plot.contour(Y,X,Z,aspect='equal')
    59705971            Plot.clabel(CS,fontsize=9,inline=1)
    59715972        except ValueError:
     
    76377638                MA = ma.array(MA,mask=MaskA)
    76387639            except KeyError: # should not be needed if initializtion is proper
    7639                 if GSASIIpath.GetConfigValue('debug'): print('SpotMask missing')
     7640#                if GSASIIpath.GetConfigValue('debug'): print('SpotMask missing')
    76407641                MaskA = ma.getmaskarray(MA)
    76417642            except TypeError: # needed if spotMasks set to initial value (None)
Note: See TracChangeset for help on using the changeset viewer.