Changeset 1065 for trunk/UTIL
- Timestamp:
- Oct 14, 2013, 9:00:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UTIL/PYTHON/planetoplot_v2/ppplot.py
r1064 r1065 644 644 print "!! WARNING !! dummy coordinates on y axis" 645 645 # check sizes 646 if self. addcontouris not None:647 if self. addcontour.ndim != 2:648 print "!! WARNING !! Contour is not a 2D field. No contour.",self. addcontour.ndim649 self. addcontour= None650 if self.f ield.ndim != 2:646 if self.c is not None: 647 if self.c.ndim != 2: 648 print "!! WARNING !! Contour is not a 2D field. No contour.",self.c.ndim 649 self.c = None 650 if self.f.ndim != 2: 651 651 print "!! ERROR !! Field is not two-dimensional" ; exit() 652 652 # transposing if necessary
Note: See TracChangeset
for help on using the changeset viewer.