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