Take the 2-minute tour ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

Newbie Using QGIS version 2.2 with Python 2.7.5 on OSx 10.9.2

Getting the following error. Any idea on how to resolve? I'm not sure if it has ramifications on the display of the Google data.

An error has occured while executing Python code:

Traceback (most recent call last):
  File "/Users/dave/.qgis2/python/plugins/GoogleMapsEngineConnector/googlemapsengineconnector.py", line 274, in handleSelectionChange
  File "/Users/dave/.qgis2/python/plugins/GoogleMapsEngineConnector/googlemapsengineconnector.py", line 335, in getAssetsFromLayer
  File "/Users/dave/.qgis2/python/plugins/GoogleMapsEngineConnector/googlemapsengineconnector.py", line 302, in isGmeConnectorLayer
AttributeError: 'OpenlayersLayer' object has no attribute 'dataProvider'

Python version:

2.7.5 (default, Aug 25 2013, 00:04:04) 
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)]

QGIS version: 2.2.0-Valmiera Valmiera,

Python path: ['/Applications/QGIS.app/Contents/MacOS/../Resources/python/plugins/processing', '/Applications/QGIS.app/Contents/MacOS/../Resources/python', u'/Users/dave/.qgis2/python', u'/Users/dave/.qgis2/python/plugins', '/Applications/QGIS.app/Contents/MacOS/../Resources/python/plugins', '/Library/Frameworks/SQLite3.framework/Versions/B/Python/2.7', '/Library/Frameworks/GEOS.framework/Versions/3/Python/2.7', '/Library/Python/2.7/site-packages/numpy-override', '/Library/Python/2.7/site-packages/matplotlib-override', '/Library/Frameworks/GDAL.framework/Versions/1.10/Python/2.7/site-packages', '/Library/Python/2.7/site-packages/pyparsing-2.0.1-py2.7.egg', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python27.zip', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-darwin', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/plat-mac/lib-scriptpackages', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-old', '/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-dynload', '/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC', '/Library/Python/2.7/site-packages', '/Library/Python/2.7/site-packages/PIL', '/Applications/QGIS.app/Contents/Resources/python/plugins/fTools/tools', '/Users/dave/UNIVERSE/COMMON GROUND/1. PROJECTS/2013/1304 SWMP/MAPPING/Pages']
share|improve this question
    
Question has been updated with most urgent issue. Cheers –  COG Mar 19 '14 at 13:01
    
From lists.osgeo.org/pipermail/qgis-user/2013-October/024544.html : I think this is because you have a open layer plugin layer open and the Google plugin is trying to handle selection changed on that layer. The OpenLayers layer is a fake layer so it doesn't have a dataProvider. Try without having any OpenLayers layers loaded. –  BradHards Mar 20 '14 at 11:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.