diff --git a/README.md b/README.md index 65ac7a0..5277036 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,12 @@ Currently, are supported sources. All these lookup services can be accessed through a unified interface. +Other modules include location based calculations (e.g. distance, heading between Maidenhead locators) or +frequency based calculations (e.g. frequency to band). + ## References This Library is used in production at the [DXHeat.com DX Cluster](https://dxheat.com), performing several thousand -lookups per day. +lookups and calculations per day. ## Documentation Check out the full documentation at: @@ -30,6 +33,12 @@ Easiest way to install pyhamtools is through the packet manager PIP: ## Example: How to use pyhamtools ``` + +>>> from pyhamtools.locator import calculate_heading +>>> calculate_heading("JN48QM", "QF67bf") +74.3136 + + >>> from pyhamtools import LookupLib, Callinfo >>> my_lookuplib = LookupLib(lookuptype="countryfile") >>> cic = Callinfo(my_lookuplib) diff --git a/readthedocs-pip-requirements.txt b/readthedocs-pip-requirements.txt index 78c9ddc..db60d5f 100644 --- a/readthedocs-pip-requirements.txt +++ b/readthedocs-pip-requirements.txt @@ -1,5 +1,6 @@ sphinxcontrib-napoleon>=0.2.7 requests>=2.2.1 pytz>=2014.2 +pyephem>=3.7.5.3