summaryrefslogtreecommitdiff
path: root/test_misc.py
Commit message (Collapse)AuthorAgeFilesLines
* test_misc: make less verbose on success.Gary E. Miller2018-11-081-4/+2
|
* Fixes some pylint issues.Fred Wright2017-07-141-0/+1
| | | | | | | | | | | This doesn't fix all complaints by pylint, but significantly reduces their number. Ditto for pep8 complaints. Also makes a couple of related cosmetic edits. TESTED: Ran "scons build-all check" with no errors. Both "pylint" and "pep8" targets report fewer issues.
* test_m*.py: pep8 fixes.Gary E. Miller2017-07-011-1/+2
|
* test_misc.py: pep8 fixesGary E. Miller2017-07-011-63/+63
|
* Rip out guts of EarthDistance() replace with Vincenty's FormulaGary E. Miller2016-07-261-22/+73
| | | | | | | The old EarthDistance was aweful. Vincenty's is supposed accurate to 1 mm! In some extreme cases it fails to converge, so fall back to EarthDistanceSmall() in that case.
* Add a test for EarthDistanceSmall()Gary E. Miller2016-07-251-0/+71
The numbers are a bit iffy, but way better than anything I could find on the web. Maybe.