Re: [Qgis-developer] copy/paste: Z dimension in geometry

2014-03-13 Thread Denis Rouzaud
Apprently, for the features causing the problem in the dxf layer, geometry().type() = 1 geometry().wkbType() = -2147483646 On 13. 03. 14 08:16, Denis Rouzaud wrote: Hi all, I recently modified the copy/paste mechanism in QGIS so geometries are automatically transformed to the destination

[Qgis-developer] copy/paste: Z dimension in geometry

2014-03-13 Thread Denis Rouzaud
Hi all, I recently modified the copy/paste mechanism in QGIS so geometries are automatically transformed to the destination layer geometry type. Now, I have a problem when I copy features from a dxf to a postgis layer. I get a PostGIS error saying the geometry has Z dimension while the layer

Re: [Qgis-developer] pyuic4 and ui files in subfolder

2014-03-05 Thread Denis Rouzaud
es_rc). In this module a do all my imports from other packages/modules. giovanni 2014-03-05 16:01 GMT+01:00 Denis Rouzaud <mailto:denis.rouz...@gmail.com>>: Hi all, I have been annoyed by a small problem for a while without finding a solution for it. In my plugins,

[Qgis-developer] pyuic4 and ui files in subfolder

2014-03-05 Thread Denis Rouzaud
Hi all, I have been annoyed by a small problem for a while without finding a solution for it. In my plugins, I place all the ui files in a subfolder named ui. The resources file is at the root folder. So, in the ui file I have But when I compile, I got in the python file (also located in ui

Re: [Qgis-developer] virtual fields

2014-03-03 Thread Denis Rouzaud
On 03. 03. 14 16:42, Matthias Kuhn wrote: On a similar note see this recent thread [1] which should be able to provide this kind of functionality. I don't know if Nahtan has already started to implement his POC. What would be the advantage of such a beast? Is it the caching? Regards, Matthi

Re: [Qgis-developer] virtual fields

2014-03-03 Thread Denis Rouzaud
Hi, First, nice to hear that this feature seems to be awaited! I have thought about this functionality before and I think it should be relatively easy to add this functionality. The QgsVectorLayerFeatureIterator could simply compute the values of the virtual fields according to their definition

[Qgis-developer] virtual fields

2014-03-03 Thread Denis Rouzaud
Hi all, I was wondering about the idea of being able to create simple views in QGIS, "views" in terms of database. Often, I use views (in postgres) to be able to create labels, title, simple calculation or whatever and also to combine data from joined tables. Somehow, all is already there in

Re: [Qgis-developer] Select By Attribute

2014-02-27 Thread Denis Rouzaud
On 27. 02. 14 18:41, Michael McInnis wrote: Desperately need help doing attribute based selection : How do I select all features in a LAYER that the Field LWFLAG != 'P' Python Console from osgeo import ogr canvas = qgis.utils.iface.mapCanvas() allLayers = canvas.layers() for i in allLaye

Re: [Qgis-developer] D&D form gone?

2014-02-26 Thread Denis Rouzaud
Hi Paolo, Go to layer properties -> fields in the combobox on top (attribute editor layot) choose "drag an drop designer" it might be hidden on the right if you previously reduced the splitter to its minimum. tested now on master, I believe it's not different from 2.2. Cheers, Denis On 2

Re: [Qgis-developer] Get a signal when the symbology changed

2014-02-26 Thread Denis Rouzaud
Hi Guillaume, On 26. 02. 14 10:15, Guillaume GIMENO wrote: Hi, I am working on a plugin and want to get a signal when the symbology of a vector layer is changed by the user. In the doc, there is a signal that seems to fit ( http://qgis.org/api/classQgsVectorLayer.html#a403f235d3743aa59bb3aad

Re: [Qgis-developer] Identify with Feature Form on QGIS 2.2

2014-02-23 Thread Denis Rouzaud
On 23. 02. 14 19:48, Pedro Venâncio wrote: Hi, Identify with "Open feature form, if a single feature is identified" opens both Feature Form and Identify Results window. Anyone confirms? I confirm. Very annoying! Would be worth a 2.2.1 ... ___ Qgis-

Re: [Qgis-developer] Post-release period of portable commits only?

2014-02-23 Thread Denis Rouzaud
On 24. 02. 14 03:17, Mathieu Pellerin wrote: QGIS could adopt: 4, or 2, weeks before the release date, {beta,release candidate,tech preview,etc.} builds (from master, no need to branch out really) are pushed out to osgeo4w & linux and quite loudly advertised (blog posts, social media, etc.) to

[Qgis-developer] Which compiler for a c++ QGIS custom app

2014-02-21 Thread Denis Rouzaud
Hi all, I am a bit lost at trying to build a custom QGIS app on a windows 7. I have installed QGIS libs, Qt libs and minGW using osgeo4w installer (thanks to Nathan's advices). I have also installed Qt Creator 3.0. Now in creator, I have configured Qt version as Qt 4.7. using c:\osgeo4w\bin\

Re: [Qgis-developer] QgsRubberBand RuntimeError: underlying C/C++ object has been deleted

2014-02-13 Thread Denis Rouzaud
On 13. 02. 14 12:45, Radim Blazek wrote: Thanks Denis, However, do you have any idea where the point may be deleted? The points are acquired from QgsGeometry.asPolyline() which returns QVector, i.e. list of values. The points are then add to another list: result.extend( pnts[1:-1] ). Is it wro

Re: [Qgis-developer] Atlas preview

2014-02-13 Thread Denis Rouzaud
What about having a warning in the setting if you don't have any map controlled by atlas? Or the count of map controlled by atlas? On 13. 02. 14 11:43, Paolo Cavallini wrote: Il 12/02/2014 21:07, Alexandre Neto ha scritto: And it is a great add-on to the the atlas. Maybe make it on by defau

Re: [Qgis-developer] QgsRubberBand RuntimeError: underlying C/C++ object has been deleted

2014-02-13 Thread Denis Rouzaud
On 13. 02. 14 09:45, Radim Blazek wrote: On Thu, Feb 13, 2014 at 9:04 AM, Denis Rouzaud wrote: Hi Radim, It seems it is your point that has been deleted, not the rubber band. Doing "print point" before addPoint crashes. Good, thanks and sorry for false pointing to rubber band. H

Re: [Qgis-developer] QgsRubberBand RuntimeError: underlying C/C++ object has been deleted

2014-02-13 Thread Denis Rouzaud
Hi Radim, It seems it is your point that has been deleted, not the rubber band. Doing "print point" before addPoint crashes. Cheers, Denis On 13. 02. 14 08:39, Radim Blazek wrote: On Thu, Feb 13, 2014 at 8:35 AM, Radim Blazek wrote: On Thu, Feb 13, 2014 at 7:13 AM, Denis Rouz

Re: [Qgis-developer] QgsRubberBand RuntimeError: underlying C/C++ object has been deleted

2014-02-12 Thread Denis Rouzaud
Hi Radim, Can you show us the whole code? Cheers, Denis On 12. 02. 14 19:17, Radim Blazek wrote: On Wed, Feb 12, 2014 at 2:50 PM, Martin Dobias wrote: Hi Radim On Wed, Feb 12, 2014 at 8:03 PM, Radim Blazek wrote: On Wed, Feb 12, 2014 at 1:45 PM, Radim Blazek wrote: I am using rubber ba

[Qgis-developer] QgsMapCanvasItem::paint in python

2014-02-12 Thread Denis Rouzaud
Hi all, I am trying to subclass QgsMapCanvasItem in python. From the API doc, I read that I should reimplement paint( QPainter * painter ) but not paint( QPainter * painter, QStyleOptionGraphicsItem * option, QWidget * widget = 0 ); Anyway, when I implement this one, I get this error: Type

Re: [Qgis-developer] Atlas preview

2014-02-12 Thread Denis Rouzaud
On 12. 02. 14 14:35, Paolo Cavallini wrote: Il 12/02/2014 14:28, Denis Rouzaud ha scritto: Hi Paolo, Is your map in render mode (not cache)? Hi Denis, It was on Cache, switched to Render, no change. BTW, it seems to interact with the main canvas, preventing the display of the layer u

Re: [Qgis-developer] Atlas preview

2014-02-12 Thread Denis Rouzaud
Hi Paolo, Is your map in render mode (not cache)? On 12. 02. 14 14:23, Paolo Cavallini wrote: Hi all. Atlas preview is not working here: I can activate it, back/forward buttons are activated, but nothing happens. Am I missing something? Thanks. ___

Re: [Qgis-developer] crash on windows

2014-02-10 Thread Denis Rouzaud
question: If the process is still running I think you can right click in the task manager and choose something like "create dump" or similar. You could also install debugview to see the last debug messages. Matthias On Mon 10 Feb 2014 03:53:47 PM CET, Denis Rouzaud wrote: Hi all

[Qgis-developer] crash on windows

2014-02-10 Thread Denis Rouzaud
Hi all, I get a crash on a windows machine with a plugin. It is strange as it seems it does not occur on every machine. I would like to investigate, but I don't know what info I can get. Is there a way to know where the crash occurs without any IDE? PS: I don't get the warning saying there is

Re: [Qgis-developer] Custom "Identify Results" Window

2014-02-10 Thread Denis Rouzaud
Hi, Also, I don't know if you know the "Layer selection" mode for identification. When you identify in the map, you have a contextual menu which let you choose which layer will be identified. Though it solves this problem only if the features identified were not in the same layer, Cheers, D

[Qgis-developer] inconsistency of new "fill ring" icon

2014-02-07 Thread Denis Rouzaud
Hi, I have noticed that the new icon for fill ring was not really consistent with the rest (no new part, polygon was not fully drawn). I took the opportunity to transform digitizing icons to SVG to be consistent with the previous work on layer icons. Here is the pull request https://github.

Re: [Qgis-developer] [postgis-users] RE : QGis 2.0 Copy/Paste from shapefile to Postgis issue if the primary key is a string

2014-02-04 Thread Denis Rouzaud
Here is the reply concerning copy/pase with primary keys on postgis. Jürgen, can you comment this? Thanks, Denis On 03. 02. 14 09:40, F T wrote: Hi, QGis should not deal with Postgre SQl explicit primary keys. It is postgreSQL to manage the explicit primary key. With Qgis 1.7.4, copy/paste

Re: [Qgis-developer] [postgis-users] QGis 2.0 Copy/Paste from shapefile to Postgis issue if the primary key is a string

2014-01-31 Thread Denis Rouzaud
Hi, QGIS prevent to overwrite the primary key field when it copies/pastes, this is why it leaves the field empty. One way would be to add the constraint after the copy/paste if it's for a single shot. Otherwise, just add a unique constraint on f1 and add a serial as primary key. Cheers, Den

Re: [Qgis-developer] Labeling toolbar activating signals?

2014-01-30 Thread Denis Rouzaud
this might be related to this. http://hub.qgis.org/issues/6782 Cheers, Denis On 30. 01. 14 11:43, Régis Haubourg wrote: Well, it doesn't always work. Anyone knows why startEditing() on a layer in Python does not activate all labeling and editing buttons? -- View this message in context:

Re: [Qgis-developer] Cad-Input for QGIS prototype

2014-01-29 Thread Denis Rouzaud
On 29. 01. 14 05:27, Olivier Dalang wrote: Hi ! Thanks for all the replies !! I updated the plugin which should work on mac/linux now, please give it a try ! Do you think it's too soon to put it in the plugin repo as experimental at this stage ? +1 to publish, it would allow more users to t

Re: [Qgis-developer] Data encryption

2014-01-29 Thread Denis Rouzaud
The best way is to provide your data with a proper disclaimer of use. Trying to add some lock is just useless. Anyone who will really wants to fully get or edit the data will still be able to do it. You will just make your bundle less usable, and loose some time/money at trying to implement thi

[Qgis-developer] Lidar data into QGIS

2014-01-29 Thread Denis Rouzaud
Hi Paolo, This would probably be quite a different way of dealing with the data source. I suppose the idea would be to fetch all the points at once and store them in a kd-tree. Otherwise, refreshing the canvas would take ages to refresh. The laslib [0,1] (from lastools) is LGPL. But there i

[Qgis-developer] data provider in a custom app

2014-01-23 Thread Denis Rouzaud
Hi all, I am trying to do a custom application using QGIS libs and I have trouble to use data providers (i.e. spatialite). In my application doing, QgsProviderRegistry::instance()->pluginList() returns " No data provider plugins are available. No vector layers can be loaded". Then of cours

Re: [Qgis-developer] [QGIS-UX] option to disable font vectorization in labels

2014-01-22 Thread Denis Rouzaud
On 22. 01. 14 11:27, Vincent Picavet wrote: Hello, Le mardi 21 janvier 2014 21:45:16, Nyall Dawson a écrit : On 22/01/2014 4:56 am, "Anita Graser" wrote: Am 21.01.2014, 10:24 Uhr, schrieb Vincent Mora - a composer option: you make the choice when you export to svg, in this case you don't s

Re: [Qgis-developer] Reminder: Freeze starts on 2014-01-24 (4 days)

2014-01-22 Thread Denis Rouzaud
On 22. 01. 14 12:25, Jürgen E. Fischer wrote: On Wed, 22. Jan 2014 at 11:42:38 +0100, Denis Rouzaud wrote: On 22. 01. 14 11:37, Radim Blazek wrote: Cannot it be done in a different way, maybe even more explicitly, for example a bottom bar on splash screen telling place/institution. Even

Re: [Qgis-developer] Reminder: Freeze starts on 2014-01-24 (4 days)

2014-01-22 Thread Denis Rouzaud
On 22. 01. 14 11:37, Radim Blazek wrote: On Mon, Jan 20, 2014 at 10:15 PM, Tim Sutton wrote: Hi Regarding whether we should keep giving releases names, I think we should (big +1) for the following reasons: -1 for code names, see [1], it is all there what came to my mind: "Version 4.0? Ha! Wh

[Qgis-developer] custom application: cannot open shared object file

2014-01-20 Thread Denis Rouzaud
Hi, I am trying to create a custom application using QGIS API. I am using Qt Creator and while running the app I get this error: error while loading shared libraries: libqgis_core.so.2.1.0: cannot open shared object file: No such file or directory Here is the project file: QT += core g

Re: [Qgis-developer] Reminder: Freeze starts on 2014-01-24 (4 days)

2014-01-20 Thread Denis Rouzaud
Hi, If Martin's work is merged, I would vote for something like lightning, or cheetah! Cheetah sounds nice! what a nice splashscreen it would be ;) Cheers, Denis On 20. 01. 14 15:41, Jürgen E. Fischer wrote: Hi, I'd like to remind everyone that the 2.1 development cycle ends on Friday (2

Re: [Qgis-developer] PostGIS reading slowdown

2014-01-20 Thread Denis Rouzaud
Hi Paolo, No problems for me today. But I had troubles on Ubuntu with Postgis last weeks. This was due to the introduction of geometry sinplification, but has been solved for me since merge of pull 1053, 5days ago ( 8fb87f1 ). Not sure if it has any relation, just FYI. Cheers, Denis On 20.

Re: [Qgis-developer] Open custom form from another form

2014-01-14 Thread Denis Rouzaud
forn because I have some code into it. many thanks Luca 2014/1/14 Denis Rouzaud <mailto:denis.rouz...@gmail.com>> Hi Luca, The best way to do this, is to set your personnally designed UI file in the layer properties->field properties->attribute editor layout->

Re: [Qgis-developer] Open custom form from another form

2014-01-14 Thread Denis Rouzaud
Hi Luca, The best way to do this, is to set your personnally designed UI file in the layer properties->field properties->attribute editor layout->provide ui file Then, you want to call qgis method to show a feature form: http://qgis.org/api/classQgisInterface.html#aff2467aa3cefd8fc5b59213f385

Re: [Qgis-developer] Multi-threaded version and attribute table

2014-01-13 Thread Denis Rouzaud
Hi, Here it is rather slow, but not that bad (~25sec for a 25'000 rows layer) On 13. 01. 14 13:54, Andreas Neumann wrote: Hi Martin, I tested the multi-threaded version with the latest version from git regarding the attribute table. I noticed a problem when loading the features for the table.

Re: [Qgis-developer] forced update on the repo?

2014-01-13 Thread Denis Rouzaud
it seems to affect que pull request now: https://github.com/qgis/QGIS/pull/1067 On 13. 01. 14 10:35, Richard Duivenvoorde wrote: On 13-01-14 10:18, Matthias Kuhn wrote: Some general advice (althogh I'm not sure how exactly that happened) is to For creating a pull request === - alwa

[Qgis-developer] forced update on the repo?

2014-01-12 Thread Denis Rouzaud
Hi all, A lot of commits are missing between january 1st and 11th on the repo. I suppose Alvaro forced an update since the whole is just after. Who will take care of this ? Cheers, Denis ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.or

Re: [Qgis-developer] QGIS Multi-threaded Rendering

2014-01-10 Thread Denis Rouzaud
Hi Martin, I noticed that QGIS crashes (with the multi-threaded rendering) when you turn editing mode on for a layer if this layer exists several times in the legend (i.e. the same layer is loaded several times with different styles or whatever). I observed this at least for postgres. Cheer

Re: [Qgis-developer] QGIS Multi-threaded Rendering

2014-01-07 Thread Denis Rouzaud
Hi Martin, I also confirm I don't have any more trouble with too many connections. This works like a charm Cheers, Denis On 07. 01. 14 22:23, Andreas Neumann wrote: Hi Martin, I tested it and can confirm that the PostgreSQL pooling works fine and fast now. I see more than 4 Postgis co

[Qgis-developer] qgis bench

2013-12-19 Thread Denis Rouzaud
Hi all, Can someone points me toward a howto for qgis_bench? Thanks, Denis ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Detect raster layers which have been deleted

2013-12-15 Thread Denis Rouzaud
Hi Etienne, On 14. 12. 13 16:38, Etienne Trimaille wrote: Hi, Sorry, I'm a beginner in pyqgis. I found the signal "layerDeleted ()" in the QgsVectorLayer class, however, I can't find it in the QgsRasterLayer class : http://qgis.org/api/2.0/classQgsVectorLayer.html#acc3e594b1dac4815dc031a2236f6

Re: [Qgis-developer] QT 5.2 is out

2013-12-13 Thread Denis Rouzaud
Hi, On 13. 12. 13 09:57, Martin Dobias wrote: Hi Luca On Fri, Dec 13, 2013 at 2:13 PM, Luca Manganelli wrote: Hi, as some of you have noticed, QT 5.2 is out. From release notes [1]: "I am proud to say that Qt 5.2 fully brings Qt into the mobile space as a true player in the app development m

[Qgis-developer] layer order

2013-12-04 Thread Denis Rouzaud
Hi all, I have a project in which the layer order is not correctly set at project re-opening. I can't reproduce this bug in a simple new project. Anybody knows what to look for? Thanks, Denis ___ Qgis-developer mailing list Qgis-developer@lists.osg

Re: [Qgis-developer] Legend for proportionnal symbols and expression based symbols

2013-12-04 Thread Denis Rouzaud
Hi régis, Martin Dobias will make a proposal soon for a legend refactoring. You should see with him how to let those things happen in the future in the new legend. Cheers, Denis On 04. 12. 13 12:08, Régis Haubourg wrote: Hi All, we have a long lasting problem with proportionnal legends in

[Qgis-developer] atlas composer: print a specific feature - call for a developper

2013-12-03 Thread Denis Rouzaud
Hi all, I work for a water supply service and we have a patchwork of maps all over the network. It is a common task to print -- after a modification -- a single specific map, not the whole set. This is why, the atlas generation is not really convenient: first, you must find the id of the featu

Re: [Qgis-developer] featureAdded(QgsFeatureId) signal

2013-11-29 Thread Denis Rouzaud
Hi Paolo, In your code you update the geometry in the provider. You should not do this since the feature is not there yet, it's still in the edit session (edit buffer). There is two ways to do this: either work totally in the buffer or totally in the provider. There is an agreement that worki

Re: [Qgis-developer] PR1007 bump minimum to 4.7: objections?

2013-11-28 Thread Denis Rouzaud
Regarding last emails from Jürgen and Nyall, is this is a sufficient reason to bump to 4.7? I don't what is worth my opinion, but +1 for me. I believe we should reach a decision soon??? Cheers, Denis On 27. 11. 13 11:51, Nyall Dawson wrote: Ok - to add some context to this discussion -- I o

Re: [Qgis-developer] Keep track of features in memory provider

2013-11-18 Thread Denis Rouzaud
On 18. 11. 13 20:58, Matthias Kuhn wrote: I think we should rather fix this issue. I would very much like QgsVectorLayer to emit a signal, when it commits the features and changes their ids. QgsVectorLayer::featureIdsChanged( QMap< QgsFeatureId, QgsFeatureId ) So you could connect to this and

Re: [Qgis-developer] Access to Run Feature Action tool from API

2013-11-12 Thread Denis Rouzaud
Hi Thomas, In the latest master, you can now use: iface.actionFeatureAction.trigger() Cheers, Denis On 11/11/2013 03:21 PM, Thomas Colley wrote: Thanks very much for that, looks good, I'll give it a go! Cheers Tom *From:*Denis Rouzaud [mailto:denis.rouz...@gmail.com] *Sent:* 11 Nov

Re: [Qgis-developer] setMapTool

2013-11-11 Thread Denis Rouzaud
s again, Denis On 11/12/2013 04:12 AM, Martin Dobias wrote: Hi Denis you can do that by triggering identify action (will call setMapTool for you): iface.actionIdentify().trigger() Martin On Mon, Nov 11, 2013 at 10:01 PM, Denis Rouzaud wrote: Hi all, Following Thomas' question, I wond

[Qgis-developer] setMapTool

2013-11-11 Thread Denis Rouzaud
Hi all, Following Thomas' question, I wonder if it is possible to set a QGIS map tool using setMapTool. The map tools are private variable so I suppose it's impossible for example to set the identify map tool as the current tool. Am I wrong? Thanks, Denis _

Re: [Qgis-developer] Access to Run Feature Action tool from API

2013-11-11 Thread Denis Rouzaud
s makes sense Thanks again Tom *From:*Denis Rouzaud [mailto:denis.rouz...@gmail.com] *Sent:* 11 November 2013 12:37 *To:* Thomas Colley; qgis-developer@lists.osgeo.org *Subject:* Re: [Qgis-developer] Access to Run Feature Action tool from API Hi Thomas, This should do the job: layer.actions().

Re: [Qgis-developer] Access to Run Feature Action tool from API

2013-11-11 Thread Denis Rouzaud
Hi Thomas, This should do the job: layer.actions().doAction( idx, feature ) QgsAttributeAction is a registry, and you can run/add/remove action from it. http://qgis.org/api/classQgsAttributeAction.html Cheers, Denis On 11/11/2013 11:12 AM, Thomas Colley wrote: Hi Everyone Is there a way t

Re: [Qgis-developer] Rendering bugs: QGIS or Qt?

2013-11-05 Thread Denis Rouzaud
illwe? Or maybe, if this time we take care of porting every plugins with 2to3? I'd like to hear (read) these aware people ;) Cheers, Denis On 11/06/2013 07:49 AM, Paolo Cavallini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 06/11/2013 07:45, Denis Rouzaud ha scritto: N

Re: [Qgis-developer] Rendering bugs: QGIS or Qt?

2013-11-05 Thread Denis Rouzaud
05/11/2013 07:11, Denis Rouzaud ha scritto: Hi Paolo, You can add the problem of dashed lines rendering. I don't think there is an issue entered but we were facing this while introducing the dashed line in digitization. It has been fixed in Qt5 [0]. [ 0] https://bugreports.qt-project.org/br

Re: [Qgis-developer] Rendering bugs: QGIS or Qt?

2013-11-04 Thread Denis Rouzaud
Hi Paolo, You can add the problem of dashed lines rendering. I don't think there is an issue entered but we were facing this while introducing the dashed line in digitization. It has been fixed in Qt5 [0]. [ 0] https://bugreports.qt-project.org/browse/QTBUG-24762 Cheers, Denis On 11/04/201

Re: [Qgis-developer] Topology editing in QGis

2013-10-30 Thread Denis Rouzaud
Hi Pierre, I have been incorporated into the core dev team very recently, and I am somehow assigned to the map tools ;) I put the dev list in copy, since there should be someone arond who's more aware on the topic. I saw that Martin Dobias was the committer for the topology editing [0]. Mar

Re: [Qgis-developer] Reliable way to determine a groupIndex in the legend tree

2013-10-09 Thread Denis Rouzaud
I heard some discussions... from Matthias, Martin and Nathan. but there are probably others! On 10/09/2013 09:30 AM, Andreas Neumann wrote: Am 09.10.2013 06:16, schrieb Bernhard Ströbl: Hi Am 09.10.2013 08:12, schrieb Denis Rouzaud: Hi, I am not sure we should make any publicity to the

Re: [Qgis-developer] Reliable way to determine a groupIndex in the legend tree

2013-10-08 Thread Denis Rouzaud
Hi, I am not sure we should make any publicity to the legend API which is very bad. I hope these methods will deprecated soon ;) Cheers, Denis On 10/08/2013 04:08 PM, Andreas Neumann wrote: Hi, Thank you Bernhard. This works better than my code with the legend.groupLayerRelationship()

[Qgis-developer] features not shown if a rule has a join

2013-10-04 Thread Denis Rouzaud
Hi all, I opened an existing 2.0 project in master, and some features were not rendered. It seems to occur when there is a joined attribute used in the rule based symbology. This works in 2.0. I looked for existing issues but I don't think #8757 correspend. Could this be quickly fixed or

[Qgis-developer] composer questions

2013-09-30 Thread Denis Rouzaud
Hi, I have two questions regarding the print composer: - is there anyway of using some fields to determine the printed bounding box instead of using the feature's geometry? if no, do you think it could be an interesting feature? - While trying to use overview map, it did not print the correct

Re: [Qgis-developer] import CSV to an existing layer

2013-09-30 Thread Denis Rouzaud
eted as numeric) 3) There is a suggestion that it could have a capability to support importing multiple files at once. Anyway just thought this could be useful background if you are working in this area... Cheers Chris From: Denis Rouzaud [denis.rouz...

Re: [Qgis-developer] Fwd: QGIS stable, release, master, development, nightly build, latest, unstable etc etc

2013-09-30 Thread Denis Rouzaud
+1 for testing On 09/30/2013 09:28 AM, Matthias Kuhn wrote: Yep, good for me. On Mon 30 Sep 2013 09:27:06 CEST, Paolo Cavallini wrote: Il 30/09/2013 09:25, Richard Duivenvoorde ha scritto: New proposal: QGIS stable QGIS testing Ok? this will encourage people to test it out, +1 for me. th

Re: [Qgis-developer] import CSV to an existing layer

2013-09-27 Thread Denis Rouzaud
Being able to supply a layer to layer mapping would be even better in case the fields don't match. - Nathan On Fri, Sep 27, 2013 at 9:34 PM, Denis Rouzaud mailto:denis.rouz...@gmail.com>> wrote: Hi all, I have the intention to add the possibility of importing features f

[Qgis-developer] import CSV to an existing layer

2013-09-27 Thread Denis Rouzaud
Hi all, I have the intention to add the possibility of importing features from a CSV into an existing layer. My idea is to use the existing dialog "Create a layer from a delimited text file" and to add the choice "create a layer" or "append to an existing layer". First of all, is anyone alre

Re: [Qgis-developer] Fwd:

2013-09-20 Thread Denis Rouzaud
I have the same on a Win 64 machine with the 64bit build. On 09/20/2013 12:20 PM, Nathan Woodrow wrote: Is this a 64bit build issue? - Nathan On Fri, Sep 20, 2013 at 8:18 PM, Paolo Cavallini mailto:cavall...@faunalia.it>> wrote: Hi all. Apparently this kind of problems are rather

Re: [Qgis-developer] Infrastructure for plugin settings

2013-09-11 Thread Denis Rouzaud
On 09/11/2013 02:12 PM, Borys Jurgiel wrote: Dnia czwartek, 5 września 2013 15:00:31 Denis Rouzaud pisze: I have made some publicity before for a library which handles plugin settings. http://3nids.github.io/qgissettingmanager/ Basically, the idea is that it you create once the settings

Re: [Qgis-developer] QGIS 2.0.1 Final Tagged - call for packaging

2013-09-11 Thread Denis Rouzaud
This has been discussed a few times, it doesn't seem to be a problem. http://lists.osgeo.org/pipermail/qgis-developer/2013-August/027844.html On 09/11/2013 02:09 PM, Paolo Cavallini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 11/09/2013 14:06, Vincent Picavet ha scritto: "Quant

[Qgis-developer] sessions in Brighton

2013-09-11 Thread Denis Rouzaud
a fun session on a funny island? https://www.google.com/maps/preview#!data=!1m4!1m3!1d1503!2d-0.1373439!3d50.8153684!2m1!1e3&fid=7 __

Re: [Qgis-developer] [Qgis-psc] Motion: git write access for Denis Rouzaud

2013-09-10 Thread Denis Rouzaud
iving git write access to Denis Rouzaud as new maintainer for the vector editing tools. We have now a considerable number of editing tools in src/app, including some fancy features like snapping, rubberbanding, geometry error markers, adding topological points and much more. It will be good havi

Re: [Qgis-developer] Pull request responsibility

2013-09-09 Thread Denis Rouzaud
On 09/09/2013 10:39 AM, Marco Bernasocchi wrote: On 09/09/2013 10:36 AM, Matthias Kuhn wrote: We just did a test and didn't find a solution for getting a list of assigned pull requests (or assignment notifications) even with issue tracking turned on. It seems you only get this list for issues

Re: [Qgis-developer] Infrastructure for plugin settings

2013-09-05 Thread Denis Rouzaud
I have made some publicity before for a library which handles plugin settings. http://3nids.github.io/qgissettingmanager/ Basically, the idea is that it you create once the settings somewhere in your plugin and then it handles type validation, defaut values, etc. The most interesting part is t

Re: [Qgis-developer] Need help with Plugin button behavior connected to SIGNAL("selectionChanged()")

2013-08-22 Thread Denis Rouzaud
Btw, I have created a pull request for this. Hopefully, it will be in core for 2.1 ! On 08/22/2013 02:11 PM, Alexandre Neto wrote: Hello all, I'm updating the Multipart split plugin to make it work with the 2.0 API. Has I have successfully

Re: [Qgis-developer] Need help with Plugin button behavior connected to SIGNAL("selectionChanged()")

2013-08-22 Thread Denis Rouzaud
Hi Alexandre, Why don't you use selectionChanged on mapCanvas? You have a line commented, I suppose this was it. Mainly, I suppose the problem is that you never disconnect you layer from the signals since you always call the method for the current layerso the previous current is never disc

[Qgis-developer] feature subset for layer with joins

2013-08-21 Thread Denis Rouzaud
Hi all, I just noticed that we can't set any feature subset for a vector layer if it has a join. Why? Thanks, Denis ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Digitizing behavior

2013-08-20 Thread Denis Rouzaud
not sure but to-be-commited features have negative IDs. It might be a reason they are rendered first. On 08/20/2013 11:07 AM, Andreas Neumann wrote: Hi Salvatore, I think you described it wrong: the former is on the top and not the latter. If the latter were at the top it would be more logic

Re: [Qgis-developer] Pan icons inconsistency

2013-08-19 Thread Denis Rouzaud
Hi again, I was refering to this pull request: https://github.com/qgis/Quantum-GIS/pull/698 Otherwise we could use something like this: Cheers, Denis On 08/19/2013 06:38 PM, Werner Macho wrote:

Re: [Qgis-developer] Error deleting last node while digitising

2013-08-16 Thread Denis Rouzaud
Hi Frank, On 08/16/2013 10:36 AM, Frank Sokolic wrote: Dear list, I've come across two errors when digitising with QGIS Master: 1. When digitising lines or polygons, pressing the delete or backspace key erases the second-last, and not the last point digitised. This is with QGIS 1.9.0-Master,

Re: [Qgis-developer] Error deleting last node while digitising

2013-08-16 Thread Denis Rouzaud
On 08/16/2013 10:36 AM, Frank Sokolic wrote: Dear list, I've come across two errors when digitising with QGIS Master: 1. When digitising lines or polygons, pressing the delete or backspace key erases the second-last, and not the last point digitised. This is with QGIS 1.9.0-Master, QGIS code

Re: [Qgis-developer] github repo

2013-08-16 Thread Denis Rouzaud
nk it would be good and it's an easy change on both end. On 16/08/2013 5:58 PM, "Denis Rouzaud" <mailto:denis.rouz...@gmail.com>> wrote: Hi all, Is there a decision made regarding renaming the repo on github from Quantum-GIS to QGI

[Qgis-developer] github repo

2013-08-16 Thread Denis Rouzaud
Hi all, Is there a decision made regarding renaming the repo on github from Quantum-GIS to QGIS ??? Cheers, Denis ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] icons finally

2013-08-15 Thread Denis Rouzaud
Hi, OK, I just rebased. Thanks, Denis On 08/15/2013 11:39 AM, Tim Sutton wrote: Hi On Thu, Aug 15, 2013 at 11:36 AM, Denis Rouzaud mailto:denis.rouz...@gmail.com>> wrote: Hi Tim, These requests have been open for more than a month. I have sent several times an email

Re: [Qgis-developer] icons finally

2013-08-15 Thread Denis Rouzaud
Tue, Aug 13, 2013 at 4:27 PM, Denis Rouzaud mailto:denis.rouz...@gmail.com>> wrote: Hi all, There are still 3 requests open for icons. I think that there was an agreement that pan icon should be changed It is still waiting: https://github.com/qgis

[Qgis-developer] icons finally

2013-08-13 Thread Denis Rouzaud
Hi all, There are still 3 requests open for icons. I think that there was an agreement that pan icon should be changed It is still waiting: https://github.com/qgis/Quantum-GIS/pull/698 What do you want to do Cheers, Denis ___ Qgis-develo

Re: [Qgis-developer] QGIS HF Accomodation

2013-08-05 Thread Denis Rouzaud
Hi Peter, Thank you for the clarification. What is the plan for breakfast? At the hotel? Thanks, Denis On 08/05/2013 03:29 PM, Peter Wells wrote: Dear all, As some of you may be aware, we've been trying to secure a group-discount on accommodation for the upcoming Brighton QGIS Hackfest.

[Qgis-developer] Digitization change in upcoming 2.0

2013-07-29 Thread Denis Rouzaud
Dear QGIS users, On today's master and upcoming QGIS 2.0, the behaviour of the right-click in digitization has changed. Instead of adding a vertex and finishing the digitization, *it now only finishes the **digitization without adding any vertex*. We understand it is quite a change for long

Re: [Qgis-developer] right-click to end the digitizing

2013-07-26 Thread Denis Rouzaud
Hi, I have modified the pull request so it now finishes without adding a vertex. I think that having a key to finish digitization might wait for having something else done with the right-click. Is this ok for you like this? Cheers, Denis On 07/26/2013 04:20 AM, Alister Hood wrote: Hi guy

Re: [Qgis-developer] right-click to end the digitizing

2013-07-25 Thread Denis Rouzaud
Hi all, I propose to add an option for this. Here is the pull request, what do you think? https://github.com/qgis/Quantum-GIS/pull/765 Would it be ok for QGIS 2.0??? Cheers, Denis On 07/25/2013 09:02 AM, Régis Haubourg wrote: +1000, I had the same feedback here in training courses, but did

[Qgis-developer] right-click to end the digitizing

2013-07-24 Thread Denis Rouzaud
Hi all, For digitizing, I wonder why the right-click adds a point and finishes instead of just finishing the operation. While showing QGIS to new users, it seems to be very unintuitive. I tend to agree to this. After using Inkscape a lot last weeks ;), QGIS' behavior seems even more unnatura

Re: [Qgis-developer] A new plugin has been created by 3nids.

2013-07-22 Thread Denis Rouzaud
SSAGE- Hash: SHA1 Il 22/07/2013 08:21, Denis Rouzaud ha scritto: Foreach point feature of the vector layer: - take the location of the point - calculate an interpolated value of a chosen band at the point location you mean, it is interpolating between adjacent cells? This is interesting

Re: [Qgis-developer] A new plugin has been created by 3nids.

2013-07-21 Thread Denis Rouzaud
notive slow down, but it requires scipy) Also, the plugin saved directly the values in the vector layer (instead of creating a new shapefile). Cheers, Denis On 07/22/2013 08:28 AM, Paolo Cavallini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 22/07/2013 08:21, Denis Rouzaud ha

Re: [Qgis-developer] A new plugin has been created by 3nids.

2013-07-21 Thread Denis Rouzaud
On 07/22/2013 08:13 AM, Paolo Cavallini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 22/07/2013 08:05, Denis Rouzaud ha scritto: Hi Paolo, Here is a new description: Raster Interpolation browses a vector layer of points, interpolates at their position the value of a raster layer

Re: [Qgis-developer] A new plugin has been created by 3nids.

2013-07-21 Thread Denis Rouzaud
wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 22/07/2013 07:30, Denis Rouzaud ha scritto: Hi Paolo, Sorry to ask, but how can you do this in QGIS? Cheers, Denis 2013/5/8 Paolo Cavallini mailto:cavall...@faunalia.it>> Il 08/05/2013 11:15, nore...@qgis.org <mailto:nore..

Re: [Qgis-developer] Splash screen for 2.0

2013-07-15 Thread Denis Rouzaud
> >> * the current one >> * the Siegfriedkarte (the colored one, where the italian part is white) >> * the Dufourkarte (the black/white one) >> >> Andreas >> >> Am 15.07.2013 14:46, schrieb Denis Rouzaud: >>> +1,

<    1   2   3   4   5   6   7   8   9   >