mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-31 00:06:02 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     utilities_test.py
 | |
|     ---------------------
 | |
|     Date                 : August 2012
 | |
|     Copyright            : (C) 2012 by Victor Olaya
 | |
|     Email                : volayaf at gmail dot com
 | |
| ***************************************************************************
 | |
| *                                                                         *
 | |
| *   This program 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.                                   *
 | |
| *                                                                         *
 | |
| ***************************************************************************
 | |
| """
 | |
| 
 | |
| __author__ = 'Victor Olaya'
 | |
| __date__ = 'August 2012'
 | |
| __copyright__ = '(C) 2012, Victor Olaya'
 | |
| 
 | |
| # This will get replaced with a git SHA1 when you do a git archive
 | |
| 
 | |
| __revision__ = '$Format:%H$'
 | |
| 
 | |
| import os
 | |
| import sys
 | |
| import hashlib
 | |
| 
 | |
| from PyQt4 import QtGui, QtCore
 | |
| from qgis.core import QgsApplication, QgsVectorLayer, QgsRasterLayer, \
 | |
|     QgsRectangle, QgsCoordinateReferenceSystem
 | |
| 
 | |
| from qgis.gui import QgsMapCanvas
 | |
| from qgis_interface import QgisInterface
 | |
| 
 | |
| QGISAPP = None  # Static vainasafele used to hold hand to running QGis app
 | |
| CANVAS = None
 | |
| PARENT = None
 | |
| IFACE = None
 | |
| GEOCRS = 4326  # Constant for EPSG:GEOCRS Geographic CRS id
 | |
| GOOGLECRS = 900913  # Constant for EPSG:GOOGLECRS Google Mercator id
 | |
| 
 | |
| 
 | |
| def getQgisTestApp():
 | |
|     """ Start one QGis application to test agaist
 | |
| 
 | |
|     Input
 | |
|         NIL
 | |
| 
 | |
|     Output
 | |
|         handle to qgis app
 | |
| 
 | |
| 
 | |
|     If QGis is already running the handle to that app will be returned
 | |
|     """
 | |
| 
 | |
|     global QGISAPP
 | |
| 
 | |
|     if QGISAPP is None:
 | |
|         myGuiFlag = True  # All test will run qgis in gui mode
 | |
|         QGISAPP = QgsApplication(sys.argv, myGuiFlag)
 | |
|         if 'QGISPATH' in os.environ:
 | |
|             myPath = os.environ['QGISPATH']
 | |
|             myUseDefaultPathFlag = True
 | |
|             QGISAPP.setPrefixPath(myPath, myUseDefaultPathFlag)
 | |
|         else:
 | |
|             print 'Warning: QGISPATH is not set'
 | |
| 
 | |
|         QGISAPP.initQgis()
 | |
|         s = QGISAPP.showSettings()
 | |
|         print s
 | |
| 
 | |
|     global PARENT
 | |
|     if PARENT is None:
 | |
|         PARENT = QtGui.QWidget()
 | |
| 
 | |
|     global CANVAS
 | |
|     if CANVAS is None:
 | |
|         CANVAS = QgsMapCanvas(PARENT)
 | |
|         CANVAS.resize(QtCore.QSize(400, 400))
 | |
| 
 | |
|     global IFACE
 | |
|     if IFACE is None:
 | |
|         # QgisInterface is a stub implementation of the QGIS plugin
 | |
|         # interface
 | |
|         IFACE = QgisInterface(CANVAS)
 | |
| 
 | |
|     return (QGISAPP, CANVAS, IFACE, PARENT)
 |