當前位置: 首頁>>代碼示例>>Python>>正文


Python QUrl.fromLocalFile方法代碼示例

本文整理匯總了Python中qgis.PyQt.QtCore.QUrl.fromLocalFile方法的典型用法代碼示例。如果您正苦於以下問題:Python QUrl.fromLocalFile方法的具體用法?Python QUrl.fromLocalFile怎麽用?Python QUrl.fromLocalFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在qgis.PyQt.QtCore.QUrl的用法示例。


在下文中一共展示了QUrl.fromLocalFile方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: loadInventoryFile

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def loadInventoryFile(self, outputFile, isOnlyGeo):
        """
        Loads the inventory upon completion
        """
        if not isOnlyGeo:
            # Adding the layer and making it active
            url = QUrl.fromLocalFile(outputFile)
            url.addQueryItem('delimiter', ',')
            layer_uri = str(url.toEncoded())
            layer = self.iface.addVectorLayer(layer_uri, 'Inventory', 'delimitedtext')
        else:
            layer = self.iface.addVectorLayer(outputFile, 'Inventory', 'ogr')

        if layer:
            self.iface.setActiveLayer(layer)            
            # Creating and Attribute Action to load the inventoried file
            actions = layer.actions()
            field = '[% "fileName" %]'
            actions.addAction(QgsAction.GenericPython, 'Load Vector Layer', 'qgis.utils.iface.addVectorLayer(r\'%s\', \'File\', \'ogr\')' % field)
            actions.addAction(QgsAction.GenericPython, 'Load Raster Layer', 'qgis.utils.iface.addRasterLayer(r\'%s\', \'File\')' % field) 
開發者ID:dsgoficial,項目名稱:DsgTools,代碼行數:22,代碼來源:processManager.py

示例2: help

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def help(self):
        '''Display a help page'''
        url = QUrl.fromLocalFile(os.path.dirname(__file__) + "/index.html").toString()
        webbrowser.open(url, new=2) 
開發者ID:NationalSecurityAgency,項目名稱:qgis-bulk-nominatim,代碼行數:6,代碼來源:bulkNominatim.py

示例3: helpUrl

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def helpUrl(self):
        file = os.path.dirname(__file__) + '/index.html'
        if not os.path.exists(file):
            return ''
        return QUrl.fromLocalFile(file).toString(QUrl.FullyEncoded) 
開發者ID:NationalSecurityAgency,項目名稱:qgis-latlontools-plugin,代碼行數:7,代碼來源:pluscodes.py

示例4: help

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def help(self):
        '''Display a help page'''
        import webbrowser
        url = QUrl.fromLocalFile(os.path.dirname(__file__) + "/index.html").toString()
        webbrowser.open(url, new=2) 
開發者ID:NationalSecurityAgency,項目名稱:qgis-latlontools-plugin,代碼行數:7,代碼來源:latLonTools.py

示例5: open_help

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def open_help(self):
        QDesktopServices.openUrl(
            QUrl.fromLocalFile(
                os.path.join(
                    os.path.dirname(__file__), "doc", "build", "html", "index.html"
                )
            )
        ) 
開發者ID:Oslandia,項目名稱:albion,代碼行數:10,代碼來源:plugin.py

示例6: help

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def help(self):
        url = QUrl.fromLocalFile(os.path.dirname(__file__) + "/index.html").toString()
        webbrowser.open(url, new=2) 
開發者ID:NationalSecurityAgency,項目名稱:qgis-d3datavis-plugin,代碼行數:5,代碼來源:heatmapDialog.py

示例7: help

# 需要導入模塊: from qgis.PyQt.QtCore import QUrl [as 別名]
# 或者: from qgis.PyQt.QtCore.QUrl import fromLocalFile [as 別名]
def help(self):
        '''Display a help page'''
        url = QUrl.fromLocalFile(self.plugin_dir + '/index.html').toString()
        webbrowser.open(url, new=2) 
開發者ID:NationalSecurityAgency,項目名稱:qgis-shapetools-plugin,代碼行數:6,代碼來源:shapeTools.py


注:本文中的qgis.PyQt.QtCore.QUrl.fromLocalFile方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。