Re: [Qgis-user] MrSID on QGIS 2.6.,1, Mac OSK 10.10.1

2014-12-07 Thread William Kyngesburye
Check my site.  The GDAL framework that you should have installed also has a 
separately downloadable plugin for the MrSID format.

On Dec 7, 2014, at 7:53 PM, Dave Peterson  wrote:

> I need to be able to display MrSID files made available by the state GIS 
> department.  I had them running on QGIS 1.8, OSX 10.6.8, but I’m not sure 
> what I did back then.  Have searched the Web as best I can and haven’t found 
> any instructions for current QGIS with a current OS.  Can anyone help?
> 
> Seems to me at one point I saw some directions for getting 1.4 to read MrSID, 
> but I can’t find them.  I’m doing GIS volunteer work for Mass Audubon 
> Society, and a lot of their raster stuff is MrSID.  (They use ArcGIS; I can’t 
> afford it.)
> --
> Dave Peterson
> 
> da...@iit.edu
> 
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

-
William Kyngesburye 
http://www.kyngchaos.com/

"Mon Dieu! but they are all alike.  Cheating, murdering, lying, fighting, and 
all for things that the beasts of the jungle would not deign to possess - money 
to purchase the effeminate pleasures of weaklings.  And yet withal bound down 
by silly customs that make them slaves to their unhappy lot while firm in the 
belief that they be the lords of creation enjoying the only real pleasures of 
existence

- the wisdom of Tarzan


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] MrSID on QGIS 2.6.,1, Mac OSK 10.10.1

2014-12-07 Thread Randal Hale
I think back when 1.8 was out there was a package to read Sid Files (I'm 
on linux currently).


I've fallen back to using http://www.lizardtech.com/downloads/category/ 
-> Geoexpress Command line utilities to decode sid to geotiff.


Not sure exactly how you could do that on a mac - maybe build a 
linux/windows VM to do the decompression. I hope at some point sid 
becomes available again - I wished I had to skill to make that happen.


Randy


On 12/07/2014 08:53 PM, Dave Peterson wrote:

I need to be able to display MrSID files made available by the state GIS 
department.  I had them running on QGIS 1.8, OSX 10.6.8, but I’m not sure what 
I did back then.  Have searched the Web as best I can and haven’t found any 
instructions for current QGIS with a current OS.  Can anyone help?

Seems to me at one point I saw some directions for getting 1.4 to read MrSID, 
but I can’t find them.  I’m doing GIS volunteer work for Mass Audubon Society, 
and a lot of their raster stuff is MrSID.  (They use ArcGIS; I can’t afford it.)
--
Dave Peterson

da...@iit.edu


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


--
-
Randal Hale
North River Geographic Systems, Inc
http://www.northrivergeographic.com
423.653.3611 rjh...@northrivergeographic.com
twitter:rjhale http://about.me/rjhale
http://www.northrivergeographic.com/spatial-connect

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] MrSID on QGIS 2.6.,1, Mac OSK 10.10.1

2014-12-07 Thread Dave Peterson
I need to be able to display MrSID files made available by the state GIS 
department.  I had them running on QGIS 1.8, OSX 10.6.8, but I’m not sure what 
I did back then.  Have searched the Web as best I can and haven’t found any 
instructions for current QGIS with a current OS.  Can anyone help?

Seems to me at one point I saw some directions for getting 1.4 to read MrSID, 
but I can’t find them.  I’m doing GIS volunteer work for Mass Audubon Society, 
and a lot of their raster stuff is MrSID.  (They use ArcGIS; I can’t afford it.)
--
Dave Peterson

da...@iit.edu


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Map Composer and Attributes from a layer

2014-12-07 Thread Randal Hale

A

I'm moving a project from ArcGIS Data Driven Pages into QGIS. I'm not 
sure if Data Driven Pages was the best way to do it originallyand 
that's why I was shying away from Atlas when Alexandre brought it up


Now I've got two choices when I had none.

Good People - Thank you.

Nyall - Thanks for all the stuff you're doing in Composer.

 Randy


On 12/07/2014 04:50 PM, Nyall Dawson wrote:

On 8 December 2014 at 07:08, Randal Hale
 wrote:

That does give me a workaround of sorts

Is there any way to pull from a table and place the information in composer
- a table that isn't being used by Atlas?

.But Alexandre's idea might give me a work around in the meantime.


Atlas IS the correct way - it's not a workaround ;). However, if
you're after an expression, then use a combination of getFeature and
attribute. This is how it works:

First, use getFeature to find a matching feature from a layer:
getFeature( 'my_layer', 'id_field', 5)
This will return the feature from "my_layer" with the attribute
"id_field" equal to 5.

Next, chain this into attribute:
attribute( getFeature( 'my_layer', 'id_field', 5) , 'feature_name')

This will return the value stored in the attribute "feature_name" from
the matching feature from "my_layer".

Hope that helps!

Nyall


--
-
Randal Hale
North River Geographic Systems, Inc
http://www.northrivergeographic.com
423.653.3611 rjh...@northrivergeographic.com
twitter:rjhale http://about.me/rjhale
http://www.northrivergeographic.com/spatial-connect

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Map Composer and Attributes from a layer

2014-12-07 Thread Nyall Dawson
On 8 December 2014 at 07:08, Randal Hale
 wrote:
> That does give me a workaround of sorts
>
> Is there any way to pull from a table and place the information in composer
> - a table that isn't being used by Atlas?
>
> .But Alexandre's idea might give me a work around in the meantime.
>

Atlas IS the correct way - it's not a workaround ;). However, if
you're after an expression, then use a combination of getFeature and
attribute. This is how it works:

First, use getFeature to find a matching feature from a layer:
getFeature( 'my_layer', 'id_field', 5)
This will return the feature from "my_layer" with the attribute
"id_field" equal to 5.

Next, chain this into attribute:
attribute( getFeature( 'my_layer', 'id_field', 5) , 'feature_name')

This will return the value stored in the attribute "feature_name" from
the matching feature from "my_layer".

Hope that helps!

Nyall
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] recurrent PythonError. What is wrong?

2014-12-07 Thread Enrico Ferreguti
I think you installed the plugin without having blank project. existing
layers were not registered to the plugin that try to hooks to change layer
signals (fired on every event you describe)
I would try to close your current project before reinstall plugin or simply
restart qgis after install it.
regards
Enrico Ferreguti

Il giorno 07/dic/2014, alle ore 20:47, Joris Hintjens 
ha scritto:

Hello Nicolas and Enrico,

I uninstalled the plugin and rebooted. Everything seems to work well now.
Thanks for the help.
For Enrico: I had the message since my upgrade to 2.6, but i installed all
my plugins at the same time. SO for me no way to say if the bug is in the
2.6 part or the plugin part.

Joris

Op 7-dec.-2014, om 20:08 heeft Nicolas Cadieux 
het volgende geschreven:

Hi,
I agree with Enrico,
I would uninstall the plugin and see what happens.

Nicolas Cadieux M.Sc.
Les Entreprises Archéotec inc.
8548, rue Saint-Denis Montréal H2P 2H2
Téléphone: 514.381.5112  Fax: 514.381.4995
Le 2014-12-07 12:05, "enricofer [via OSGeo.org]" <[hidden email]
> a écrit :

Hi Joris
The message appears to come from attributePainter plugin.
Do you mean this is a new message error that occurs after your system or
qgis update or is it an error that happens after the plugin installation?
Regards
Enrico Ferreguti


Il giorno 07/dic/2014, alle ore 17:01, Joris Hintjens <[hidden email]
> ha scritto:

> Hello,
>  Running QGIS 2.6 on OS10.10yosemite,
> Every time I change something in the layer pane (move, toggle on/of, add
or detail a layer, I encounter recurrent errormessages. what is wrong?
>
> Traceback (most recent call last):
>   File
"/Users/joris/.qgis2/python/plugins/attributePainter/attributepainter.py",
line 152, in checkOnLayerChange
> self.layerHighlighted.editingStarted.disconnect(self.checkEditable)
> RuntimeError: wrapped C/C++ object of type QgsVectorLayer has been
deleted
>
> Any suggestions what this might be and how to deal with this?
> thanks
>
> ___
> Qgis-user mailing list
> [hidden email] 
> http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
[hidden email] 
http://lists.osgeo.org/mailman/listinfo/qgis-user


--
 If you reply to this email, your message will be added to the discussion
below:
http://osgeo-org.1560.x6.nabble.com/recurrent-PythonError-What-is-wrong-tp5176781p5176785.html
 To start a new topic under Quantum GIS - User, email [hidden email]

To unsubscribe from Quantum GIS - User, click here.
NAML



--
View this message in context: Re: recurrent PythonError. What is wrong?

Sent from the Quantum GIS - User mailing list archive
 at
Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Map Composer and Attributes from a layer

2014-12-07 Thread Randal Hale

That does give me a workaround of sorts

Is there any way to pull from a table and place the information in 
composer - a table that isn't being used by Atlas?


.But Alexandre's idea might give me a work around in the meantime.


On 12/07/2014 01:20 PM, Alexandre Neto wrote:

Hello Randal,

You are looking for the atlas generation feature.

In the map composer go to the atlas tab and set your layer as atlas 
coverage layer. (Don't forget to turn atlas control on your map item 
properties). From that point on, you can use the coverage layer's 
attributes in labels usig the expression builder, or simply set the 
label as:


[%my_column%]

Hope I helped.

Alexandre Neto

On Sun, Dec 7, 2014 at 4:49 PM, Randal Hale 
> wrote:


Is it possible to insert an attribute into map composer? I'm
thinking it is but I'm stumbling just a bit.

I have a layer that will change through time. I want to insert the
name of the polygon into map composer with the area as part of
some text at the bottom of the map. I am thinking I use the
getFeature and/or the attribute function to insert an expression -
but I'm not entirely sure.

I'm pulling the data from postgis so I can create a view with just
that one polygon if that helps.

Thanks so much - not that it probably matters but Ubuntu 14.04
QGIS 2.6.1

Randy


-- 
-

Randal Hale
North River Geographic Systems, Inc
http://www.northrivergeographic.com
423.653.3611  rjh...@northrivergeographic.com

twitter:rjhale http://about.me/rjhale
http://www.northrivergeographic.com/spatial-connect

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org 
http://lists.osgeo.org/mailman/listinfo/qgis-user




--
-
Randal Hale
North River Geographic Systems, Inc
http://www.northrivergeographic.com
423.653.3611 rjh...@northrivergeographic.com
twitter:rjhale http://about.me/rjhale
http://www.northrivergeographic.com/spatial-connect

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] recurrent PythonError. What is wrong?

2014-12-07 Thread Joris Hintjens
Hello Nicolas and Enrico,

I uninstalled the plugin and rebooted. Everything seems to work well now. 
Thanks for the help.
For Enrico: I had the message since my upgrade to 2.6, but i installed all my 
plugins at the same time. SO for me no way to say if the bug is in the 2.6 part 
or the plugin part.

Joris
> Op 7-dec.-2014, om 20:08 heeft Nicolas Cadieux  
> het volgende geschreven:
> 
> Hi,
> I agree with Enrico,
> I would uninstall the plugin and see what happens.
> 
> Nicolas Cadieux M.Sc.
> Les Entreprises Archéotec inc. 
> 8548, rue Saint-Denis Montréal H2P 2H2
> Téléphone: 514.381.5112  Fax: 514.381.4995
> 
> Le 2014-12-07 12:05, "enricofer [via OSGeo.org]" <[hidden email] 
> > a écrit :
> Hi Joris 
> The message appears to come from attributePainter plugin. 
> Do you mean this is a new message error that occurs after your system or qgis 
> update or is it an error that happens after the plugin installation? 
> Regards 
> Enrico Ferreguti 
> 
> 
> Il giorno 07/dic/2014, alle ore 17:01, Joris Hintjens <[hidden email] 
> > ha scritto: 
> 
> > Hello, 
> >  Running QGIS 2.6 on OS10.10yosemite, 
> > Every time I change something in the layer pane (move, toggle on/of, add or 
> > detail a layer, I encounter recurrent errormessages. what is wrong? 
> > 
> > Traceback (most recent call last): 
> >   File 
> > "/Users/joris/.qgis2/python/plugins/attributePainter/attributepainter.py", 
> > line 152, in checkOnLayerChange 
> > self.layerHighlighted.editingStarted.disconnect(self.checkEditable) 
> > RuntimeError: wrapped C/C++ object of type QgsVectorLayer has been deleted 
> > 
> > Any suggestions what this might be and how to deal with this? 
> > thanks 
> > 
> > ___ 
> > Qgis-user mailing list 
> > [hidden email]  
> > http://lists.osgeo.org/mailman/listinfo/qgis-user 
> > ___
> >  
> Qgis-user mailing list 
> [hidden email]  
> http://lists.osgeo.org/mailman/listinfo/qgis-user 
> 
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://osgeo-org.1560.x6.nabble.com/recurrent-PythonError-What-is-wrong-tp5176781p5176785.html
>  
> 
> To start a new topic under Quantum GIS - User, email [hidden email] 
>  
> To unsubscribe from Quantum GIS - User, click here 
> .
> NAML 
> 
> View this message in context: Re: recurrent PythonError. What is wrong? 
> 
> Sent from the Quantum GIS - User mailing list archive 
>  at 
> Nabble.com.
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] recurrent PythonError. What is wrong?

2014-12-07 Thread Nicolas Cadieux
Hi, 
I agree with Enrico, 
I would uninstall the plugin and see what happens. 
Nicolas Cadieux M.Sc. 
Les Entreprises Archéotec inc.  
8548, rue Saint-Denis Montréal H2P 2H2 
Téléphone: 514.381.5112  Fax: 514.381.4995 
Le 2014-12-07 12:05, "enricofer [via OSGeo.org]" 
 a écrit : 

Hi Joris
The message appears to come from attributePainter plugin. 
Do you mean this is a new message error that occurs after your system or qgis 
update or is it an error that happens after the plugin installation?
Regards
Enrico Ferreguti
Il giorno 07/dic/2014, alle ore 17:01, Joris Hintjens < [hidden email] > 
ha scritto:
> Hello,
>  Running QGIS 2.6 on OS10.10yosemite,
> Every time I change something in the layer pane (move, toggle on/of, add 
or detail a layer, I encounter recurrent errormessages. what is wrong?
> 
> Traceback (most recent call last):
>   File 
"/Users/joris/.qgis2/python/plugins/attributePainter/attributepainter.py",
 line 152, in checkOnLayerChange
>     
self.layerHighlighted.editingStarted.disconnect(self.checkEditable)
> RuntimeError: wrapped C/C++ object of type QgsVectorLayer has been deleted
> 
> Any suggestions what this might be and how to deal with this?
> thanks
> 
> ___
> Qgis-user mailing list
> [hidden email] 
> http://lists.osgeo.org/mailman/listinfo/qgis-user 
___
Qgis-user mailing list
[hidden email] 
http://lists.osgeo.org/mailman/listinfo/qgis-user 








If you reply to this email, your message will be added to the 
discussion below: 

http://osgeo-org.1560.x6.nabble.com/recurrent-PythonError-What-is-wrong-tp5176781p5176785.html
 


To start a new topic under Quantum GIS - User, email 
ml-node+s1560n4125267...@n6.nabble.com 
To unsubscribe from Quantum GIS - User, click here . 
NAML 




--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/recurrent-PythonError-What-is-wrong-tp5176781p5176793.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] recurrent PythonError. What is wrong?

2014-12-07 Thread Enrico Ferreguti
Hi Joris
The message appears to come from attributePainter plugin. 
Do you mean this is a new message error that occurs after your system or qgis 
update or is it an error that happens after the plugin installation?
Regards
Enrico Ferreguti


Il giorno 07/dic/2014, alle ore 17:01, Joris Hintjens  ha 
scritto:

> Hello,
>  Running QGIS 2.6 on OS10.10yosemite,
> Every time I change something in the layer pane (move, toggle on/of, add or 
> detail a layer, I encounter recurrent errormessages. what is wrong?
> 
> Traceback (most recent call last):
>   File 
> "/Users/joris/.qgis2/python/plugins/attributePainter/attributepainter.py", 
> line 152, in checkOnLayerChange
> self.layerHighlighted.editingStarted.disconnect(self.checkEditable)
> RuntimeError: wrapped C/C++ object of type QgsVectorLayer has been deleted
> 
> Any suggestions what this might be and how to deal with this?
> thanks
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Map Composer and Attributes from a layer

2014-12-07 Thread Randal Hale
Is it possible to insert an attribute into map composer? I'm thinking it 
is but I'm stumbling just a bit.


I have a layer that will change through time. I want to insert the name 
of the polygon into map composer with the area as part of some text at 
the bottom of the map. I am thinking I use the getFeature and/or the 
attribute function to insert an expression - but I'm not entirely sure.


I'm pulling the data from postgis so I can create a view with just that 
one polygon if that helps.


Thanks so much - not that it probably matters but Ubuntu 14.04 QGIS 2.6.1

Randy


--
-
Randal Hale
North River Geographic Systems, Inc
http://www.northrivergeographic.com
423.653.3611 rjh...@northrivergeographic.com
twitter:rjhale http://about.me/rjhale
http://www.northrivergeographic.com/spatial-connect

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] recurrent PythonError. What is wrong?

2014-12-07 Thread Joris Hintjens
Hello,
 Running QGIS 2.6 on OS10.10yosemite,
Every time I change something in the layer pane (move, toggle on/of, add or 
detail a layer, I encounter recurrent errormessages. what is wrong?

Traceback (most recent call last):
  File 
"/Users/joris/.qgis2/python/plugins/attributePainter/attributepainter.py", line 
152, in checkOnLayerChange
self.layerHighlighted.editingStarted.disconnect(self.checkEditable)
RuntimeError: wrapped C/C++ object of type QgsVectorLayer has been deleted

Any suggestions what this might be and how to deal with this?
thanks

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Qgis uninstall Osx

2014-12-07 Thread Anita Graser
Fyi: there was a bug in the processing join script. That issue has nothing
to do with installation.
Best wishes
Anita
On Dec 7, 2014 9:27 AM, "Ramon Andiñach"  wrote:

>
> On 07/12/2014, at 10:41 , Ramon Andiñach wrote:
>
> >
> > On 05/12/2014, at 07:32 , William Kyngesburye wrote:
> >
> >> For executable parts of QGIS, the application and the ~/.qgis2 folder
> are all there is.  There are Python modules (matplotlib, etc.), but those
> are separate from QGIS, and both versions of QGIS use the same versions of
> those Python modules.
> >>
> >> The readme does say it's best to delete any existing QGIS app before
> installing another.  But nothing about deleting old QGIS plugin junk in
> .qgis2 (I thought I had something in the readme about this, maybe I did
> once), it can be tricky for the average user to manage (I have a standing
> request to move this folder to users' Application Support on OS X).
> >
> >
> > Hi William,
> >
> > Thanks for the time that you put into packaging QGIS.
> >
> > I'm seeing that the "Readme before installing" has notes about deleting
> the old version first, but the "Readme" doesn't.
> > Neither seems to have anything about .qgis2 - although at least for
> 2.6.1 this seems to be giving grief to mostly windows users.
> >
> > I wonder if the "best to delete the old version" note might not be worth
> replicating in the "Readme" so that it's under the nose of people while the
> installer is running. What do you think?
> >
> > I'm also going to note that the requirements for QGIS on
> http://www.kyngchaos.com/software/qgis and in the "Readme" differ by
> numpy.
>
> Although I note that numpy is in the complete framework.
> The reason I mention it is that if someone actually did read the readme,
> then they might find themselves wondering why the website just says the
> complete framework and matplotlib, while the readme has those and numpy.
> Which might make them wonder if they missed something out.
>
> -ramon.
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Qgis uninstall Osx

2014-12-07 Thread Ramon Andiñach

On 07/12/2014, at 10:41 , Ramon Andiñach wrote:

> 
> On 05/12/2014, at 07:32 , William Kyngesburye wrote:
> 
>> For executable parts of QGIS, the application and the ~/.qgis2 folder are 
>> all there is.  There are Python modules (matplotlib, etc.), but those are 
>> separate from QGIS, and both versions of QGIS use the same versions of those 
>> Python modules.
>> 
>> The readme does say it's best to delete any existing QGIS app before 
>> installing another.  But nothing about deleting old QGIS plugin junk in 
>> .qgis2 (I thought I had something in the readme about this, maybe I did 
>> once), it can be tricky for the average user to manage (I have a standing 
>> request to move this folder to users' Application Support on OS X).
> 
> 
> Hi William,
> 
> Thanks for the time that you put into packaging QGIS.
> 
> I'm seeing that the "Readme before installing" has notes about deleting the 
> old version first, but the "Readme" doesn't.
> Neither seems to have anything about .qgis2 - although at least for 2.6.1 
> this seems to be giving grief to mostly windows users.
> 
> I wonder if the "best to delete the old version" note might not be worth 
> replicating in the "Readme" so that it's under the nose of people while the 
> installer is running. What do you think?
> 
> I'm also going to note that the requirements for QGIS on 
> http://www.kyngchaos.com/software/qgis and in the "Readme" differ by numpy.

Although I note that numpy is in the complete framework.
The reason I mention it is that if someone actually did read the readme, then 
they might find themselves wondering why the website just says the complete 
framework and matplotlib, while the readme has those and numpy. Which might 
make them wonder if they missed something out.

-ramon. 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user