Source code for bruges.unit.unit

# -*- coding: utf-8 -*-
"""
Unit conversion.

:copyright: 2015 Agile Geoscience
:license: Apache 2.0
"""


[docs]def ft_m(x): return x / 0.3048
[docs]def m_ft(x): return x * 0.3048