Ignore:
Timestamp:
Mar 26, 2013, 3:51:04 PM (12 years ago)
Author:
jleconte
Message:

UTIL PYTHON planetoplot_v2. corrected two typo bugs.

Location:
trunk/UTIL/PYTHON/planetoplot_v2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTIL/PYTHON/planetoplot_v2/pp.py

    r913 r916  
    2424parser.add_option('-f','--file',action='append',dest='file',type="string",default=None,help='')
    2525parser.add_option('-v','--var',action='append',dest='var',type="string",default=None,help='')
    26 parser.add_option('-x','--lat',action='append',dest='x',type="string",default=None,help='')
    27 parser.add_option('-y','--lon',action='append',dest='y',type="string",default=None,help='')
     26parser.add_option('-x','--lon',action='append',dest='x',type="string",default=None,help='')
     27parser.add_option('-y','--lat',action='append',dest='y',type="string",default=None,help='')
    2828parser.add_option('-z','--vert',action='append',dest='z',type="string",default=None,help='')
    2929parser.add_option('-t','--time',action='append',dest='t',type="string",default=None,help='')
  • trunk/UTIL/PYTHON/planetoplot_v2/ppclass.py

    r915 r916  
    11171117                self.method_x = "fixed"
    11181118                if self.verbose: print "**** OK. no x dimension."
    1119         if self.method_y == "free" or test in ["compfree","compcomp"]:
     1119        if self.method_y == "free" or test in ["freecomp","compcomp"]:
    11201120            self.index_y = range(0,self.dim_y,stridey)
    11211121            if self.dim_y > 1: 
Note: See TracChangeset for help on using the changeset viewer.