# -*- coding: utf-8 -*- """ /*************************************************************************** Atlas A QGIS plugin Atlas Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ ------------------- begin : 2019-02-15 copyright : (C) 2019 by jan vrobel email : vrobel.jan@seznam.cz git sha : $Format:%H$ ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ This script initializes the plugin, making it known to QGIS. """ # noinspection PyPep8Naming def classFactory(iface): # pylint: disable=invalid-name """Load Atlas class from file Atlas. :param iface: A QGIS interface instance. :type iface: QgsInterface """ # from .Atlas import Atlas return Atlas(iface)