Ignore:
Timestamp:
Mar 30, 2010 2:04:38 PM (14 years ago)
Author:
heinze
Message:

Adjustment of the NCL scripts and palmplot to allow for the use of special characters in NetCDF variable names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SCRIPTS/NCL/.ncl.config.default

    r517 r526  
    1515
    1616script=which_script
     17
     18   ;******************************************************
     19   ; BE AWARE: NCl uses double quotes (") to denote strings
     20   ;       to retrieve the double quote character - use dq:
     21
     22    dq=str_get_dq()
     23
     24   ;******************************************************
    1725   
    1826;*********************************************************
     
    219227      ; OPTIONAL --var-- OUTPUT VARIABLES
    220228      ;
    221       ; names of output variables; inidcate them with one comma before
    222       ; and after
    223       ; each variable
     229      ; names of output variables;
     230      ; inidcate them with one comma before and after each variable;
     231      ; if the name contains double quotes (") use dq and the '+' operation to
     232      ; concatenate the strings
    224233      ;
    225234      ; data type: string
     
    868877      ; names of output variables;
    869878      ; inidcate them with one comma before and after each variable
     879      ; if the name contains double quotes (") use dq and the '+' operation to
     880      ; concatenate the strings
    870881      ;
    871882      ; data type: string
    872883      ;
    873       ; example: var = ",u,v,w,";
     884      ; example: var = ",u,v,w,w*pt*,w"+dq+"pt"+dq+",wpt,"
    874885      ;
    875886      ; default:   "all" (all available variables are plotted)
     
    16631674      ; REQUIRED IF combine=1 --c_var-- VARIABLES FOR COMBINING
    16641675      ;
    1665       ; names of variables; inidcate them with one comma before and
    1666       ; after each variable;
    1667       ;
    1668       ; data type: string
    1669       ;
    1670       ; example: c_var = ",u,v,"
     1676      ; names of variables;
     1677      ; inidcate them with one comma before and after each variable
     1678      ; if the name contains double quotes (") use dq and the '+' operation to
     1679      ; concatenate the strings
     1680      ;
     1681      ; data type: string
     1682      ;
     1683      ; example: c_var = ",u,v,w,w*pt*,w"+dq+"pt"+dq+",wpt,"
    16711684      ;
    16721685      ; default:   "c_variables"
     
    19081921      ; OPTIONAL --var-- OUTPUT VARIABLES
    19091922      ;
    1910       ; names of output variables; inidcate them with one comma before
    1911       ; and after each variable
     1923      ; names of output variables;
     1924      ; inidcate them with one comma before and after each variable
     1925      ; if the name contains double quotes (") use dq and the '+' operation to
     1926      ; concatenate the strings
    19121927      ;
    19131928      ; data type: string
     
    23442359      ; OPTIONAL --var-- OUTPUT VARIABLES
    23452360      ;
    2346       ; names of output variables; inidcate them with one comma before
    2347       ; and after each variable
     2361      ; names of output variables;
     2362      ; inidcate them with one comma before and after each variable
     2363      ; if the name contains double quotes (") use dq and the '+' operation to
     2364      ; concatenate the strings
    23482365      ;
    23492366      ; data type: string
    23502367      ;
    2351       ; example: var = ",u,v,w,"
     2368      ; example: var = ",umax,vmax,wmax,w"+dq+"pt"+dq+"0,"
    23522369      ;
    23532370      ; default:   "all" (all available variables are plotted)
Note: See TracChangeset for help on using the changeset viewer.