[Qgis-developer] Qgis Api - get a layer by its name

2010-11-09 Thread kimaidou
the work done in Qgis Cheers Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Qgis Api - get a layer by its name

2010-11-09 Thread kimaidou
Hi Carson, Thanks for your reply 2010/11/9 Carson Farmer carson.far...@gmail.com Hi Kimaidou, I suspect that is how most plugin developers have implemented this functionality, and for the most part it works (save for the situations you listed below). Ok One solution would be use

Re: [Qgis-developer] Qgis Api - select all features of a vector layer

2010-11-09 Thread kimaidou
2010/11/9 Barry Rowlingson b.rowling...@lancaster.ac.uk That's an interesting approach! My selectplus plugin has a 'select all' function which does this: I love coding : there is never one way to achieve things :) def doit(self): layer = self.iface.mapCanvas().currentLayer()

[Qgis-developer] Qgis Api - select all features of a vector layer

2010-11-09 Thread kimaidou
you think a method selectAllFeatures() would be usefull ? If so I will add it to the trac. Thx again, Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Qgis Api - select all features of a vector layer

2010-11-09 Thread kimaidou
Thanks for this answer 2010/11/9 Carson Farmer carson.far...@gmail.com ...and with the newer PyQGIS API, we can do things even more Pythonically: Is the new api usable from 1.5, or should I wait for the next version ? def layerIds(layer): layer.select([]) # we don't actually need the

[Qgis-developer] Some questions about labelling

2010-12-01 Thread kimaidou
, maxlength = 10 Mapserver has such option : MAXLENGTH combined to WRAP Thanks in advance Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] Qgis Mapserver test and demo

2010-12-03 Thread kimaidou
much to all the devs who made the existence of Qgis Mapserver possible. Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] Re: SLD export : improve plugin or wait for feature ?

2010-12-07 Thread kimaidou
would be the best / easiest way ? Code in C++ ? If so, I will need some help here :) since I have never coded in C++ before. Sorry if my questions are out of topic (because already discussed / closed, etc.) Kimaidou 2010/12/7 kimaidou kimai...@gmail.com Hi devs, I love the new symbology

Re: [Qgis-developer] Remove geoprocessing plugin?

2010-12-13 Thread kimaidou
+1 too Kimaidou 2010/12/12 Marco Hugentobler marco.hugentob...@sourcepole.ch Hi Martin +1 for removing. Marco Am Sonntag, 12. Dezember 2010, um 17.59:16 schrieb Martin Dobias: Hi all there is an old geoprocessing (c++) plugin in the sources (src/plugins/geoprocessing). I've found

[Qgis-developer] Re: New Symbology : merge borders on nodes for lines

2011-02-17 Thread kimaidou
Sorry, the rendering image is here : http://www.hostingpics.net/viewer.php?id=926339CaptureQuantumGISrexporteddemoqgis.png 2011/2/17 kimaidou kimai...@gmail.com Hi devs, I am trying to use the new symbology to display good looking OpenStreetMap road data. I have not figured out how to avoir

Re: [Qgis-developer] Re: New Symbology : merge borders on nodes for lines

2011-02-17 Thread kimaidou
Hi Robert, Thanks a lot, I missed this. It works great. By the way, the vocabulary used here is a bit confusing, no ? What does Symbol levels means ? 2011/2/17 Robert Szczepanek rob...@szczepanek.pl Hi Kimaidou, In style new symbology hit 'Symbol levels'. Enable it. That is it. regards

Re: [Qgis-developer] Re: New Symbology : merge borders on nodes for lines

2011-02-17 Thread kimaidou
2011/2/17 Carson Farmer carson.far...@gmail.com Perhaps 'Symbol layer ordering' or simply 'layer order'? I dislike layer order as it is confusing : do we speak of layers from the canvas ? Or style layers ? For me we should use the term layer in Qgis only for vector and raster layers Shouldnt

Re: [Qgis-developer] Re: New Symbology : merge borders on nodes for lines

2011-02-17 Thread kimaidou
to look at Mapserver, OpenLayers, GeoServers, SLD cookbook to find which terms they use, IMHO. Kimaidou 2011/2/17 Martin Dobias wonder...@gmail.com On Thu, Feb 17, 2011 at 1:33 PM, kimaidou kimai...@gmail.com wrote: 2011/2/17 Carson Farmer carson.far...@gmail.com Perhaps 'Symbol layer

Re: [Qgis-developer] New Symbology / OSM/ ICONS

2011-02-21 Thread kimaidou
/osminterest/ ) and asked the creator of the SJJB icons to create some more. I gave him a list 2 days ago, and he told me he would spend some times to work on it in the coming weeks. I will let you know when I get some information. Kimaidou 2011/2/19 Mayeul Kauffmann mayeul.kauffm...@free.fr Thanks

[Qgis-developer] QgisMapserver - need to restart Apache on every project file change ?

2011-04-04 Thread kimaidou
any qgis project + data as a new server. Thanks in advance, Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] QgisMapserver - need to restart Apache on every project file change ?

2011-04-04 Thread kimaidou
QGIS server and libraries for each request. For medium complex to complex projects this will be way too slow. Andreas On Mon, 4 Apr 2011 13:09:23 +0200, Pirmin Kalberer wrote: Hi Kimaidou, Am Montag, 4. April 2011, um 11.20:57 schrieb kimaidou: Hi all, Marco, I am testing Qgis mapserver

[Qgis-developer] Re: Python - recreate the exact Legend in a QTreeWidget

2011-06-20 Thread kimaidou
Hi all I managed to reconstruct my legend in my QTreeWidget by using a dictionary to store the item I have already added in the tree while looping through groupLayerRelationship ! Cheers Kimaidou 2011/6/20 kimaidou kimai...@gmail.com Hi devs, I am a bit stuck here I would like

Re: [Qgis-developer] Re: Python - recreate the exact Legend in a QTreeWidget

2011-06-20 Thread kimaidou
Of course ! This is basically what I have done : http://pastebin.com/1yhyuRxA Regards, Kimaidou 2011/6/20 Germán Carrillo carrillo.ger...@gmail.com Hi Kimaidou, may you share your solution? It may be useful for some people here (including myself). Regards, Germán 2011/6/20 kimaidou

[Qgis-developer] Access map bookmarks from python plugin

2011-06-21 Thread kimaidou
Hi devs, I have not found any getBookmarks method in Qgis head api. I also scaned the project XML file, but could not find the bookmarks neither. Is there a way to get the bookmarks list from a python plugin ? Thanks in advance Kimaidou ___ Qgis

[Qgis-developer] Map Navigation Shortcuts ?

2011-07-26 Thread kimaidou
handy. Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Virtual columns in QGIS, was: Re: [Qgis-user] object labels

2011-07-28 Thread kimaidou
Hi, +1 for Mayeul Nathan. This virtual column would be a very handy tool ! E.G for labelling kimaidou 2011/7/28 Andreas Neumann a.neum...@carto.net Hi Nathan, Good to hear that you are working on this. I just wonder if it wouldn't make sense to have a general purpose virtual column

Re: [Qgis-developer] Virtual columns in QGIS, was: Re: [Qgis-user] object labels

2011-07-28 Thread kimaidou
( http://mapserver.org/mapfile/label.html ) * Concatenate one or more columns with expresssions, such as : colA || '(' || colB || ')' (here I am using the postgresql || syntaxe ) kimaidou 2011/7/28 Nathan Woodrow madman...@gmail.com +1 from me too. A virtual column would be a very handy feature

Re: [Qgis-developer] Qgis cross compiled for android

2011-07-28 Thread kimaidou
great job ! 2011/7/28 Marco Bernasocchi ma...@bernawebdesign.ch Hi all, some good news in this rainy day :) I finally (10 days later than planned :( ) managed to cross compile QGIS for android :) more details here [0] Ciao Marco [0]

[Qgis-developer] Python - saving a layer into a geojson layer

2011-09-01 Thread kimaidou
it ? Thanks in advance Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Python - saving a layer into a geojson layer

2011-09-01 Thread kimaidou
WONDERFULL ! Thanks a lot Richard, this is exactlu what I was looking for. Qgis rocks ! Kimaidou 2011/9/1 Richard Duivenvoorde rdmaili...@duif.net On 09/01/2011 10:45 AM, kimaidou wrote: Hi list I would like to know if there was a dedicated api method to create a new vector layer

Re: [Qgis-developer] Rule based labeling ideas

2011-11-03 Thread kimaidou
configuration, and won't prevent power users from using a more complex labelling system per symbol if needed. Kimaidou 2011/11/3 Nathan Woodrow madman...@gmail.com Hi all, I was playing around with some uDig, SLD and MapServer today and how they handle labeling features and I noticed

Re: [Qgis-developer] Re: [Qgis-user] Query a joined layer

2011-11-04 Thread kimaidou
Hi, IMO would should rename Query to something like Set Subset or Filter (more conventional). - Nathan +1 for Filter as we can perform only WHERE clauses from this tool. ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] New plugin repo now a default in QGIS master

2011-11-12 Thread kimaidou
to push/pull through redmine (in my company, we use redmine only to show the changesets of repositories. We push and pull throuh ssh connections for better control and safety) Cheers kimaidou 2011/11/12 Giuseppe Sucameli sucam...@faunalia.it Hi all, looking at IRC seems there's some confusion about

Re: [Qgis-developer] New plugin repo now a default in QGIS master

2011-11-12 Thread kimaidou
coworker are using Mercurial instead... I don't think it will be that hard. Just the opportunity to discover another well-known versioning tool. Good night Michael Douchin aka kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http

[Qgis-developer] Help translating Qgis documentation into french

2011-11-13 Thread kimaidou
Hi devs, I would like to contribute to Qgis documentation in French. I invite people already involved in the french translation to answer this email if there is some space for another volunteer... Regards Kimaidou ___ Qgis-developer mailing list Qgis

[Qgis-developer] Redmine - organizing Qgis web clients projects

2011-11-13 Thread kimaidou
. This project will contain 2 sub-projects : QgisWebClient and Lizmap Web Client. I will then create a second project Lizmap Plugin under User Plugins Let me know if this proposal sounds ok. Cheers Michael Douchin aka Kimaidou ___ Qgis-developer mailing list

[Qgis-developer] Feedbacks about Qgis Server

2011-11-14 Thread kimaidou
:) kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Help translating Qgis documentation into french

2011-11-14 Thread kimaidou
Thanks Yves for this explanation. I will try to help in the process of documenting 1.8 in RST format. kimaidou 2011/11/13 yjaco...@free.fr Hello Jean-ROC, Yep. Otto will give more information I think but here is a synthesis: * first we move to github and test the new process * we publish

Re: [Qgis-developer] Feedbacks about Qgis Server

2011-11-15 Thread kimaidou
Hi Andreas, Thanks for your answer. 2011/11/14 Andreas Neumann a.neum...@carto.net Many of the issues you raise here were also identified before or at the recent developer meeting. See also http://www.qgis.org/wiki/** QGISWebClientIdeas http://www.qgis.org/wiki/QGISWebClientIdeas I have

Re: [Qgis-developer] official qgis users?

2011-11-15 Thread kimaidou
Very good idea indeed +1 from me 2011/11/15 Paolo Cavallini cavall...@faunalia.it Hi all. I think we could add a menu item to qgis, allowing an user to register as such: - subscribing to the -users mailng list - adding an username to the new plugin app (so plugin reports can be

[Qgis-developer] Re: Redmine - organizing Qgis web clients projects

2011-11-16 Thread kimaidou
Hi list I reopen my previous email, since I get no answer. Which is responsible of the redmine organisation ? 2011/11/13 kimaidou kimai...@gmail.com Hi list, I would like to use the hub to publish documentation and source code for Lizmap plugin and Lizmap web application. As Lizmap has

Re: [Qgis-developer] Re: Redmine - organizing Qgis web clients projects

2011-11-16 Thread kimaidou
Thanks for your prompt answers ! I will then create my 2 projects and ask the master of the keys to organise them Cheers Michael ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Re: Redmine - organizing Qgis web clients projects

2011-11-17 Thread kimaidou
Hi all Thanks for your answers. I will have more time tomorrow to create the 2 projects and pass the sources through redmine. This week was a very busy one :( Thanks Tim for taking care of the reorganisation. Michael ___ Qgis-developer mailing list

Re: [Qgis-developer] Unique value renderer in New Symbology?

2011-11-18 Thread kimaidou
*) the overall transparency slider for all the renderers other then the unique value. Actually in master you can select multiple classes/categories, right click and choose the transparency (that by the way is defined with a 0.0-1-0 interval, where the slider is 0-100%) but again is not very

Re: [Qgis-developer] Re: Redmine - organizing Qgis web clients projects

2011-11-20 Thread kimaidou
(screen grabs, how to, etc.) Thanks in advance, Kimaidou 2011/11/17 kimaidou kimai...@gmail.com Hi all Thanks for your answers. I will have more time tomorrow to create the 2 projects and pass the sources through redmine. This week was a very busy one :( Thanks Tim for taking care

Re: [Qgis-developer] Re: Redmine - organizing Qgis web clients projects

2011-11-21 Thread kimaidou
will use : * use bitbucket and just give a link in qgis hub * use Git for full integration Regards Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] New Labelling engine : multiline and curve option ?

2011-11-28 Thread kimaidou
to have multiline labels? Anyone confirms ? Thanks in advance Kimaidou ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] Qgis Server - Layer not drawn if min and maxscale defined - Since 1.7.2

2011-12-23 Thread kimaidou
Hi devs, I have seen a nasty bug in Qgis Server since 1.7.2 included : whenever min and maxscales are set in the Layer properties dialog (and checkbox toggled), Qgis Server outputs a blank image for this layer. I use Qgis Server on ubuntu from ubuntugis-unstable repository. I had to uninstall it

Re: [Qgis-developer] Expression builder in field calculator

2012-01-16 Thread kimaidou
Hi Nathan Great news ! No objection for me, as it is a great enhancement. Cheers Kimaidou 2012/1/15 Nathan Woodrow madman...@gmail.com Hi all, I spent some time today adding the new expression builder to the field calculator. The current working version can be found at https://github.com

Re: [Qgis-developer] Rule-based renderer updates

2012-01-24 Thread kimaidou
Hi Martin, Just a quick answer to thank you warmly for these improvements. I am working on OpenStreetMap data to print maps, and I think these changes will help me a lot. I have to compile master branch to test it, but will try to do it quickly, and then I would be able to report. About your

Re: [Qgis-developer] Re: [Qgis-user] knock knock - 1.7.4 is outside

2012-01-26 Thread kimaidou
Hi all I will also try to compile the 1.7.4 on my ubuntu and open the projects I am working with now, and report possible downgrades/bugs. Michael 2012/1/26 Werner Macho werner.ma...@gmail.com On Thu, 2012-01-26 at 14:43 +, Giovanni Manghi wrote: Hi Werner, all Thats what I like to

Re: [Qgis-developer] knock knock - 1.7.4 is outside

2012-02-02 Thread kimaidou
Hi all I just successfully compiled 1_7 on ubuntu 11.10. Qgis Server seems to work smoothly, and Qgis Desktop too wich my projects. One question though : how can I know the changes (commits and solved bugs) between says 1.7.3 and this release ? A redmine query will surely do the trick, but I do

Re: [Qgis-developer] knock knock - 1.7.4 is outside

2012-02-02 Thread kimaidou
No rush though, I can wait until the release :) I was just wondering how and with which tool you do this kind of changelog : I hope you do not need to do it manually each time ? Regards Michael 2012/2/2 Werner Macho werner.ma...@gmail.com Hehehe I expected that.. Nevertheless 1.7.4 will be

Re: [Qgis-developer] SQL console for the pgAdmin plugin PostGIS viewer

2012-02-13 Thread kimaidou
Thanks a lot for the news. Il will try it out as soon as I got time ! Michael 2012/2/7 Germán Carrillo carrillo.ger...@gmail.com Dear qgis users and devs, this is just to inform you about the addition of an SQL console to the pgAdmin plugin called PostGIS viewer [1]. It allows you to filter

Re: [Qgis-developer] LizMap demo broken?

2012-02-29 Thread kimaidou
Hi Paolo, Hum, I have to change the apache configuration of demo.3liz.fr . People are not supposed to read the content... Lizmap Web Application demo link is in the wiki here : http://hub.qgis.org/projects/lizmapwebclient/wiki#Demonstration It is :

Re: [Qgis-developer] Re: Working on Symbology Improvement for the GSOC

2012-04-01 Thread kimaidou
Hi list, Another thing that would be great for symbology would be the ability to define symbology properties taken from layer columns, so that for the same layer, feature A can have svgA.svg, feature B have svgB.svg, or decide which columns set the svg size, color, transparency, rotation, etc.

Re: [Qgis-developer] Re: Working on Symbology Improvement for the GSOC

2012-04-01 Thread kimaidou
. - Nathan On Sun, Apr 1, 2012 at 10:23 PM, kimaidou kimai...@gmail.com wrote: Hi list, Another thing that would be great for symbology would be the ability to define symbology properties taken from layer columns, so that for the same layer, feature A can have svgA.svg, feature B have svgB.svg

Re: [Qgis-developer] otb debs available

2012-04-16 Thread kimaidou
libgif-dev{a} libgnutls-dev{a} libgnutlsxx26{a} libgpg-error-dev{a} libhdf5-serial-dev{a} libjasper-dev{a} libspatialite-dev libspatialite3{a} libtasn1-3-dev{a} libxerces-c2-dev{a} No libgdal1-1.9.0 here... although it seems gdal 1.9 has been released in the ubuntugis-unstable repo... Kimaidou

Re: [Qgis-developer] Plugins About dialog: make it more uniform

2012-04-17 Thread kimaidou
Hi Paolo, I agree with your proposal. Automaticly including 2 plugin menu items ; help and about make also sense for me. 2012/4/17 Paolo Cavallini cavall...@faunalia.it Hi all. Currently, most plugins do not have an About dialog, and those who have it are often quite different. Can we choose

[Qgis-developer] Vector Layer and geojson protocol - bbox parameter ?

2012-04-23 Thread kimaidou
Hi list, I would like to use Qgis to dynamically see the data provided by a custom web service. This webservice excepts a bbox parameter and sends back a geojson containing features availables for this bounding box. Using the protocol option of Opening Qgis Vector Layer dialog, I can pass a

Re: [Qgis-developer] 3liz posts missing from qgis planet?

2012-05-03 Thread kimaidou
hi all, Our server was down since yesterday. Now it is back alive. Thanks Paolo for asking, and Tim for adding it. Regards, Michael 2012/5/3, Tim Sutton li...@linfiniti.com: The site seems offline to mewhen it is online and I can get its rss feed url I will add it. Regards Tim On

Re: [Qgis-developer] Help needed for 1st dive into Qgis C++ - Access and modify the Scale List combo box

2012-05-07 Thread kimaidou
emitted when the scale change, which you then connect to a slot in the scale edit object in qgisapp.cpp. Once the signal fires you read the new scales from where every they are stored into the scale bar widget. - Nathan On Mon, May 7, 2012 at 6:03 PM, kimaidou kimai...@gmail.com wrote: Hi

Re: [Qgis-developer] Help needed for 1st dive into Qgis C++ - Access and modify the Scale List combo box

2012-05-07 Thread kimaidou
Hi again, Here I am : https://gist.github.com/2627175 I am stuck and really do not understand why. When opening a project, setting some project scales via the project properties dialog, Applying and OK, I get the following errors : Warning: Object::connect: No such slot

Re: [Qgis-developer] Approving plugins

2012-05-11 Thread kimaidou
Alexander, My point of view : 2012/5/11 Alexander Bruy alexander.b...@gmail.com There is a typo at page ahs at least minimal documentation seems here should be has at least minimal documentation. Also I think we need a more clean guidelines about some requirements: - should plugin author

Re: [Qgis-developer] Fwd: Threads in sextante

2012-05-14 Thread kimaidou
Hi all +1 for using QProcess. I am using it in Lizmap Plugin to run external librairies (winSCP on windows, lftp on linux), and it works great. You can easily connect signals like readyReadStandardOutput(), readyReadStandardError() and finished(int, QProcess::ExitStatus) to your plugin methods.

Re: [Qgis-developer] Discussion on browser and file extensions

2012-05-22 Thread kimaidou
Hi all +1 for optionnal additionnal column, as it will be consistent for all use cases, and leave the choice to the user. Michael 2012/5/22 Etienne Tourigny etourigny@gmail.com On Tue, May 22, 2012 at 4:10 AM, Giovanni Manghi giovanni.man...@faunalia.pt wrote: Hi, I think the

Re: [Qgis-developer] Rendering order in rule-based style not working

2012-05-25 Thread kimaidou
Hi all Is there a wiki page describing the changes between 1.7 and next release concerning rule based rendering ? Or this kind of wiki page won't ever exists because it will compete with documentation ? Anyway, pointing users to specific chapters in documentations will help people to knwo what to

Re: [Qgis-developer] Help me compile a 'what's new' list for QGIS 1.8

2012-05-25 Thread kimaidou
Hi devs, Back to the 1st topic : 1.8 new features :) I have read this line in the wiki page [0] : New scale selector with predefined scales Is it related with the patch I proposed [1] ? I understood it was a new feature, and because we were on feature freeze, it could not be applied on 1.8 ?

Re: [Qgis-developer] Library linking problems when release changes - eg. 1.9 -- 1.8

2012-05-25 Thread kimaidou
Hi Andreas I ran into the same problem, and wrote a Tip here, thanks to the help of someone in the chan irc http://hub.qgis.org/projects/quantum-gis/wiki/Building_QGIS_from_Source 2012/5/25 Andreas Neumann a.neum...@carto.net Hi, Whenever there is a change in the major version of QGIS, e.g.

Re: [Qgis-developer] Help me compile a 'what's new' list for QGIS 1.8

2012-05-25 Thread kimaidou
, it could not be applied on 1.8 ? No I suspect not. The predefined scales it is refering to the ones that were there before you patch. - Nathan On Fri, May 25, 2012 at 5:21 PM, kimaidou kimai...@gmail.com wrote: Hi devs, Back to the 1st topic : 1.8 new features :) I have read

[Qgis-developer] Plugin SRTM import produces points with no data. Anyone Confirms ?

2012-06-08 Thread kimaidou
Hi list, I just tried the SRTMImport plugin. Using it on a project in WGS84, centered in Montpellier, with on-the-fly reprojection on, I managed to get a grid of vector points in my extent, but the layer produced has no column. I excpected to have at least on column for elevation. Anyone

Re: [Qgis-developer] Plugin SRTM import produces points with no data. Anyone Confirms ?

2012-06-08 Thread kimaidou
be opened as rasters directly. No need for SRTMImport plugin. http://dds.cr.usgs.gov/srtm/version2_1/SRTM3/ Or is there something special about that plugin? Best wishes, Anita On Fri, Jun 8, 2012 at 2:12 PM, kimaidou kimai...@gmail.com wrote: Hi list, I just tried the SRTMImport plugin

Re: [Qgis-developer] Announcing the release of QGIS 1.8

2012-06-22 Thread kimaidou
+ 1 Go Go Go ! 2012/6/21 Ted tiruchirapa...@gmail.com A Big Congratulation to the QGIS Team and Tim Well done and go go go ... Cheers Ted On Thu, Jun 21, 2012 at 5:25 PM, Ivan Mincik ivan.min...@gmail.comwrote: Thanks a lot for your work. -- Ivan Mincik

[Qgis-developer] Redmine - Create a new version 1.9.0 ?

2012-06-25 Thread kimaidou
Hi devs I would like to change the target version of my small patch http://hub.qgis.org/issues/5561 I have seen there is no 1.9.0 version nor a master branch version. Is Version 2.0.0 http://hub.qgis.org/versions/show/21 considered as the master branch in redmine ? Thanks in advance Michael

Re: [Qgis-developer] Redmine - Create a new version 1.9.0 ?

2012-06-26 Thread kimaidou
! Cheers 2012/6/25 Alexander Bruy alexander.b...@gmail.com Hi, I'm little busy now, but I remember about this patch and will review and apply it this week. On Jun 25, 2012, at 1:41 AM, kimaidou wrote: Hi devs I would like to change the target version of my small patch http

[Qgis-developer] Use relative path for SVG icon in new symbology

2012-07-06 Thread kimaidou
Hi all, I have just tested the new feature in Qgis symbology wich lets the user choose a SVG file directly in the Symbol property dialog. It works well, but the absolute path is stored in the project file, even if relative is set in the project options. I tried to manually modify the project qgs

Re: [Qgis-developer] Use relative path for SVG icon in new symbology

2012-07-07 Thread kimaidou
Hi Alexander. Ok, so I will investigate a little bit and try to solve this issue. Unless anyone is already working on it ? Cheers Michael 2012/7/6 Alexander Bruy alexander.b...@gmail.com Hi, AFAIK, this is known issue, see http://hub.qgis.org/issues/2781 2012/7/6 kimaidou kimai

Re: [Qgis-developer] OpenLayers plugin

2012-08-13 Thread kimaidou
Hi Nathan, If you want to display OpenStreetMap data in Qgis, you can still use directly Gdal as described here : http://www.3liz.com/blog/rldhont/index.php?post/2012/07/17/OpenStreetMap-Tiles-in-QGIS Cheers Michael 2012/8/7 Nathan Woodrow madman...@gmail.com Hi all, What are the current

Re: [Qgis-developer] scale dependent visibility and fixed scales

2012-08-16 Thread kimaidou
Hi all I totally agree scale limits should be included. I usually need to set 51000 or 4 so that exact 50k is taken into account for respective max / min scales. Including the bounds will be more logic in my opinion. Cheers Michael 2012/8/16 Marco Bernasocchi ma...@bernawebdesign.ch Hi

Re: [Qgis-developer] Merge of Arun's summer of code work

2012-08-16 Thread kimaidou
Hi all, I just modified the wiki page and replaced the absolute links ( http://hub.qgis.org/issues/issue_number ) by redmine syntax for links to issues ( #issue_number ). This way we will be able to see wich issues are closed. Michael 2012/8/16 Etienne Tourigny etourigny@gmail.com Hi

Re: [Qgis-developer] scale dependent visibility and fixed scales

2012-08-17 Thread kimaidou
at 5:33 PM, Larry Shaffer lar...@dakotacarto.com wrote: Hi, On Thu, Aug 16, 2012 at 7:40 AM, kimaidou kimai...@gmail.com wrote: Hi all I totally agree scale limits should be included. I usually need to set 51000 or 4 so that exact 50k is taken into account for respective max

Re: [Qgis-developer] Qgis Server and Python. Which solutions to have a python API?

2012-09-10 Thread kimaidou
Hi all, Lizmap will be release soon, as a Zip file. I do not know yet if I will create a bitbucket account to put the code here or not. Why not ! Some of next lizmap features : * access rights management to repositories (1 repository = one folder in the server containing one or more projects).

Re: [Qgis-developer] Qgis Server and Python. Which solutions to have a python API?

2012-09-10 Thread kimaidou
am thinking or using bitbucket to mirror my repository. Cheers 2012/9/10 Paolo Cavallini cavall...@faunalia.it Il 10/09/2012 12:13, kimaidou ha scritto: Hi all, Lizmap will be release soon, as a Zip file. I do not know yet if I will create a bitbucket account to put the code here

Re: [Qgis-developer] Qgis Server and Python. Which solutions to have a python API?

2012-09-10 Thread kimaidou
(e.g. getfeatureinfo, getcapabilities, etc.)? It would be great if you could setup an SCM (bitbucket, github, or whatelse). giovanni 2012/9/10 kimaidou kimai...@gmail.com Hi all, Lizmap will be release soon, as a Zip file. I do not know yet if I will create a bitbucket account to put

Re: [Qgis-developer] Qgis Server and Python. Which solutions to have a python API?

2012-09-10 Thread kimaidou
2012/9/10 G. Allegri gioha...@gmail.com 2012/9/10 kimaidou kimai...@gmail.com Hi Giovanni, * The print service will be supported in the next version. Not yet to follow the release often mantra Do you have a schedule for the next version? Not yet, no. We will release V2 today

Re: [Qgis-developer] Qgis Server and Python. Which solutions to have a python API?

2012-09-10 Thread kimaidou
Tim, I do not know this feature... I will search in the documentation to see how I can use it ! This is great :) Thanks, Michael 2012/9/10 Tim Sutton li...@linfiniti.com Hi Are you aware of the project nesting capability Marco added? It should provide you with the 'define once, use many

Re: [Qgis-developer] Lizmap Web Client V2 is released

2012-09-12 Thread kimaidou
running -Nathan Sent from some fancy phone looking thingo -- From: kimaidou Sent: 12/09/2012 10:36 PM To: qgis-developer Subject: Re: [Qgis-developer] Lizmap Web Client V2 is released Hi again I forgot the link to the source code : https://bitbucket.org/mdouchin

Re: [Qgis-developer] Qgis Server and Python. Which solutions to have a python API?

2012-09-12 Thread kimaidou
Hi all I took some time to check if we can use the new feature Embed layers and groups in QGIS Server. It appears not at the moment, because the GetCapabilities XML returned by QGIS Server with a child project (one with embeded layers from the parent project) does not contain any Layer item. I

Re: [Qgis-developer] index in self.legend.groupLayerRelationship - different behavior between QGIS 1.8 and master?

2012-10-04 Thread kimaidou
Hi all, In Lizmap plugin, I need to display the layer and group tree. You can find some code here : https://bitbucket.org/mdouchin/lizmapplugin/src/9cdfa856b8f0/lizmap.py Line 451 : populateLayerTree There is some specific lizmap code in there, but you can probably use some of it. Michael

Re: [Qgis-developer] index in self.legend.groupLayerRelationship - different behavior between QGIS 1.8 and master?

2012-10-04 Thread kimaidou
of QgsAppLegendItem) - expanded - visible Once you have an item you can do all your business logic. Please let me know your opinion. Regard Massimo kimaidou wrote Hi massimo, You are right, we must add a id for each group in Qgis. For now, the group is defined only with its name, which

Re: [Qgis-developer] index in self.legend.groupLayerRelationship - different behavior between QGIS 1.8 and master?

2012-10-05 Thread kimaidou
Hi all, + 1 for the proposal of Massimo using the DOM implementation. I will be straightforward to use. Michael 2012/10/5 Massimo massimo.endri...@geopartner.it Etienne Tourigny-3 wrote . While it woulf be good to expose legend api to python, it mught be a lot of work. Yes it

Re: [Qgis-developer] Merging of incompatible changes

2012-10-25 Thread kimaidou
Hi devs, My humble opinions : * We should go for api breakage asap, or we will postpone it next time we will speak again about it. * +1 for contacting every plugin author and give them a documentation on how to migrate their plugins to the new api. * if plugin authors do not respond, we

Re: [Qgis-developer] Server features

2012-11-14 Thread kimaidou
Hi all Some ideas : * templates for HTML popups (already done this in Lizmap, but why not having it in Qgis) * tile generator : I agree with Giovanni Allegri, beginning with a mbtiles generator from a layer/a group in Qgis would be a first step, as Tim suggested in Lyon hackfest. But why not

Re: [Qgis-developer] Server features

2012-11-14 Thread kimaidou
Hi 2012/11/14 Vincent Picavet vincent...@oslandia.com Hi, * templates for HTML popups (already done this in Lizmap, but why not having it in Qgis) You mean accessing the templates through QGIS server ? Because html popups already are in QGIS :) I mean through Qgis Server (in respect

[Qgis-developer] Lizmap - new version released

2012-11-15 Thread kimaidou
Hi all, A new version of Lizmap Web Client and the related QGIS plugin has been released yesterday, with these new features: * responsive design : Lizmap fits well on tablets and new smart-phone screens * rich html pop-up with configurable templates. You can write different pop-up templates with

Re: [Qgis-developer] Server features

2012-11-15 Thread kimaidou
A very short answer here : have you checked the Lizmap ability to create automatic tile cache ? It supports metatiling too. As I know, it is the only open-source solution which can simply use a QGIS project, build a map and dynamically create tile caching with metatile support. Sorry for this

Re: [Qgis-developer] Server features

2012-11-15 Thread kimaidou
Paolo Cavallini cavall...@faunalia.it Il 15/11/2012 10:14, kimaidou ha scritto: A very short answer here : have you checked the Lizmap ability to create automatic tile cache ? It supports metatiling too. As I know, it is the only open-source solution which can simply use a QGIS project, build

Re: [Qgis-developer] Server features

2012-11-15 Thread kimaidou
with it. You must rely on other tools to provides server side scripting. Marco, please correct me if I am wrong. 2012/11/15 Paolo Cavallini cavall...@faunalia.it Il 15/11/2012 10:34, kimaidou ha scritto: * it took us only one day to develop the caching system in Lizmap, because PHP and the jelix

Re: [Qgis-developer] Server features

2012-11-15 Thread kimaidou
, kimaidou ha scritto: * it took us only one day to develop the caching system in Lizmap, because PHP and the jelix framework provide all the stuff needed to achieve this goal efficiently. This is why we did it (why not at this cost :) ) We could also use memcache, postgresql bdd to store

[Qgis-developer] Translations - using the online pootle interface

2012-11-25 Thread kimaidou
Hi all, I have subscribed to the translate.qgis.org web application. I would like to have a quick and easy access to correct some mistakes (mistranslations) in the QGIS application. I thought this website was meant to allow non developers to help us translate the QGIS application. But it seems I

[Qgis-developer] Get rid of Shapefiles ! Go GeoJSON !

2012-11-26 Thread kimaidou
Hi list, The subject is a bit polemical, on purpose. I am used to playing with Postgis, spatialite and GeoJson, which are all open-source ways to store spatial data. I am very frustrated by the limitations of the Shapefile format, and much more by the quasi obligation to use it as the default

Re: [Qgis-developer] Get rid of Shapefiles ! Go GeoJSON !

2012-11-26 Thread kimaidou
Hi Régis, 2012/11/26 haubourg regis.haubo...@eau-adour-garonne.fr Hi Michael, some questions about geoJSON, I'm no specialist.. does GeoJson support spatial indexes? Isn't it a bit more space consuming with all the xml tags inside.. Does it support compression? Geojson is not a XML

Re: [Qgis-developer] Get rid of Shapefiles ! Go GeoJSON !

2012-11-26 Thread kimaidou
Why is spatialite seen as a power user option when ESRI users have been using something similar for years? Its just a file, you connect to it, you add spatial data to it. Yes, but people are used to having one file (or set of files) per layers. This is what I was meaning with the GeoJSON.

Re: [Qgis-developer] Get rid of Shapefiles ! Go GeoJSON !

2012-11-26 Thread kimaidou
2012 15:35:24 Barry Rowlingson a écrit : [apologies for empty previous message, I blame google for putting [...] next to 'Send'. This message has real content: On Mon, Nov 26, 2012 at 3:12 PM, kimaidou kimai...@gmail.com wrote: Hi list, The subject is a bit polemical, on purpose. I

Re: [Qgis-developer] Get rid of Shapefiles ! Go SpatiaLite !

2012-11-26 Thread kimaidou
. Cheers Michael 2012/11/26 kimaidou kimai...@gmail.com Hi Yves, I totally agree with you and Bary on the superiority of spatialite VS GeoJson considering performance, geoprocessing methods, capabilities, etc. But I am still not sure beginner would be comfortable enough using Sqlite

  1   2   3   4   5   >