mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2026-01-14 20:50:56 +01:00
updated documentation
This commit is contained in:
parent
9a0c9cefba
commit
94b9a273a1
11
README.md
11
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)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
sphinxcontrib-napoleon>=0.2.7
|
||||
requests>=2.2.1
|
||||
pytz>=2014.2
|
||||
pyephem>=3.7.5.3
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue