Beispiel #1
0
 def open_qgis(self):
     """
     Open a instance of QGIS to add new layers and config the project.
     """
     try:
         openqgis(self.project.projectfile)
     except QGISNotFound as ex:
         self.bar.pushMessage(ex.message, Qgis.Warning)
Beispiel #2
0
 def openinqgis(self):
     """
     Open a QGIS session for the user to config the project layers.
     """
     try:
         openqgis(self.project.projectfile)
     except QGISNotFound as ex:
         self.bar.pushMessage(ex.message, Qgis.Warning)
Beispiel #3
0
 def openinqgis(self):
     """
     Open a QGIS session for the user to config the project layers.
     """
     try:
         openqgis(self.project.projectfile)
     except OSError:
         self.bar.pushMessage("Looks like I couldn't find QGIS",
                              "Check qgislocation in roam.config", QgsMessageBar.WARNING)
Beispiel #4
0
 def open_qgis(self):
     """
     Open a instance of QGIS to add new layers and config the project.
     """
     try:
         openqgis(self.project.projectfile)
     except OSError:
         self.bar.pushMessage("Looks like I couldn't find QGIS",
                              "Check qgislocation in roam.config", QgsMessageBar.WARNING)
Beispiel #5
0
 def open_qgis(self):
     """
     Open a instance of QGIS to add new layers and config the project.
     """
     try:
         openqgis(self.project.projectfile)
     except OSError:
         self.bar.pushMessage("Looks like I couldn't find QGIS",
                              "Check qgislocation in roam.config", QgsMessageBar.WARNING)
Beispiel #6
0
 def openinqgis(self):
     """
     Open a QGIS session for the user to config the project layers.
     """
     try:
         openqgis(self.project.projectfile)
     except OSError:
         self.bar.pushMessage("Looks like I couldn't find QGIS",
                              "Check qgislocation in roam.config", QgsMessageBar.WARNING)