Source code for ladybug.datatype.distance

# coding=utf-8
"""Distance data type."""
from __future__ import division

from .base import DataTypeBase


[docs]class Distance(DataTypeBase): """Distance """ _units = ('m', 'ft', 'mm', 'in', 'km', 'mi', 'cm') _si_units = ('m', 'mm', 'km', 'cm') _ip_units = ('ft', 'in', 'mi') _min = 0 _cumulative = True _abbreviation = 'D' def _m_to_ft(self, value): return value * 3.28084 def _m_to_mm(self, value): return value * 1000. def _m_to_in(self, value): return value * 39.3701 def _m_to_km(self, value): return value / 1000. def _m_to_mi(self, value): return value / 1609.344 def _m_to_cm(self, value): return value * 100. def _ft_to_m(self, value): return value / 3.28084 def _mm_to_m(self, value): return value / 1000. def _in_to_m(self, value): return value / 39.3701 def _km_to_m(self, value): return value * 1000. def _mi_to_m(self, value): return value * 1609.344 def _cm_to_m(self, value): return value / 100.
[docs] def to_unit(self, values, unit, from_unit): """Return values converted to the unit given the input from_unit.""" return self._to_unit_base('m', values, unit, from_unit)
[docs] def to_ip(self, values, from_unit): """Return values in IP and the units to which the values have been converted.""" if from_unit in self.ip_units: return values, from_unit elif from_unit == 'mm': return self.to_unit(values, 'in', from_unit), 'in' elif from_unit == 'km': return self.to_unit(values, 'mi', from_unit), 'mi' else: return self.to_unit(values, 'ft', from_unit), 'ft'
[docs] def to_si(self, values, from_unit): """Return values in SI and the units to which the values have been converted.""" if from_unit in self.si_units: return values, from_unit elif from_unit == 'in': return self.to_unit(values, 'mm', from_unit), 'mm' elif from_unit == 'mi': return self.to_unit(values, 'km', from_unit), 'km' else: return self.to_unit(values, 'm', from_unit), 'm'
[docs]class Visibility(Distance): """Visibility """ _abbreviation = 'Vis' _missing_epw = 9999
[docs]class CeilingHeight(Distance): """CeilingHeight """ _abbreviation = 'Hciel' _missing_epw = 99999
[docs]class PrecipitableWater(Distance): """PrecipitableWater """ _abbreviation = 'PW' _missing_epw = 999
[docs]class SnowDepth(Distance): """SnowDepth """ _abbreviation = 'Dsnow' _missing_epw = 999
[docs]class LiquidPrecipitationDepth(Distance): """LiquidPrecipitationDepth """ _abbreviation = 'LPD' _missing_epw = 999