bsrn.archive.QUANTITIES#

bsrn.archive.QUANTITIES = {'air temperature': 21, 'air temperature secondary': 21000700, 'cloud base height with instrument': 302, 'cloud liquid water': 303, 'diffuse sky': 4, 'direct': 3, 'global 2 (pyranometer) ': 2, 'global 2 (pyranometer) secondary': 2000700, 'long-wave downward': 5, 'long-wave downward secondary': 5000700, 'long-wave upward': 132, 'long-wave upward secondary': 132000700, 'net radiation (net radiometer)': 141, 'pressure': 23, 'relative humidity': 22, 'relative humidity secondary': 22000700, 'short-wave reflected': 131, 'short-wave reflected secondary': 131000700, 'short-wave reflected tertiary': 131003000, 'short-wave spec. bd. 1': 104, 'short-wave spec. bd. 3': 112, 'total cloud amount with instrument': 301, 'uv-a-global': 121, 'uv-b-diffuse': 124, 'uv-b-direct': 122, 'uv-b-global': 123, 'uv-b-reflected': 125}#

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)