Re: [Qgis-developer] QGIS TMS provider?

2014-07-07 Thread Etienne Tourigny
There is already a simple TMS driver in GDAL [1], it would be easiest to make a wrapper/plugin that uses this wms mini-driver instead of writing from scratch, as was done for the following plugins. If you are talking about my Load TMS layer plugin [2] that I discussed a few weeks ago, I have not

Re: [Qgis-developer] Openlayers plugin support in QGIS 2.4

2014-07-07 Thread Etienne Tourigny
You cannot use the google maps TMS service, it is not allowed under the Google Maps TOS. On Mon, Jul 7, 2014 at 4:54 AM, René-Luc Dhont rldh...@gmail.com wrote: Hi Ali, You'll find examples here : http://www.gdal.org/frmt_wms.html Remember that using Google Maps needs to accept the Google

Re: [Qgis-developer] lack of zip_decoder in PIL with Windows 64bits installer

2014-07-01 Thread Etienne Tourigny
It would be useful if you can file a bug report for this problem. On Tue, Jul 1, 2014 at 5:23 AM, Arnaud Morvan arnaud.mor...@camptocamp.com wrote: I've meet problems to open PNG files with PIL from plugin on with windows 64 bits version of QGIS standalone installer I don't have zip_decoder

Re: [Qgis-developer] lack of zip_decoder in PIL with Windows 64bits installer

2014-07-01 Thread Etienne Tourigny
Hi, is the standalone installer based on osgeo4w? On Tue, Jul 1, 2014 at 5:46 PM, Jürgen E. j...@norbit.de wrote: Hi Etienne, On Tue, 01. Jul 2014 at 17:32:25 -0300, Etienne Tourigny wrote: It would be useful if you can file a bug report for this problem. if anywhere on OSGeo4W

Re: [Qgis-developer] SOSI support in QGIS

2014-06-27 Thread Etienne Tourigny
If SOSI is available in the Raster file open dialog, it is because gdal has support for SOSI. If a particular SOSI file cannot be opened, then it is a GDAL bug, not a QGIS one, and should be reported in the GDAL bugtracker. On Fri, Jun 27, 2014 at 11:18 AM, Blumentrath, Stefan

Re: [Qgis-developer] Value Tool disabled when another tool selected

2014-06-06 Thread Etienne Tourigny
I have implemented this to be able to identify on a mouse click instead of whenever you move the mouse (this is an optional behaviour). This requires the tool being a map tool, and you cannot have more than one active map tool. However, when the mouse click option is not enabled, it is NOT used

Re: [Qgis-developer] Value Tool disabled when another tool selected

2014-06-06 Thread Etienne Tourigny
filed a bug for this: http://hub.qgis.org/issues/10490 On Fri, Jun 6, 2014 at 11:27 AM, Etienne Tourigny etourigny@gmail.com wrote: I have implemented this to be able to identify on a mouse click instead of whenever you move the mouse (this is an optional behaviour). This requires

Re: [Qgis-developer] Legend refactoring branch merged

2014-05-21 Thread Etienne Tourigny
On Wed, May 21, 2014 at 3:46 PM, Etienne Tourigny etourigny@gmail.comwrote: A quick test revealed that layer actions added via QgsLegendInterface::addLegendLayerAction() and addLegendLayerActionForLayer() do not show up in the context menu any more. Should the corresponding members

Re: [Qgis-developer] Legend refactoring branch merged

2014-05-21 Thread Etienne Tourigny
On Wed, May 21, 2014 at 3:46 PM, Etienne Tourigny etourigny@gmail.comwrote: A quick test revealed that layer actions added via QgsLegendInterface::addLegendLayerAction() and addLegendLayerActionForLayer() do not show up in the context menu any more. Should the corresponding members

Re: [Qgis-developer] Legend refactoring branch merged

2014-05-21 Thread Etienne Tourigny
On Wed, May 21, 2014 at 3:46 PM, Etienne Tourigny etourigny@gmail.comwrote: A quick test revealed that layer actions added via QgsLegendInterface::addLegendLayerAction() and addLegendLayerActionForLayer() do not show up in the context menu any more. Should the corresponding members

Re: [Qgis-developer] Legend refactoring branch merged

2014-05-21 Thread Etienne Tourigny
A quick test revealed that layer actions added via QgsLegendInterface::addLegendLayerAction() and addLegendLayerActionForLayer() do not show up in the context menu any more. Should the corresponding members be added to QgsLayerTreeLayer class? cheers Etienne On Wed, May 21, 2014 at 3:03 PM,

Re: [Qgis-developer] Cannot install libqgis_customwidgets.so

2014-05-19 Thread Etienne Tourigny
It should probably be disabled by default when CMAKE_INSTALL_PREFIX is set (to avoid this error), but it would make sense to make it default if CMAKE_INSTALL_PREFIX is not set (which requires to install as root). Don't know if it's easy to do that in cmake though. cheers Etienne On Mon, May 19,

Re: [Qgis-developer] changes to file filters in GDAL and OGR file open dialogs

2014-05-12 Thread Etienne Tourigny
It can be done but requires a really long filter string (with all possible file extensions) shown in the dialog - not very practical. See attached screenshot which occupies the whole screen. To do this properly (without showing the long filter string) would require a custom widget, I think.

Re: [Qgis-developer] GDAL 1.11 new formats

2014-05-07 Thread Etienne Tourigny
There is also one new raster format (KRO). To whoever adds support for these, it would be nice to test that they it works in file open dialogs as well as the browser dock and app. Should work automatically once the ogr and gdal drivers are updated. Looks like there is no support for

Re: [Qgis-developer] SciPy in osgeo4w @64 bit

2014-04-14 Thread Etienne Tourigny
Probably better off asking elsewhere, this topic is specific to osgeo4w not QGIS. There is a bugtraker and mailing list for osgeo4w. cheers Etienne On Mon, Apr 14, 2014 at 4:36 PM, Luca Congedo semiautomatic.blog...@gmail.com wrote: Hello everybody, SciPy (a very useful python library) is

Re: [Qgis-developer] new plugin Load TMS Layer

2014-04-09 Thread Etienne Tourigny
: Hi Etienne, Am Montag, 7. April 2014, 18.45:05 schrieb Etienne Tourigny: I have put together a simple plugin to load a number of TMS layers using the GDAL TMS mini-driver [1]. I see it as a simple alternative to the more complete OpenLayers plugin. Code is at github for now [2]. Any

Re: [Qgis-developer] new plugin Load TMS Layer

2014-04-09 Thread Etienne Tourigny
I meant heads up... not thumbs up On Wed, Apr 9, 2014 at 9:28 PM, Etienne Tourigny etourigny@gmail.comwrote: Hi Thanks for the thumbs up. Can you explain if using Google Maps with the OpenLayers plugin respects their TOS? Do you have any links for Google TOS using both tiles and web

Re: [Qgis-developer] Adding plugins to core?

2014-04-07 Thread Etienne Tourigny
Since the OpenLayers plugin does not (currently) work with master, perhaps we can replace it with TMS-based layers, wither through a plugin or as a native (GDAL-based) provider? Is there anything in OpenLayers that could not work with GDAL TMS mini-driver [1] ? On Mon, Apr 7, 2014 at 7:22 AM,

Re: [Qgis-developer] Adding plugins to core?

2014-04-07 Thread Etienne Tourigny
/frmt_wms.html On Mon, Apr 7, 2014 at 11:42 AM, Etienne Tourigny etourigny@gmail.comwrote: Since the OpenLayers plugin does not (currently) work with master, perhaps we can replace it with TMS-based layers, wither through a plugin or as a native (GDAL-based) provider? Is there anything

Re: [Qgis-developer] Adding plugins to core?

2014-04-07 Thread Etienne Tourigny
, Etienne Tourigny etourigny@gmail.com: Since the OpenLayers plugin does not (currently) work with master, perhaps we can replace it with TMS-based layers, either through a plugin or as a native (GDAL-based) provider? Is there anything in OpenLayers plugin that could not work with GDAL TMS

[Qgis-developer] new plugin Load TMS Layer

2014-04-07 Thread Etienne Tourigny
I have put together a simple plugin to load a number of TMS layers using the GDAL TMS mini-driver [1]. I see it as a simple alternative to the more complete OpenLayers plugin. Code is at github for now [2]. Any suggestions are welcome (including plugin name). Also if you have any other working

Re: [Qgis-developer] new plugin Load TMS Layer

2014-04-07 Thread Etienne Tourigny
, caches the tiles, etc. Math On Tue, Apr 8, 2014 at 4:45 AM, Etienne Tourigny etourigny@gmail.comwrote: I have put together a simple plugin to load a number of TMS layers using the GDAL TMS mini-driver [1]. I see it as a simple alternative to the more complete OpenLayers plugin

Re: [Qgis-developer] Adding plugins to core?

2014-04-05 Thread Etienne Tourigny
On Sat, Apr 5, 2014 at 1:00 AM, Nathan Woodrow madman...@gmail.com wrote: I agree that adding the plugins to core would be a good idea however I don't feel that we should just add them in their current state. The plugin repository has the benefit of of being able to update things faster then

Re: [Qgis-developer] Adding plugins to core?

2014-04-05 Thread Etienne Tourigny
On Sat, Apr 5, 2014 at 1:13 PM, Etienne Tourigny etourigny@gmail.comwrote: On Sat, Apr 5, 2014 at 1:00 AM, Nathan Woodrow madman...@gmail.comwrote: I agree that adding the plugins to core would be a good idea however I don't feel that we should just add them in their current state

Re: [Qgis-developer] Adding plugins to core?

2014-04-04 Thread Etienne Tourigny
I think it's a great idea. +1 for openlayers, once it works with master (I don't use the others) how about adding value tool? http://plugins.qgis.org/plugins/valuetool/ But we need to fix the pyqwt bug with debian before including it in main QGIS. http://hub.qgis.org/issues/7450 On Fri,

Re: [Qgis-developer] ValueTool error

2014-04-03 Thread Etienne Tourigny
This has been reported a few times: on the bug tracker and on the qgis-user mailing list just yesterday. Version 0.8.4, released a week ago, fixes this bug. I was able to install that version with qgis-2.2.0 but on linux - do you not see the latest version (0.8.4) in the plugin manager?

Re: [Qgis-developer] [GRASS-dev] GRASS QGIS: the future

2014-03-28 Thread Etienne Tourigny
On Fri, Mar 28, 2014 at 11:16 AM, Paolo Cavallini cavall...@faunalia.itwrote: Il 28/03/2014 15:04, Martin Dobias ha scritto: On Fri, Mar 28, 2014 at 11:48 AM, Paolo Cavallini cavall...@faunalia.it wrote: * to add GRASS browsing capabilities in QGIS file browser The support for GRASS is

Re: [Qgis-developer] new plugin website metadata.txt requirements for plugins

2014-03-28 Thread Etienne Tourigny
I just uploaded a new version of the plugin qith about field and it works - new site looks great too! i just filed a bug about experimental end approved checkboxes not being respected when I add a new version. On Fri, Mar 28, 2014 at 10:52 AM, Alessandro Pasotti apaso...@gmail.comwrote:

Re: [Qgis-developer] OL plugin crashes QGIS

2014-03-20 Thread Etienne Tourigny
and there is a bug report for it in the openlayers tracker On Thu, Mar 20, 2014 at 2:29 PM, Giovanni Manghi giovanni.man...@faunalia.pt wrote: Anyone confirms? yes it is a known problem since the first hours after MTR was merged. ___

Re: [Qgis-developer] Crash when activating Value Tool plugin

2014-03-19 Thread Etienne Tourigny
what OS are you running? my bet is debian... might be related to this bug - a conflict between qwt5 and qwt6. Please add info to this bug report... http://hub.qgis.org/issues/7450 On Wed, Mar 19, 2014 at 1:04 PM, Paolo Cavallini cavall...@faunalia.itwrote: -BEGIN PGP SIGNED MESSAGE-

Re: [Qgis-developer] Crash when activating Value Tool plugin

2014-03-19 Thread Etienne Tourigny
Definitely a qwt5/qwt6 conflict issue in debian. Jurgen - can you have a look at the bug report and help out? regards, Etienne On Wed, Mar 19, 2014 at 2:54 PM, Paolo Cavallini cavall...@faunalia.itwrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 19/03/2014 18:48, Etienne Tourigny

Re: [Qgis-developer] QgsMapCanvas.mapRenderer() deprecated since 2.4, use mapRendererSettings()

2014-03-15 Thread Etienne Tourigny
use iface.mapCanvas().mapSettings() On Sat, Mar 15, 2014 at 7:15 AM, Radim Blazek radim.bla...@gmail.comwrote: Python plugins are now printing deprecation traceback. Hhow to fix that. I dont see any mapRendererSettings() implemented. Radim ___

Re: [Qgis-developer] [gdal-dev] Fix for QGIS 2.2+ Projection issue with OSGB36 NTv2

2014-03-14 Thread Etienne Tourigny
ship with the freely available gsb grids, in an optional package (say qgis-datum-grids)? It would be rather convenient, especially as QGIS now supports them (but does not ship with any grids yet, unless mistaken). cheers, Etienne Regards, Marco On 11.03.2014 18:23, Etienne Tourigny

Re: [Qgis-developer] [gdal-dev] Fix for QGIS 2.2+ Projection issue with OSGB36 NTv2

2014-03-13 Thread Etienne Tourigny
available gsb grids, in an optional package (say qgis-datum-grids)? It would be rather convenient, especially as QGIS now supports them (but does not ship with any grids yet, unless mistaken). cheers, Etienne Regards, Marco On 11.03.2014 18:23, Etienne Tourigny wrote: You email should

Re: [Qgis-developer] [gdal-dev] Fix for QGIS 2.2+ Projection issue with OSGB36 NTv2

2014-03-11 Thread Etienne Tourigny
You email should be sent to the qgis-developer list (this is the gdal-dev list), which I am forwarding this to. On Tue, Mar 11, 2014 at 7:44 AM, Nicholas Duggan dragons8my...@live.co.ukwrote: Hi all, I'm trying to get my fix for the OSGB36 to WGS84 using Ordnance Surveys OSTN02 (NTv2)

Re: [Qgis-developer] error building qgis debian package for 2.2

2014-03-06 Thread Etienne Tourigny
raring build The program 'dch' is currently not installed. You can install it by typing: sudo apt-get install devscripts regards, Etienne On Thu, Mar 6, 2014 at 5:04 AM, Jürgen E. j...@norbit.de wrote: Hi Etienne, On Wed, 05. Mar 2014 at 22:05:49 -0300, Etienne Tourigny wrote: I am trying

[Qgis-developer] error building qgis debian package for 2.2

2014-03-05 Thread Etienne Tourigny
I am trying to build debian packages for 2.2 in Ubuntu Raring (12.04) but there seems to be a problem with libspatialindex, although I do have libspatialindex1 and libspatialindex-dev installed The build process complains about missing /libspatialindex.so which is in /usr/lib/ $

Re: [Qgis-developer] Spatial index - what about having it automatically created and updated ?

2014-02-27 Thread Etienne Tourigny
That's a python plugin (ftools), so it may not be available to everyone. Better to do it natively (in the data provider) doing something like OGR_DS_ExecuteSQL(CREATE SPATIAL INDEX ON tablename [DEPTH N]) - untested I think it's a great idea to do this automatically with large ogr data sources

Re: [Qgis-developer] Spatial index - what about having it automatically created and updated ?

2014-02-27 Thread Etienne Tourigny
On Thu, Feb 27, 2014 at 10:56 AM, Etienne Tourigny etourigny@gmail.comwrote: That's a python plugin (ftools), so it may not be available to everyone. Better to do it natively (in the data provider) doing something like OGR_DS_ExecuteSQL(CREATE SPATIAL INDEX ON tablename [DEPTH N

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

2014-02-25 Thread Etienne Tourigny
There are going to be a few other bugs, hopefully fixed in 2.2, so eventually a point release will be worthwhile. With (semi-)automated builds it's not *that* much trouble I think. On Tue, Feb 25, 2014 at 9:40 AM, Sandro Santilli s...@keybit.net wrote: On Tue, Feb 25, 2014 at 12:09:30PM +1000,

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

2014-02-25 Thread Etienne Tourigny
because it wasn't completely fixed after all: http://hub.qgis.org/issues/9396 Best wishes, Anita On Tue, Feb 25, 2014 at 1:44 PM, Etienne Tourigny etourigny@gmail.com wrote: There are going to be a few other bugs, hopefully fixed in 2.2, so eventually a point release will be worthwhile

Re: [Qgis-developer] Master doesn't compile

2014-02-23 Thread Etienne Tourigny
Just a remark, there are quite a few new warnings (mostly about deprecated functions, but also some unused or variables or parameters) using gcc 4.7.3 Here are some, in no particular order, there might be more /data/src/qgis/qgis-etiennesky/build-debug/src/core/moc_qgsmaplayer.cxx: In static

Re: [Qgis-developer] Master doesn't compile

2014-02-23 Thread Etienne Tourigny
at 1:47 PM, Martin Dobias wonder...@gmail.com wrote: Hi Etienne On Sun, Feb 23, 2014 at 11:33 PM, Etienne Tourigny etourigny@gmail.com wrote: Just a remark, there are quite a few new warnings (mostly about deprecated functions, but also some unused or variables or parameters) using

Re: [Qgis-developer] Opening KML files.

2014-02-14 Thread Etienne Tourigny
If that's the case, you should file a bug report as kml should be supported everywhere. Did you install using the osgeo4w or standalone package? On Fri, Feb 14, 2014 at 4:33 AM, hubbatov hubba...@mail.ru wrote: libgdal was built without exif support Closed. -- View this message in

Re: [Qgis-developer] Failing tests consider blockers

2014-02-14 Thread Etienne Tourigny
Probably better to relax this for 2.2, but enforce it after release... On Fri, Feb 14, 2014 at 2:00 PM, Jürgen E. j...@norbit.de wrote: Hi Radim, On Fri, 14. Feb 2014 at 14:10:25 +0100, Radim Blazek wrote: I am suggesting to consider all failing tests as blockers. Suddenly? The tests

Re: [Qgis-developer] How to display the cursor Z info in the QGis staus bar ?

2014-02-13 Thread Etienne Tourigny
you need to install the value tool plugin On Thu, Feb 13, 2014 at 5:13 AM, Geo DrinX geodr...@gmail.com wrote: Hello all, as in object, I need to display the current cursor Z info into the QGis staus bar. Of course, I have a DTM layer in QGis list:) It just exists something that

Re: [Qgis-developer] New feature: RFC saving style and ui in Spatialite

2014-02-05 Thread Etienne Tourigny
Saving style as spatialite files would probably cause a significant file size overhead - don't all spatialite files take at least 3MB for the SRS tables? On Wed, Feb 5, 2014 at 10:18 AM, Gino Pirelli lui...@gmail.com wrote: Hi, I'm developing a new feature to save SLD and ui in Spatialite

Re: [Qgis-developer] QGIS SZIP.DLL Licensing?

2014-02-03 Thread Etienne Tourigny
What is the problem with distributing the szip.dll ? There is no agreement between qgis (or gdal) with szip/hdf group. My understanding of the info in this page http://www.hdfgroup.org/doc_resource/SZIP/ is: - In no circumstances a user can create hdf5 files with szip encoding within qgis. So

Re: [Qgis-developer] EXTERNAL: Re: QGIS SZIP.DLL Licensing?

2014-02-03 Thread Etienne Tourigny
. *From:* Etienne Tourigny [mailto:etourigny@gmail.com] *Sent:* Monday, February 03, 2014 2:00 PM *To:* Moriarty, Mark F *Cc:* *Subject:* EXTERNAL: Re: [Qgis-developer] QGIS SZIP.DLL Licensing? What is the problem with distributing the szip.dll ? There is no agreement between qgis

Re: [Qgis-developer] Lidar data into QGIS

2014-01-29 Thread Etienne Tourigny
There was some discussion about LAS format and PDAL on the GDAL mailing list a few weeks ago, there is probably some interesting info there. cheers Etienne On Tue, Jan 28, 2014 at 5:13 PM, Paolo Cavallini cavall...@faunalia.itwrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all.

Re: [Qgis-developer] QGIS and 3D

2014-01-27 Thread Etienne Tourigny
How about using matplotlib's mplot3d ? There are already a number of plugins using matplotlib. http://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html On Sat, Jan 25, 2014 at 9:30 AM, G. Allegri gioha...@gmail.com wrote: Thanks for remembering us of it. I couldn't retrieve it from the ML!

Re: [Qgis-developer] QGIS and 3D

2014-01-27 Thread Etienne Tourigny
I guess you are referring to this (French) tutorial? http://www.portailsig.org/content/qgis-representation-3d-des-couches-vectorielles-shapefiles-dits-3d-ou-shapefiles-avec-attrib On Mon, Jan 27, 2014 at 2:20 PM, gene martin.lal...@gmail.com wrote: The solution in Python reported uses

Re: [Qgis-developer] [RASTER][Feature] Applying scale and offset to raster data - funded Ifremer

2014-01-24 Thread Etienne Tourigny
I have made some comments and will test it with some netcdf files. It would be great to add this before feature freeze, but it is imperative that a test is in place, at least to make sure that it does not break anything with normal files. On Fri, Jan 24, 2014 at 1:30 PM, rldhont

Re: [Qgis-developer] Difference for transform reference system between QGIS and GDAL

2014-01-17 Thread Etienne Tourigny
Hi, you should probably raise this on the gdal-dev mailing list... On Fri, Jan 17, 2014 at 8:56 AM, Luiz Motta motta.l...@gmail.com wrote: Andre, Thank for quickly response. The question is exact this, why the QGIS read the PRJ and understands the 'towgs84', otherwise, the GDAL don't

Re: [Qgis-developer] please help me :(

2014-01-10 Thread Etienne Tourigny
also, why would you build qgis 1.7 which is an old release? On Thu, Jan 9, 2014 at 10:08 PM, otmane yazidi alaoui yazidiotm...@gmail.com wrote: i have this problem [ 0%] Built target svnversion [ 1%] Built target t2tdoc

Re: [Qgis-developer] Master segfault on close

2013-11-28 Thread Etienne Tourigny
I have the same problem, see the bug report (closed as invalid) and add any information It is somehow related to the gdal build, because if I used libgdal-dev from ubuntugis my qgis build is ok. http://hub.qgis.org/issues/8932 On Thu, Nov 28, 2013 at 5:50 PM, rldhont rldh...@gmail.com wrote:

Re: [Qgis-developer] Multi threading and background processing

2013-11-22 Thread Etienne Tourigny
My personal experience with numpy/scipy is that it is very slow for generic computation (aside from matrix operations) compared to c/c++/fortran, so I'm not sure it would be good for an efficient fire spread algorithm, with non-trivial number crunching. On Fri, Nov 22, 2013 at 5:33 AM, Martin

Re: [Qgis-developer] VTerrain plugin - version 1.0 ( QGis 1.5 - 2.0.1 )

2013-10-14 Thread Etienne Tourigny
You need to provide your osgeo user id and password. To recover your lost password go to the osgeo page at https://www.osgeo.org/user On Mon, Oct 14, 2013 at 12:52 PM, Geo DrinX geodr...@gmail.com wrote: Hello all, I have problems to upload my new version of VTerrain plugin for QGis,

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

2013-10-11 Thread Etienne Tourigny
On Fri, Oct 11, 2013 at 8:35 AM, Vincent Schut sc...@sarvision.nl wrote: On 10/11/13 11:48, Sandro Santilli wrote: On Fri, Oct 11, 2013 at 09:33:05AM +, Andreas Neumann wrote: Am 11.10.2013 09:22, schrieb Sandro Santilli: On Fri, Oct 11, 2013 at 09:13:03AM +, Duarte Carreira wrote:

Re: [Qgis-developer] test new android package

2013-10-11 Thread Etienne Tourigny
Installed on my Nexus 7 without any issues. However, cannot install any python plugins dues to lack of python. Cheers Etienne On Fri, Oct 11, 2013 at 5:42 AM, Roel Vanhout roel.vanh...@gmail.comwrote: Tried on a Nexus 10 tablet, install worked OK. Only 'issue' is cosmetic; after the message

Re: [Qgis-developer] install instructions

2013-09-27 Thread Etienne Tourigny
On Fri, Sep 27, 2013 at 4:11 PM, stevenhorner ste...@stevenhorner.comwrote: I had similar problems installing on raring, like you I had both listed, but now use these instructions disable any other source you may have added: sudo apt-get install python-software-properties sudo

Re: [Qgis-developer] install instructions

2013-09-27 Thread Etienne Tourigny
On Fri, Sep 27, 2013 at 4:25 PM, stevenhorner ste...@stevenhorner.comwrote: Etienne Tourigny-3 wrote On Fri, Sep 27, 2013 at 4:11 PM, stevenhorner lt; steven@ gt;wrote: I had similar problems installing on raring, like you I had both listed, but now use these instructions disable

Re: [Qgis-developer] Add yourself to the QGIS Contributor Map

2013-09-21 Thread Etienne Tourigny
where can we see the actual, updated map? The source is in the master tree, but I have not seen in in the QGIS about dialogs. cheers On Fri, Sep 20, 2013 at 4:54 AM, Tim Sutton li...@linfiniti.com wrote: Hi On Fri, Sep 20, 2013 at 1:55 AM, Etienne Tourigny etourigny@gmail.com wrote

Re: [Qgis-developer] Infrastructure for plugin settings

2013-09-21 Thread Etienne Tourigny
Denis, I like the idea of having a dictionnary for the values a settings can have. Do you think that my work on a tree view for all settings [1] can be merged with yours into core c++? There could be 2 ways to open a settings dialog, one for all settings like I have done, and one for just a

Re: [Qgis-developer] Add yourself to the QGIS Contributor Map

2013-09-21 Thread Etienne Tourigny
That's pretty cool! If we can include this page in a new tab in the about dialog that would be nice. cheers Etienne On Sat, Sep 21, 2013 at 8:44 PM, Tim Sutton li...@linfiniti.com wrote: Hi On Sat, Sep 21, 2013 at 8:43 PM, Etienne Tourigny etourigny@gmail.com wrote: where can we

Re: [Qgis-developer] cpt-city missing colour ramps?

2013-09-20 Thread Etienne Tourigny
...@faunalia.itwrote: On 2013-09-20 02:54, Etienne Tourigny wrote: I have tried both local install and install from ubuntugis-unstable (2.0.1 in Linux Mint 15-raring) and the color ramps seem ok. we spotted this on Windows machines. UNfortuynately this was during a short workshop, and could

Re: [Qgis-developer] cpt-city missing colour ramps?

2013-09-19 Thread Etienne Tourigny
I will look into this today. which package(s)/platform(s) does this problem appear? On Wed, Sep 18, 2013 at 6:17 AM, Paolo Cavallini cavall...@faunalia.itwrote: Hi Etienne, Juergen, any chance for a last minute fix to this? Looks simple, maybe just a packaging bug. Thanks.

Re: [Qgis-developer] cpt-city missing colour ramps?

2013-09-19 Thread Etienne Tourigny
). regards, Etienne On Thu, Sep 19, 2013 at 8:51 PM, Etienne Tourigny etourigny@gmail.comwrote: I will look into this today. which package(s)/platform(s) does this problem appear? On Wed, Sep 18, 2013 at 6:17 AM, Paolo Cavallini cavall...@faunalia.itwrote: Hi Etienne, Juergen, any chance

Re: [Qgis-developer] Infrastructure for plugin settings

2013-09-05 Thread Etienne Tourigny
I have implemented something like this some time ago, based on a gui from QT - Settings Editor. I am not sure if I never commited it or if someone removed it. I will try to find the code and submit a pull request. Etienne On Thu, Sep 5, 2013 at 5:12 AM, Victor Olaya vola...@gmail.com wrote:

Re: [Qgis-developer] Infrastructure for plugin settings

2013-09-05 Thread Etienne Tourigny
, Etienne Tourigny wrote: I have implemented something like this some time ago, based on a gui from QT - Settings Editor. I am not sure if I never commited it or if someone removed it. I will try to find the code and submit a pull request. Etienne On Thu, Sep 5, 2013 at 5:12 AM

Re: [Qgis-developer] Pull request responsibility

2013-09-05 Thread Etienne Tourigny
On Thu, Sep 5, 2013 at 1:44 PM, Sandro Santilli s...@keybit.net wrote: On Thu, Sep 05, 2013 at 06:15:18PM +0200, Matthias Kuhn wrote: Marco is looking for an option to enable these notifications. In case there's nothing I think we should open a ticket on github's github page (I just guess

Re: [Qgis-developer] ImportError: No module named Qsci

2013-09-04 Thread Etienne Tourigny
sorry for sending the message too early. I have installed python-qscintilla2 and qgis loads without error. It seems to me it would be better to detect for Qsci ? cheers Etienne On Wed, Sep 4, 2013 at 11:33 AM, Etienne Tourigny etourigny@gmail.comwrote: I have just pulled recent code

[Qgis-developer] ImportError: No module named Qsci

2013-09-04 Thread Etienne Tourigny
I have just pulled recent code from master, built and compiled and I have an error from sextant (R) ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] FIX BUG #8473 Cannot rename layers in composer legend

2013-08-19 Thread Etienne Tourigny
you should create a pull request On Mon, Aug 19, 2013 at 9:31 AM, rldhont rldh...@gmail.com wrote: Hi all, The bug 8473 'Cannot rename layers in composer legend' is marked as Blocker. http://hub.qgis.org/issues/**8473 http://hub.qgis.org/issues/8473 I have created a branch to supply a

Re: [Qgis-developer] Ubuntu QGIS Master package

2013-08-06 Thread Etienne Tourigny
then you should be using the qgis builds that link to ubuntugis-unstable http://hub.qgis.org/projects/quantum-gis/wiki/Download#263-Master see section 2.6.3.2 ubuntugis On Tue, Aug 6, 2013 at 4:12 PM, Jeremy Palmer jpal...@linz.govt.nz wrote: Hi Jürgen, Right. Is there anything wrong with

Re: [Qgis-developer] update plugin to QGIS 2.0

2013-08-02 Thread Etienne Tourigny
285, in sampleRaster20 success, data = layer.dataProvider().identify(QgsPoint(x,y), QgsRaster.IdentifyFormatValue ).results() ValueError: need more than 1 value to unpack Do you have an idea for this, too? Thanks Otto Am Thu, 1 Aug 2013 16:00:08 -0300 schrieb Etienne Tourigny etourigny

Re: [Qgis-developer] update plugin to QGIS 2.0

2013-08-02 Thread Etienne Tourigny
On Fri, Aug 2, 2013 at 9:37 AM, Matthias Kuhn matthias.k...@gmx.ch wrote: Hi On Fre 02 Aug 2013 13:50:08 CEST, Etienne Tourigny wrote: for each band, if the point is outside of the raster extent or is nodata, the value will be a null QVariant (i.e. QVariant()) which in python is None

Re: [Qgis-developer] update plugin to QGIS 2.0

2013-08-02 Thread Etienne Tourigny
On Fri, Aug 2, 2013 at 10:22 AM, Matthias Kuhn matthias.k...@gmx.ch wrote: On Fre 02 Aug 2013 15:13:04 CEST, Etienne Tourigny wrote: On Fri, Aug 2, 2013 at 9:37 AM, Matthias Kuhn matthias.k...@gmx.ch wrote: Hi On Fre 02 Aug 2013 13:50:08 CEST, Etienne Tourigny wrote: for each band

Re: [Qgis-developer] update plugin to QGIS 2.0

2013-08-02 Thread Etienne Tourigny
= layer.dataProvider().identify(QgsPoint(x,y),QgsRaster.IdentifyFormatValue).results() ? Thanks again Otto Am Fri, 2 Aug 2013 08:50:08 -0300 schrieb Etienne Tourigny etourigny@gmail.com: from the api http://www.qgis.org/api/classQgsRasterIdentifyResult.html#a8537d25fdff215e7e9650b71a0a16783

Re: [Qgis-developer] update plugin to QGIS 2.0

2013-08-01 Thread Etienne Tourigny
Have a look at the source of the value tool plugin, it calls the identify() method and has been updated to 2.0 api. Etienne On Thu, Aug 1, 2013 at 1:58 PM, Otto Dassau das...@gbd-consult.de wrote: Hi, I want to update a plugin from 1.8 to QGIS 2.0 and it throws following error: Traceback

Re: [Qgis-developer] QGIS compilation in Linux

2013-07-26 Thread Etienne Tourigny
On Thu, Jul 25, 2013 at 1:44 AM, agadisugan...@bel.co.in wrote: Hi All, Im compiling the Qgis1.8 in RHEL 5, all the dependencies I have compiled, so now compiling the source code of QGIS, while doing that as per compilation instruction when I gave ccmake .., everything went properly

Re: [Qgis-developer] Bugs in QGIS Master

2013-07-25 Thread Etienne Tourigny
On Thu, Jul 25, 2013 at 3:28 AM, Oscar van Vliet ovv...@gmail.com wrote: Dear QGIS developers, Thanks for all the hard work, I have been using the almost 2.0 builds with some satisfaction. Unfortunately, all is not well. I am using yesterday's Master build, and there seems to be a few bugs

Re: [Qgis-developer] OpenLayers plugin

2013-07-18 Thread Etienne Tourigny
There is a working version (thanks to Richard Duivenvoorde) available at http://www.qgis.nl/2013/06/30/english-temporary-fix-for-openlayers-plugin/?lang=en Why not upload it now on plugins.qgis.org (for qgis 1.9 only), and then upload the new (improved) plugin when ready? cheers Etienne On Thu,

Re: [Qgis-developer] Raster tools support for GDAL 1.10 in QGIS 2?

2013-07-18 Thread Etienne Tourigny
There are probably a number of options that are not recognized due tho this bug, which has been partially fixed. Can you please file a generic bug report and add any other missing elements? cheers Etienne On Thu, Jul 18, 2013 at 1:45 PM, Cline, Royce L. rcl...@nd.gov wrote: Is the intent to

Re: [Qgis-developer] get mean of pixel values within defined area around current mouse position

2013-07-03 Thread Etienne Tourigny
probably A would be slow because of the external call to gdalwarp On Wed, Jul 3, 2013 at 8:58 AM, Fred Lehodey leho...@gmail.com wrote: Hi, I have no idea in terms of performance but I would bet on B option in your case. Thanks to give feedback. Regards. On Wed, Jul 3, 2013 at 8:36 AM,

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

2013-06-25 Thread Etienne Tourigny
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 found that the 'Filter Files' feature either

Re: [Qgis-developer] SIP API Update

2013-06-14 Thread Etienne Tourigny
I have done some more fixing of GdalTools. What remains are the algorithms in the Conversion and Analysis menus - most work left is tedious work changing QString-str and QStringList-list help and testing would be appreciated. Any volunteers? Etienne On Mon, Jun 3, 2013 at 6:14 PM, Etienne

Re: [Qgis-developer] SIP API Update

2013-06-06 Thread Etienne Tourigny
, Jun 5, 2013 at 7:09 AM, Etienne Tourigny etourigny@gmail.comwrote: On Tue, Jun 4, 2013 at 3:40 PM, Etienne Tourigny etourigny@gmail.com wrote: I just ran into another problem... how do you pass a list (of strings) to a QT function which requires a QStringList (which

Re: [Qgis-developer] SIP API Update

2013-06-04 Thread Etienne Tourigny
I just ran into another problem... how do you pass a list (of strings) to a QT function which requires a QStringList (which is not available anymore). File /home/softdev/share/qgis/python/plugins/GdalTools/tools/GdalTools_utils.py, line 208, in getRasterFiles workDir.setNameFilters( filter )

Re: [Qgis-developer] SIP API Update

2013-06-04 Thread Etienne Tourigny
How do we handle translated strings with arguments? QString::arg() is not available. Not sure if the following would work? The string syntax is slightly different and would require re-translation, but at least works in English before: self.tr( %1 not created. ).arg( outFn ) after: self.tr( %s

Re: [Qgis-developer] SIP API Update

2013-06-04 Thread Etienne Tourigny
On Tue, Jun 4, 2013 at 3:40 PM, Etienne Tourigny etourigny@gmail.comwrote: I just ran into another problem... how do you pass a list (of strings) to a QT function which requires a QStringList (which is not available anymore). File /home/softdev/share/qgis/python/plugins/GdalTools/tools

Re: [Qgis-developer] [Qgis-user] Another compiling error at 48 percent

2013-06-03 Thread Etienne Tourigny
the python-devel package or similar, or there is a version mismatch in your python packages... (missing /usr/lib/i386-linux-gnu/libpython2.7.so) Thank you very much! Best regards, Pedro From: Etienne Tourigny most probably a local problem... I can build

Re: [Qgis-developer] SIP API Update

2013-06-03 Thread Etienne Tourigny
The following core plugins do not load properly: plugin_installer GdalTools Do the respective devs plan to fix this? I could help out a bit with GdalTools, but I don't know anything about the plugin_installer plugin to really help. Cheers Etienne On Thu, May 30, 2013 at 3:12 AM, Nathan Woodrow

Re: [Qgis-developer] SIP API Update

2013-06-03 Thread Etienne Tourigny
there and be linked from your blog(s). Regards, Nathan On Tue, Jun 4, 2013 at 8:42 AM, Borys Jurgiel li...@borysjurgiel.plwrote: Dnia poniedziałek, 3 czerwca 2013 o 23:14:26 Etienne Tourigny napisał(a): The following core plugins do not load properly: plugin_installer GdalTools Do the respective

Re: [Qgis-developer] SIP API Update

2013-06-03 Thread Etienne Tourigny
AM, Etienne Tourigny etourigny@gmail.comwrote: On Mon, Jun 3, 2013 at 7:51 PM, Nathan Woodrow madman...@gmail.comwrote: Yeah Borys or myself will take care of the plugin installer. Marco is going to review the C++ part of the installer and merge that into master. Once that is done I

Re: [Qgis-developer] SIP API Update

2013-05-30 Thread Etienne Tourigny
so plugin authors would potentially need to maintain 2 versions of their plugins, on for qgis = 1.8 and one for qgis =2.0. This is probably easier than adding a bunch of if statements where sip1 and spi2 need different syntax I guess, cheers Etienne On Thu, May 30, 2013 at 6:07 AM, Nathan

Re: [Qgis-developer] SIP API Update

2013-05-30 Thread Etienne Tourigny
On Thu, May 30, 2013 at 3:12 AM, Nathan Woodrow madman...@gmail.com wrote: Hey all, I have decided to manage the SIP API update process so that we can have it done by 2.0. This is an important update as leaving it for later will break every plugin yet again at later date which just leaves a

Re: [Qgis-developer] SIP API Update

2013-05-30 Thread Etienne Tourigny
, May 31, 2013 at 12:30 PM, Etienne Tourigny etourigny@gmail.com wrote: On Thu, May 30, 2013 at 3:12 AM, Nathan Woodrow madman...@gmail.comwrote: Hey all, I have decided to manage the SIP API update process so that we can have it done by 2.0. This is an important update as leaving

[Qgis-developer] changes to raster and vector file loading for files with sublayers

2013-05-28 Thread Etienne Tourigny
Hi, I have just pushed a commit to fix the loading of raster and vector files with sublayers. I have also added 2 files to test this in the testdata folder. This may cause some bug(s) that I have not tested for, especially regarding non-file based data sources. cheers Etienne

Re: [Qgis-developer] State of Spatialite 4.0 and GDAL 1.10 for QGIS 2.0?

2013-05-21 Thread Etienne Tourigny
IMHO it would be great to make sure latest spatialite and GDAL are tested and packaged with 2.0 in Mac, osgeo4w and ubuntugis-unstable I personally use gdal-1.10 with qgis master without any problems (Linux Mint 14) Etienne On Tue, May 21, 2013 at 4:14 PM, Larry Shaffer

  1   2   3   4   >