forked from 3rdparty/wrf-python
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							76 lines
						
					
					
						
							4.2 KiB
						
					
					
				
			
		
		
	
	
							76 lines
						
					
					
						
							4.2 KiB
						
					
					
				| from .config import (xarray_enabled, disable_xarray, enable_xarray, | |
|                      cartopy_enabled, disable_cartopy, enable_cartopy, | |
|                      basemap_enabled, disable_basemap, enable_basemap, | |
|                      pyngl_enabled, enable_pyngl, disable_pyngl, | |
|                      set_cache_size, get_cache_size) | |
| from .constants import ALL_TIMES, Constants, ConversionFactors, ProjectionTypes | |
| from .destag import destagger | |
| from .routines import getvar | |
| from .computation import (xy, interp1d, interp2dxy, interpz3d, slp, tk, td, rh,  | |
|                           uvmet, smooth2d, cape_2d, cape_3d, cloudfrac, ctt, | |
|                           dbz, srhel, udhel, avo, pvo, eth, wetbulb, tvirtual, | |
|                           omega, pw) | |
| from .extension import DiagnosticError | |
| from .interp import (interplevel, vertcross, interpline, vinterp) | |
| from .latlon import (xy_to_ll, ll_to_xy, xy_to_ll_proj, ll_to_xy_proj) | |
| from .py3compat import (viewitems, viewkeys, viewvalues, isstr, py2round,  | |
|                         py3range, ucode) | |
| from .util import (to_np, extract_global_attrs, is_standard_wrf_var, | |
|                    extract_dim, extract_vars, extract_times, combine_files, | |
|                    extract_times, npbytes_to_str, is_moving_domain,  | |
|                    is_staggered, get_left_indexes, iter_left_indexes, | |
|                    get_right_slices, get_proj_params, from_args,  | |
|                    args_to_list, arg_location, psafilepath, get_id, | |
|                    from_var, combine_dims, either, get_iterable, | |
|                    IterWrapper, is_coordvar, latlon_coordvars, is_mapping, | |
|                    has_time_coord, is_multi_file, is_multi_time_req, | |
|                    get_coord_pairs, is_time_coord_var, geo_bounds,  | |
|                    get_cartopy, get_basemap, get_pyngl, cartopy_xlim, | |
|                    cartopy_ylim, latlon_coords) | |
| from .geobnds import GeoBounds, NullGeoBounds | |
| from .projection import (WrfProj, NullProjection, LambertConformal, Mercator, | |
|                          PolarStereographic, LatLon, RotatedLatLon,  | |
|                          getproj) | |
| from .coordpair import CoordPair | |
| from .interputils import to_xy_coords | |
| from .cache import cache_item, get_cached_item | |
| from .version import __version__ | |
|  | |
| __all__ = [] | |
| __all__ += ["xarray_enabled", "disable_xarray", "enable_xarray", | |
|             "cartopy_enabled", "disable_cartopy", "enable_cartopy", | |
|             "basemap_enabled", "disable_basemap", "enable_basemap", | |
|             "pyngl_enabled", "enable_pyngl", "disable_pyngl", | |
|             "set_cache_size", "get_cache_size"] | |
| __all__ += ["ALL_TIMES", "Constants", "ConversionFactors", "ProjectionTypes"] | |
| __all__ += ["destagger"] | |
| __all__ += ["getvar"] | |
| __all__ += ["xy", "interp1d", "interp2dxy", "interpz3d", "slp", "tk", "td",  | |
|             "rh", "uvmet", "smooth2d", "cape_2d", "cape_3d", "cloudfrac", | |
|             "ctt", "dbz", "srhel", "udhel", "avo", "pvo", "eth", "wetbulb", | |
|             "tvirtual", "omega", "pw"] | |
| __all__ += ["DiagnosticError"] | |
| __all__ += ["interplevel", "vertcross", "interpline", "vinterp"] | |
| __all__ += ["xy_to_ll", "ll_to_xy", "xy_to_ll_proj", "ll_to_xy_proj"] | |
| __all__ += ["viewitems", "viewkeys", "viewvalues", "isstr", "py2round",  | |
|             "py3range", "ucode"] | |
| __all__ += ["to_np", "extract_global_attrs", "is_standard_wrf_var", | |
|             "extract_dim", "extract_vars", "extract_times", "combine_files", | |
|             "extract_times", "npbytes_to_str", "is_moving_domain",  | |
|             "is_staggered", "get_left_indexes", "iter_left_indexes",  | |
|             "get_right_slices", "get_proj_params", "from_args",  | |
|             "args_to_list", "arg_location", "psafilepath", "get_id", | |
|             "from_var", "combine_dims", "either", "get_iterable", | |
|             "IterWrapper", "is_coordvar", "latlon_coordvars", "is_mapping", | |
|             "has_time_coord", "is_multi_file", "is_multi_time_req", | |
|             "get_coord_pairs", "is_time_coord_var", "geo_bounds",  | |
|             "get_cartopy", "get_basemap", "get_pyngl", "cartopy_xlim", | |
|             "cartopy_ylim", "latlon_coords"] | |
| __all__ += ["GeoBounds", "NullGeoBounds"] | |
| __all__ += ["WrfProj", "NullProjection", "LambertConformal", "Mercator", | |
|             "PolarStereographic", "LatLon", "RotatedLatLon", "getproj"] | |
| __all__ += ["CoordPair"] | |
| __all__ += ["to_xy_coords"] | |
| __all__ += ["cache_item", "get_cached_item"] | |
| __all__ += ["__version__"] | |
| 
 | |
| 
 |