QGIS Globe runs in Trunk

Thanks to Marco Hugentobler’s idea of using Mutex, QGIS Globe now runs in Trunk, i just created a dev branch at https://github.com/mbernasocchi/Quantum-GIS/tree/mutex-globe and updated the installer script at https://www.opengis.ch/2010/12/01/qgis-globe-plugin-installer-script/ (I haven’t tried it yet but it should work) Cheers Marco

GSoC 2011 – I'm in

Guess what appeared inmy inbox at 20.59 today!? Dear Marco, Congratulations! Your proposal “QGIS Mobile” as submitted to “OSGeo – Open Source Geospatial Foundation” has been accepted for Google Summer of Code 2011. Over the next few days, we will add you to the private Google Summer of Code Student Read more…

QGIS Anwendertag, 6.5., HSR Rapperswil

Am Freitag dem 6. Mai, findet an der Hochschule für Technik Rapperswil das 2. deutschsprachige QGIS Anwendertreffen statt. Quantum GIS (oder kurz QGIS) ist ein benutzerfreundliches Open Source Desktop- und Server-GIS welches sich einer stark wachsenden Anwendergruppe erfreut. Sie finden Infos zu QGIS unter www.qgis.org Nach dem erfolgreichen ersten deutschsprachigen Read more…

PyQT signals with arguments

so , here a snippet on how to use the different types of signals in PyQt: connect a signal from C++ QObject.connect(self.sender, SIGNAL(“signalName( Arg1TYPE, Arg2TYPE )”), self.slot) connect a signal from Python QObject.connect(self.sender, SIGNAL(“signalName” ), self.slot ) emit a signal in Python self.emit( SIGNAL( “signalName” ), arg1, arg2 ) emit Read more…