ncl.py 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. """
  2. pygments.lexers.ncl
  3. ~~~~~~~~~~~~~~~~~~~
  4. Lexers for NCAR Command Language.
  5. :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. """
  8. import re
  9. from pygments.lexer import RegexLexer, include, words
  10. from pygments.token import Text, Comment, Operator, Keyword, Name, String, \
  11. Number, Punctuation
  12. __all__ = ['NCLLexer']
  13. class NCLLexer(RegexLexer):
  14. """
  15. Lexer for NCL code.
  16. .. versionadded:: 2.2
  17. """
  18. name = 'NCL'
  19. aliases = ['ncl']
  20. filenames = ['*.ncl']
  21. mimetypes = ['text/ncl']
  22. flags = re.MULTILINE
  23. tokens = {
  24. 'root': [
  25. (r';.*\n', Comment),
  26. include('strings'),
  27. include('core'),
  28. (r'[a-zA-Z_]\w*', Name),
  29. include('nums'),
  30. (r'[\s]+', Text),
  31. ],
  32. 'core': [
  33. # Statements
  34. (words((
  35. 'begin', 'break', 'continue', 'create', 'defaultapp', 'do',
  36. 'else', 'end', 'external', 'exit', 'True', 'False', 'file', 'function',
  37. 'getvalues', 'graphic', 'group', 'if', 'list', 'load', 'local',
  38. 'new', '_Missing', 'Missing', 'noparent', 'procedure',
  39. 'quit', 'QUIT', 'Quit', 'record', 'return', 'setvalues', 'stop',
  40. 'then', 'while'), prefix=r'\b', suffix=r'\s*\b'),
  41. Keyword),
  42. # Data Types
  43. (words((
  44. 'ubyte', 'uint', 'uint64', 'ulong', 'string', 'byte',
  45. 'character', 'double', 'float', 'integer', 'int64', 'logical',
  46. 'long', 'short', 'ushort', 'enumeric', 'numeric', 'snumeric'),
  47. prefix=r'\b', suffix=r'\s*\b'),
  48. Keyword.Type),
  49. # Operators
  50. (r'[\%^*+\-/<>]', Operator),
  51. # punctuation:
  52. (r'[\[\]():@$!&|.,\\{}]', Punctuation),
  53. (r'[=:]', Punctuation),
  54. # Intrinsics
  55. (words((
  56. 'abs', 'acos', 'addfile', 'addfiles', 'all', 'angmom_atm', 'any',
  57. 'area_conserve_remap', 'area_hi2lores', 'area_poly_sphere',
  58. 'asciiread', 'asciiwrite', 'asin', 'atan', 'atan2', 'attsetvalues',
  59. 'avg', 'betainc', 'bin_avg', 'bin_sum', 'bw_bandpass_filter',
  60. 'cancor', 'cbinread', 'cbinwrite', 'cd_calendar', 'cd_inv_calendar',
  61. 'cdfbin_p', 'cdfbin_pr', 'cdfbin_s', 'cdfbin_xn', 'cdfchi_p',
  62. 'cdfchi_x', 'cdfgam_p', 'cdfgam_x', 'cdfnor_p', 'cdfnor_x',
  63. 'cdft_p', 'cdft_t', 'ceil', 'center_finite_diff',
  64. 'center_finite_diff_n', 'cfftb', 'cfftf', 'cfftf_frq_reorder',
  65. 'charactertodouble', 'charactertofloat', 'charactertointeger',
  66. 'charactertolong', 'charactertoshort', 'charactertostring',
  67. 'chartodouble', 'chartofloat', 'chartoint', 'chartointeger',
  68. 'chartolong', 'chartoshort', 'chartostring', 'chiinv', 'clear',
  69. 'color_index_to_rgba', 'conform', 'conform_dims', 'cos', 'cosh',
  70. 'count_unique_values', 'covcorm', 'covcorm_xy', 'craybinnumrec',
  71. 'craybinrecread', 'create_graphic', 'csa1', 'csa1d', 'csa1s',
  72. 'csa1x', 'csa1xd', 'csa1xs', 'csa2', 'csa2d', 'csa2l', 'csa2ld',
  73. 'csa2ls', 'csa2lx', 'csa2lxd', 'csa2lxs', 'csa2s', 'csa2x',
  74. 'csa2xd', 'csa2xs', 'csa3', 'csa3d', 'csa3l', 'csa3ld', 'csa3ls',
  75. 'csa3lx', 'csa3lxd', 'csa3lxs', 'csa3s', 'csa3x', 'csa3xd',
  76. 'csa3xs', 'csc2s', 'csgetp', 'css2c', 'cssetp', 'cssgrid', 'csstri',
  77. 'csvoro', 'cumsum', 'cz2ccm', 'datatondc', 'day_of_week',
  78. 'day_of_year', 'days_in_month', 'default_fillvalue', 'delete',
  79. 'depth_to_pres', 'destroy', 'determinant', 'dewtemp_trh',
  80. 'dgeevx_lapack', 'dim_acumrun_n', 'dim_avg', 'dim_avg_n',
  81. 'dim_avg_wgt', 'dim_avg_wgt_n', 'dim_cumsum', 'dim_cumsum_n',
  82. 'dim_gamfit_n', 'dim_gbits', 'dim_max', 'dim_max_n', 'dim_median',
  83. 'dim_median_n', 'dim_min', 'dim_min_n', 'dim_num', 'dim_num_n',
  84. 'dim_numrun_n', 'dim_pqsort', 'dim_pqsort_n', 'dim_product',
  85. 'dim_product_n', 'dim_rmsd', 'dim_rmsd_n', 'dim_rmvmean',
  86. 'dim_rmvmean_n', 'dim_rmvmed', 'dim_rmvmed_n', 'dim_spi_n',
  87. 'dim_standardize', 'dim_standardize_n', 'dim_stat4', 'dim_stat4_n',
  88. 'dim_stddev', 'dim_stddev_n', 'dim_sum', 'dim_sum_n', 'dim_sum_wgt',
  89. 'dim_sum_wgt_n', 'dim_variance', 'dim_variance_n', 'dimsizes',
  90. 'doubletobyte', 'doubletochar', 'doubletocharacter',
  91. 'doubletofloat', 'doubletoint', 'doubletointeger', 'doubletolong',
  92. 'doubletoshort', 'dpres_hybrid_ccm', 'dpres_plevel', 'draw',
  93. 'draw_color_palette', 'dsgetp', 'dsgrid2', 'dsgrid2d', 'dsgrid2s',
  94. 'dsgrid3', 'dsgrid3d', 'dsgrid3s', 'dspnt2', 'dspnt2d', 'dspnt2s',
  95. 'dspnt3', 'dspnt3d', 'dspnt3s', 'dssetp', 'dtrend', 'dtrend_msg',
  96. 'dtrend_msg_n', 'dtrend_n', 'dtrend_quadratic',
  97. 'dtrend_quadratic_msg_n', 'dv2uvf', 'dv2uvg', 'dz_height',
  98. 'echo_off', 'echo_on', 'eof2data', 'eof_varimax', 'eofcor',
  99. 'eofcor_pcmsg', 'eofcor_ts', 'eofcov', 'eofcov_pcmsg', 'eofcov_ts',
  100. 'eofunc', 'eofunc_ts', 'eofunc_varimax', 'equiv_sample_size', 'erf',
  101. 'erfc', 'esacr', 'esacv', 'esccr', 'esccv', 'escorc', 'escorc_n',
  102. 'escovc', 'exit', 'exp', 'exp_tapersh', 'exp_tapersh_wgts',
  103. 'exp_tapershC', 'ezfftb', 'ezfftb_n', 'ezfftf', 'ezfftf_n',
  104. 'f2fosh', 'f2foshv', 'f2fsh', 'f2fshv', 'f2gsh', 'f2gshv', 'fabs',
  105. 'fbindirread', 'fbindirwrite', 'fbinnumrec', 'fbinread',
  106. 'fbinrecread', 'fbinrecwrite', 'fbinwrite', 'fft2db', 'fft2df',
  107. 'fftshift', 'fileattdef', 'filechunkdimdef', 'filedimdef',
  108. 'fileexists', 'filegrpdef', 'filevarattdef', 'filevarchunkdef',
  109. 'filevarcompressleveldef', 'filevardef', 'filevardimsizes',
  110. 'filwgts_lancos', 'filwgts_lanczos', 'filwgts_normal',
  111. 'floattobyte', 'floattochar', 'floattocharacter', 'floattoint',
  112. 'floattointeger', 'floattolong', 'floattoshort', 'floor',
  113. 'fluxEddy', 'fo2fsh', 'fo2fshv', 'fourier_info', 'frame', 'fspan',
  114. 'ftcurv', 'ftcurvd', 'ftcurvi', 'ftcurvp', 'ftcurvpi', 'ftcurvps',
  115. 'ftcurvs', 'ftest', 'ftgetp', 'ftkurv', 'ftkurvd', 'ftkurvp',
  116. 'ftkurvpd', 'ftsetp', 'ftsurf', 'g2fsh', 'g2fshv', 'g2gsh',
  117. 'g2gshv', 'gamma', 'gammainc', 'gaus', 'gaus_lobat',
  118. 'gaus_lobat_wgt', 'gc_aangle', 'gc_clkwise', 'gc_dangle',
  119. 'gc_inout', 'gc_latlon', 'gc_onarc', 'gc_pnt2gc', 'gc_qarea',
  120. 'gc_tarea', 'generate_2d_array', 'get_color_index',
  121. 'get_color_rgba', 'get_cpu_time', 'get_isolines', 'get_ncl_version',
  122. 'get_script_name', 'get_script_prefix_name', 'get_sphere_radius',
  123. 'get_unique_values', 'getbitsone', 'getenv', 'getfiledimsizes',
  124. 'getfilegrpnames', 'getfilepath', 'getfilevaratts',
  125. 'getfilevarchunkdimsizes', 'getfilevardims', 'getfilevardimsizes',
  126. 'getfilevarnames', 'getfilevartypes', 'getvaratts', 'getvardims',
  127. 'gradsf', 'gradsg', 'greg2jul', 'grid2triple', 'hlsrgb', 'hsvrgb',
  128. 'hydro', 'hyi2hyo', 'idsfft', 'igradsf', 'igradsg', 'ilapsf',
  129. 'ilapsg', 'ilapvf', 'ilapvg', 'ind', 'ind_resolve', 'int2p',
  130. 'int2p_n', 'integertobyte', 'integertochar', 'integertocharacter',
  131. 'integertoshort', 'inttobyte', 'inttochar', 'inttoshort',
  132. 'inverse_matrix', 'isatt', 'isbigendian', 'isbyte', 'ischar',
  133. 'iscoord', 'isdefined', 'isdim', 'isdimnamed', 'isdouble',
  134. 'isenumeric', 'isfile', 'isfilepresent', 'isfilevar',
  135. 'isfilevaratt', 'isfilevarcoord', 'isfilevardim', 'isfloat',
  136. 'isfunc', 'isgraphic', 'isint', 'isint64', 'isinteger',
  137. 'isleapyear', 'islogical', 'islong', 'ismissing', 'isnan_ieee',
  138. 'isnumeric', 'ispan', 'isproc', 'isshort', 'issnumeric', 'isstring',
  139. 'isubyte', 'isuint', 'isuint64', 'isulong', 'isunlimited',
  140. 'isunsigned', 'isushort', 'isvar', 'jul2greg', 'kmeans_as136',
  141. 'kolsm2_n', 'kron_product', 'lapsf', 'lapsg', 'lapvf', 'lapvg',
  142. 'latlon2utm', 'lclvl', 'lderuvf', 'lderuvg', 'linint1', 'linint1_n',
  143. 'linint2', 'linint2_points', 'linmsg', 'linmsg_n', 'linrood_latwgt',
  144. 'linrood_wgt', 'list_files', 'list_filevars', 'list_hlus',
  145. 'list_procfuncs', 'list_vars', 'ListAppend', 'ListCount',
  146. 'ListGetType', 'ListIndex', 'ListIndexFromName', 'ListPop',
  147. 'ListPush', 'ListSetType', 'loadscript', 'local_max', 'local_min',
  148. 'log', 'log10', 'longtobyte', 'longtochar', 'longtocharacter',
  149. 'longtoint', 'longtointeger', 'longtoshort', 'lspoly', 'lspoly_n',
  150. 'mask', 'max', 'maxind', 'min', 'minind', 'mixed_layer_depth',
  151. 'mixhum_ptd', 'mixhum_ptrh', 'mjo_cross_coh2pha',
  152. 'mjo_cross_segment', 'moc_globe_atl', 'monthday', 'natgrid',
  153. 'natgridd', 'natgrids', 'ncargpath', 'ncargversion', 'ndctodata',
  154. 'ndtooned', 'new', 'NewList', 'ngezlogo', 'nggcog', 'nggetp',
  155. 'nglogo', 'ngsetp', 'NhlAddAnnotation', 'NhlAddData',
  156. 'NhlAddOverlay', 'NhlAddPrimitive', 'NhlAppGetDefaultParentId',
  157. 'NhlChangeWorkstation', 'NhlClassName', 'NhlClearWorkstation',
  158. 'NhlDataPolygon', 'NhlDataPolyline', 'NhlDataPolymarker',
  159. 'NhlDataToNDC', 'NhlDestroy', 'NhlDraw', 'NhlFrame', 'NhlFreeColor',
  160. 'NhlGetBB', 'NhlGetClassResources', 'NhlGetErrorObjectId',
  161. 'NhlGetNamedColorIndex', 'NhlGetParentId',
  162. 'NhlGetParentWorkstation', 'NhlGetWorkspaceObjectId',
  163. 'NhlIsAllocatedColor', 'NhlIsApp', 'NhlIsDataComm', 'NhlIsDataItem',
  164. 'NhlIsDataSpec', 'NhlIsTransform', 'NhlIsView', 'NhlIsWorkstation',
  165. 'NhlName', 'NhlNDCPolygon', 'NhlNDCPolyline', 'NhlNDCPolymarker',
  166. 'NhlNDCToData', 'NhlNewColor', 'NhlNewDashPattern', 'NhlNewMarker',
  167. 'NhlPalGetDefined', 'NhlRemoveAnnotation', 'NhlRemoveData',
  168. 'NhlRemoveOverlay', 'NhlRemovePrimitive', 'NhlSetColor',
  169. 'NhlSetDashPattern', 'NhlSetMarker', 'NhlUpdateData',
  170. 'NhlUpdateWorkstation', 'nice_mnmxintvl', 'nngetaspectd',
  171. 'nngetaspects', 'nngetp', 'nngetsloped', 'nngetslopes', 'nngetwts',
  172. 'nngetwtsd', 'nnpnt', 'nnpntd', 'nnpntend', 'nnpntendd',
  173. 'nnpntinit', 'nnpntinitd', 'nnpntinits', 'nnpnts', 'nnsetp', 'num',
  174. 'obj_anal_ic', 'omega_ccm', 'onedtond', 'overlay', 'paleo_outline',
  175. 'pdfxy_bin', 'poisson_grid_fill', 'pop_remap', 'potmp_insitu_ocn',
  176. 'prcwater_dp', 'pres2hybrid', 'pres_hybrid_ccm', 'pres_sigma',
  177. 'print', 'print_table', 'printFileVarSummary', 'printVarSummary',
  178. 'product', 'pslec', 'pslhor', 'pslhyp', 'qsort', 'rand',
  179. 'random_chi', 'random_gamma', 'random_normal', 'random_setallseed',
  180. 'random_uniform', 'rcm2points', 'rcm2rgrid', 'rdsstoi',
  181. 'read_colormap_file', 'reg_multlin', 'regcoef', 'regCoef_n',
  182. 'regline', 'relhum', 'replace_ieeenan', 'reshape', 'reshape_ind',
  183. 'rgba_to_color_index', 'rgbhls', 'rgbhsv', 'rgbyiq', 'rgrid2rcm',
  184. 'rhomb_trunc', 'rip_cape_2d', 'rip_cape_3d', 'round', 'rtest',
  185. 'runave', 'runave_n', 'set_default_fillvalue', 'set_sphere_radius',
  186. 'setfileoption', 'sfvp2uvf', 'sfvp2uvg', 'shaec', 'shagc',
  187. 'shgetnp', 'shgetp', 'shgrid', 'shorttobyte', 'shorttochar',
  188. 'shorttocharacter', 'show_ascii', 'shsec', 'shsetp', 'shsgc',
  189. 'shsgc_R42', 'sigma2hybrid', 'simpeq', 'simpne', 'sin',
  190. 'sindex_yrmo', 'sinh', 'sizeof', 'sleep', 'smth9', 'snindex_yrmo',
  191. 'solve_linsys', 'span_color_indexes', 'span_color_rgba',
  192. 'sparse_matrix_mult', 'spcorr', 'spcorr_n', 'specx_anal',
  193. 'specxy_anal', 'spei', 'sprintf', 'sprinti', 'sqrt', 'sqsort',
  194. 'srand', 'stat2', 'stat4', 'stat_medrng', 'stat_trim',
  195. 'status_exit', 'stdatmus_p2tdz', 'stdatmus_z2tdp', 'stddev',
  196. 'str_capital', 'str_concat', 'str_fields_count', 'str_get_cols',
  197. 'str_get_dq', 'str_get_field', 'str_get_nl', 'str_get_sq',
  198. 'str_get_tab', 'str_index_of_substr', 'str_insert', 'str_is_blank',
  199. 'str_join', 'str_left_strip', 'str_lower', 'str_match',
  200. 'str_match_ic', 'str_match_ic_regex', 'str_match_ind',
  201. 'str_match_ind_ic', 'str_match_ind_ic_regex', 'str_match_ind_regex',
  202. 'str_match_regex', 'str_right_strip', 'str_split',
  203. 'str_split_by_length', 'str_split_csv', 'str_squeeze', 'str_strip',
  204. 'str_sub_str', 'str_switch', 'str_upper', 'stringtochar',
  205. 'stringtocharacter', 'stringtodouble', 'stringtofloat',
  206. 'stringtoint', 'stringtointeger', 'stringtolong', 'stringtoshort',
  207. 'strlen', 'student_t', 'sum', 'svd_lapack', 'svdcov', 'svdcov_sv',
  208. 'svdstd', 'svdstd_sv', 'system', 'systemfunc', 'tan', 'tanh',
  209. 'taper', 'taper_n', 'tdclrs', 'tdctri', 'tdcudp', 'tdcurv',
  210. 'tddtri', 'tdez2d', 'tdez3d', 'tdgetp', 'tdgrds', 'tdgrid',
  211. 'tdgtrs', 'tdinit', 'tditri', 'tdlbla', 'tdlblp', 'tdlbls',
  212. 'tdline', 'tdlndp', 'tdlnpa', 'tdlpdp', 'tdmtri', 'tdotri',
  213. 'tdpara', 'tdplch', 'tdprpa', 'tdprpi', 'tdprpt', 'tdsetp',
  214. 'tdsort', 'tdstri', 'tdstrs', 'tdttri', 'thornthwaite', 'tobyte',
  215. 'tochar', 'todouble', 'tofloat', 'toint', 'toint64', 'tointeger',
  216. 'tolong', 'toshort', 'tosigned', 'tostring', 'tostring_with_format',
  217. 'totype', 'toubyte', 'touint', 'touint64', 'toulong', 'tounsigned',
  218. 'toushort', 'trend_manken', 'tri_trunc', 'triple2grid',
  219. 'triple2grid2d', 'trop_wmo', 'ttest', 'typeof', 'undef',
  220. 'unique_string', 'update', 'ushorttoint', 'ut_calendar',
  221. 'ut_inv_calendar', 'utm2latlon', 'uv2dv_cfd', 'uv2dvf', 'uv2dvg',
  222. 'uv2sfvpf', 'uv2sfvpg', 'uv2vr_cfd', 'uv2vrdvf', 'uv2vrdvg',
  223. 'uv2vrf', 'uv2vrg', 'v5d_close', 'v5d_create', 'v5d_setLowLev',
  224. 'v5d_setUnits', 'v5d_write', 'v5d_write_var', 'variance', 'vhaec',
  225. 'vhagc', 'vhsec', 'vhsgc', 'vibeta', 'vinth2p', 'vinth2p_ecmwf',
  226. 'vinth2p_ecmwf_nodes', 'vinth2p_nodes', 'vintp2p_ecmwf', 'vr2uvf',
  227. 'vr2uvg', 'vrdv2uvf', 'vrdv2uvg', 'wavelet', 'wavelet_default',
  228. 'weibull', 'wgt_area_smooth', 'wgt_areaave', 'wgt_areaave2',
  229. 'wgt_arearmse', 'wgt_arearmse2', 'wgt_areasum2', 'wgt_runave',
  230. 'wgt_runave_n', 'wgt_vert_avg_beta', 'wgt_volave', 'wgt_volave_ccm',
  231. 'wgt_volrmse', 'wgt_volrmse_ccm', 'where', 'wk_smooth121', 'wmbarb',
  232. 'wmbarbmap', 'wmdrft', 'wmgetp', 'wmlabs', 'wmsetp', 'wmstnm',
  233. 'wmvect', 'wmvectmap', 'wmvlbl', 'wrf_avo', 'wrf_cape_2d',
  234. 'wrf_cape_3d', 'wrf_dbz', 'wrf_eth', 'wrf_helicity', 'wrf_ij_to_ll',
  235. 'wrf_interp_1d', 'wrf_interp_2d_xy', 'wrf_interp_3d_z',
  236. 'wrf_latlon_to_ij', 'wrf_ll_to_ij', 'wrf_omega', 'wrf_pvo',
  237. 'wrf_rh', 'wrf_slp', 'wrf_smooth_2d', 'wrf_td', 'wrf_tk',
  238. 'wrf_updraft_helicity', 'wrf_uvmet', 'wrf_virtual_temp',
  239. 'wrf_wetbulb', 'wrf_wps_close_int', 'wrf_wps_open_int',
  240. 'wrf_wps_rddata_int', 'wrf_wps_rdhead_int', 'wrf_wps_read_int',
  241. 'wrf_wps_write_int', 'write_matrix', 'write_table', 'yiqrgb',
  242. 'z2geouv', 'zonal_mpsi', 'addfiles_GetVar', 'advect_variable',
  243. 'area_conserve_remap_Wrap', 'area_hi2lores_Wrap',
  244. 'array_append_record', 'assignFillValue', 'byte2flt',
  245. 'byte2flt_hdf', 'calcDayAnomTLL', 'calcMonAnomLLLT',
  246. 'calcMonAnomLLT', 'calcMonAnomTLL', 'calcMonAnomTLLL',
  247. 'calculate_monthly_values', 'cd_convert', 'changeCase',
  248. 'changeCaseChar', 'clmDayTLL', 'clmDayTLLL', 'clmMon2clmDay',
  249. 'clmMonLLLT', 'clmMonLLT', 'clmMonTLL', 'clmMonTLLL', 'closest_val',
  250. 'copy_VarAtts', 'copy_VarCoords', 'copy_VarCoords_1',
  251. 'copy_VarCoords_2', 'copy_VarMeta', 'copyatt', 'crossp3',
  252. 'cshstringtolist', 'cssgrid_Wrap', 'dble2flt', 'decimalPlaces',
  253. 'delete_VarAtts', 'dim_avg_n_Wrap', 'dim_avg_wgt_n_Wrap',
  254. 'dim_avg_wgt_Wrap', 'dim_avg_Wrap', 'dim_cumsum_n_Wrap',
  255. 'dim_cumsum_Wrap', 'dim_max_n_Wrap', 'dim_min_n_Wrap',
  256. 'dim_rmsd_n_Wrap', 'dim_rmsd_Wrap', 'dim_rmvmean_n_Wrap',
  257. 'dim_rmvmean_Wrap', 'dim_rmvmed_n_Wrap', 'dim_rmvmed_Wrap',
  258. 'dim_standardize_n_Wrap', 'dim_standardize_Wrap',
  259. 'dim_stddev_n_Wrap', 'dim_stddev_Wrap', 'dim_sum_n_Wrap',
  260. 'dim_sum_wgt_n_Wrap', 'dim_sum_wgt_Wrap', 'dim_sum_Wrap',
  261. 'dim_variance_n_Wrap', 'dim_variance_Wrap', 'dpres_plevel_Wrap',
  262. 'dtrend_leftdim', 'dv2uvF_Wrap', 'dv2uvG_Wrap', 'eof_north',
  263. 'eofcor_Wrap', 'eofcov_Wrap', 'eofunc_north', 'eofunc_ts_Wrap',
  264. 'eofunc_varimax_reorder', 'eofunc_varimax_Wrap', 'eofunc_Wrap',
  265. 'epsZero', 'f2fosh_Wrap', 'f2foshv_Wrap', 'f2fsh_Wrap',
  266. 'f2fshv_Wrap', 'f2gsh_Wrap', 'f2gshv_Wrap', 'fbindirSwap',
  267. 'fbinseqSwap1', 'fbinseqSwap2', 'flt2dble', 'flt2string',
  268. 'fo2fsh_Wrap', 'fo2fshv_Wrap', 'g2fsh_Wrap', 'g2fshv_Wrap',
  269. 'g2gsh_Wrap', 'g2gshv_Wrap', 'generate_resample_indices',
  270. 'generate_sample_indices', 'generate_unique_indices',
  271. 'genNormalDist', 'get1Dindex', 'get1Dindex_Collapse',
  272. 'get1Dindex_Exclude', 'get_file_suffix', 'GetFillColor',
  273. 'GetFillColorIndex', 'getFillValue', 'getind_latlon2d',
  274. 'getVarDimNames', 'getVarFillValue', 'grib_stime2itime',
  275. 'hyi2hyo_Wrap', 'ilapsF_Wrap', 'ilapsG_Wrap', 'ind_nearest_coord',
  276. 'indStrSubset', 'int2dble', 'int2flt', 'int2p_n_Wrap', 'int2p_Wrap',
  277. 'isMonotonic', 'isStrSubset', 'latGau', 'latGauWgt', 'latGlobeF',
  278. 'latGlobeFo', 'latRegWgt', 'linint1_n_Wrap', 'linint1_Wrap',
  279. 'linint2_points_Wrap', 'linint2_Wrap', 'local_max_1d',
  280. 'local_min_1d', 'lonFlip', 'lonGlobeF', 'lonGlobeFo', 'lonPivot',
  281. 'merge_levels_sfc', 'mod', 'month_to_annual',
  282. 'month_to_annual_weighted', 'month_to_season', 'month_to_season12',
  283. 'month_to_seasonN', 'monthly_total_to_daily_mean', 'nameDim',
  284. 'natgrid_Wrap', 'NewCosWeight', 'niceLatLon2D', 'NormCosWgtGlobe',
  285. 'numAsciiCol', 'numAsciiRow', 'numeric2int',
  286. 'obj_anal_ic_deprecated', 'obj_anal_ic_Wrap', 'omega_ccm_driver',
  287. 'omega_to_w', 'oneDtostring', 'pack_values', 'pattern_cor', 'pdfx',
  288. 'pdfxy', 'pdfxy_conform', 'pot_temp', 'pot_vort_hybrid',
  289. 'pot_vort_isobaric', 'pres2hybrid_Wrap', 'print_clock',
  290. 'printMinMax', 'quadroots', 'rcm2points_Wrap', 'rcm2rgrid_Wrap',
  291. 'readAsciiHead', 'readAsciiTable', 'reg_multlin_stats',
  292. 'region_ind', 'regline_stats', 'relhum_ttd', 'replaceSingleChar',
  293. 'RGBtoCmap', 'rgrid2rcm_Wrap', 'rho_mwjf', 'rm_single_dims',
  294. 'rmAnnCycle1D', 'rmInsufData', 'rmMonAnnCycLLLT', 'rmMonAnnCycLLT',
  295. 'rmMonAnnCycTLL', 'runave_n_Wrap', 'runave_Wrap', 'short2flt',
  296. 'short2flt_hdf', 'shsgc_R42_Wrap', 'sign_f90', 'sign_matlab',
  297. 'smth9_Wrap', 'smthClmDayTLL', 'smthClmDayTLLL', 'SqrtCosWeight',
  298. 'stat_dispersion', 'static_stability', 'stdMonLLLT', 'stdMonLLT',
  299. 'stdMonTLL', 'stdMonTLLL', 'symMinMaxPlt', 'table_attach_columns',
  300. 'table_attach_rows', 'time_to_newtime', 'transpose',
  301. 'triple2grid_Wrap', 'ut_convert', 'uv2dvF_Wrap', 'uv2dvG_Wrap',
  302. 'uv2vrF_Wrap', 'uv2vrG_Wrap', 'vr2uvF_Wrap', 'vr2uvG_Wrap',
  303. 'w_to_omega', 'wallClockElapseTime', 'wave_number_spc',
  304. 'wgt_areaave_Wrap', 'wgt_runave_leftdim', 'wgt_runave_n_Wrap',
  305. 'wgt_runave_Wrap', 'wgt_vertical_n', 'wind_component',
  306. 'wind_direction', 'yyyyddd_to_yyyymmdd', 'yyyymm_time',
  307. 'yyyymm_to_yyyyfrac', 'yyyymmdd_time', 'yyyymmdd_to_yyyyddd',
  308. 'yyyymmdd_to_yyyyfrac', 'yyyymmddhh_time', 'yyyymmddhh_to_yyyyfrac',
  309. 'zonal_mpsi_Wrap', 'zonalAve', 'calendar_decode2', 'cd_string',
  310. 'kf_filter', 'run_cor', 'time_axis_labels', 'ut_string',
  311. 'wrf_contour', 'wrf_map', 'wrf_map_overlay', 'wrf_map_overlays',
  312. 'wrf_map_resources', 'wrf_map_zoom', 'wrf_overlay', 'wrf_overlays',
  313. 'wrf_user_getvar', 'wrf_user_ij_to_ll', 'wrf_user_intrp2d',
  314. 'wrf_user_intrp3d', 'wrf_user_latlon_to_ij', 'wrf_user_list_times',
  315. 'wrf_user_ll_to_ij', 'wrf_user_unstagger', 'wrf_user_vert_interp',
  316. 'wrf_vector', 'gsn_add_annotation', 'gsn_add_polygon',
  317. 'gsn_add_polyline', 'gsn_add_polymarker',
  318. 'gsn_add_shapefile_polygons', 'gsn_add_shapefile_polylines',
  319. 'gsn_add_shapefile_polymarkers', 'gsn_add_text', 'gsn_attach_plots',
  320. 'gsn_blank_plot', 'gsn_contour', 'gsn_contour_map',
  321. 'gsn_contour_shade', 'gsn_coordinates', 'gsn_create_labelbar',
  322. 'gsn_create_legend', 'gsn_create_text',
  323. 'gsn_csm_attach_zonal_means', 'gsn_csm_blank_plot',
  324. 'gsn_csm_contour', 'gsn_csm_contour_map', 'gsn_csm_contour_map_ce',
  325. 'gsn_csm_contour_map_overlay', 'gsn_csm_contour_map_polar',
  326. 'gsn_csm_hov', 'gsn_csm_lat_time', 'gsn_csm_map', 'gsn_csm_map_ce',
  327. 'gsn_csm_map_polar', 'gsn_csm_pres_hgt',
  328. 'gsn_csm_pres_hgt_streamline', 'gsn_csm_pres_hgt_vector',
  329. 'gsn_csm_streamline', 'gsn_csm_streamline_contour_map',
  330. 'gsn_csm_streamline_contour_map_ce',
  331. 'gsn_csm_streamline_contour_map_polar', 'gsn_csm_streamline_map',
  332. 'gsn_csm_streamline_map_ce', 'gsn_csm_streamline_map_polar',
  333. 'gsn_csm_streamline_scalar', 'gsn_csm_streamline_scalar_map',
  334. 'gsn_csm_streamline_scalar_map_ce',
  335. 'gsn_csm_streamline_scalar_map_polar', 'gsn_csm_time_lat',
  336. 'gsn_csm_vector', 'gsn_csm_vector_map', 'gsn_csm_vector_map_ce',
  337. 'gsn_csm_vector_map_polar', 'gsn_csm_vector_scalar',
  338. 'gsn_csm_vector_scalar_map', 'gsn_csm_vector_scalar_map_ce',
  339. 'gsn_csm_vector_scalar_map_polar', 'gsn_csm_x2y', 'gsn_csm_x2y2',
  340. 'gsn_csm_xy', 'gsn_csm_xy2', 'gsn_csm_xy3', 'gsn_csm_y',
  341. 'gsn_define_colormap', 'gsn_draw_colormap', 'gsn_draw_named_colors',
  342. 'gsn_histogram', 'gsn_labelbar_ndc', 'gsn_legend_ndc', 'gsn_map',
  343. 'gsn_merge_colormaps', 'gsn_open_wks', 'gsn_panel', 'gsn_polygon',
  344. 'gsn_polygon_ndc', 'gsn_polyline', 'gsn_polyline_ndc',
  345. 'gsn_polymarker', 'gsn_polymarker_ndc', 'gsn_retrieve_colormap',
  346. 'gsn_reverse_colormap', 'gsn_streamline', 'gsn_streamline_map',
  347. 'gsn_streamline_scalar', 'gsn_streamline_scalar_map', 'gsn_table',
  348. 'gsn_text', 'gsn_text_ndc', 'gsn_vector', 'gsn_vector_map',
  349. 'gsn_vector_scalar', 'gsn_vector_scalar_map', 'gsn_xy', 'gsn_y',
  350. 'hsv2rgb', 'maximize_output', 'namedcolor2rgb', 'namedcolor2rgba',
  351. 'reset_device_coordinates', 'span_named_colors'), prefix=r'\b'),
  352. Name.Builtin),
  353. # Resources
  354. (words((
  355. 'amDataXF', 'amDataYF', 'amJust', 'amOn', 'amOrthogonalPosF',
  356. 'amParallelPosF', 'amResizeNotify', 'amSide', 'amTrackData',
  357. 'amViewId', 'amZone', 'appDefaultParent', 'appFileSuffix',
  358. 'appResources', 'appSysDir', 'appUsrDir', 'caCopyArrays',
  359. 'caXArray', 'caXCast', 'caXMaxV', 'caXMinV', 'caXMissingV',
  360. 'caYArray', 'caYCast', 'caYMaxV', 'caYMinV', 'caYMissingV',
  361. 'cnCellFillEdgeColor', 'cnCellFillMissingValEdgeColor',
  362. 'cnConpackParams', 'cnConstFEnableFill', 'cnConstFLabelAngleF',
  363. 'cnConstFLabelBackgroundColor', 'cnConstFLabelConstantSpacingF',
  364. 'cnConstFLabelFont', 'cnConstFLabelFontAspectF',
  365. 'cnConstFLabelFontColor', 'cnConstFLabelFontHeightF',
  366. 'cnConstFLabelFontQuality', 'cnConstFLabelFontThicknessF',
  367. 'cnConstFLabelFormat', 'cnConstFLabelFuncCode', 'cnConstFLabelJust',
  368. 'cnConstFLabelOn', 'cnConstFLabelOrthogonalPosF',
  369. 'cnConstFLabelParallelPosF', 'cnConstFLabelPerimColor',
  370. 'cnConstFLabelPerimOn', 'cnConstFLabelPerimSpaceF',
  371. 'cnConstFLabelPerimThicknessF', 'cnConstFLabelSide',
  372. 'cnConstFLabelString', 'cnConstFLabelTextDirection',
  373. 'cnConstFLabelZone', 'cnConstFUseInfoLabelRes',
  374. 'cnExplicitLabelBarLabelsOn', 'cnExplicitLegendLabelsOn',
  375. 'cnExplicitLineLabelsOn', 'cnFillBackgroundColor', 'cnFillColor',
  376. 'cnFillColors', 'cnFillDotSizeF', 'cnFillDrawOrder', 'cnFillMode',
  377. 'cnFillOn', 'cnFillOpacityF', 'cnFillPalette', 'cnFillPattern',
  378. 'cnFillPatterns', 'cnFillScaleF', 'cnFillScales', 'cnFixFillBleed',
  379. 'cnGridBoundFillColor', 'cnGridBoundFillPattern',
  380. 'cnGridBoundFillScaleF', 'cnGridBoundPerimColor',
  381. 'cnGridBoundPerimDashPattern', 'cnGridBoundPerimOn',
  382. 'cnGridBoundPerimThicknessF', 'cnHighLabelAngleF',
  383. 'cnHighLabelBackgroundColor', 'cnHighLabelConstantSpacingF',
  384. 'cnHighLabelCount', 'cnHighLabelFont', 'cnHighLabelFontAspectF',
  385. 'cnHighLabelFontColor', 'cnHighLabelFontHeightF',
  386. 'cnHighLabelFontQuality', 'cnHighLabelFontThicknessF',
  387. 'cnHighLabelFormat', 'cnHighLabelFuncCode', 'cnHighLabelPerimColor',
  388. 'cnHighLabelPerimOn', 'cnHighLabelPerimSpaceF',
  389. 'cnHighLabelPerimThicknessF', 'cnHighLabelString', 'cnHighLabelsOn',
  390. 'cnHighLowLabelOverlapMode', 'cnHighUseLineLabelRes',
  391. 'cnInfoLabelAngleF', 'cnInfoLabelBackgroundColor',
  392. 'cnInfoLabelConstantSpacingF', 'cnInfoLabelFont',
  393. 'cnInfoLabelFontAspectF', 'cnInfoLabelFontColor',
  394. 'cnInfoLabelFontHeightF', 'cnInfoLabelFontQuality',
  395. 'cnInfoLabelFontThicknessF', 'cnInfoLabelFormat',
  396. 'cnInfoLabelFuncCode', 'cnInfoLabelJust', 'cnInfoLabelOn',
  397. 'cnInfoLabelOrthogonalPosF', 'cnInfoLabelParallelPosF',
  398. 'cnInfoLabelPerimColor', 'cnInfoLabelPerimOn',
  399. 'cnInfoLabelPerimSpaceF', 'cnInfoLabelPerimThicknessF',
  400. 'cnInfoLabelSide', 'cnInfoLabelString', 'cnInfoLabelTextDirection',
  401. 'cnInfoLabelZone', 'cnLabelBarEndLabelsOn', 'cnLabelBarEndStyle',
  402. 'cnLabelDrawOrder', 'cnLabelMasking', 'cnLabelScaleFactorF',
  403. 'cnLabelScaleValueF', 'cnLabelScalingMode', 'cnLegendLevelFlags',
  404. 'cnLevelCount', 'cnLevelFlag', 'cnLevelFlags', 'cnLevelSelectionMode',
  405. 'cnLevelSpacingF', 'cnLevels', 'cnLineColor', 'cnLineColors',
  406. 'cnLineDashPattern', 'cnLineDashPatterns', 'cnLineDashSegLenF',
  407. 'cnLineDrawOrder', 'cnLineLabelAngleF', 'cnLineLabelBackgroundColor',
  408. 'cnLineLabelConstantSpacingF', 'cnLineLabelCount',
  409. 'cnLineLabelDensityF', 'cnLineLabelFont', 'cnLineLabelFontAspectF',
  410. 'cnLineLabelFontColor', 'cnLineLabelFontColors',
  411. 'cnLineLabelFontHeightF', 'cnLineLabelFontQuality',
  412. 'cnLineLabelFontThicknessF', 'cnLineLabelFormat',
  413. 'cnLineLabelFuncCode', 'cnLineLabelInterval', 'cnLineLabelPerimColor',
  414. 'cnLineLabelPerimOn', 'cnLineLabelPerimSpaceF',
  415. 'cnLineLabelPerimThicknessF', 'cnLineLabelPlacementMode',
  416. 'cnLineLabelStrings', 'cnLineLabelsOn', 'cnLinePalette',
  417. 'cnLineThicknessF', 'cnLineThicknesses', 'cnLinesOn',
  418. 'cnLowLabelAngleF', 'cnLowLabelBackgroundColor',
  419. 'cnLowLabelConstantSpacingF', 'cnLowLabelCount', 'cnLowLabelFont',
  420. 'cnLowLabelFontAspectF', 'cnLowLabelFontColor',
  421. 'cnLowLabelFontHeightF', 'cnLowLabelFontQuality',
  422. 'cnLowLabelFontThicknessF', 'cnLowLabelFormat', 'cnLowLabelFuncCode',
  423. 'cnLowLabelPerimColor', 'cnLowLabelPerimOn', 'cnLowLabelPerimSpaceF',
  424. 'cnLowLabelPerimThicknessF', 'cnLowLabelString', 'cnLowLabelsOn',
  425. 'cnLowUseHighLabelRes', 'cnMaxDataValueFormat', 'cnMaxLevelCount',
  426. 'cnMaxLevelValF', 'cnMaxPointDistanceF', 'cnMinLevelValF',
  427. 'cnMissingValFillColor', 'cnMissingValFillPattern',
  428. 'cnMissingValFillScaleF', 'cnMissingValPerimColor',
  429. 'cnMissingValPerimDashPattern', 'cnMissingValPerimGridBoundOn',
  430. 'cnMissingValPerimOn', 'cnMissingValPerimThicknessF',
  431. 'cnMonoFillColor', 'cnMonoFillPattern', 'cnMonoFillScale',
  432. 'cnMonoLevelFlag', 'cnMonoLineColor', 'cnMonoLineDashPattern',
  433. 'cnMonoLineLabelFontColor', 'cnMonoLineThickness', 'cnNoDataLabelOn',
  434. 'cnNoDataLabelString', 'cnOutOfRangeFillColor',
  435. 'cnOutOfRangeFillPattern', 'cnOutOfRangeFillScaleF',
  436. 'cnOutOfRangePerimColor', 'cnOutOfRangePerimDashPattern',
  437. 'cnOutOfRangePerimOn', 'cnOutOfRangePerimThicknessF',
  438. 'cnRasterCellSizeF', 'cnRasterMinCellSizeF', 'cnRasterModeOn',
  439. 'cnRasterSampleFactorF', 'cnRasterSmoothingOn', 'cnScalarFieldData',
  440. 'cnSmoothingDistanceF', 'cnSmoothingOn', 'cnSmoothingTensionF',
  441. 'cnSpanFillPalette', 'cnSpanLinePalette', 'ctCopyTables',
  442. 'ctXElementSize', 'ctXMaxV', 'ctXMinV', 'ctXMissingV', 'ctXTable',
  443. 'ctXTableLengths', 'ctXTableType', 'ctYElementSize', 'ctYMaxV',
  444. 'ctYMinV', 'ctYMissingV', 'ctYTable', 'ctYTableLengths',
  445. 'ctYTableType', 'dcDelayCompute', 'errBuffer',
  446. 'errFileName', 'errFilePtr', 'errLevel', 'errPrint', 'errUnitNumber',
  447. 'gsClipOn', 'gsColors', 'gsEdgeColor', 'gsEdgeDashPattern',
  448. 'gsEdgeDashSegLenF', 'gsEdgeThicknessF', 'gsEdgesOn',
  449. 'gsFillBackgroundColor', 'gsFillColor', 'gsFillDotSizeF',
  450. 'gsFillIndex', 'gsFillLineThicknessF', 'gsFillOpacityF',
  451. 'gsFillScaleF', 'gsFont', 'gsFontAspectF', 'gsFontColor',
  452. 'gsFontHeightF', 'gsFontOpacityF', 'gsFontQuality',
  453. 'gsFontThicknessF', 'gsLineColor', 'gsLineDashPattern',
  454. 'gsLineDashSegLenF', 'gsLineLabelConstantSpacingF', 'gsLineLabelFont',
  455. 'gsLineLabelFontAspectF', 'gsLineLabelFontColor',
  456. 'gsLineLabelFontHeightF', 'gsLineLabelFontQuality',
  457. 'gsLineLabelFontThicknessF', 'gsLineLabelFuncCode',
  458. 'gsLineLabelString', 'gsLineOpacityF', 'gsLineThicknessF',
  459. 'gsMarkerColor', 'gsMarkerIndex', 'gsMarkerOpacityF', 'gsMarkerSizeF',
  460. 'gsMarkerThicknessF', 'gsSegments', 'gsTextAngleF',
  461. 'gsTextConstantSpacingF', 'gsTextDirection', 'gsTextFuncCode',
  462. 'gsTextJustification', 'gsnAboveYRefLineBarColors',
  463. 'gsnAboveYRefLineBarFillScales', 'gsnAboveYRefLineBarPatterns',
  464. 'gsnAboveYRefLineColor', 'gsnAddCyclic', 'gsnAttachBorderOn',
  465. 'gsnAttachPlotsXAxis', 'gsnBelowYRefLineBarColors',
  466. 'gsnBelowYRefLineBarFillScales', 'gsnBelowYRefLineBarPatterns',
  467. 'gsnBelowYRefLineColor', 'gsnBoxMargin', 'gsnCenterString',
  468. 'gsnCenterStringFontColor', 'gsnCenterStringFontHeightF',
  469. 'gsnCenterStringFuncCode', 'gsnCenterStringOrthogonalPosF',
  470. 'gsnCenterStringParallelPosF', 'gsnContourLineThicknessesScale',
  471. 'gsnContourNegLineDashPattern', 'gsnContourPosLineDashPattern',
  472. 'gsnContourZeroLineThicknessF', 'gsnDebugWriteFileName', 'gsnDraw',
  473. 'gsnFrame', 'gsnHistogramBarWidthPercent', 'gsnHistogramBinIntervals',
  474. 'gsnHistogramBinMissing', 'gsnHistogramBinWidth',
  475. 'gsnHistogramClassIntervals', 'gsnHistogramCompare',
  476. 'gsnHistogramComputePercentages',
  477. 'gsnHistogramComputePercentagesNoMissing',
  478. 'gsnHistogramDiscreteBinValues', 'gsnHistogramDiscreteClassValues',
  479. 'gsnHistogramHorizontal', 'gsnHistogramMinMaxBinsOn',
  480. 'gsnHistogramNumberOfBins', 'gsnHistogramPercentSign',
  481. 'gsnHistogramSelectNiceIntervals', 'gsnLeftString',
  482. 'gsnLeftStringFontColor', 'gsnLeftStringFontHeightF',
  483. 'gsnLeftStringFuncCode', 'gsnLeftStringOrthogonalPosF',
  484. 'gsnLeftStringParallelPosF', 'gsnMajorLatSpacing',
  485. 'gsnMajorLonSpacing', 'gsnMaskLambertConformal',
  486. 'gsnMaskLambertConformalOutlineOn', 'gsnMaximize',
  487. 'gsnMinorLatSpacing', 'gsnMinorLonSpacing', 'gsnPanelBottom',
  488. 'gsnPanelCenter', 'gsnPanelDebug', 'gsnPanelFigureStrings',
  489. 'gsnPanelFigureStringsBackgroundFillColor',
  490. 'gsnPanelFigureStringsFontHeightF', 'gsnPanelFigureStringsJust',
  491. 'gsnPanelFigureStringsPerimOn', 'gsnPanelLabelBar', 'gsnPanelLeft',
  492. 'gsnPanelMainFont', 'gsnPanelMainFontColor',
  493. 'gsnPanelMainFontHeightF', 'gsnPanelMainString', 'gsnPanelRight',
  494. 'gsnPanelRowSpec', 'gsnPanelScalePlotIndex', 'gsnPanelTop',
  495. 'gsnPanelXF', 'gsnPanelXWhiteSpacePercent', 'gsnPanelYF',
  496. 'gsnPanelYWhiteSpacePercent', 'gsnPaperHeight', 'gsnPaperMargin',
  497. 'gsnPaperOrientation', 'gsnPaperWidth', 'gsnPolar',
  498. 'gsnPolarLabelDistance', 'gsnPolarLabelFont',
  499. 'gsnPolarLabelFontHeightF', 'gsnPolarLabelSpacing', 'gsnPolarTime',
  500. 'gsnPolarUT', 'gsnRightString', 'gsnRightStringFontColor',
  501. 'gsnRightStringFontHeightF', 'gsnRightStringFuncCode',
  502. 'gsnRightStringOrthogonalPosF', 'gsnRightStringParallelPosF',
  503. 'gsnScalarContour', 'gsnScale', 'gsnShape', 'gsnSpreadColorEnd',
  504. 'gsnSpreadColorStart', 'gsnSpreadColors', 'gsnStringFont',
  505. 'gsnStringFontColor', 'gsnStringFontHeightF', 'gsnStringFuncCode',
  506. 'gsnTickMarksOn', 'gsnXAxisIrregular2Linear', 'gsnXAxisIrregular2Log',
  507. 'gsnXRefLine', 'gsnXRefLineColor', 'gsnXRefLineDashPattern',
  508. 'gsnXRefLineThicknessF', 'gsnXYAboveFillColors', 'gsnXYBarChart',
  509. 'gsnXYBarChartBarWidth', 'gsnXYBarChartColors',
  510. 'gsnXYBarChartColors2', 'gsnXYBarChartFillDotSizeF',
  511. 'gsnXYBarChartFillLineThicknessF', 'gsnXYBarChartFillOpacityF',
  512. 'gsnXYBarChartFillScaleF', 'gsnXYBarChartOutlineOnly',
  513. 'gsnXYBarChartOutlineThicknessF', 'gsnXYBarChartPatterns',
  514. 'gsnXYBarChartPatterns2', 'gsnXYBelowFillColors', 'gsnXYFillColors',
  515. 'gsnXYFillOpacities', 'gsnXYLeftFillColors', 'gsnXYRightFillColors',
  516. 'gsnYAxisIrregular2Linear', 'gsnYAxisIrregular2Log', 'gsnYRefLine',
  517. 'gsnYRefLineColor', 'gsnYRefLineColors', 'gsnYRefLineDashPattern',
  518. 'gsnYRefLineDashPatterns', 'gsnYRefLineThicknessF',
  519. 'gsnYRefLineThicknesses', 'gsnZonalMean', 'gsnZonalMeanXMaxF',
  520. 'gsnZonalMeanXMinF', 'gsnZonalMeanYRefLine', 'lbAutoManage',
  521. 'lbBottomMarginF', 'lbBoxCount', 'lbBoxEndCapStyle', 'lbBoxFractions',
  522. 'lbBoxLineColor', 'lbBoxLineDashPattern', 'lbBoxLineDashSegLenF',
  523. 'lbBoxLineThicknessF', 'lbBoxLinesOn', 'lbBoxMajorExtentF',
  524. 'lbBoxMinorExtentF', 'lbBoxSeparatorLinesOn', 'lbBoxSizing',
  525. 'lbFillBackground', 'lbFillColor', 'lbFillColors', 'lbFillDotSizeF',
  526. 'lbFillLineThicknessF', 'lbFillPattern', 'lbFillPatterns',
  527. 'lbFillScaleF', 'lbFillScales', 'lbJustification', 'lbLabelAlignment',
  528. 'lbLabelAngleF', 'lbLabelAutoStride', 'lbLabelBarOn',
  529. 'lbLabelConstantSpacingF', 'lbLabelDirection', 'lbLabelFont',
  530. 'lbLabelFontAspectF', 'lbLabelFontColor', 'lbLabelFontHeightF',
  531. 'lbLabelFontQuality', 'lbLabelFontThicknessF', 'lbLabelFuncCode',
  532. 'lbLabelJust', 'lbLabelOffsetF', 'lbLabelPosition', 'lbLabelStride',
  533. 'lbLabelStrings', 'lbLabelsOn', 'lbLeftMarginF', 'lbMaxLabelLenF',
  534. 'lbMinLabelSpacingF', 'lbMonoFillColor', 'lbMonoFillPattern',
  535. 'lbMonoFillScale', 'lbOrientation', 'lbPerimColor',
  536. 'lbPerimDashPattern', 'lbPerimDashSegLenF', 'lbPerimFill',
  537. 'lbPerimFillColor', 'lbPerimOn', 'lbPerimThicknessF',
  538. 'lbRasterFillOn', 'lbRightMarginF', 'lbTitleAngleF',
  539. 'lbTitleConstantSpacingF', 'lbTitleDirection', 'lbTitleExtentF',
  540. 'lbTitleFont', 'lbTitleFontAspectF', 'lbTitleFontColor',
  541. 'lbTitleFontHeightF', 'lbTitleFontQuality', 'lbTitleFontThicknessF',
  542. 'lbTitleFuncCode', 'lbTitleJust', 'lbTitleOffsetF', 'lbTitleOn',
  543. 'lbTitlePosition', 'lbTitleString', 'lbTopMarginF', 'lgAutoManage',
  544. 'lgBottomMarginF', 'lgBoxBackground', 'lgBoxLineColor',
  545. 'lgBoxLineDashPattern', 'lgBoxLineDashSegLenF', 'lgBoxLineThicknessF',
  546. 'lgBoxLinesOn', 'lgBoxMajorExtentF', 'lgBoxMinorExtentF',
  547. 'lgDashIndex', 'lgDashIndexes', 'lgItemCount', 'lgItemOrder',
  548. 'lgItemPlacement', 'lgItemPositions', 'lgItemType', 'lgItemTypes',
  549. 'lgJustification', 'lgLabelAlignment', 'lgLabelAngleF',
  550. 'lgLabelAutoStride', 'lgLabelConstantSpacingF', 'lgLabelDirection',
  551. 'lgLabelFont', 'lgLabelFontAspectF', 'lgLabelFontColor',
  552. 'lgLabelFontHeightF', 'lgLabelFontQuality', 'lgLabelFontThicknessF',
  553. 'lgLabelFuncCode', 'lgLabelJust', 'lgLabelOffsetF', 'lgLabelPosition',
  554. 'lgLabelStride', 'lgLabelStrings', 'lgLabelsOn', 'lgLeftMarginF',
  555. 'lgLegendOn', 'lgLineColor', 'lgLineColors', 'lgLineDashSegLenF',
  556. 'lgLineDashSegLens', 'lgLineLabelConstantSpacingF', 'lgLineLabelFont',
  557. 'lgLineLabelFontAspectF', 'lgLineLabelFontColor',
  558. 'lgLineLabelFontColors', 'lgLineLabelFontHeightF',
  559. 'lgLineLabelFontHeights', 'lgLineLabelFontQuality',
  560. 'lgLineLabelFontThicknessF', 'lgLineLabelFuncCode',
  561. 'lgLineLabelStrings', 'lgLineLabelsOn', 'lgLineThicknessF',
  562. 'lgLineThicknesses', 'lgMarkerColor', 'lgMarkerColors',
  563. 'lgMarkerIndex', 'lgMarkerIndexes', 'lgMarkerSizeF', 'lgMarkerSizes',
  564. 'lgMarkerThicknessF', 'lgMarkerThicknesses', 'lgMonoDashIndex',
  565. 'lgMonoItemType', 'lgMonoLineColor', 'lgMonoLineDashSegLen',
  566. 'lgMonoLineLabelFontColor', 'lgMonoLineLabelFontHeight',
  567. 'lgMonoLineThickness', 'lgMonoMarkerColor', 'lgMonoMarkerIndex',
  568. 'lgMonoMarkerSize', 'lgMonoMarkerThickness', 'lgOrientation',
  569. 'lgPerimColor', 'lgPerimDashPattern', 'lgPerimDashSegLenF',
  570. 'lgPerimFill', 'lgPerimFillColor', 'lgPerimOn', 'lgPerimThicknessF',
  571. 'lgRightMarginF', 'lgTitleAngleF', 'lgTitleConstantSpacingF',
  572. 'lgTitleDirection', 'lgTitleExtentF', 'lgTitleFont',
  573. 'lgTitleFontAspectF', 'lgTitleFontColor', 'lgTitleFontHeightF',
  574. 'lgTitleFontQuality', 'lgTitleFontThicknessF', 'lgTitleFuncCode',
  575. 'lgTitleJust', 'lgTitleOffsetF', 'lgTitleOn', 'lgTitlePosition',
  576. 'lgTitleString', 'lgTopMarginF', 'mpAreaGroupCount',
  577. 'mpAreaMaskingOn', 'mpAreaNames', 'mpAreaTypes', 'mpBottomAngleF',
  578. 'mpBottomMapPosF', 'mpBottomNDCF', 'mpBottomNPCF',
  579. 'mpBottomPointLatF', 'mpBottomPointLonF', 'mpBottomWindowF',
  580. 'mpCenterLatF', 'mpCenterLonF', 'mpCenterRotF', 'mpCountyLineColor',
  581. 'mpCountyLineDashPattern', 'mpCountyLineDashSegLenF',
  582. 'mpCountyLineThicknessF', 'mpDataBaseVersion', 'mpDataResolution',
  583. 'mpDataSetName', 'mpDefaultFillColor', 'mpDefaultFillPattern',
  584. 'mpDefaultFillScaleF', 'mpDynamicAreaGroups', 'mpEllipticalBoundary',
  585. 'mpFillAreaSpecifiers', 'mpFillBoundarySets', 'mpFillColor',
  586. 'mpFillColors', 'mpFillColors-default', 'mpFillDotSizeF',
  587. 'mpFillDrawOrder', 'mpFillOn', 'mpFillPatternBackground',
  588. 'mpFillPattern', 'mpFillPatterns', 'mpFillPatterns-default',
  589. 'mpFillScaleF', 'mpFillScales', 'mpFillScales-default',
  590. 'mpFixedAreaGroups', 'mpGeophysicalLineColor',
  591. 'mpGeophysicalLineDashPattern', 'mpGeophysicalLineDashSegLenF',
  592. 'mpGeophysicalLineThicknessF', 'mpGreatCircleLinesOn',
  593. 'mpGridAndLimbDrawOrder', 'mpGridAndLimbOn', 'mpGridLatSpacingF',
  594. 'mpGridLineColor', 'mpGridLineDashPattern', 'mpGridLineDashSegLenF',
  595. 'mpGridLineThicknessF', 'mpGridLonSpacingF', 'mpGridMaskMode',
  596. 'mpGridMaxLatF', 'mpGridPolarLonSpacingF', 'mpGridSpacingF',
  597. 'mpInlandWaterFillColor', 'mpInlandWaterFillPattern',
  598. 'mpInlandWaterFillScaleF', 'mpLabelDrawOrder', 'mpLabelFontColor',
  599. 'mpLabelFontHeightF', 'mpLabelsOn', 'mpLambertMeridianF',
  600. 'mpLambertParallel1F', 'mpLambertParallel2F', 'mpLandFillColor',
  601. 'mpLandFillPattern', 'mpLandFillScaleF', 'mpLeftAngleF',
  602. 'mpLeftCornerLatF', 'mpLeftCornerLonF', 'mpLeftMapPosF',
  603. 'mpLeftNDCF', 'mpLeftNPCF', 'mpLeftPointLatF',
  604. 'mpLeftPointLonF', 'mpLeftWindowF', 'mpLimbLineColor',
  605. 'mpLimbLineDashPattern', 'mpLimbLineDashSegLenF',
  606. 'mpLimbLineThicknessF', 'mpLimitMode', 'mpMaskAreaSpecifiers',
  607. 'mpMaskOutlineSpecifiers', 'mpMaxLatF', 'mpMaxLonF',
  608. 'mpMinLatF', 'mpMinLonF', 'mpMonoFillColor', 'mpMonoFillPattern',
  609. 'mpMonoFillScale', 'mpNationalLineColor', 'mpNationalLineDashPattern',
  610. 'mpNationalLineThicknessF', 'mpOceanFillColor', 'mpOceanFillPattern',
  611. 'mpOceanFillScaleF', 'mpOutlineBoundarySets', 'mpOutlineDrawOrder',
  612. 'mpOutlineMaskingOn', 'mpOutlineOn', 'mpOutlineSpecifiers',
  613. 'mpPerimDrawOrder', 'mpPerimLineColor', 'mpPerimLineDashPattern',
  614. 'mpPerimLineDashSegLenF', 'mpPerimLineThicknessF', 'mpPerimOn',
  615. 'mpPolyMode', 'mpProjection', 'mpProvincialLineColor',
  616. 'mpProvincialLineDashPattern', 'mpProvincialLineDashSegLenF',
  617. 'mpProvincialLineThicknessF', 'mpRelativeCenterLat',
  618. 'mpRelativeCenterLon', 'mpRightAngleF', 'mpRightCornerLatF',
  619. 'mpRightCornerLonF', 'mpRightMapPosF', 'mpRightNDCF',
  620. 'mpRightNPCF', 'mpRightPointLatF', 'mpRightPointLonF',
  621. 'mpRightWindowF', 'mpSatelliteAngle1F', 'mpSatelliteAngle2F',
  622. 'mpSatelliteDistF', 'mpShapeMode', 'mpSpecifiedFillColors',
  623. 'mpSpecifiedFillDirectIndexing', 'mpSpecifiedFillPatterns',
  624. 'mpSpecifiedFillPriority', 'mpSpecifiedFillScales',
  625. 'mpTopAngleF', 'mpTopMapPosF', 'mpTopNDCF', 'mpTopNPCF',
  626. 'mpTopPointLatF', 'mpTopPointLonF', 'mpTopWindowF',
  627. 'mpUSStateLineColor', 'mpUSStateLineDashPattern',
  628. 'mpUSStateLineDashSegLenF', 'mpUSStateLineThicknessF',
  629. 'pmAnnoManagers', 'pmAnnoViews', 'pmLabelBarDisplayMode',
  630. 'pmLabelBarHeightF', 'pmLabelBarKeepAspect', 'pmLabelBarOrthogonalPosF',
  631. 'pmLabelBarParallelPosF', 'pmLabelBarSide', 'pmLabelBarWidthF',
  632. 'pmLabelBarZone', 'pmLegendDisplayMode', 'pmLegendHeightF',
  633. 'pmLegendKeepAspect', 'pmLegendOrthogonalPosF',
  634. 'pmLegendParallelPosF', 'pmLegendSide', 'pmLegendWidthF',
  635. 'pmLegendZone', 'pmOverlaySequenceIds', 'pmTickMarkDisplayMode',
  636. 'pmTickMarkZone', 'pmTitleDisplayMode', 'pmTitleZone',
  637. 'prGraphicStyle', 'prPolyType', 'prXArray', 'prYArray',
  638. 'sfCopyData', 'sfDataArray', 'sfDataMaxV', 'sfDataMinV',
  639. 'sfElementNodes', 'sfExchangeDimensions', 'sfFirstNodeIndex',
  640. 'sfMissingValueV', 'sfXArray', 'sfXCActualEndF', 'sfXCActualStartF',
  641. 'sfXCEndIndex', 'sfXCEndSubsetV', 'sfXCEndV', 'sfXCStartIndex',
  642. 'sfXCStartSubsetV', 'sfXCStartV', 'sfXCStride', 'sfXCellBounds',
  643. 'sfYArray', 'sfYCActualEndF', 'sfYCActualStartF', 'sfYCEndIndex',
  644. 'sfYCEndSubsetV', 'sfYCEndV', 'sfYCStartIndex', 'sfYCStartSubsetV',
  645. 'sfYCStartV', 'sfYCStride', 'sfYCellBounds', 'stArrowLengthF',
  646. 'stArrowStride', 'stCrossoverCheckCount',
  647. 'stExplicitLabelBarLabelsOn', 'stLabelBarEndLabelsOn',
  648. 'stLabelFormat', 'stLengthCheckCount', 'stLevelColors',
  649. 'stLevelCount', 'stLevelPalette', 'stLevelSelectionMode',
  650. 'stLevelSpacingF', 'stLevels', 'stLineColor', 'stLineOpacityF',
  651. 'stLineStartStride', 'stLineThicknessF', 'stMapDirection',
  652. 'stMaxLevelCount', 'stMaxLevelValF', 'stMinArrowSpacingF',
  653. 'stMinDistanceF', 'stMinLevelValF', 'stMinLineSpacingF',
  654. 'stMinStepFactorF', 'stMonoLineColor', 'stNoDataLabelOn',
  655. 'stNoDataLabelString', 'stScalarFieldData', 'stScalarMissingValColor',
  656. 'stSpanLevelPalette', 'stStepSizeF', 'stStreamlineDrawOrder',
  657. 'stUseScalarArray', 'stVectorFieldData', 'stZeroFLabelAngleF',
  658. 'stZeroFLabelBackgroundColor', 'stZeroFLabelConstantSpacingF',
  659. 'stZeroFLabelFont', 'stZeroFLabelFontAspectF',
  660. 'stZeroFLabelFontColor', 'stZeroFLabelFontHeightF',
  661. 'stZeroFLabelFontQuality', 'stZeroFLabelFontThicknessF',
  662. 'stZeroFLabelFuncCode', 'stZeroFLabelJust', 'stZeroFLabelOn',
  663. 'stZeroFLabelOrthogonalPosF', 'stZeroFLabelParallelPosF',
  664. 'stZeroFLabelPerimColor', 'stZeroFLabelPerimOn',
  665. 'stZeroFLabelPerimSpaceF', 'stZeroFLabelPerimThicknessF',
  666. 'stZeroFLabelSide', 'stZeroFLabelString', 'stZeroFLabelTextDirection',
  667. 'stZeroFLabelZone', 'tfDoNDCOverlay', 'tfPlotManagerOn',
  668. 'tfPolyDrawList', 'tfPolyDrawOrder', 'tiDeltaF', 'tiMainAngleF',
  669. 'tiMainConstantSpacingF', 'tiMainDirection', 'tiMainFont',
  670. 'tiMainFontAspectF', 'tiMainFontColor', 'tiMainFontHeightF',
  671. 'tiMainFontQuality', 'tiMainFontThicknessF', 'tiMainFuncCode',
  672. 'tiMainJust', 'tiMainOffsetXF', 'tiMainOffsetYF', 'tiMainOn',
  673. 'tiMainPosition', 'tiMainSide', 'tiMainString', 'tiUseMainAttributes',
  674. 'tiXAxisAngleF', 'tiXAxisConstantSpacingF', 'tiXAxisDirection',
  675. 'tiXAxisFont', 'tiXAxisFontAspectF', 'tiXAxisFontColor',
  676. 'tiXAxisFontHeightF', 'tiXAxisFontQuality', 'tiXAxisFontThicknessF',
  677. 'tiXAxisFuncCode', 'tiXAxisJust', 'tiXAxisOffsetXF',
  678. 'tiXAxisOffsetYF', 'tiXAxisOn', 'tiXAxisPosition', 'tiXAxisSide',
  679. 'tiXAxisString', 'tiYAxisAngleF', 'tiYAxisConstantSpacingF',
  680. 'tiYAxisDirection', 'tiYAxisFont', 'tiYAxisFontAspectF',
  681. 'tiYAxisFontColor', 'tiYAxisFontHeightF', 'tiYAxisFontQuality',
  682. 'tiYAxisFontThicknessF', 'tiYAxisFuncCode', 'tiYAxisJust',
  683. 'tiYAxisOffsetXF', 'tiYAxisOffsetYF', 'tiYAxisOn', 'tiYAxisPosition',
  684. 'tiYAxisSide', 'tiYAxisString', 'tmBorderLineColor',
  685. 'tmBorderThicknessF', 'tmEqualizeXYSizes', 'tmLabelAutoStride',
  686. 'tmSciNoteCutoff', 'tmXBAutoPrecision', 'tmXBBorderOn',
  687. 'tmXBDataLeftF', 'tmXBDataRightF', 'tmXBFormat', 'tmXBIrrTensionF',
  688. 'tmXBIrregularPoints', 'tmXBLabelAngleF', 'tmXBLabelConstantSpacingF',
  689. 'tmXBLabelDeltaF', 'tmXBLabelDirection', 'tmXBLabelFont',
  690. 'tmXBLabelFontAspectF', 'tmXBLabelFontColor', 'tmXBLabelFontHeightF',
  691. 'tmXBLabelFontQuality', 'tmXBLabelFontThicknessF',
  692. 'tmXBLabelFuncCode', 'tmXBLabelJust', 'tmXBLabelStride', 'tmXBLabels',
  693. 'tmXBLabelsOn', 'tmXBMajorLengthF', 'tmXBMajorLineColor',
  694. 'tmXBMajorOutwardLengthF', 'tmXBMajorThicknessF', 'tmXBMaxLabelLenF',
  695. 'tmXBMaxTicks', 'tmXBMinLabelSpacingF', 'tmXBMinorLengthF',
  696. 'tmXBMinorLineColor', 'tmXBMinorOn', 'tmXBMinorOutwardLengthF',
  697. 'tmXBMinorPerMajor', 'tmXBMinorThicknessF', 'tmXBMinorValues',
  698. 'tmXBMode', 'tmXBOn', 'tmXBPrecision', 'tmXBStyle', 'tmXBTickEndF',
  699. 'tmXBTickSpacingF', 'tmXBTickStartF', 'tmXBValues', 'tmXMajorGrid',
  700. 'tmXMajorGridLineColor', 'tmXMajorGridLineDashPattern',
  701. 'tmXMajorGridThicknessF', 'tmXMinorGrid', 'tmXMinorGridLineColor',
  702. 'tmXMinorGridLineDashPattern', 'tmXMinorGridThicknessF',
  703. 'tmXTAutoPrecision', 'tmXTBorderOn', 'tmXTDataLeftF',
  704. 'tmXTDataRightF', 'tmXTFormat', 'tmXTIrrTensionF',
  705. 'tmXTIrregularPoints', 'tmXTLabelAngleF', 'tmXTLabelConstantSpacingF',
  706. 'tmXTLabelDeltaF', 'tmXTLabelDirection', 'tmXTLabelFont',
  707. 'tmXTLabelFontAspectF', 'tmXTLabelFontColor', 'tmXTLabelFontHeightF',
  708. 'tmXTLabelFontQuality', 'tmXTLabelFontThicknessF',
  709. 'tmXTLabelFuncCode', 'tmXTLabelJust', 'tmXTLabelStride', 'tmXTLabels',
  710. 'tmXTLabelsOn', 'tmXTMajorLengthF', 'tmXTMajorLineColor',
  711. 'tmXTMajorOutwardLengthF', 'tmXTMajorThicknessF', 'tmXTMaxLabelLenF',
  712. 'tmXTMaxTicks', 'tmXTMinLabelSpacingF', 'tmXTMinorLengthF',
  713. 'tmXTMinorLineColor', 'tmXTMinorOn', 'tmXTMinorOutwardLengthF',
  714. 'tmXTMinorPerMajor', 'tmXTMinorThicknessF', 'tmXTMinorValues',
  715. 'tmXTMode', 'tmXTOn', 'tmXTPrecision', 'tmXTStyle', 'tmXTTickEndF',
  716. 'tmXTTickSpacingF', 'tmXTTickStartF', 'tmXTValues', 'tmXUseBottom',
  717. 'tmYLAutoPrecision', 'tmYLBorderOn', 'tmYLDataBottomF',
  718. 'tmYLDataTopF', 'tmYLFormat', 'tmYLIrrTensionF',
  719. 'tmYLIrregularPoints', 'tmYLLabelAngleF', 'tmYLLabelConstantSpacingF',
  720. 'tmYLLabelDeltaF', 'tmYLLabelDirection', 'tmYLLabelFont',
  721. 'tmYLLabelFontAspectF', 'tmYLLabelFontColor', 'tmYLLabelFontHeightF',
  722. 'tmYLLabelFontQuality', 'tmYLLabelFontThicknessF',
  723. 'tmYLLabelFuncCode', 'tmYLLabelJust', 'tmYLLabelStride', 'tmYLLabels',
  724. 'tmYLLabelsOn', 'tmYLMajorLengthF', 'tmYLMajorLineColor',
  725. 'tmYLMajorOutwardLengthF', 'tmYLMajorThicknessF', 'tmYLMaxLabelLenF',
  726. 'tmYLMaxTicks', 'tmYLMinLabelSpacingF', 'tmYLMinorLengthF',
  727. 'tmYLMinorLineColor', 'tmYLMinorOn', 'tmYLMinorOutwardLengthF',
  728. 'tmYLMinorPerMajor', 'tmYLMinorThicknessF', 'tmYLMinorValues',
  729. 'tmYLMode', 'tmYLOn', 'tmYLPrecision', 'tmYLStyle', 'tmYLTickEndF',
  730. 'tmYLTickSpacingF', 'tmYLTickStartF', 'tmYLValues', 'tmYMajorGrid',
  731. 'tmYMajorGridLineColor', 'tmYMajorGridLineDashPattern',
  732. 'tmYMajorGridThicknessF', 'tmYMinorGrid', 'tmYMinorGridLineColor',
  733. 'tmYMinorGridLineDashPattern', 'tmYMinorGridThicknessF',
  734. 'tmYRAutoPrecision', 'tmYRBorderOn', 'tmYRDataBottomF',
  735. 'tmYRDataTopF', 'tmYRFormat', 'tmYRIrrTensionF',
  736. 'tmYRIrregularPoints', 'tmYRLabelAngleF', 'tmYRLabelConstantSpacingF',
  737. 'tmYRLabelDeltaF', 'tmYRLabelDirection', 'tmYRLabelFont',
  738. 'tmYRLabelFontAspectF', 'tmYRLabelFontColor', 'tmYRLabelFontHeightF',
  739. 'tmYRLabelFontQuality', 'tmYRLabelFontThicknessF',
  740. 'tmYRLabelFuncCode', 'tmYRLabelJust', 'tmYRLabelStride', 'tmYRLabels',
  741. 'tmYRLabelsOn', 'tmYRMajorLengthF', 'tmYRMajorLineColor',
  742. 'tmYRMajorOutwardLengthF', 'tmYRMajorThicknessF', 'tmYRMaxLabelLenF',
  743. 'tmYRMaxTicks', 'tmYRMinLabelSpacingF', 'tmYRMinorLengthF',
  744. 'tmYRMinorLineColor', 'tmYRMinorOn', 'tmYRMinorOutwardLengthF',
  745. 'tmYRMinorPerMajor', 'tmYRMinorThicknessF', 'tmYRMinorValues',
  746. 'tmYRMode', 'tmYROn', 'tmYRPrecision', 'tmYRStyle', 'tmYRTickEndF',
  747. 'tmYRTickSpacingF', 'tmYRTickStartF', 'tmYRValues', 'tmYUseLeft',
  748. 'trGridType', 'trLineInterpolationOn',
  749. 'trXAxisType', 'trXCoordPoints', 'trXInterPoints', 'trXLog',
  750. 'trXMaxF', 'trXMinF', 'trXReverse', 'trXSamples', 'trXTensionF',
  751. 'trYAxisType', 'trYCoordPoints', 'trYInterPoints', 'trYLog',
  752. 'trYMaxF', 'trYMinF', 'trYReverse', 'trYSamples', 'trYTensionF',
  753. 'txAngleF', 'txBackgroundFillColor', 'txConstantSpacingF', 'txDirection',
  754. 'txFont', 'HLU-Fonts', 'txFontAspectF', 'txFontColor',
  755. 'txFontHeightF', 'txFontOpacityF', 'txFontQuality',
  756. 'txFontThicknessF', 'txFuncCode', 'txJust', 'txPerimColor',
  757. 'txPerimDashLengthF', 'txPerimDashPattern', 'txPerimOn',
  758. 'txPerimSpaceF', 'txPerimThicknessF', 'txPosXF', 'txPosYF',
  759. 'txString', 'vcExplicitLabelBarLabelsOn', 'vcFillArrowEdgeColor',
  760. 'vcFillArrowEdgeThicknessF', 'vcFillArrowFillColor',
  761. 'vcFillArrowHeadInteriorXF', 'vcFillArrowHeadMinFracXF',
  762. 'vcFillArrowHeadMinFracYF', 'vcFillArrowHeadXF', 'vcFillArrowHeadYF',
  763. 'vcFillArrowMinFracWidthF', 'vcFillArrowWidthF', 'vcFillArrowsOn',
  764. 'vcFillOverEdge', 'vcGlyphOpacityF', 'vcGlyphStyle',
  765. 'vcLabelBarEndLabelsOn', 'vcLabelFontColor', 'vcLabelFontHeightF',
  766. 'vcLabelsOn', 'vcLabelsUseVectorColor', 'vcLevelColors',
  767. 'vcLevelCount', 'vcLevelPalette', 'vcLevelSelectionMode',
  768. 'vcLevelSpacingF', 'vcLevels', 'vcLineArrowColor',
  769. 'vcLineArrowHeadMaxSizeF', 'vcLineArrowHeadMinSizeF',
  770. 'vcLineArrowThicknessF', 'vcMagnitudeFormat',
  771. 'vcMagnitudeScaleFactorF', 'vcMagnitudeScaleValueF',
  772. 'vcMagnitudeScalingMode', 'vcMapDirection', 'vcMaxLevelCount',
  773. 'vcMaxLevelValF', 'vcMaxMagnitudeF', 'vcMinAnnoAngleF',
  774. 'vcMinAnnoArrowAngleF', 'vcMinAnnoArrowEdgeColor',
  775. 'vcMinAnnoArrowFillColor', 'vcMinAnnoArrowLineColor',
  776. 'vcMinAnnoArrowMinOffsetF', 'vcMinAnnoArrowSpaceF',
  777. 'vcMinAnnoArrowUseVecColor', 'vcMinAnnoBackgroundColor',
  778. 'vcMinAnnoConstantSpacingF', 'vcMinAnnoExplicitMagnitudeF',
  779. 'vcMinAnnoFont', 'vcMinAnnoFontAspectF', 'vcMinAnnoFontColor',
  780. 'vcMinAnnoFontHeightF', 'vcMinAnnoFontQuality',
  781. 'vcMinAnnoFontThicknessF', 'vcMinAnnoFuncCode', 'vcMinAnnoJust',
  782. 'vcMinAnnoOn', 'vcMinAnnoOrientation', 'vcMinAnnoOrthogonalPosF',
  783. 'vcMinAnnoParallelPosF', 'vcMinAnnoPerimColor', 'vcMinAnnoPerimOn',
  784. 'vcMinAnnoPerimSpaceF', 'vcMinAnnoPerimThicknessF', 'vcMinAnnoSide',
  785. 'vcMinAnnoString1', 'vcMinAnnoString1On', 'vcMinAnnoString2',
  786. 'vcMinAnnoString2On', 'vcMinAnnoTextDirection', 'vcMinAnnoZone',
  787. 'vcMinDistanceF', 'vcMinFracLengthF', 'vcMinLevelValF',
  788. 'vcMinMagnitudeF', 'vcMonoFillArrowEdgeColor',
  789. 'vcMonoFillArrowFillColor', 'vcMonoLineArrowColor',
  790. 'vcMonoWindBarbColor', 'vcNoDataLabelOn', 'vcNoDataLabelString',
  791. 'vcPositionMode', 'vcRefAnnoAngleF', 'vcRefAnnoArrowAngleF',
  792. 'vcRefAnnoArrowEdgeColor', 'vcRefAnnoArrowFillColor',
  793. 'vcRefAnnoArrowLineColor', 'vcRefAnnoArrowMinOffsetF',
  794. 'vcRefAnnoArrowSpaceF', 'vcRefAnnoArrowUseVecColor',
  795. 'vcRefAnnoBackgroundColor', 'vcRefAnnoConstantSpacingF',
  796. 'vcRefAnnoExplicitMagnitudeF', 'vcRefAnnoFont',
  797. 'vcRefAnnoFontAspectF', 'vcRefAnnoFontColor', 'vcRefAnnoFontHeightF',
  798. 'vcRefAnnoFontQuality', 'vcRefAnnoFontThicknessF',
  799. 'vcRefAnnoFuncCode', 'vcRefAnnoJust', 'vcRefAnnoOn',
  800. 'vcRefAnnoOrientation', 'vcRefAnnoOrthogonalPosF',
  801. 'vcRefAnnoParallelPosF', 'vcRefAnnoPerimColor', 'vcRefAnnoPerimOn',
  802. 'vcRefAnnoPerimSpaceF', 'vcRefAnnoPerimThicknessF', 'vcRefAnnoSide',
  803. 'vcRefAnnoString1', 'vcRefAnnoString1On', 'vcRefAnnoString2',
  804. 'vcRefAnnoString2On', 'vcRefAnnoTextDirection', 'vcRefAnnoZone',
  805. 'vcRefLengthF', 'vcRefMagnitudeF', 'vcScalarFieldData',
  806. 'vcScalarMissingValColor', 'vcScalarValueFormat',
  807. 'vcScalarValueScaleFactorF', 'vcScalarValueScaleValueF',
  808. 'vcScalarValueScalingMode', 'vcSpanLevelPalette', 'vcUseRefAnnoRes',
  809. 'vcUseScalarArray', 'vcVectorDrawOrder', 'vcVectorFieldData',
  810. 'vcWindBarbCalmCircleSizeF', 'vcWindBarbColor',
  811. 'vcWindBarbLineThicknessF', 'vcWindBarbScaleFactorF',
  812. 'vcWindBarbTickAngleF', 'vcWindBarbTickLengthF',
  813. 'vcWindBarbTickSpacingF', 'vcZeroFLabelAngleF',
  814. 'vcZeroFLabelBackgroundColor', 'vcZeroFLabelConstantSpacingF',
  815. 'vcZeroFLabelFont', 'vcZeroFLabelFontAspectF',
  816. 'vcZeroFLabelFontColor', 'vcZeroFLabelFontHeightF',
  817. 'vcZeroFLabelFontQuality', 'vcZeroFLabelFontThicknessF',
  818. 'vcZeroFLabelFuncCode', 'vcZeroFLabelJust', 'vcZeroFLabelOn',
  819. 'vcZeroFLabelOrthogonalPosF', 'vcZeroFLabelParallelPosF',
  820. 'vcZeroFLabelPerimColor', 'vcZeroFLabelPerimOn',
  821. 'vcZeroFLabelPerimSpaceF', 'vcZeroFLabelPerimThicknessF',
  822. 'vcZeroFLabelSide', 'vcZeroFLabelString', 'vcZeroFLabelTextDirection',
  823. 'vcZeroFLabelZone', 'vfCopyData', 'vfDataArray',
  824. 'vfExchangeDimensions', 'vfExchangeUVData', 'vfMagMaxV', 'vfMagMinV',
  825. 'vfMissingUValueV', 'vfMissingVValueV', 'vfPolarData',
  826. 'vfSingleMissingValue', 'vfUDataArray', 'vfUMaxV', 'vfUMinV',
  827. 'vfVDataArray', 'vfVMaxV', 'vfVMinV', 'vfXArray', 'vfXCActualEndF',
  828. 'vfXCActualStartF', 'vfXCEndIndex', 'vfXCEndSubsetV', 'vfXCEndV',
  829. 'vfXCStartIndex', 'vfXCStartSubsetV', 'vfXCStartV', 'vfXCStride',
  830. 'vfYArray', 'vfYCActualEndF', 'vfYCActualStartF', 'vfYCEndIndex',
  831. 'vfYCEndSubsetV', 'vfYCEndV', 'vfYCStartIndex', 'vfYCStartSubsetV',
  832. 'vfYCStartV', 'vfYCStride', 'vpAnnoManagerId', 'vpClipOn',
  833. 'vpHeightF', 'vpKeepAspect', 'vpOn', 'vpUseSegments', 'vpWidthF',
  834. 'vpXF', 'vpYF', 'wkAntiAlias', 'wkBackgroundColor', 'wkBackgroundOpacityF',
  835. 'wkColorMapLen', 'wkColorMap', 'wkColorModel', 'wkDashTableLength',
  836. 'wkDefGraphicStyleId', 'wkDeviceLowerX', 'wkDeviceLowerY',
  837. 'wkDeviceUpperX', 'wkDeviceUpperY', 'wkFileName', 'wkFillTableLength',
  838. 'wkForegroundColor', 'wkFormat', 'wkFullBackground', 'wkGksWorkId',
  839. 'wkHeight', 'wkMarkerTableLength', 'wkMetaName', 'wkOrientation',
  840. 'wkPDFFileName', 'wkPDFFormat', 'wkPDFResolution', 'wkPSFileName',
  841. 'wkPSFormat', 'wkPSResolution', 'wkPaperHeightF', 'wkPaperSize',
  842. 'wkPaperWidthF', 'wkPause', 'wkTopLevelViews', 'wkViews',
  843. 'wkVisualType', 'wkWidth', 'wkWindowId', 'wkXColorMode', 'wsCurrentSize',
  844. 'wsMaximumSize', 'wsThresholdSize', 'xyComputeXMax',
  845. 'xyComputeXMin', 'xyComputeYMax', 'xyComputeYMin', 'xyCoordData',
  846. 'xyCoordDataSpec', 'xyCurveDrawOrder', 'xyDashPattern',
  847. 'xyDashPatterns', 'xyExplicitLabels', 'xyExplicitLegendLabels',
  848. 'xyLabelMode', 'xyLineColor', 'xyLineColors', 'xyLineDashSegLenF',
  849. 'xyLineLabelConstantSpacingF', 'xyLineLabelFont',
  850. 'xyLineLabelFontAspectF', 'xyLineLabelFontColor',
  851. 'xyLineLabelFontColors', 'xyLineLabelFontHeightF',
  852. 'xyLineLabelFontQuality', 'xyLineLabelFontThicknessF',
  853. 'xyLineLabelFuncCode', 'xyLineThicknessF', 'xyLineThicknesses',
  854. 'xyMarkLineMode', 'xyMarkLineModes', 'xyMarker', 'xyMarkerColor',
  855. 'xyMarkerColors', 'xyMarkerSizeF', 'xyMarkerSizes',
  856. 'xyMarkerThicknessF', 'xyMarkerThicknesses', 'xyMarkers',
  857. 'xyMonoDashPattern', 'xyMonoLineColor', 'xyMonoLineLabelFontColor',
  858. 'xyMonoLineThickness', 'xyMonoMarkLineMode', 'xyMonoMarker',
  859. 'xyMonoMarkerColor', 'xyMonoMarkerSize', 'xyMonoMarkerThickness',
  860. 'xyXIrrTensionF', 'xyXIrregularPoints', 'xyXStyle', 'xyYIrrTensionF',
  861. 'xyYIrregularPoints', 'xyYStyle'), prefix=r'\b'),
  862. Name.Builtin),
  863. # Booleans
  864. (r'\.(True|False)\.', Name.Builtin),
  865. # Comparing Operators
  866. (r'\.(eq|ne|lt|le|gt|ge|not|and|or|xor)\.', Operator.Word),
  867. ],
  868. 'strings': [
  869. (r'(?s)"(\\\\|\\[0-7]+|\\.|[^"\\])*"', String.Double),
  870. ],
  871. 'nums': [
  872. (r'\d+(?![.e])(_[a-z]\w+)?', Number.Integer),
  873. (r'[+-]?\d*\.\d+(e[-+]?\d+)?(_[a-z]\w+)?', Number.Float),
  874. (r'[+-]?\d+\.\d*(e[-+]?\d+)?(_[a-z]\w+)?', Number.Float),
  875. ],
  876. }