[Qgis-developer] big ECW problem

2013-02-05 Thread PIERRE Sylvain
Hi, I'm trying to load a big ecw (36 go) into Qgis (1.8) The file is loading but canvas doesn't display anything (still white) A french user told me having similar problems with ecw files larger than 4 Go still QGis 1.7 release He has solved these problem with downloading erdas sdk ecw and

[Qgis-developer] How to get Provider default values for each attribute using Python

2013-02-05 Thread Alexandre Neto
I'm not sure if this is the right place to put this kind of questions, has all I see in here are much more complex debates about the actual developping of QGIS. I'm not very proficient neither with Python or QGIS API, but i'm trying to create a plugin that allows one to transform a selected

[Qgis-developer] include matplotlib in win standalone installer

2013-02-05 Thread Josef K
How can I include matplotlib in a qgis-master standalone installer for windows using the procedure described here: http://linfiniti.com/2012/05/quick-tip-build-the-latest-qgis-nightly-build-as-a-standalone-installer-for-windows/ thanks in advance, Josef

Re: [Qgis-developer] include matplotlib in win standalone installer

2013-02-05 Thread Jürgen E . Fischer
Hi Josef K, On Tue, 05. Feb 2013 at 14:23:08 +0100, Josef K wrote: How can I include matplotlib in a qgis-master standalone installer for windows using the procedure described here:

Re: [Qgis-developer] include matplotlib in win standalone installer

2013-02-05 Thread Josef K
Thank you Jürgen! From: Jürgen E. Fischer j...@norbit.de To: qgis-developer@lists.osgeo.org Date: Tue, 5 Feb 2013 14:57:55 +0100 Subject: Re: [Qgis-developer] include matplotlib in win standalone installer Hi Josef K, On Tue, 05. Feb 2013 at 14:23:08 +0100, Josef K wrote: How can I

Re: [Qgis-developer] big ECW problem

2013-02-05 Thread Régis Haubourg
Hi Sylvain, I have no problem with 92 Go ecw... 1.8 is sometimes a bit slower than 1.7.4, it' true.. Did you play with stretching options? Régis -- View this message in context: http://osgeo-org.1560.n6.nabble.com/big-ECW-problem-tp5032161p5032241.html Sent from the Quantum GIS - Developer

[Qgis-developer] new vector api select features

2013-02-05 Thread Richard Duivenvoorde
Hi Devs, I used the following in a python plugin to select features: self.provider.select(self.provider.attributeIndexes(), mapCanvasExtent, True, True) is there somewhere an example how to do this in the new api using QgsFeatureIterator QgsOgrProvider::getFeatures( const QgsFeatureRequest

Re: [Qgis-developer] new vector api select features

2013-02-05 Thread Martin Dobias
Hi Richard On Tue, Feb 5, 2013 at 7:27 PM, Richard Duivenvoorde rdmaili...@duif.net wrote: Hi Devs, I used the following in a python plugin to select features: self.provider.select(self.provider.attributeIndexes(), mapCanvasExtent, True, True) is there somewhere an example how to do this

[Qgis-developer] MapBox access

2013-02-05 Thread Jody Garnett
Quick question about the support for tiled servers in QGIS. My first question is if data published by map box is available for use in QGIS (not sure if this is permissible under the license they provide, the website tends to talk only about javascript access). And the second one is how you

[Qgis-developer] Plugin update on a plugin I don't own

2013-02-05 Thread Olivier Dalang
Hi ! I've been doing some work on the Improved Polygon Capturing plugin. It now allows to enter the angle numerically also (along with some other enhancements). I've contacted the original author who seemed enthusiast about the changes, but now I've got no news of him since about one month... So

Re: [Qgis-developer] How to get Provider default values for each attribute using Python

2013-02-05 Thread vinayan
Hi Alexandre, I recently used provider default values in a plugin like this.. provider = layer.dataProvider() f = QgsFeature() #On the Fly reprojection. if layerCRSSrsid != projectCRSSrsid: geom.transform(QgsCoordinateTransform(projectCRSSrsid,

Re: [Qgis-developer] Labeling: data-defined fields shifted after new vector API?

2013-02-05 Thread Larry Shaffer
Hi, martin Dobias wrote: The source of the problem is that before, it was possible to have holes in attribute field indices: e.g. three attributes with indices 0,2,3. Whether such holes appeared depended on the provider being used. The support for holes has been removed for performance and