-
Notifications
You must be signed in to change notification settings - Fork 4
/
__init__.py
27 lines (24 loc) · 1.33 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
"""
/***************************************************************************
BufferByPercentage
A QGIS plugin
Buffer polygon features so the buffered area is a specified percentage of the original area
-------------------
begin : 2013-10-12
copyright : (C) 2013 by Juernjakob Dugge
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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.
"""
def classFactory(iface):
from .bufferbypercentage import BufferByPercentagePlugin
return BufferByPercentagePlugin(iface)