Python Library GEO
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 770B

12345678910111213141516171819202122232425262728293031323334353637
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. """
  4. geo (Geographic)
  5. ================
  6. **Author:**
  7. * Dirk Alders <sudo-dirk@mount-mockery.de>
  8. **Description:**
  9. This Module support functionalities around geographic issues.
  10. **Submodules:**
  11. * :mod:`geo.gps`
  12. * :mod:`geo.osm`
  13. * :mod:`geo.sun`
  14. **Unittest:**
  15. See also the :download:`unittest <../../geo/_testresults_/unittest.pdf>` documentation.
  16. """
  17. __DEPENDENCIES__ = []
  18. from geo import gps
  19. from geo import osm
  20. from geo import sun
  21. __DESCRIPTION__ = """The Module {\\tt %s} is designed to \\ldots.
  22. For more Information read the sphinx documentation.""" % __name__.replace('_', '\_')
  23. """The Module Description"""
  24. __INTERPRETER__ = (2, )
  25. """The Tested Interpreter-Versions"""
  26. __all__ = ['gps', 'osm', 'sun']