Changeset 605 in lmdz_wrf for trunk/tools


Ignore:
Timestamp:
Jul 17, 2015, 12:37:11 PM (10 years ago)
Author:
lfita
Message:

Adding rounding of longitudes to 0,360

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/drawing_tools.py

    r586 r605  
    26212621
    26222622    if not mapv is None:
    2623         vlon = np.where(vlon[:] < 0., 360. + vlon[:], vlon[:])
    2624         xvala = np.array(xval)
    2625         xvala = np.where(xvala < 0., 360. + xvala, xvala)
    2626         xval = list(xvala)
     2623#        vlon = np.where(vlon[:] < 0., 360. + vlon[:], vlon[:])
     2624#        xvala = np.array(xval)
     2625#        xvala = np.where(xvala < 0., 360. + xvala, xvala)
     2626#        xval = list(xvala)
    26272627
    26282628        map_proj=mapv.split(',')[0]
Note: See TracChangeset for help on using the changeset viewer.