Skip to content

Commit

Permalink
add TMS (fix #21987)and HTML output (fix #21991) for tilesxyz. Split …
Browse files Browse the repository at this point in the history
…to 2 algorithms (directory and MBTiles)
  • Loading branch information
PeterPetrik committed May 18, 2019
1 parent 8a3c7b1 commit 6d9b40f
Show file tree
Hide file tree
Showing 3 changed files with 284 additions and 173 deletions.
5 changes: 3 additions & 2 deletions python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
Expand Up @@ -130,7 +130,7 @@
from .StatisticsByCategories import StatisticsByCategories
from .SumLines import SumLines
from .TextToFloat import TextToFloat
from .TilesXYZ import TilesXYZ
from .TilesXYZ import TilesXYZAlgorithmDirectory, TilesXYZAlgorithmMBTiles
from .TinInterpolation import TinInterpolation
from .TopoColors import TopoColor
from .TruncateTable import TruncateTable
Expand Down Expand Up @@ -241,7 +241,8 @@ def getAlgs(self):
StatisticsByCategories(),
SumLines(),
TextToFloat(),
TilesXYZ(),
TilesXYZAlgorithmDirectory(),
TilesXYZAlgorithmMBTiles(),
TinInterpolation(),
TopoColor(),
TruncateTable(),
Expand Down

0 comments on commit 6d9b40f

Please sign in to comment.