MPAS-JEDI
basic_plot_functions.py File Reference

Go to the source code of this file.

Namespaces

 basic_plot_functions
 

Functions

def basic_plot_functions.plotDistri (lats, lons, values, ObsType, VarName, var_unit, out_name, nstation, levbin, dmin=None, dmax=None, dotsize=6, color="rainbow")
 
def basic_plot_functions.scatterMapFields (lons, lats, fields, filename, minLon=-180., maxLon=180., minLat=-90., maxLat=90., cLon=None, projection='default', dmin=None, dmax=None, markers={}, sizes={}, cmap='gist_ncar', cbarType=None, c={}, logVLim=1.e-12)
 
def basic_plot_functions.plotTimeserial2D (Stats, xlabeltime, ylevels, VarName)
 
def basic_plot_functions.plotSeries (fig, linesVals, xVals, linesLabel, title="", dataLabel="y", sciticks=False, logscale=False, signdef=False, indepLabel="x", invert_ind_axis=False, ny=1, nx=1, nplots=1, iplot=0, linesValsMinCI=None, linesValsMaxCI=None, dmin=np.NaN, dmax=np.NaN, lineAttribOffset=0, legend_inside=True, interiorLabels=True)
 
def basic_plot_functions.plotProfile (fig, linesVals, yVals, linesLabel, title="", dataLabel="x", sciticks=False, logscale=False, signdef=False, indepLabel="y", invert_ind_axis=False, ny=1, nx=1, nplots=1, iplot=0, linesValsMinCI=None, linesValsMaxCI=None, dmin=np.NaN, dmax=np.NaN, lineAttribOffset=0, legend_inside=True, interiorLabels=True)
 
def basic_plot_functions.plotTimeSeries (fig, xsDates, linesVals, linesLabel, title="", dataLabel="", sciticks=False, logscale=False, signdef=False, ny=1, nx=1, nplots=1, iplot=0, linesValsMinCI=None, linesValsMaxCI=None, dmin=np.NaN, dmax=np.NaN, lineAttribOffset=0, legend_inside=True, interiorLabels=True)
 
def basic_plot_functions.plotTimeSeries2D (fig, xDates, yVals, contourVals, title="", clabel="", sciticks=False, logscale=False, signdef=False, dataLabel="y", invert_ind_axis=False, ny=1, nx=1, nplots=1, iplot=0, dmin=np.NaN, dmax=np.NaN, interiorLabels=True)
 
def basic_plot_functions.transformXY_for_pcolor (xs, ys)
 
def basic_plot_functions.plotPDF (fig, countsVals, xVals, countsLabel, title="", indepLabel="x", ny=1, nx=1, nplots=1, iplot=0, lineAttribOffset=1, legend_inside=True, interiorLabels=True)
 
def basic_plot_functions.plotfitRampComposite (fig, xVals, countVals, meanVals, rmsVals, stdVals, title="", dataLabel="y", indepLabel="x", ny=1, nx=1, nplots=1, iplot=0, lineAttribOffset=1, legend_inside=True, interiorLabels=True)
 

Variables

 basic_plot_functions._logger = logging.getLogger(__name__)
 
 basic_plot_functions.cmGray = plt.cm.get_cmap("gist_gray")
 
 basic_plot_functions.cmRainbow = plt.cm.get_cmap("gist_rainbow")
 
 basic_plot_functions.cmSpectral = plt.cm.get_cmap("nipy_spectral")
 
 basic_plot_functions.cmHeat = plt.cm.get_cmap("gist_heat")
 
 basic_plot_functions.cmOcean = plt.cm.get_cmap("ocean")
 
 basic_plot_functions.cmNCAR = plt.cm.get_cmap("gist_ncar")
 
 basic_plot_functions.WhiteBlack1 = cmGray(np.linspace(1.0,0.0,17))
 
 basic_plot_functions.BlackRed = cmHeat(np.linspace(0.0,0.5,10))
 
 basic_plot_functions.ROYG = cmSpectral(np.linspace(0.9,0.43,27))
 
 basic_plot_functions.GreenBlueCyan = cmNCAR(np.linspace(0.05,0.2,20))
 
 basic_plot_functions.MVW = cmNCAR(np.linspace(0.8,0.98,21))
 
 basic_plot_functions.WhiteBlack2 = cmGray(np.linspace(0.9,0.0,31))
 
 basic_plot_functions.btcolors = np.concatenate((WhiteBlack1, BlackRed, ROYG, GreenBlueCyan, MVW, WhiteBlack2))
 
 basic_plot_functions.btCMap = colors.ListedColormap(btcolors)
 
dictionary basic_plot_functions.distriZooms = {}
 
int basic_plot_functions.maxLegendEntries = 12
 
int basic_plot_functions.lenWarnSer = 0
 
int basic_plot_functions.nanWarnSer = 0
 
int basic_plot_functions.lenWarnProf = 0
 
int basic_plot_functions.nanWarnProf = 0
 
int basic_plot_functions.lenWarnTS = 0
 
int basic_plot_functions.nanWarnTS = 0
 
int basic_plot_functions.lenWarnPDF = 0
 
int basic_plot_functions.nanWarnPDF = 0
 
int basic_plot_functions.lenWarnRamp = 0
 
int basic_plot_functions.nanWarnRamp = 0