当前位置: 首页>>代码示例>>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;未经允许,请勿转载。