Searched refs:measurement_type (Results 1 – 2 of 2) sorted by relevance
186 return self.measurement_type.name190 return self.measurement_type.units192 def __init__(self, name, site, measurement_type, **attrs): argument195 if isinstance(measurement_type, MeasurementType):196 self.measurement_type = measurement_type199 self.measurement_type = MEASUREMENT_TYPES[measurement_type]201 raise ValueError('Unknown measurement type: {}'.format(measurement_type))
159 .. class:: InstrumentChannel(name, site, measurement_type, **attrs)163 ``site`` and a ``measurement_type``.168 A ``measurement_type`` is an instance of :class:`MeasurmentType` that173 A channel (i.e. site/measurement_type combination) is unique per instrument,177 It should not be assumed that any site/measurement_type combination is valid.