Re: [Qgis-user] Labels within a bubble callouts

2020-04-16 Thread Nyall Dawson
On Thu, 16 Apr 2020 at 05:45, krishna Ayyala  wrote:
>
> Hello,
> I have a point shape file with about 50 points.The name of each point is 
> A1,A2,A3..A50. i.e. they are labeled from A1 to A50. I wish, each of 
> these labels to appear inside a bubble callout as shown in the diagram below. 
> Is it possible to do this in QGIS?

It's not currently supported -- you can get dynamic callouts by using
a simple line callout only. QGIS doesn't yet have support for "bubble"
style callouts.

Nyall

>
> Regards.
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Labels within a bubble callouts

2020-04-16 Thread krishna Ayyala
Yes, I imported using the background on the labels tab. Still the same
issue. Able to see the bubble callout as an image. Unable to tweak or
resize the callout. Label text is also completely out of the bubble callout.

On Thu, Apr 16, 2020 at 10:22 AM David Strip  wrote:

> Le 16 avr. 2020 à 09:33, krishna Ayyala 
>  a écrit :
>
>
> 
> Good Morning Nicolas,
> Thanks for your reply. In the SVG images library, there is no bubble
> callout symbol. I created one bubble callout symbol and saved it as an svg
> file. I tried to import this symbol into the map. It is just showing as an
> image. I cannot do anything with it. The whole purpose is; after labeling
> the points layer with bubble callouts, I want to tweak them and position
> them at appropriate places for each point within the shape file. Just
> similar to the text annotation in QGIS. Any leads on this please?
>
> Regards.
>
>
> What do you mean when you say you "imported this symbol"? Are you using it
> as the symbol in the symbology tab of the properties? If so, that's not
> right. You want to use it as the background on the Labels tab.
>
>
> --
>
> If you can, help others; if you cannot do that, at least do not harm them.
> * Dalai Lama*
>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] re-distributing randomly points within an existing polygon file

2020-04-16 Thread Håvard Tveite
The "Random points inside polygons" algorithm could be of
some help.  In the upcoming (?) "Random points in polygons"
algorithm (https://github.com/qgis/QGIS/pull/35745), it is
possible to "data define" the number of points for each
polygon, so when / if that algorithm becomes available,
you just need to make sure that you have an attribute to
your polygon layer that gives the count of households that
are inside the polygon (can be generated from your
households points using the "Join attributes by location
(summary)" algorithm).

When the random points have been generated, you have to
find a way to join your existing households to the
generated points.

Håvard

On 16.04.2020 23:03, Robert Sweeny wrote:
> I have 50k+ points representing all the heads of household in Montreal
> in 1901, which I have linked to their specific lot, one of 20k+ built
> lots in the city at the time. Many lots have large number of dots,
> hotels and apartment buildings for example, while others frequently have
> up to 15 on a single lot. Currently they are all grouped together, not
> on top of each other, but almost. I would like to re-distribute them
> evenly over the space of the lot, so they would be more visible. Any
> suggestions on how I should proceed?
> 
> Thanks in advance
> 
> Robert Sweeny
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
> 
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] re-distributing randomly points within an existing polygon file

2020-04-16 Thread Robert Sweeny
I have 50k+ points representing all the heads of household in Montreal 
in 1901, which I have linked to their specific lot, one of 20k+ built 
lots in the city at the time. Many lots have large number of dots, 
hotels and apartment buildings for example, while others frequently have 
up to 15 on a single lot. Currently they are all grouped together, not 
on top of each other, but almost. I would like to re-distribute them 
evenly over the space of the lot, so they would be more visible. Any 
suggestions on how I should proceed?


Thanks in advance

Robert Sweeny

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] geometry generator - unexpected results

2020-04-16 Thread David Fawcett
I am trying to use a geometry generator to accomplish the "hand-drawn" line
style.

Some great recent examples by:

Klas Karlsson
https://twitter.com/klaskarlsson/status/1249333750451879937

Hamish:
https://polemic.nz/2019/11/18/foss4g-qgis-geometry-generators/

I am using the code below from the blog post by Hamish in QGIS 3.12:

make_line(
array_foreach(
generate_series(
0, length($geometry), 100
),
translate(
line_interpolate_point($geometry, @element),
rand(-10, 10),
rand(-10, 10)
)
)
)

Here is an image of what the results look like:
https://github.com/fawcett/examples/blob/master/lines.png

The line geometries are in blue, and the geometry generator output is in black.

Can anyone suggest what is going wrong?

Thank you,

David.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Labels within a bubble callouts

2020-04-16 Thread qgis-user

  
  
Le 16 avr. 2020 à 09:33, krishna Ayyala 
  a écrit :


  
  
  


  Good Morning Nicolas,
  Thanks for your reply. In the SVG images library, there
is no bubble callout symbol. I created one bubble callout
symbol and saved it as an svg file. I tried to import this
symbol into the map. It is just showing as an image. I
cannot do anything with it. The whole purpose is; after
labeling the points layer with bubble callouts, I want to
tweak them and position them at appropriate places for each
point within the shape file. Just similar to the text
annotation in QGIS. Any leads on this please?
  
  
  
  Regards.

  


What do you mean when you say you "imported this symbol"? Are you
using it as the symbol in the symbology tab of the properties? If
so, that's not right. You want to use it as the background on the
Labels tab.


  

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Labels within a bubble callouts

2020-04-16 Thread Nicolas Cadieux
Not sure,

I would wait for someone else so come up with a better idea. Perhaps choose a 
different symbol.

Nicolas Cadieux
Ça va bien aller!

> Le 16 avr. 2020 à 09:33, krishna Ayyala  a écrit :
> 
> 
> Good Morning Nicolas,
> Thanks for your reply. In the SVG images library, there is no bubble callout 
> symbol. I created one bubble callout symbol and saved it as an svg file. I 
> tried to import this symbol into the map. It is just showing as an image. I 
> cannot do anything with it. The whole purpose is; after labeling the points 
> layer with bubble callouts, I want to tweak them and position them at 
> appropriate places for each point within the shape file. Just similar to the 
> text annotation in QGIS. Any leads on this please?
> 
> Regards.
> 
>> On Wed, Apr 15, 2020 at 4:35 PM Nicolas Cadieux 
>>  wrote:
>> Hi,
>> 
>> Under layer properties- labels - Background-shape, you could create the 
>> shape you are looking for or use a SVG symbol.
>> 
>> Nicolas Cadieux
>> Ça va bien aller!
>> 
>> > Le 15 avr. 2020 à 15:45, krishna Ayyala  a écrit :
>> > 
>> > 
>> > Hello,
>> > I have a point shape file with about 50 points.The name of each point is 
>> > A1,A2,A3..A50. i.e. they are labeled from A1 to A50. I wish, each 
>> > of these labels to appear inside a bubble callout as shown in the diagram 
>> > below. Is it possible to do this in QGIS?
>> > 
>> > Regards.
>> > 
>> > 
>> > 
>> > ___
>> > Qgis-user mailing list
>> > Qgis-user@lists.osgeo.org
>> > List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
>> > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Requesting knowledge.

2020-04-16 Thread Richard McDonnell
Im not quite sure what you are looking for, but if you are trying to reproject 
a dataset from WGS84 to ITRF2014 you can use the Reproject Layer tool in the 
Processing toolbox.



——
Richard McDonnell MSc GIS, FME Certified Professional
FRM Data Management

——
Oifig na nOibreacha Poiblí
Office of Public Works

Sráid Jonathan Swift, Baile Átha Troim, Co na Mí, C15 NX36
Jonathan Swift Street, Trim, Co Meath, C15 NX36
——
M +353 87 688 5964 T +353 1 647 6543
https://www.opw.ie

——
To send me files larger than 30MB, please use the link below 
https://filetransfer.opw.ie/filedrop/richard.mcdonn...@opw.ie

Email Disclaimer: https://www.opw.ie/en/disclaimer/
From: Qgis-user  On Behalf Of soe moe
Sent: 16 April 2020 12:54
To: qgis-user 
Subject: [Qgis-user] Requesting knowledge.

Dear QGIS-User

Hello : Nice to meet you all.
I would like to get you help.
I have a little problem for projection parameter calculation of World Geodetic 
System(WGS84) and International Terrestrial Reference Frame (ITRF2014) for 
Myanmar Region.
So . I would like to know where can I compute. Can I use Qgis Software 
computation of Parameter? If Qgis software can calculate parameter, Show me the 
way of Calculation process. Otherwise, Which way I Should use?

Thank you all my friend.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Labels within a bubble callouts

2020-04-16 Thread krishna Ayyala
Good Morning Nicolas,
Thanks for your reply. In the SVG images library, there is no bubble
callout symbol. I created one bubble callout symbol and saved it as an svg
file. I tried to import this symbol into the map. It is just showing as an
image. I cannot do anything with it. The whole purpose is; after labeling
the points layer with bubble callouts, I want to tweak them and position
them at appropriate places for each point within the shape file. Just
similar to the text annotation in QGIS. Any leads on this please?

Regards.

On Wed, Apr 15, 2020 at 4:35 PM Nicolas Cadieux <
nicolas.cadi...@archeotec.ca> wrote:

> Hi,
>
> Under layer properties- labels - Background-shape, you could create the
> shape you are looking for or use a SVG symbol.
>
> Nicolas Cadieux
> Ça va bien aller!
>
> > Le 15 avr. 2020 à 15:45, krishna Ayyala  a
> écrit :
> >
> > 
> > Hello,
> > I have a point shape file with about 50 points.The name of each point is
> A1,A2,A3..A50. i.e. they are labeled from A1 to A50. I wish, each
> of these labels to appear inside a bubble callout as shown in the diagram
> below. Is it possible to do this in QGIS?
> >
> > Regards.
> >
> > 
> >
> > ___
> > Qgis-user mailing list
> > Qgis-user@lists.osgeo.org
> > List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Labels within a bubble callouts

2020-04-16 Thread Thayer Young
 Hi Krishna,
You may want to look into using Map Tips, once you set them up they show when 
you hover over a vector feature. It is a two step process, first you turn them 
on (green dot with yellow callout icon), then you set them up for the layer of 
interest in the layer properties Display tab. Detailed instructions are linked 
below.
https://docs.qgis.org/3.10/en/docs/user_manual/working_with_vector/vector_properties.html#maptips

-Thayer

Message: 1
Date: Wed, 15 Apr 2020 13:45:21 -0600
From: krishna Ayyala 
To: qgis-user 
Subject: [Qgis-user] Labels within a bubble callouts
Message-ID:
    
Content-Type: text/plain; charset="utf-8"

Hello,
I have a point shape file with about 50 points.The name of each point is
A1,A2,A3..A50. i.e. they are labeled from A1 to A50. I wish, each
of these labels to appear inside a bubble callout as shown in the diagram
below. Is it possible to do this in QGIS?

Regards.

[image: image.png]
-- next part --
An HTML attachment was scrubbed...
URL: 

-- next part --
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 2529 bytes
Desc: not available
URL: 


--

  ___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Server installation on Windows via XAMPP

2020-04-16 Thread FrankoN

On 4/15/20 11:44 AM, Alessandro Pasotti wrote:
> On Wed, Apr 15, 2020 at 11:39 AM Franko Naimarevic

>>> What am I missing?
>> 
>> The web server component (apache or nginx or any other webserver you
>> can plug FCGI into).
>> 
>> FCGI binary is not an HTTP server.
>
>I think Franko does have a running Apache webserver: in XAMPP the A
>stands for Apache?
>

Yes, Apache is running through XAMPP! The XAMPP Control Panel shows it is
running with no errors.

>> If you have QGIS 3.12 you can try the standalone development server (I
>> have not tested it on windows but it may work), the executable name
>> should be qgis_mapserver.exe.
>
>@Allesandro: you say a standalone development server. But (even on
>windows) it's not that you run a webserver on port 80 if you run
>qgis_mapserver or qgis_mapserver.exe, is it? If I run it here it's
>initing all QGIS machinery and ends with:
>INFO Server[178177]: No server python plugins are available
>seemingly waiting for a connection, but I do not know how
>
>To make more clear to Franko: QGIS comes with 2 mapservers:
>- a fastcgi module and a (simple) (you need mod_fastcgi (or something
>like that for it)
>- a cgi module: qgis_mapserver.exe is the simple cgi version.
>
>The last one is easiest, IF the environment of apache is ok, you should
>be able to put this in your cgi-bin dir of apache.
>
>To set the right environment, you could have a look into the
>osgeo4w64\httpd.d\httpd_qgis.conf (which comes with an osgeo4w64 install
>of qgis-server) which has most of the apache-config rules you need:
>
>DefaultInitEnv O4W_QT_PREFIX "C:\OSGeo4W64/apps/Qt5"
>DefaultInitEnv O4W_QT_BINARIES "C:\OSGeo4W64/apps/Qt5/bin"
>DefaultInitEnv O4W_QT_PLUGINS "C:\OSGeo4W64/apps/Qt5/plugins"
>DefaultInitEnv O4W_QT_LIBRARIES "C:\OSGeo4W64/apps/Qt5/lib"
>DefaultInitEnv O4W_QT_TRANSLATIONS "C:\OSGeo4W64/apps/Qt5/translations"
>DefaultInitEnv O4W_QT_HEADERS "C:\OSGeo4W64/apps/Qt5/include"
>DefaultInitEnv O4W_QT_DOC "C:\OSGeo4W64/apps/Qt5/doc"
>
>DefaultInitEnv PATH
>"C:\OSGeo4W64\apps\qt5\bin;C:\OSGeo4W64\bin;C:\OSGeo4W64\apps\qgis\bin;C:\OSGeo4W64\apps\grass\@grasspath@\bin;C:\OSGeo4W64\apps\grass\@grasspath@\lib;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem"
>DefaultInitEnv QGIS_PREFIX_PATH "C:\OSGeo4W64\apps\qgis"
>DefaultInitEnv QT_PLUGIN_PATH
>"C:\OSGeo4W64\apps\qgis\qtplugins;C:\OSGeo4W64\apps\qt5\plugins"
>DefaultInitEnv TEMP "C:\Users\richa\AppData\Local\Temp"
>DefaultInitEnv PYTHONHOME "C:\OSGeo4W64\apps\Python37"
>DefaultInitEnv PYTHONPATH
>"C:\OSGeo4W64\apps\Python37;C:\OSGeo4W64\apps\Python37\Scripts"
>
>Alias /qgis/ C:\OSGeo4W64/apps/qgis/bin/
>
>
>SetHandler fcgid-script
>Options ExecCGI
>   # Order/Allow is for Apache 2.2
>#Order allow,deny
>#Allow from all
># Require is for Apache 2.4
>Require all granted
>
>
>Off course this should all match your paths, but given this your cgi (or
>fastcgi) should be able to find all stuff needed to run qgis-server.
>
>Easiest way for me was to run an apache with modfcgi in it, install
>qgis-server with osgeo4w64 and then just 'include' the httpd_qgis.conf
>in your httpd.conf
>

My osgeo4w64\httpd.d\httpd_qgis.conf contains everything you have written
here.

I'm sorry but I didn't quite understand what I should do in order to solve
my "Project file error" problem?





--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Requesting knowledge.

2020-04-16 Thread soe moe
Dear QGIS-User

Hello : Nice to meet you all.
I would like to get you help.
I have a little problem for projection parameter calculation of World
Geodetic System(WGS84) and International Terrestrial Reference Frame
(ITRF2014) for Myanmar Region.
So . I would like to know where can I compute. Can I use Qgis Software
computation of Parameter? If Qgis software can calculate parameter, Show me
the way of Calculation process. Otherwise, Which way I Should use?

Thank you all my friend.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS Plugin Unavailable in my desktop

2020-04-16 Thread soe moe
On Wed, Apr 15, 2020 at 1:50 PM Phil Wyatt  wrote:

> Hi Shrawan
>
>
>
> Can you access the plugin repository via a browser?
> https://plugins.qgis.org/plugins/plugins.xml
>
>
>
> This is the plugin repository location that should be set in Plugins,
> Manage and Install, Settings
>
>
>
> If you are behind a proxy it may be blocking access. You may need to set
> up a proxy under Settings, Network, Use Proxy for web access.
>
>
>
> Cheers - Phil
>
>
>
> *From:* Qgis-user  *On Behalf Of *shrawan
> tripathi
> *Sent:* Wednesday, 15 April 2020 5:04 PM
> *To:* qgis-user 
> *Subject:* [Qgis-user] QGIS Plugin Unavailable in my desktop
>
>
>
> Hi All, Is anyone help me as
>
> QGIS Official Plugin Repository is unavailable in mt QGIS Desktop so I
> would not be able to install the plugin.
>
> I reload id but not get it.
>
>
>
> --
>
> Warm regards
>
> Shrawan Kumar Tripathi
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Split features not working for me

2020-04-16 Thread Iain
I am trying to split a line feature using the "split features" tool on the
Editing toolbar in QGIS 10.4. 

 

The manual advice on how to do this is as follows

 

To split line or polygon features:

 

Select the Split Features tool.

 

Draw a line across the feature(s) you want to split. If a selection is
active, only selected features are split.

When set, default values or clauses are applied to corresponding fields and
other attributes of the parent feature are by default copied to the new
features.

 

You can then as usually modify any of the attributes of any resulting
feature.

 

The tool works sometimes but for the last few hours it is constantly
crashing QGIS.

 

What I am doing is 

 

Selecting the line

Editing is on

Left Click on the Tool

I get a circular cross hair object

I position that on one side of the line and left click

I then drag the line across the line feature.

I then right Click and get an error message - "No features were split if
there are selected features the split tool only applies to those. If you
would like to split all the features under the split line, clear the
selection".

If I left click the line is not finished and keeps drawing.

If I right click - nothing happens for a while, then QGIS crashes.

 

I have tried rebooting my computer. I have tried QGIS Noosa, I have tried
screaming in frustration. 

 

I have looked at YouTube videos (most are using QGIS 2).

 

The property information is 

 


Name

NSW Railway lines 2018


Path

 
Y:\Maps\Railway infrastructure\NSW\NSW Railways.gpkg


Source

Y:/Maps/Railway infrastructure/NSW/NSW Railways.gpkg|layername=NSW Railway
lines 2018


Storage

GPKG


Comment



Encoding

UTF-8


Geometry

Line (MultiLineStringZ)


CRS

EPSG:4326 - WGS 84 - Geographic


Extent

141.00100048,-37.26030009 :
153.6125,-28.16560013


Unit

degrees


Feature count

12,317

 

 

I am fairly new to QGIS so I am really looking for detailed blow by blow
instructions or help.

 

Thanks 

 

Dr Iain Stuart

JCIS Consultants 

P.O. Box 2397

Burwood North

NSW, 2134

 

(02) 9701 0191
(0413) 380116 (m)

 

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] qgis2web

2020-04-16 Thread Manuel Fernandez
Hello, I have some problems with this plugin. I am working with QGIS
3.12.1-București. Well, when I have already made a map, I exported it with
qgis2web and although I check the option: Appearance/Add layers list as
Expanded, I can't see it on the map. This complement don't appear in my
map. (html). Can anyone help me whit that?
Thank you


Libre
de virus. www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS in the commercial world

2020-04-16 Thread Matthias Kuhn

Hi Andreas, Barend,

We definitely could have been clearer in the question. But I think the 
"real" organisation size matters as well, the IT infrastructure overhead 
is relative to the organisation size and not the number of users (which 
also would have been interesting).


Note to self: be hyper-precise in future survey questions

Matthias

On 4/16/20 10:01 AM, Andreas Neumann wrote:


Hi Barend,

Right - that question should have been more clearly stated. I agree 
and apologize for not noticing it when we discussed it.


Thanks for filling in the survey!

Andreas

Am 16.04.20 um 09:36 schrieb b.j.kob...@utwente.nl:


Just a side-note: I filled in the survey and said I work in an 
organization of >100 employees. That is because my university has 
almost 800 staff. But only a max of 50 or so use QGIS regularly. On 
the other hand we have 3200 students of which also a proportion uses 
it...


In other words, don't make assumptions on actual QGIS users based on 
that survey question!


--

Barend Köbben

Senior Lecturer – ITC- University Twente

PO Box 217, 7500 AE Enschede (The Netherlands)

ITC Building (Hengelosestraat 99) room 1-065

+31-(0)53 4874 253

On 16/04/2020, 08:21, "Qgis-user on behalf of Andreas Neumann" 
 on behalf of 
a.neum...@carto.net > wrote:


Hi Michael,

Yes, I interpret it is the nr of employees using (Q)GIS on a regular 
basis within an organization. And it is based on self-declaration and 
there is no control about the numbers whatsoever.


We have quite a nr of municipalities that support us on the "small" 
level as sustaining member.


All is based on a voluntary contribution anyway and you are not 
required to be a member in order to use QGIS.


Greetings,

Andreas

Am 16.04.20 um 02:45 schrieb Michael Dufty:

Sustaining membership works  out a bit steep for us if you follow
the guideline – about 10 times what we currently pay for
commercial software (Manifold).

Is it reasonable to interpret number of employees as GIS users
rather than total employees?

I see my local council is on there as small, and I’m sure they
have more than 10 employees.

Obviously no limits apply if we go with donations without membership.

*Michael Dufty*

*From:*Anita Graser  
*Sent:* Wednesday, 15 April 2020 1:47 PM
*To:* i...@jcis.net.au ;
qgis-user@lists.osgeo.org 
*Subject:* Re: [Qgis-user] QGIS in the commercial world

Dear Iain,

Yes, QGIS has an entity: QGIS.ORG is the worldwide association of
QGIS users and developers. QGIS.ORG is constituted as a Swiss
‘association’
(https://qgis.org/en/site/getinvolved/governance/charter.html)
but it is not a registered charity.

To help support QGIS, organizations are invited to become
sustaining members of QGIS.ORG. The details of our sustaining
membership program are described in:

https://qgis.org/en/site/getinvolved/governance/sustaining_members/sustaining_members.html

You can also see who's already supporting QGIS:
https://qgis.org/en/site/about/sustaining_members.html


Regards,

Anita



___

Qgis-user mailing list

Qgis-user@lists.osgeo.org  

List info:https://lists.osgeo.org/mailman/listinfo/qgis-user

Unsubscribe:https://lists.osgeo.org/mailman/listinfo/qgis-user



___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS in the commercial world

2020-04-16 Thread Andreas Neumann

Hi Barend,

Right - that question should have been more clearly stated. I agree and 
apologize for not noticing it when we discussed it.


Thanks for filling in the survey!

Andreas

Am 16.04.20 um 09:36 schrieb b.j.kob...@utwente.nl:


Just a side-note: I filled in the survey and said I work in an 
organization of >100 employees. That is because my university has 
almost 800 staff. But only a max of 50 or so use QGIS regularly. On 
the other hand we have 3200 students of which also a proportion uses it...


In other words, don't make assumptions on actual QGIS users based on 
that survey question!


--

Barend Köbben

Senior Lecturer – ITC- University Twente

PO Box 217, 7500 AE Enschede (The Netherlands)

ITC Building (Hengelosestraat 99) room 1-065

+31-(0)53 4874 253

On 16/04/2020, 08:21, "Qgis-user on behalf of Andreas Neumann" 
 on behalf of 
a.neum...@carto.net > wrote:


Hi Michael,

Yes, I interpret it is the nr of employees using (Q)GIS on a regular 
basis within an organization. And it is based on self-declaration and 
there is no control about the numbers whatsoever.


We have quite a nr of municipalities that support us on the "small" 
level as sustaining member.


All is based on a voluntary contribution anyway and you are not 
required to be a member in order to use QGIS.


Greetings,

Andreas

Am 16.04.20 um 02:45 schrieb Michael Dufty:

Sustaining membership works  out a bit steep for us if you follow
the guideline – about 10 times what we currently pay for
commercial software (Manifold).

Is it reasonable to interpret number of employees as GIS users
rather than total employees?

I see my local council is on there as small, and I’m sure they
have more than 10 employees.

Obviously no limits apply if we go with donations without membership.

*Michael Dufty*

*From:*Anita Graser  
*Sent:* Wednesday, 15 April 2020 1:47 PM
*To:* i...@jcis.net.au ;
qgis-user@lists.osgeo.org 
*Subject:* Re: [Qgis-user] QGIS in the commercial world

Dear Iain,

Yes, QGIS has an entity: QGIS.ORG is the worldwide association of
QGIS users and developers. QGIS.ORG is constituted as a Swiss
‘association’
(https://qgis.org/en/site/getinvolved/governance/charter.html) but
it is not a registered charity.

To help support QGIS, organizations are invited to become
sustaining members of QGIS.ORG. The details of our sustaining
membership program are described in:

https://qgis.org/en/site/getinvolved/governance/sustaining_members/sustaining_members.html

You can also see who's already supporting QGIS:
https://qgis.org/en/site/about/sustaining_members.html


Regards,

Anita



___

Qgis-user mailing list

Qgis-user@lists.osgeo.org  

List info:https://lists.osgeo.org/mailman/listinfo/qgis-user

Unsubscribe:https://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS in the commercial world

2020-04-16 Thread b.j.kob...@utwente.nl
Just a side-note: I filled in the survey and said I work in an organization of 
>100 employees. That is because my university has almost 800 staff. But only a 
max of 50 or so use QGIS regularly. On the other hand we have 3200 students of 
which also a proportion uses it...

In other words, don't make assumptions on actual QGIS users based on that 
survey question!

--
Barend Köbben
Senior Lecturer – ITC- University Twente
PO Box 217, 7500 AE Enschede (The Netherlands)
ITC Building (Hengelosestraat 99) room 1-065
+31-(0)53 4874 253

On 16/04/2020, 08:21, "Qgis-user on behalf of Andreas Neumann" 
mailto:qgis-user-boun...@lists.osgeo.org> on 
behalf of a.neum...@carto.net> wrote:


Hi Michael,

Yes, I interpret it is the nr of employees using (Q)GIS on a regular basis 
within an organization. And it is based on self-declaration and there is no 
control about the numbers whatsoever.

We have quite a nr of municipalities that support us on the "small" level as 
sustaining member.

All is based on a voluntary contribution anyway and you are not required to be 
a member in order to use QGIS.

Greetings,

Andreas
Am 16.04.20 um 02:45 schrieb Michael Dufty:
Sustaining membership works  out a bit steep for us if you follow the guideline 
– about 10 times what we currently pay for commercial software (Manifold).
Is it reasonable to interpret number of employees as GIS users rather than 
total employees?
I see my local council is on there as small, and I’m sure they have more than 
10 employees.

Obviously no limits apply if we go with donations without membership.

Michael Dufty

From: Anita Graser 
Sent: Wednesday, 15 April 2020 1:47 PM
To: i...@jcis.net.au; 
qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] QGIS in the commercial world


Dear Iain,

Yes, QGIS has an entity: QGIS.ORG is the worldwide association of QGIS users 
and developers. QGIS.ORG is constituted as a Swiss ‘association’ 
(https://qgis.org/en/site/getinvolved/governance/charter.html) but it is not a 
registered charity.

To help support QGIS, organizations are invited to become sustaining members of 
QGIS.ORG. The details of our sustaining membership program are described in: 
https://qgis.org/en/site/getinvolved/governance/sustaining_members/sustaining_members.html

You can also see who's already supporting QGIS: 
https://qgis.org/en/site/about/sustaining_members.html

Regards,

Anita




___

Qgis-user mailing list

Qgis-user@lists.osgeo.org

List info: https://lists.osgeo.org/mailman/listinfo/qgis-user

Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS in the commercial world

2020-04-16 Thread Bo Victor Thomsen

Hi Michael -

It is 100% voluntary if a company wants to pay for a sustaining 
membership. Pay what you feel is appropriate. Or pay a one-time donation.


As an example : The Danish QGIS Usergroup (of which I'm a board member) 
pays as a "Large Member" each year. We represent a number of 
municipalities and companies that using is QGIS. Every institution pays 
around 300 Euro /year for membership in the Danish User Group.


A large part of the usergroup's income goes directly to the 
international QGIS organisation. The rest is used for QGIS activities 
related directly to Denmark.


Some of our members also supports  qgis.org directly or by supporting 
QGIS development.


The point is: Every organisation supports QGIS  with the amount of money 
they find is appropriate. Or by other method, like directly supporting 
the development of new functionality.


--
Med venlig hilsen / Kind regards

Bo Victor Thomsen


Den 16-04-2020 kl. 02:45 skrev Michael Dufty:


Sustaining membership works  out a bit steep for us if you follow the 
guideline – about 10 times what we currently pay for commercial 
software (Manifold).


Is it reasonable to interpret number of employees as GIS users rather 
than total employees?


I see my local council is on there as small, and I’m sure they have 
more than 10 employees.


Obviously no limits apply if we go with donations without membership.

*Michael Dufty*

*From:*Anita Graser 
*Sent:* Wednesday, 15 April 2020 1:47 PM
*To:* i...@jcis.net.au; qgis-user@lists.osgeo.org
*Subject:* Re: [Qgis-user] QGIS in the commercial world

Dear Iain,

Yes, QGIS has an entity: QGIS.ORG is the worldwide association of QGIS 
users and developers. QGIS.ORG is constituted as a Swiss ‘association’ 
(https://qgis.org/en/site/getinvolved/governance/charter.html) but it 
is not a registered charity.


To help support QGIS, organizations are invited to become sustaining 
members of QGIS.ORG. The details of our sustaining membership program 
are described in: 
https://qgis.org/en/site/getinvolved/governance/sustaining_members/sustaining_members.html


You can also see who's already supporting QGIS: 
https://qgis.org/en/site/about/sustaining_members.html 



Regards,

Anita


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] QGIS in the commercial world

2020-04-16 Thread Andreas Neumann

Hi Michael,

Yes, I interpret it is the nr of employees using (Q)GIS on a regular 
basis within an organization. And it is based on self-declaration and 
there is no control about the numbers whatsoever.


We have quite a nr of municipalities that support us on the "small" 
level as sustaining member.


All is based on a voluntary contribution anyway and you are not required 
to be a member in order to use QGIS.


Greetings,

Andreas

Am 16.04.20 um 02:45 schrieb Michael Dufty:


Sustaining membership works  out a bit steep for us if you follow the 
guideline – about 10 times what we currently pay for commercial 
software (Manifold).


Is it reasonable to interpret number of employees as GIS users rather 
than total employees?


I see my local council is on there as small, and I’m sure they have 
more than 10 employees.


Obviously no limits apply if we go with donations without membership.

*Michael Dufty*

*From:*Anita Graser 
*Sent:* Wednesday, 15 April 2020 1:47 PM
*To:* i...@jcis.net.au; qgis-user@lists.osgeo.org
*Subject:* Re: [Qgis-user] QGIS in the commercial world

Dear Iain,

Yes, QGIS has an entity: QGIS.ORG is the worldwide association of QGIS 
users and developers. QGIS.ORG is constituted as a Swiss ‘association’ 
(https://qgis.org/en/site/getinvolved/governance/charter.html) but it 
is not a registered charity.


To help support QGIS, organizations are invited to become sustaining 
members of QGIS.ORG. The details of our sustaining membership program 
are described in: 
https://qgis.org/en/site/getinvolved/governance/sustaining_members/sustaining_members.html


You can also see who's already supporting QGIS: 
https://qgis.org/en/site/about/sustaining_members.html 



Regards,

Anita


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user