Changeset 1248 for palm


Ignore:
Timestamp:
Nov 4, 2013 11:33:16 AM (10 years ago)
Author:
heinze
Message:

NCL function getfilevarnames changed with NCL version 6.1.1 and higher -> adaptation required

Location:
palm/trunk/SCRIPTS/NCL
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/NCL/cross_sections.ncl

    r983 r1248  
    276276
    277277   vNam  = getfilevarnames(f_att)
     278   if( ncl_version .GE. 6.1 ) then
     279      vNam = vNam(::-1)
     280   end if
    278281   vType = getfilevartypes(f_att,vNam)
    279282
  • palm/trunk/SCRIPTS/NCL/profiles.ncl

    r1127 r1248  
    604604     
    605605      vNam  = getfilevarnames(f_att)
     606      if( ncl_version .GE. 6.1 ) then
     607         vNam = vNam(::-1)
     608      end if
    606609      vType = getfilevartypes(f_att,vNam)
    607610
  • palm/trunk/SCRIPTS/NCL/spectra.ncl

    r983 r1248  
    203203   
    204204   vNam = getfilevarnames(f_att)
     205   if( ncl_version .GE. 6.1 ) then
     206      vNam = vNam(::-1)
     207   end if
    205208   vType = getfilevartypes(f_att,vNam)
    206209
  • palm/trunk/SCRIPTS/NCL/timeseries.ncl

    r983 r1248  
    171171
    172172   vNam  =getfilevarnames(f_att)
     173   if( ncl_version .GE. 6.1 ) then
     174       vNam = vNam(::-1)
     175   end if
    173176   vType = getfilevartypes(f_att,vNam)
    174177   vNam_static = vNam
Note: See TracChangeset for help on using the changeset viewer.