Python xarray.__version__() Examples
The following are 7
code examples of xarray.__version__().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
xarray
, or try the search function
.
Example #1
Source File: conf.py From oggm with BSD 3-Clause "New" or "Revised" License | 5 votes |
def write_index(): """This is to write the docs for the index automatically.""" here = os.path.dirname(__file__) filename = os.path.join(here, '_generated', 'version_text.txt') try: os.makedirs(os.path.dirname(filename)) except FileExistsError: pass text = text_version if '+' not in oggm.__version__ else text_dev with open(filename, 'w') as f: f.write(text)
Example #2
Source File: __init__.py From psyplot with GNU General Public License v2.0 | 5 votes |
def _get_versions(requirements=True): if requirements: import matplotlib as mpl import xarray as xr import pandas as pd import numpy as np return {'version': __version__, 'requirements': {'matplotlib': mpl.__version__, 'xarray': xr.__version__, 'pandas': pd.__version__, 'numpy': np.__version__, 'python': ' '.join(sys.version.splitlines())}} else: return {'version': __version__}
Example #3
Source File: netcdf.py From intake-xarray with BSD 2-Clause "Simplified" License | 5 votes |
def _add_path_to_ds(self, ds): """Adding path info to a coord for a particular file """ import xarray as xr XARRAY_VERSION = LooseVersion(xr.__version__) if not (XARRAY_VERSION > '0.11.1'): raise ImportError("Your version of xarray is '{}'. " "The insurance that source path is available on output of " "open_dataset was added in 0.11.2, so " "pattern urlpaths are not supported.".format(XARRAY_VERSION)) var = next(var for var in ds) new_coords = reverse_format(self.pattern, ds[var].encoding['source']) return ds.assign_coords(**new_coords)
Example #4
Source File: test_intake_xarray.py From intake-xarray with BSD 2-Clause "Simplified" License | 5 votes |
def old_xarray(): import xarray as xr version = xr.__version__ try: xr.__version__ = "0.1" yield finally: xr.__version__ = version
Example #5
Source File: conf.py From xarray-simlab with BSD 3-Clause "New" or "Revised" License | 5 votes |
def resolve_name(self, modname, parents, path, base): if modname is None: if path: mod_cls = path.rstrip(".") else: mod_cls = None # if documenting a class-level object without path, # there must be a current class, either from a parent # auto directive ... mod_cls = self.env.temp_data.get("autodoc:class") # ... or from a class directive if mod_cls is None: mod_cls = self.env.temp_data.get("py:class") # ... if still None, there's no way to know if mod_cls is None: return None, [] # HACK: this is added in comparison to ClassLevelDocumenter # mod_cls still exists of class.accessor, so an extra # rpartition is needed modname, accessor = rpartition(mod_cls, ".") modname, cls = rpartition(modname, ".") parents = [cls, accessor] # if the module name is still missing, get it like above if not modname: modname = self.env.temp_data.get("autodoc:module") if not modname: if sphinx.__version__ > "1.3": modname = self.env.ref_context.get("py:module") else: modname = self.env.temp_data.get("py:module") # ... else, it stays None, which means invalid return modname, parents + [base]
Example #6
Source File: xarray.py From wradlib with MIT License | 4 votes |
def open_odim(paths, loader="netcdf4", **kwargs): """Open multiple ODIM files as a XRadVolume structure. Parameters ---------- paths : str or sequence Either a filename or string glob in the form `'path/to/my/files/*.h5'` or an explicit list of files to open. loader : {'netcdf4', 'h5py', 'h5netcdf'} Loader used for accessing file metadata, defaults to 'netcdf4'. kwargs : optional Additional arguments passed on to :py:class:`wradlib.io.XRadSweep`. """ if (loader == "h5netcdf") & ( LooseVersion(h5netcdf.__version__) < LooseVersion("0.8.0") ): warnings.warn( f"WRADLIB: 'h5netcdf>=0.8.0' needed to perform this " f"operation. 'h5netcdf={h5netcdf.__version__} " f"available.", UserWarning, ) if isinstance(paths, str): paths = glob.glob(paths) else: paths = np.array(paths).flatten().tolist() if loader not in ["netcdf4", "h5netcdf", "h5py"]: raise ValueError("wradlib: Unkown loader: {}".format(loader)) sweeps = [] [ sweeps.extend(_open_odim_sweep(f, loader, **kwargs)) for f in tqdm(paths, desc="Open", unit=" Files", leave=None) ] angles = collect_by_angle(sweeps) for i in tqdm(range(len(angles)), desc="Collecting", unit=" Angles", leave=None): angles[i] = collect_by_time(angles[i]) angles.sort(key=lambda x: x[0].time) for f in angles: f._parent = angles angles._ncfile = angles[0].ncfile angles._ncpath = "/" return angles
Example #7
Source File: mask.py From regionmask with MIT License | 4 votes |
def _mask_3D( outlines, regions_is_180, numbers, lon_or_obj, lat=None, drop=True, lon_name="lon", lat_name="lat", method=None, wrap_lon=None, ): mask = _mask( outlines=outlines, regions_is_180=regions_is_180, numbers=numbers, lon_or_obj=lon_or_obj, lat=lat, lon_name=lon_name, lat_name=lat_name, method=method, wrap_lon=wrap_lon, ) isnan = np.isnan(mask.values) if drop: numbers = np.unique(mask.values[~isnan]) numbers = numbers.astype(np.int) # if no regions are found return a 0 x lat x lon mask if len(numbers) == 0: mask = mask.expand_dims("region", axis=0).sel(region=slice(0, 0)) msg = ( "No gridpoint belongs to any region. Returning an empty mask" " with shape {}".format(mask.shape) ) warnings.warn(msg, UserWarning, stacklevel=3) return mask mask_3D = list() for num in numbers: mask_3D.append(mask == num) from distutils.version import LooseVersion # "override" is faster but was only introduced in version 0.13.0 of xarray compat = "override" if LooseVersion(xr.__version__) >= "0.13.0" else "equals" mask_3D = xr.concat(mask_3D, dim="region", compat=compat, coords="minimal") mask_3D = mask_3D.assign_coords(region=("region", numbers)) if np.all(isnan): msg = "No gridpoint belongs to any region. Returning an all-False mask." warnings.warn(msg, UserWarning, stacklevel=3) return mask_3D