This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
from tabulate import tabulate | |
def methods(itarget, columns=4, private=False, search=None): | |
dtable = list() | |
itarget = dir(itarget) | |
methods = list() | |
for i, item in enumerate(itarget): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Copyright (C) 2018 Andre Lester Kruger | |
ConcaveHull.py 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. | |
ConcaveHull.py is distributed in the hope that it will be useful, | |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import math | |
from qgis.core import QgsFeature | |
pointLayerName = "point" #change to whatever name of point layer is | |
lineLayerName = "lines" #change to whatever name of line layer is | |
#be sure to draw one point, leave line layer empty | |
#find layer objects by name | |
layers = QgsMapLayerRegistry.instance().mapLayers() |