obspy.core.util.misc.BAND_CODE

BAND_CODE = {'B': 10.0, 'C': 250.0, 'D': 250.0, 'E': 80.0, 'F': 1000.0, 'G': 1000.0, 'H': 80.0, 'L': 1.0, 'M': 1.0, 'P': 1e-06, 'Q': 1e-08, 'R': 0.0001, 'S': 10.0, 'T': 1e-07, 'U': 0.01, 'V': 0.1}

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs

dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v

dict(**kwargs) -> new dictionary initialized with the name=value pairs

in the keyword argument list. For example: dict(one=1, two=2)