__init__.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding: utf-8 -*-
  2. """
  3. /***************************************************************************
  4. Atlas
  5. A QGIS plugin
  6. Atlas
  7. Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
  8. -------------------
  9. begin : 2019-02-15
  10. copyright : (C) 2019 by jan vrobel
  11. email : vrobel.jan@seznam.cz
  12. git sha : $Format:%H$
  13. ***************************************************************************/
  14. /***************************************************************************
  15. * *
  16. * This program is free software; you can redistribute it and/or modify *
  17. * it under the terms of the GNU General Public License as published by *
  18. * the Free Software Foundation; either version 2 of the License, or *
  19. * (at your option) any later version. *
  20. * *
  21. ***************************************************************************/
  22. This script initializes the plugin, making it known to QGIS.
  23. """
  24. # noinspection PyPep8Naming
  25. def classFactory(iface): # pylint: disable=invalid-name
  26. """Load Atlas class from file Atlas.
  27. :param iface: A QGIS interface instance.
  28. :type iface: QgsInterface
  29. """
  30. #
  31. from .Atlas import Atlas
  32. return Atlas(iface)