A mapping of bands to Sedterms.
To construct a SedtermDict use keyword arguments:
SedtermDict(data=dataDict)
where dataDict is a Python dict of band to Sedterm
For example:
SedtermDict(data={
'g': Sedterm(primaryTerm='gr', secondaryTerm='ri', extrapolated=True, constant=0.25,
primaryBand='g', secondaryBand='r', tertiaryBand='i'),
'r': Sedterm(primaryTerm='gr', secondaryTerm='ri', extrapolated=False)
})
This is a subclass of Config. This follows the form of
`lsst.pipe.tasks.ColortermDict`.
Definition at line 128 of file sedterms.py.