Re: [Qgis-developer] [QGIS-Server] Can't read user defined Coordinate Reference System

2013-06-26 Thread René-Luc D'Hont
Hi Bernhard, The problem is not just providing user defined CRS in GetCapabilities. QGIS-Server cannot reproject on the fly layers with user defined CRS. And it's a regression, QGIS-Server 1.8 can reproject on the fly layers with user defined CRS. Regards, René-Luc Le 26 juin 2013 07:59,

Re: [Qgis-developer] [QGIS-Server] Can't read user defined Coordinate Reference System

2013-06-26 Thread Marco Hugentobler
Hi René-Luc Please open a ticket about it. This CRS is stored in the qgs file Isn't it stored in the srs.db file rather than in the .qgs file? Regards, Marco On 25.06.2013 17:00, rldhont wrote: Hi Marco, I probably found an issue and a regression. QGIS-Server can't work with user defined

[Qgis-developer] Strings .. very very cold

2013-06-26 Thread Werner Macho
Hi Devs! According to the latest release plans known to me I should have put master to string freeze yesterday .. I know that there is a lot of work going on to fix bugs so I just wanted to ask if it is ok for you to write the String Freeze email today or if you expect some string changes in the

Re: [Qgis-developer] QGIS browser: filter files

2013-06-26 Thread Larissa Junek
I mean the browser dock in QGIS. L Do you mean the standalone browser application or the browser dock in QGIS? On Wed, Jun 19, 2013 at 10:01 AM, Larissa Junek ju...@gbd-consult.dewrote: Hello, I test the new QGIS features for the user manual 2.0.0. Working with the QGIS browser I

[Qgis-developer] Differences between WFS functionality in QGIS 1.7.4 and 1.8.0

2013-06-26 Thread Pabel, Jens (620.12)
Hello developers, I'm using the WFS plugin in QGIS 1.7.4 to add WFS layers to the QGIS canvas. When I add a WFS to QGIS I can choose via checkbox, that Only request features overlapping the current view extent. In QGIS 1.8.0 I do not need a plugin, but I miss this checkbox. There I have only

Re: [Qgis-developer] [QGIS-Server] Can't read user defined Coordinate Reference System

2013-06-26 Thread rldhont
Hi Marco, I open an issue : http://hub.qgis.org/issues/8172 The bug is that QGIS-Server does not initialize qgis.db the qgisUserDbFile Regards, René-Luc Le 26/06/2013 08:12, Marco Hugentobler a écrit : Hi René-Luc Please open a ticket about it. This CRS is stored in the qgs file Isn't it

[Qgis-developer] Connect to GPS device

2013-06-26 Thread Josua S
Hello I am working on a Python plugin for QGIS 1.8. My goal is to automatically connect to a gps device ata COM port. I tried to clone some code of qgsgpsinformationwidget.cpp and looks like this: ---from qgis.core import *from qgis.utils import *from

Re: [Qgis-developer] Connect to GPS device

2013-06-26 Thread Josua S
Here's the code again, in case it is not displayed correctly: http://pastebin.com/sKfY2jDj From: josh-t...@hotmail.com To: qgis-developer@lists.osgeo.org Date: Wed, 26 Jun 2013 14:12:20 +0200 Subject: [Qgis-developer] Connect to GPS device Hello I am working on a Python plugin for QGIS 1.8.

[Qgis-developer] Dev plugin for master

2013-06-26 Thread PIERRE Sylvain
Hi, I’m trying to develop a small plugin for master. I have set qgisMinimumVersion to 2.0 and stored the plugin in .qgis2\python\plugins but running Qgis does : This plugin is incompatible with this version of QGIS Plugin designed for QGIS 1.x ThemeManager Installed version: ? (in

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Werner Macho
There is no 2.0 version right now .. IIRC minimum version right now (to be able to use it in master) should be 1.9) hope this solves your problem kind regards Werner On Wed, Jun 26, 2013 at 2:01 PM, PIERRE Sylvain sylvain.pie...@cg67.frwrote: Hi, ** ** I’m trying to develop a small

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Marco Bernasocchi
IIRC 2.0 was mentioned to be hardcoded temporarily in plugin manager by Boris. I definitely have a plugin with minVersion=2.0 the warning is different as well IIRC. maybe something else? like sipV1 vs sip v2? (speculation) Marco Bernasocchi (mobile) http://opengis.ch On Jun 26, 2013 2:19

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Andreas Neumann
Hi, But version 2.0 is hard-coded now in master. So Pierre should use 2.0 now. Pierre - did you create the metadata.txt file? This file is required for QGIS 2.0. See section metadata.txt at http://www.qgis.org/pyqgis-cookbook/plugins.html Andreas On Wed, 26 Jun 2013 14:19:03 +0200,

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Denis Rouzaud
You are correct, you need to set qgisMinimumVersion to 2.0 How old is your master version? Things have changed quickly last weeks... On 06/26/2013 02:26 PM, Marco Bernasocchi wrote: IIRC 2.0 was mentioned to be hardcoded temporarily in plugin manager by Boris. I definitely have a

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Stott James
I had quite a few problems getting my plugin to be 2.0 compatible in the plugin installer. I found that I had ‘authorName’ in my metadata.txt file, not ‘author’. I believe you also need ‘email’ filled in too. I would check the metadata.txt file and make sure it’s the same as the example

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Borys Jurgiel
Dnia środa, 26 czerwca 2013 o 14:26:46 Marco Bernasocchi napisał(a): IIRC 2.0 was mentioned to be hardcoded temporarily in plugin manager by Boris. I definitely have a plugin with minVersion=2.0 Exaxtly, master uses alreasy API 2.0. More info:

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread Borys Jurgiel
Dnia środa, 26 czerwca 2013 o 14:56:11 PIERRE Sylvain napisał(a): Master version installed yesterday with osgeo4w apt I don’t have metadata.txt file, only entries in _init_.py file… So the manager was right, you use the approach for QGIS 1.x. Please look at the two wiki pages refered in this

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread PIERRE Sylvain
You're right! Plugin is invalid no more But I have a new problem: # Couldn't load plugin thememanager due an error when calling its classFactory() method Traceback (most recent call last): File

Re: [Qgis-developer] Dev plugin for master

2013-06-26 Thread PIERRE Sylvain
Forget this → Sylvain PIERRE Ingénieur Géographe Adjoint au chef du service Direction de l’Agriculture, de l’Espace Rural et de l’Environnement Service Administration Générale Conseil Général du Bas-Rhin Passerelle 67 20 rue

[Qgis-developer] Linear (Affine) transformationin Raster/Georeferencing

2013-06-26 Thread Agustin Lobo
I have the impression that the Linear option in the Raster Georeferencing plugin is always calculating a 0 for the Rotation. Am I wrong? Could other people test? In such a case, I think there has to be some error in the code (if Linear refers to Affine). Agus

Re: [Qgis-developer] QGIS crash when read layer from mssql

2013-06-26 Thread laurentyu
I want to connect to MSSQL server with QGIS. I follow Ubuntu 13.04. What settings should I do? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/QGIS-crash-when-read-layer-from-mssql-tp5060562p5062368.html Sent from the Quantum GIS - Developer mailing list archive at

[Qgis-developer] Merge shapefiles plugin error

2013-06-26 Thread skampus
this very useful plugin doesn't work with new qgis master (version eda9cd3) python error: Qgsfield object has no attribute iteritems http://hub.qgis.org/issues/8173 -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Merge-shapefiles-plugin-error-tp5062386.html Sent from the

Re: [Qgis-developer] Qgis-developer Digest, Vol 92, Issue 86

2013-06-26 Thread Felipe Pilleggi
ARCV2CAD tool for QGIS. This could be a powerfull tool to QGIS. 2013/6/26 qgis-developer-requ...@lists.osgeo.org Send Qgis-developer mailing list submissions to qgis-developer@lists.osgeo.org To subscribe or unsubscribe via the World Wide Web, visit

Re: [Qgis-developer] Differences between WFS functionality in QGIS 1.7.4 and 1.8.0

2013-06-26 Thread Giovanni Manghi
Hi, I'm using the WFS plugin in QGIS 1.7.4 to add WFS layers to the QGIS canvas. When I add a WFS to QGIS I can choose via checkbox, that Only request features overlapping the current view extent. In QGIS 1.8.0 I do not need a plugin, but I miss this checkbox. There I have only a

[Qgis-developer] Core dump closing QGIS

2013-06-26 Thread Pedro Venâncio
Hi, I'm getting this core dump with QGIS compiled today. pedro@tsunami:~/sextante_github$ qgis Warning: loading of qt translation failed [/usr/share/qt4/translations/qt_en_US] Reading contributors file /usr/share/qgis/doc/CONTRIBUTORS. Warning:

Re: [Qgis-developer] Core dump closing QGIS

2013-06-26 Thread Nathan Woodrow
We think it might be related to Python crashing on exit. http://hub.qgis.org/issues/8102 - Nathan On Thu, Jun 27, 2013 at 9:52 AM, Pedro Venâncio pedrongvenan...@yahoo.comwrote: Hi, I'm getting this core dump with QGIS compiled today. pedro@tsunami:~/sextante_github$ qgis Warning: