Source code for epsproc.util.selectors

#*************** Selection functions

import numpy as np
import copy
from .misc import subselectDims

# Selector function for matrix elements in Xarray
[docs]def matEleSelector(da, thres = None, inds = None, dims = None, sq = False, drop=True): """ Select & threshold raw matrix elements in an Xarray. Wraps Xarray.sel(), plus some additional options. See Xarray docs for more: http://xarray.pydata.org/en/stable/user-guide/indexing.html Parameters ---------- da : Xarray Set of matrix elements to sub-select thres : float, optional, default None Threshold value for abs(matElement), keep only elements > thres. This is *element-wise*. inds : dict, optional, default None Dicitonary of additional selection criteria, in name:value format. These correspond to parameter dimensions in the Xarray structure. E.g. inds = {'Type':'L','Cont':'A2'} Slices are also acceptable, e.g. inds = {'Eke':slice(1,5,4)} dims : str or list of strs, dimensions to look for max & threshold, default None Set for *dimension-wise* thresholding. If set, this is used *instead* of element-wise thresholding. List of dimensions, which will be checked vs. threshold for max value, according to abs(dim.max) > threshold This allows for consistent selection of continuous parameters over a dimension, by a threshold. sq : bool, optional, default False Squeeze output singleton dimensions. drop : bool, optional, default True Passed to da.where() for thresholding, drop coord labels for values below threshold. Returns ------- daOut Xarray structure of selected matrix elements. Note that Nans are dropped if possible. Example ------- >>> daOut = matEleSelector(da, inds = {'Type':'L','Cont':'A2'}) Notes ----- xr.sel(inds) is used here. For single values xr.sel({name:[value]}) or xr.sel({name:value}) is different! Automatically squeeze out dim in latter case. (Tested on xr v0.15) E.g., for selecting a single Eke value: da.sel({'Eke':[1.1]}) # Keeps Eke dim da.sel({'Eke':1.1}) # Drops Eke to non-dimension coord. da.sel({'Eke':1.1}, drop=True) # Drops Eke completely da.sel({'Eke':[1.1]}, drop=True) # Keeps Eke da.sel({'Eke':[1.1]}, drop=True).squeeze() # Drops Eke to non-dim coord """ # Iterate over other selection criteria # This may return view or copy - TBC - but seems to work as expected. # http://xarray.pydata.org/en/v0.12.3/indexing.html#copies-vs-views # 11/05/21 - added subselectDims() to skip any missing dims. # NOW set as optional, since it breaks IO.matEleGroupDimX() at line 1251, not sure why! "ValueError: conflicting MultiIndex level name(s):'mu' (LM), (mu)" # Squeezing didn't help. # Ah - issue is compatibility with multi-level indexes... # NOW FIXED - added multi-level dim checking in .util.misc.checkDims if inds is not None: indsRed = subselectDims(da, inds, ignoreItems=True) # 20/10/22 - added ignoreItems option here, allows for slicing etc. da = da.sel(indsRed) # Fors inds as dict, e.g. {'Type':'L','it':1,'Cont':'A2'} # May want to send as list, or automate vs. dim names? # NOTE - in current dev code this is used to reindex, so .squeeze() casuses issues! # Reduce dims by thesholding on abs values # Do this after selection to ensure Nans removed. if (thres is not None) and (dims is None): daOut = da.where(np.abs(da) > thres, drop = drop) else: daOut = da # If dims is set, check over dims for consistency. # WILL this just produce same results as thres then squeeze...? if (dims is not None) and (thres is not None): daOut = daOut.where(np.abs(da).max(dim = dims) > thres, drop = drop) # 25/07/22 - added drop here too, otherwise keeps squeezed dims by default (may depend on XR version, tested in v0.19) if sq: daOut = daOut.squeeze(drop = drop) # Squeeze dims. return daOut
# Select over vals from data structure (list) # Currently only used in IO.matEleGroupDim
[docs]def dataGroupSel(data, dInd): a = data[0] dataSub = [] uVals = np.unique(a[dInd,:]) for val in uVals: # Get matching terms and subset data # iSel = np.nonzero(a[dInd,:]==val) iSel = (a[dInd,:]==val) dataSub.append([data[0][:,iSel], data[1][iSel]]) return dataSub
# 02/11/22 - very basic XS handling, as per ep.basicPlotters.BLMplot, plus AF case handling. # TODO: more options, tidy up, etc, May want to modify base AFBLM code outputs. # TODO: check elsewhere for duplicate functionality?
[docs]def setXSfromCoords(data, verbose = True): """ Set (l,m)=(0,0) data to cross section. Data taken from coords, either data.XS (MF case) or data.XSrescaled (AF case). Returns copy. """ subset = data.copy() subset.attrs = copy.deepcopy(data.attrs) # Deepcopy attrs for some XR versions! # if subset.attrs['dataType'] == 'BLM': if 'XS' in subset.coords.keys(): # try: # daPlot.values = daPlot * daPlot.XS subset = subset.where(subset.l !=0, subset.XS) # Replace l=0 values with XS subset.attrs['useXS'] = True elif 'XSrescaled' in subset.coords.keys(): subset = subset.where(subset.l !=0, subset.XSrescaled) # Replace l=0 values with XS subset.attrs['useXS'] = True else: subset.attrs['useXS'] = False if verbose: print(f"No XS found in dataset, skipping.") return subset
# Xarray groupby + compare values # STARTED... but not finished. For basic diff along a dimension, just use da.diff(dim), see http://xarray.pydata.org/en/stable/generated/xarray.DataArray.diff.html#xarray.DataArray.diff # def groupCmp(data, dim): # """ # Basic routine to compare sets of values by dimension, using Xarray groupby functionality. # # Parameters # ---------- # data : Xarray # Data for comparison # # dim : str # Dimension label for grouping # # Returns # ------- # # """ # # dGroup = data.groupby(dim) # # # Check differences between groups # for gTest in dGroup: