[Qgis-developer] Bug tracking

2013-07-12 Thread Daniel
inner choose the "right issues" (bugs/features) that really need atention. I am skilled in C, C++ and Python and ready to try to contribute with QGis community. I look forward to hearing from you, the "right directions" that I shou

[Qgis-developer] Creating a spatialite layer in a python plugin

2013-07-12 Thread Daniel
BNA) GPS eXchange Format [GPX] [OGR] (*.gpx *.GPX) S-57 Base file [OGR] (*.000 *.000) Keyhole Markup Language [KML] [OGR] (*.kml *.KML) Mapinfo File [OGR] (*.mif *.tab *.MIF *.TAB) What I am missing? Thanks in advance. -- Daniel Vaz ___ Qgis-develo

[Qgis-developer] bugfix #8003

2013-07-14 Thread Daniel
This commit closes the issue 8003 https://github.com/qgis/Quantum-GIS/commit/9e2c4a09 http://hub.qgis.org/issues/8003 -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] Bugfix #7743

2013-07-14 Thread Daniel
http://hub.qgis.org/issues/7743 This bug was fixed in pull request https://github.com/qgis/Quantum-GIS/pull/571/files Waiting for merge with master. Thanks in advance -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http

Re: [Qgis-developer] Creating a spatialite layer in a python plugin

2013-07-15 Thread Daniel
e (if user don't care about error handling, set to None) [ "SPATIALITE=YES" , ] => database options. (here is the trick) Also, there is a class http://www.qgis.org/api/classQgsVectorLayerImport.html But, I didn't have success in

Re: [Qgis-developer] Creating a spatialite layer in a python plugin

2013-07-15 Thread Daniel
'SQLite', False, None, ["SPATIALITE=YES",] ) if error != QgsVectorFileWriter.NoError:

[Qgis-developer] web sites offline?

2013-07-21 Thread Daniel
I can't access qgis.org and hub.qgis.org Anybody can confirm? -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] License

2013-07-24 Thread Daniel
Hi all, About GPLv3, is there any advance in this issue http://hub.qgis.org/issues/3789? Thanks in advance -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] websites

2013-08-17 Thread Daniel
Today I can't access qgis.org and hub.qgis.org Anybody else? -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] websites

2013-08-17 Thread Daniel
welcome back On Sat, Aug 17, 2013 at 9:22 AM, Kari Salovaara wrote: > and no contact to plugins (2.0 testing) > server has summer holidays ??? > > Kari > > > On 17.08.2013 15:03, Daniel wrote: > > Today I can't access qgis.org and hub.qgis.org > &g

Re: [Qgis-developer] Plugin (C++) Upgrade install - anybody there?

2013-09-04 Thread Daniel
_ > Qgis-developer mailing list > Qgis-developer@lists.osgeo.org > http://lists.osgeo.org/mailman/listinfo/qgis-developer > -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Python: Union selected polygons in a layer

2013-10-05 Thread Daniel
ogr geometry >geoms = ogr.CreateGeometryFromWkb(geom.asWkb()) >myunion = myunion.Union(geoms) > > Is there a comparable solution with PyQGIS ? > > > > > -- > View this message in context: > http://osgeo-org.1560.x6.nabble.com/Python-Union-selecte

Re: [Qgis-developer] Python: Select features that touch other features

2013-10-05 Thread Daniel
r mailing list > Qgis-developer@lists.osgeo.org > http://lists.osgeo.org/mailman/listinfo/qgis-developer > -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Python: Select features that touch other features

2013-10-05 Thread Daniel
vious email without conclude it. This completes the previous one. Hope it helps On Sat, Oct 5, 2013 at 8:45 PM, Daniel wrote: > Hi Andreas, > > First create a spatial index over layer features (I got this code from > ftools_utils.py) > > # Convinience function to create a

Re: [Qgis-developer] Python: Select features that touch other features

2013-10-05 Thread Daniel
Using map() is the pythonic way Maybe ftools need an upgrade :) Thanks for the tip On Sat, Oct 5, 2013 at 8:53 PM, Nathan Woodrow wrote: > > On Sun, Oct 6, 2013 at 9:45 AM, Daniel wrote: > >> def createIndex( provider ): >> feat = QgsFeature() >>

Re: [Qgis-developer] Layer combo box

2013-10-05 Thread Daniel
Very Nice +1 -- Daniel Vaz ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] New QGis project, application : version is empty and wms layer invalid

2013-10-06 Thread Daniel
, "test", "wms", true); > if (!rlayer->isValid()) qDebug() <<"invalid wms"; // > <<- It is invalid ! > > QgsMapLayerRegistry::instance()->addMapLayer(rlayer); > > mapCanvas->layers().append(rlayer); > mapCanvas->zoomScale(1/1)

Re: [Qgis-developer] Tr : New QGis project, application : version is empty and wms layer invalid

2013-10-06 Thread Daniel
It works for me! QString uri = "crs=EPSG:4326&featureCount=10&format=image/gif&layers=osm_auto:all&styles=&url= http://129.206.228.72/cached/osm";; QgsRasterLayer *rlayer = new QgsRasterLayer(uri, "layer_name", "wms", false); qDebug() << "layer is valid:" << rlayer->isValid(); c

Re: [Qgis-developer] Does spatial index improve performance using the class QgsGeometry.intersects()?

2013-11-04 Thread Daniel
ntersect polygon > file.write("\t" + "intersect polygon: " + str(polygon.id()) + > "\n") > > # end time > end_time = time.time() > > file.write("\n" + "Execution time: " + str(end_time - start_time) + &qu

[Qgis-developer] QGIS allocation error after upgrade to 1.8.0

2012-07-09 Thread Daniel Lee
ps up briefly but dies as soon as the process is aborted. I'm also not able to find the library in question - does anybody know of a way of fixing this? Thanks a bunch! Daniel -- B.Sc. Daniel Lee Geschäftsführung für Forschung und Entwicklung ISIS - International Solar Information Solutions

Re: [Qgis-developer] [Qgis-user] Cast your vote: Default icon theme for QGIS 2.0

2012-07-10 Thread Daniel Lee
upport style unification across QGIS and GRASS - it would make it easier to jump back and forth and perhaps encourage the use of the GRASS plugin more. Best, Daniel -- B.Sc. Daniel Lee Geschäftsführung für Forschung und Entwicklung ISIS - International Solar Information Solutions GbR Vertreten durc

Re: [Qgis-developer] QGIS allocation error after upgrade to 1.8.0

2012-07-10 Thread Daniel Lee
e out my system pckages, wherever they are, and that without deleting my plugins. I tried that but got the same problem again. Afterwards, I deleted the .qgis folder in my home directory, but that didn't change anything either. Perhaps I've understood you wrong? Did I do that right?

Re: [Qgis-developer] [Qgis-user] Cast your vote: Default icon theme for QGIS 2.0

2012-07-10 Thread Daniel Lee
, but *different* from the generic QGIS "Add Vector" and "Add raster". > > Micha > > > > On 07/10/2012 01:50 PM, Anita Graser wrote: > > You can get a good overview over Robert's work at > http://robert.szczepanek.pl/icons.php > > Anita &g

[Qgis-developer] Display raster layer on own Map Canvas

2012-09-19 Thread Daniel Klich
points = [ [ QgsPoint(-10,-10), QgsPoint(0,10), QgsPoint(10,-10) ] ] r.setToGeometry(QgsGeometry.fromPolygon(points), None) self.canvas.setCurrentLayer (self.layer) self.canvas.setVisible(True); self.canvas.refresh() best regard

[Qgis-developer] installing on Citrix.

2011-12-23 Thread Daniel C
Hello all, Does anyone out there have any experience with making QGIS available to many users through a Citrix Web metaframe? Trying to avoid doing mulitple local installs. Anyone done anything similar or had any experience? Any common problems/things to look out for? Or is it not even recommen

Re: [Qgis-developer] installing on Citrix.

2011-12-23 Thread Daniel C
ense costs...! Dan. On 23 December 2011 09:20, Andreas Neumann wrote: > I don't know about Citrix, but we succesfully use QGIS in a Terminal-Server > Environment. > > Andreas > > > On Fri, 23 Dec 2011 09:13:32 +, Daniel C wrote: >> >> Hello all, >

[Qgis-developer] cannot run/ error after building from source

2014-06-01 Thread Daniel Scholten
: _ZN17QgsLayerTreeGroup16staticMetaObjectE This happens with a local build/ installation, while there is another system wide installation of qgis. I use Linux Mint 13. Any suggestions what to do? Thanks Daniel ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] error after building from source

2014-06-01 Thread Daniel Scholten
ls plugin. The required "osgeo [python-gdal]" module is missing.". However, QGIS starts and in the plugin manager with GdalTools everything seems to be ok, whereas processing plugin is marked broken and the reinstall button is disabled. Any suggestions what to do? Daniel I attac

Re: [Qgis-developer] error starting qgis (built from source)

2014-07-21 Thread Daniel Scholten
it's exactly the same with Ubuntu. Best wishes Daniel On 05/06/2014 12:59 PM, Daniel Scholten wrote: > On 05/05/2014 07:16 PM, Larry Shaffer wrote: >> Hi, >> >> On Mon, May 5, 2014 at 10:46 AM, Yves Jacolin > <mailto:yjaco...@free.fr>> wrote: >> >>

Re: [Qgis-developer] Commercial ads on qgis.org

2014-07-29 Thread Daniel Scholten
already solves the issue. Best wishes Daniel ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] Documentation for QGIS server

2014-12-10 Thread Daniel Scholten
], but did not achive to install QGIS-server successfully locally on my Windows 7 machine. I also did not found any API documentation. Can somebody give me a hint where to find some more documentation? I am also interested in book recommondations. Best wishes Daniel [1] http://hub.qgis.org/wiki

Re: [Qgis-developer] Documentation for QGIS server

2014-12-12 Thread Daniel Scholten
Thanks Giovanni, Andreas and Alessandro for your help! I got the QGIS-Server working now and have an idea about how I can do what I want. Best wishes Daniel On 2014-12-11 13:24, Alessandro Pasotti wrote: 2014-12-11 10:47 GMT+01:00 Andreas Neumann : Hi Daniel, Am 2014-12-11 08:51, schrieb

Re: [Qgis-developer] Enabling map rotation in master

2015-01-09 Thread Daniel Kastl
another setting? > > You just need to enable the checkbox in the "General" options and restart QGIS. Best, Daniel -- Georepublic UG & Georepublic Japan eMail: daniel.ka...@georepublic.de Web: http://georepublic.info ___ Qgis-dev

[Qgis-developer] Attribute names and Strings are not displayed correctly

2015-02-24 Thread Daniel Lincke
Hi, I guess this is not a bug but some problem with external libraries. In my qgis (using Ubuntu 14.10) and have the problem since a few weeks. I don't know when it started exactly,but I guess it was some update. Whenever I look at the attribute table or at the attribute dialog for a shape,

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-05 Thread Daniel Scholten
; [...]". After QGIS startup in the plugin manager with GdalTools everything seems to be ok, whereas processing plugin is marked broken and the reinstall button is disabled. Any suggestions what to do? Daniel ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] error starting qgis (built from source)

2014-05-06 Thread Daniel Scholten
On 05/05/2014 07:16 PM, Larry Shaffer wrote: > Hi, > > On Mon, May 5, 2014 at 10:46 AM, Yves Jacolin <mailto:yjaco...@free.fr>> wrote: > > Le lundi 5 mai 2014, 15:57:06 Daniel Scholten a écrit : > >[..] > > > > I've had the same p

[QGIS-Developer] Mitigating security risks of the Official Plugin Repository

2018-01-24 Thread Daniel Silk
/pyplugin_installer/installer_data.py#L228 So is there any other way to remove the Official Plugin Repository or limit the plugins that we allow users to view and install? Thanks Daniel This message contains information, which may be in confidence and may be subject to

Re: [QGIS-Developer] Mitigating security risks of the Official Plugin Repository

2018-01-25 Thread Daniel Silk
From: Luigi Pirelli [lui...@gmail.com] Sent: Thursday, January 25, 2018 10:38 PM To: Daniel Silk Cc: qgis-developer@lists.osgeo.org Subject: Re: [QGIS-Developer] Mitigating security risks of the Official Plugin Repository > as you can see reading the code in > https://github.com/qgis/QGI

Re: [QGIS-Developer] Mitigating security risks of the Official Plugin Repository

2018-01-25 Thread Daniel Silk
From: Luigi Pirelli [lui...@gmail.com] Sent: Friday, January 26, 2018 12:24 PM To: Daniel Silk Cc: qgis-developer@lists.osgeo.org Subject: Re: [QGIS-Developer] Mitigating security risks of the Official Plugin Repository > btw, di d you try to override with a custom function with fil

Re: [QGIS-Developer] Mitigating security risks of the Official Plugin Repository

2018-01-27 Thread Daniel Silk
From: Borys Jurgiel [mailto:li...@borysjurgiel.pl] Sent: Friday, 26 January 2018 9:19 p.m. To: qgis-developer@lists.osgeo.org Cc: Daniel Silk; Luigi Pirelli Subject: Re: [QGIS-Developer] Mitigating security risks of the Official Plugin Repository > Last time when I submitted such PR (#5484),

[Qgis-developer] Planning code sprint in Daytona Beach, FL (please vote on dates if interested)

2016-11-11 Thread Daniel Morissette
ps://lists.osgeo.org/pipermail/tosprint/2016-November/000644.html * Note that the "C Tribe Sprint" is labelled this way only for historical reasons since and is really open to all "tribes". The goal is cross-project collaboration and

[Qgis-developer] PyQGIS - How to create "Outline: Simple Line" layer?

2012-11-29 Thread Gilbert, Daniel R.
Hello All, First off I'm quite the newbie when it comes to developing PyQGIS plugins so hopefully this post makes sense... I'm creating a vector layer using the memory provider. Layer consists of polygons and everything is working great. I'm now attempting to tailor the appearance of

[Qgis-developer] How to set the PyQGIS environnement on Windows properly?

2015-05-05 Thread Florin-Daniel Cioloboc
Hello everyone, I'm having problems with a specific error, which is pretty common from what I can see but can't seem to find a solution. When I try to import the qgis module the following error occurs: ImportError: No module named 'qgis' So far this is the guide

[Qgis-developer] Compliation issues of sources using "make" on Linux Ubuntu

2015-05-11 Thread Florin-Daniel Cioloboc
Hello everyone, I am getting a rather strange message after using the make command, which is preventing me from compiling my sources for a plugin. As a result, the plugin doesn't show up in QGIS. Message: > > Compiled translation files to .qm files. > ---

Re: [Qgis-developer] Compliation issues of sources using "make" on Linux Ubuntu

2015-05-11 Thread Florin-Daniel Cioloboc
t the moment I'm trying to set it using chmod but it doesn't seem to be working. On Mon, May 11, 2015 at 11:45 AM, Alessandro Pasotti wrote: > 2015-05-11 10:44 GMT+02:00 Florin-Daniel Cioloboc < > cioloboc.flo...@gmail.com>: > >> Hello everyone, >> >

Re: [Qgis-developer] Compliation issues of sources using "make" on Linux Ubuntu

2015-05-11 Thread Florin-Daniel Cioloboc
s/compile-strings.sh: Permission denied > make: *** [transcompile] Error 127 > > Does anyone know why? On Mon, May 11, 2015 at 12:06 PM, Florin-Daniel Cioloboc < cioloboc.flo...@gmail.com> wrote: > Thanks for the reply Alessandro, > > Already done that. It still doesn'

Re: [Qgis-developer] Compliation issues of sources using "make" on Linux Ubuntu

2015-05-11 Thread Florin-Daniel Cioloboc
er running make is the same as the owner of > all files. > > On 11/05/2015 12:16, Florin-Daniel Cioloboc wrote: > > Apparently, neither chmod +x scripts/compile-strings.sh nor chmod 001 > > scripts/compile-strings.sh work. > > Whenever I use make test: > > &g

Re: [Qgis-developer] Qgis-developer Digest, Vol 119, Issue 65

2015-09-26 Thread Owhologbo Daniel Emekene
Qaqa On Sep 26, 2015 2:05 PM, wrote: > Send Qgis-developer mailing list submissions to > qgis-developer@lists.osgeo.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.osgeo.org/mailman/listinfo/qgis-developer > or, via email, send a message with subje

[Qgis-developer] raster to postgresql/postgis GUI plugin

2016-06-17 Thread Daniel Vicente Lühr Sierra
e uploaded to the plugin repository (at least, as an experimental plugin), but I would prefer to have some feedback before uploading it there. Regards -- Daniel Vicente Lühr Sierra IEEE Member IEEE Student Branch Counselor - Universidad Austral de Chile ___ Qgi

Re: [Qgis-developer] raster to postgresql/postgis GUI plugin

2016-06-18 Thread Daniel Vicente Lühr Sierra
, for developing, testing and then submitting the pull-resquest. Thanks El 18/06/16 a las 00:31, Paolo Cavallini escribió: Hi Daniel, Il 18/06/2016 00:51, Daniel Vicente Lühr Sierra ha scritto: I think a good alternative would be to incorporate it as a sub-plugin in the dbmanager plugin. Thank

Re: [Qgis-developer] raster to postgresql/postgis GUI plugin

2016-06-21 Thread Daniel Vicente Lühr Sierra
stering QGIS: > https://www.packtpub.com/application-development/mastering-qgis > ****** > > > On 17 June 2016 at 23:51, Daniel Vicente Lühr Sierra wrote: >> Hi, >> >> I was