Changeset 196 in lmdz_wrf for trunk


Ignore:
Timestamp:
Dec 1, 2014, 4:46:00 PM (10 years ago)
Author:
lfita
Message:

Adding new variables with all the values to compute minimum/maximum range

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/drawing_tools.py

    r194 r196  
    44924492
    44934493    plt.rc('text', usetex=True)
     4494    varTvv = []
     4495    varTdv = []
    44944496
    44954497    if vaxis == 'x':
    44964498        for il in range(Ntraj):
    44974499            plt.plot(varvv[il], vardv[il], linekinds[N7lines], label= linesn[il])
     4500            varTvv = varTvv + varvv[:]
     4501            varTdv = varTdv + vardv[:]
    44984502            if il == 6: N7lines = N7lines + 1
    44994503
    45004504        plt.xlabel(vtit + ' (' + vunit + ')')
    45014505        plt.ylabel(dtit)
    4502         plt.xlim(np.min(varvv[:]),np.max(varvv[:]))
    4503         plt.ylim(np.min(vardv[:]),np.max(vardv[:]))
     4506        plt.xlim(np.min(varTvv[:]),np.max(varTvv[:]))
     4507        plt.ylim(np.min(varTdv[:]),np.max(varTdv[:]))
    45044508        plt.yticks(tpos, tlabs)
    45054509    else:
    45064510        for il in range(Ntraj):
    45074511            plt.plot(vardv[il], varvv[il], linekinds[N7lines], label= linesn[il])
     4512            varTvv = varTvv + varvv[:]
     4513            varTdv = varTdv + vardv[:]
    45084514            if il == 6: N7lines = N7lines + 1
    45094515
    45104516        plt.xlabel(dtit)
    45114517        plt.ylabel(vtit + ' (' + vunit + ')')
    4512         plt.xlim(np.min(vardv[:]),np.max(vardv[:]))
    4513         plt.ylim(np.min(varvv[:]),np.max(varvv[:]))
     4518        plt.xlim(np.min(varTdv[:]),np.max(varTdv[:]))
     4519        plt.ylim(np.min(varTvv[:]),np.max(varTvv[:]))
    45144520        plt.xticks(tpos, tlabs)
    45154521
Note: See TracChangeset for help on using the changeset viewer.