示例#1
0
class timemanager:
    """ plugin information """
    name = "TimeManagerPlugin"
    longName = "TimeManager Plugin for QGIS >= 1.7"
    description = "Working with temporal vector data"
    version = "Version 0.7" # update in __init__.py too!
    qgisMinimumVersion = '1.7.0' 
    author = "Anita Graser"
    pluginUrl = "https://github.com/anitagraser/TimeManager"

    def __init__( self, iface ):
        """initialize the plugin"""
        self.iface = iface
        self.control = TimeManagerControl(self.iface)
        
    def initGui( self ):
        """initialize the gui"""
        self.control.initGui()

    def unload( self ):
        """Unload the plugin"""
        self.control.unload()
示例#2
0
class timemanager:
    """ plugin information """
    name = "TimeManagerPlugin"
    longName = "Time Manager plugin"
    description = "Working with temporal data"
    version = "Version 0.4"
    qgisMinimumVersion = '1.6.0' 
    author = "Anita Graser & Volker Fröhlich"
    pluginUrl = "https://github.com/anitagraser/TimeManager"

    def __init__( self, iface ):
        """initialize the plugin"""
        self.iface = iface
        self.control = TimeManagerControl(self.iface)
        
    def initGui( self ):
        """initialize the gui"""
        self.control.initGui()

    def unload( self ):
        """Unload the plugin"""
        self.control.unload()
示例#3
0
class timemanager:
    """ plugin information """
    name = "TimeManagerPlugin"
    longName = "TimeManager Plugin for QGIS >= 1.7"
    description = "Working with temporal vector data"
    version = "Version 0.7"  # update in __init__.py too!
    qgisMinimumVersion = '1.7.0'
    author = "Anita Graser"
    pluginUrl = "https://github.com/anitagraser/TimeManager"

    def __init__(self, iface):
        """initialize the plugin"""
        self.iface = iface
        self.control = TimeManagerControl(self.iface)

    def initGui(self):
        """initialize the gui"""
        self.control.initGui()

    def unload(self):
        """Unload the plugin"""
        self.control.unload()
示例#4
0
class timemanager:
    """ plugin information """
    name = "TimeManagerPlugin"
    longName = "Time Manager plugin"
    description = "Working with temporal data"
    version = "Version 0.4"
    qgisMinimumVersion = '1.6.0'
    author = "Anita Graser & Volker Fröhlich"
    pluginUrl = "https://github.com/anitagraser/TimeManager"

    def __init__(self, iface):
        """initialize the plugin"""
        self.iface = iface
        self.control = TimeManagerControl(self.iface)

    def initGui(self):
        """initialize the gui"""
        self.control.initGui()

    def unload(self):
        """Unload the plugin"""
        self.control.unload()