[Qgis-developer] Auto snapping in edit mode

2013-05-21 Thread Ramon Andiñach
Hi, I'm noticing an odd behaviour in recent 1.9 builds at work. When I edit a layer it automatically snaps to the layer that I'm editing. Can anyone else see this? Is it intentional? How do you stop QGIS doing this? This is probably some new setting that I missed, but I can't work out what it

[Qgis-developer] Python suport even closer

2013-05-21 Thread Marco Bernasocchi
hi guys, I managed to get pyqgis to load on android, now I m encountring a sip api v8.0 vs v8.1 mismatch. see [1] has any body an idea? anyway, yay i see the light!!! [1] http://wp.me/p2s3uH-eh Marco Bernasocchi (mobile) http://opengis.ch ___

Re: [Qgis-developer] Python suport even closer

2013-05-21 Thread Marco Bernasocchi
mmm looks like I should have researched a bit more. well i guess i ve tho change sip version :( Marco Bernasocchi (mobile) http://opengis.ch On May 21, 2013 6:14 PM, Marco Bernasocchi ma...@bernawebdesign.ch wrote: hi guys, I managed to get pyqgis to load on android, now I m encountring a sip

[Qgis-developer] plugin approval

2013-05-21 Thread Thorp, Kelly
Dear Team: Last week, I uploaded a new version of Geospatial Simulation (v1.1) to the repository. A manuscript on the software is currently in peer-review, so it would be helpful for the reviewers to have access to the latest code. Can I ask admin to take a look soon and approve?

[Qgis-developer] saving layer style crashes QGIS nightly build

2013-05-21 Thread Cline, Royce L.
With the last two nightly builds from Dakota Cartography, if I try to save a layer style to a qml file for a shape file, GGIS crashes. This works with the nightly build from May 16, so it appears to be a recently introduced bug. Is anybody else having this problem? Royce

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

2013-05-21 Thread Larry Shaffer
Hi, Recently William upgraded his Mac support frameworks to GDAL 1.10 and Spatialite 4.0 [0]. However, it appears that QGIS core code may not be ready for Spatialite 4.0 [1]. Is anyone using QGIS master branch with Spatialite 4.0 successfully? If Spatialite 4.0 is still not supported yet, is

Re: [Qgis-developer] saving layer style crashes QGIS nightly build

2013-05-21 Thread Larry Shaffer
Hi Royce, On Tue, May 21, 2013 at 12:46 PM, Cline, Royce L. rcl...@nd.gov wrote: With the last two nightly builds from Dakota Cartography, if I try to save a layer style to a qml file for a shape file, GGIS crashes. This works with the nightly build from May 16, so it appears to be a recently

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

2013-05-21 Thread Jürgen E . Fischer
Hi Larry, On Tue, 21. May 2013 at 13:14:00 -0600, Larry Shaffer wrote: Is anyone using QGIS master branch with Spatialite 4.0 successfully? The submitter apparently is - it's just that it doesn't seem to work with empty tables. Same questions for GDAL 1.10. Are there issues within the QGIS

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

2013-05-21 Thread Tim Sutton
Hi On Tue, May 21, 2013 at 9:14 PM, Larry Shaffer lar...@dakotacarto.com wrote: Hi, Recently William upgraded his Mac support frameworks to GDAL 1.10 and Spatialite 4.0 [0]. However, it appears that QGIS core code may not be ready for Spatialite 4.0 [1]. Is anyone using QGIS master branch

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

Re: [Qgis-developer] plugin approval

2013-05-21 Thread Tim Sutton
Hi Kelly I've approved it - nice work! I would be nice to update your plugin so that the menu items fall under the vector or analysis menus as is now becoming SOP from QGIS 2.0. Regards Tim On Tue, May 21, 2013 at 7:15 PM, Thorp, Kelly kelly.th...@ars.usda.gov wrote: Dear Team: Last week,

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

2013-05-21 Thread Cline, Royce L.
The other issue I have had with SpatiaLite 4 is with DB Manager. DB Manager does not recognize geometry for a table in a Spatialite 4 created database (new spatial metadata). Displays the same as a table without geometry. If the database was created with Spatialite 3 or converted to a version 3

Re: [Qgis-developer] saving layer style crashes QGIS nightly build

2013-05-21 Thread Ramon Andiñach
Quick question. Does loading a style crash it too? -ramon. On 22/05/2013, at 03:31 , Larry Shaffer wrote: Hi Royce, On Tue, May 21, 2013 at 12:46 PM, Cline, Royce L. rcl...@nd.gov wrote: With the last two nightly builds from Dakota Cartography, if I try to save a layer style to a qml

[Qgis-developer] Dataprovider.select() doesnt exist

2013-05-21 Thread Carles Boïls Gisbert
Hi everyone, I am using QGIS 1.9 Master in Ubuntu 12.10. I am trying to develop a plugin and need to extract data from attributes tables of the .shp. I created a GUI for the user can Open shp from the computer and the code recognize the shp file and I can get the name of the .shp, name of

Re: [Qgis-developer] Dataprovider.select() doesnt exist

2013-05-21 Thread Nathan Woodrow
We removed the select() method in the new version to make way for multithreading in the future. You can translate you code into this: for feature in lnk_shp.getFeatures(): for attr in feature.attributes(): attr_list.append(attr.toString()) On Wed, May 22, 2013 at 9:18 AM, Carles