forked from nextgis/qgis_qtiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqtiles_utils.py
66 lines (54 loc) · 2.13 KB
/
qtiles_utils.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*- coding: utf-8 -*-
#******************************************************************************
#
# QTiles
# ---------------------------------------------------------
# Generates tiles from QGIS project
#
# Copyright (C) 2012-2013 Alexander Bruy ([email protected])
#
# This source 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 code is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# A copy of the GNU General Public License is available on the World Wide Web
# at <http://www.gnu.org/licenses/>. You can also obtain it by writing
# to the Free Software Foundation, 51 Franklin Street, Suite 500 Boston,
# MA 02110-1335 USA.
#
#******************************************************************************
from PyQt4.QtCore import *
from qgis.core import *
def getMapLayers():
layerMap = QgsMapLayerRegistry.instance().mapLayers()
layers = dict()
for name, layer in layerMap.iteritems():
if layer.type() == QgsMapLayer.VectorLayer:
if layer.id() not in layers.keys():
layers[layer.id()] = unicode(layer.name())
if layer.type() == QgsMapLayer.RasterLayer and layer.providerType() == "gdal":
if layer.id() not in layers.keys():
layers[layer.id()] = unicode(layer.name())
return layers
def getLayerById(layerId):
layerMap = QgsMapLayerRegistry.instance().mapLayers()
for name, layer in layerMap.iteritems():
if layer.id() == layerId:
if layer.isValid():
return layer
else:
return None
def getLayerGroup(relations, layerId):
group = None
for item in relations:
group = unicode(item[0])
for lid in item[1]:
if unicode(lid) == unicode(layerId):
return group
return group