bsrn.archive.SURFACES#
- bsrn.archive.SURFACES = {'asphalt': 12, 'concrete': 11, 'cultivated': 13, 'desert - gravel': 10, 'desert - rock': 8, 'desert - sand': 9, 'forest - deciduous': 18, 'forest - evergreen': 17, 'forest - mixed': 19, 'glacier - ablation area': 2, 'glacier - accumulation area': 1, 'grass': 15, 'iceshelf': 3, 'rock': 20, 'sand': 21, 'sea ice': 4, 'shrub': 16, 'tundra': 14, 'water - lake': 6, 'water - ocean': 7, 'water - river': 5}#
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)