Changeset 824


Ignore:
Timestamp:
Oct 29, 2012, 4:50:55 PM (12 years ago)
Author:
aslmd
Message:

UTIL PYTHON. leave the possibility to use several marks with --mark lon1,lat1 --mark lon2,lat2 etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UTIL/PYTHON/planetoplot.py

    r822 r824  
    727727
    728728                        if (cross is not None or markdevil) and mapmode == 1:
    729                             if cross is not None: idx,idy=m(cross[0][0],cross[0][1])
     729                            if cross is not None:
     730                               howmuch = np.array(cross).shape[0]
     731                               for ttt in range(howmuch):
     732                                  idx,idy=m(cross[ttt][0],cross[ttt][1])
     733                                  mpl.pyplot.plot([idx],[idy],'+k',mew=0.5,ms=18)
    730734                            elif markdevil:
    731735                                idx,idy=find_devil(nc,indextime)
    732736                                idx,idy=x[idx,idy],y[idx,idy]
    733                             mpl.pyplot.plot([idx],[idy],'+k',mew=0.5,ms=18)
     737                                mpl.pyplot.plot([idx],[idy],'+k',mew=0.5,ms=18)
    734738
    735739                        if not nocolorb:
Note: See TracChangeset for help on using the changeset viewer.