[QGIS-Developer] The build of weekly snapshots stopped in February

2020-03-18 Thread Andrea Giudiceandrea
Hi all,
it seems that the build of the weekly snapshots of qgis-dev from OSGeo4W as
standalone installer for Windows stopped in February: the last one is
QGIS-OSGeo4W-3.11.0-8 25-Feb-2020.

Regards.

Andrea



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] [Processing][Question] Using Data defined proprieties

2020-03-18 Thread Nyall Dawson
On Wed, 18 Mar 2020 at 02:21, João Gaspar  wrote:
>
> Hi Devs,
> I have a question about using data defined proprieties in algorithms. For 
> instance,
> if I want to do a Buffer using a field with a distance column I can use the 
> data defined proprieties and choose the field with distance.
>
> But when I want to use more than 1 layer and switch to batch processing where 
> I want to define the field with distance of each layer I can't use this 
> option.
>
> I try to use the name of the field in the option Add Values by Expression and 
> Calculate by Expression but the batch processing always assumes a default 
> value (10).
>
> In the case of SAGA and buffer algorithm, when you switch for batch 
> processing is possible to choose the field of distance per layer.
>
> What am I'm doing wrong? Or This is expected behaviour?

It's actually just an oversight. I just tested and (with a tiny code
change) it works fine. I'll open a PR.

Nyall
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] compare failing/succeeding CI builds (how to?)

2020-03-18 Thread Nyall Dawson
On Wed, 18 Mar 2020 at 05:32, Sandro Santilli  wrote:

> > This one not expected. What gdal/proj version do you use?
>
> I'm reporting what Travis says, so whatever GDAL/PROJ version is
> running on Travis. This is the run of this PR:
> https://github.com/qgis/QGIS/pull/31980

Hm, in that case something you've done has broken (or at least
changed) the test...

Nyall
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Plugin in limbo

2020-03-18 Thread Paolo Cavallini
No worries, please let me know if you need help.
Cheers.

On 18 March 2020 20:39:41 CET, Morten Sickel  wrote:
>Thanks, for some reason, I never picked up that I had got an issue in
>the plugin's bugtracker. 
>
>I'll fix. 
>
>Sorry for asking stupid questions and thanks for the help! 
>
>Morten 
>
>On 2020-03-18 20:32, Paolo Cavallini wrote:
>
>> Please have a look to the GH bugtracker.
>> Cheers.
>> 
>> On 18 March 2020 19:42:38 CET, Morten Sickel 
>wrote: 
>> 
>> I just got an unapproval message,  no  link to the ticket, so idea
>what is the problem... 
>> 
>> Morten   
>> 
>> Sent from Mail [1] for Windows 10 
>> 
>> From: Paolo Cavallini
>> Sent: onsdag 18. mars 2020 19:39
>> To: qgis-developer@lists.osgeo.org; Alessandro Pasotti;
>mor...@sickel.net
>> Cc: QGIS Developer Mailing List
>> Subject: Re: [QGIS-Developer] Plugin in limbo 
>> 
>> Please see the ticket opened.
>> Do you received gh notifications?
>> Cheers.
>> 
>> On 18 March 2020 19:25:18 CET, Alessandro Pasotti
> wrote: 
>> 
>> approved
>> 
>> On Wed, Mar 18, 2020 at 7:16 PM Morten Sickel 
>wrote:
>>> 
>> 
>> Hi,
>> 
>> I uploaded a qgis plugin some weeks ago that is still awaiting
>approval
>> 
>> http://plugins.qgis.org/plugins/DataLoader
>> 
>> I think I messed up the metadata the first time I uploaded it, but
>after
>> I corrected that and defined a new version, I have still not heard
>> anything. If there are any problems with the plugin, I would like to
>> know about it so I could correct it.
>> 
>> Best regard
>> 
>> Morten Sickel
>> 
>> QGIS-Developer mailing list
>> QGIS-Developer@lists.osgeo.org
>> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>
>-- 
>Please excuse my brevity. 
>
> 
>
>Links:
>--
>[1] https://go.microsoft.com/fwlink/?LinkId=550986

-- 
Please excuse my brevity.___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] QGIS "fast" mode

2020-03-18 Thread Tomas Straupis
2020-03-18, tr, 21:41 kimaidou rašė:
> # only few requests are avoided as you pointed out so the performance 
> improves "only" a bit

  In large databases those few requests take minutes and sometimes
even hours... For servers even 30 seconds are too much when you're
trying to add a new QGIS server process to existing say 10 while on
high load doing 500 requests per second.

> # sometimes you have some layers with changing data, and there is actually no 
> way to trust only a subset of layers inside the project

  1. If geometry types are changing by design, then checking geometry
type upon project loading is not enough. Then you need to ALWAYS
filter your results by requested geometry type. But only if it is the
case of varying geometry types. In my opinion, developer of the
layer/query should know beforehand if it is possible for geometry
types to variate and then create a view filtering on geometry type (or
it could be an option in QGIS ~"filter on geometry type").

  2. If database schemas are changing on-line then I would say
something is very wrong with the IT processes. Changes should start on
dev environment where data changes and QGIS project changes as well.
Then changes to db structure go to other environments up to production
in patches TOGETHER with updated QGIS project. System (in this case
QGIS) should never (in my experience) try to "fix" the problem because
it does not know all required information: maybe the project was
opened in incorrect environment, maybe it is a temporary problem,
maybe the real table is missing and you're accidentally trying to
query incorrect table which was never supposed to be queried -> strict
rules/control. Of course there could be a button "refresh" on a layer
to allow operator to re-query layer information upon manual request.

> Do you think it would be interesting to have the trust option per layer and 
> not only per project?

  Theoretically there could be very different data sources, but in my
opinion if organisation uses strict IT processes then all layers will
be strictly managed (you would rarely/never have direct access to the
database of a different company/institution with different/weaker
processes). And vice versa.

-- 
Tomas
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] QGIS "fast" mode

2020-03-18 Thread kimaidou
Hi all

Thanks for raising this issue and for your proposal of patch. I agree with
you that in many cases, completely trusting the project for columns, srid,
and all other things needed by Qgis would improve performances a lot in
project loading, and for Qgis server getcapabilities requests.

I do not use often the trust option for two reasons

# only few requests are avoided as you pointed out so the performance
improves "only" a bit
# sometimes you have some layers with changing data, and there is actually
no way to trust only a subset of layers inside the project

Do you think it would be interesting to have the trust option per layer and
not only per project?

Regards
Michael

Le mardi 17 mars 2020, Julien Cabieces  a
écrit :
>
> Hi
>
>>   If I understand correctly, I can change my patch to skip geometry
>> type and srid check when they are saved in project already and when
>> option "trust project" is switched on?
>> (https://github.com/qgis/QGIS/pull/34738)
>
> Yes, I think it looks like the appropriate way of doing it
> ___
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Plugin in limbo

2020-03-18 Thread Morten Sickel
Thanks, for some reason, I never picked up that I had got an issue in
the plugin's bugtracker. 

I'll fix. 

Sorry for asking stupid questions and thanks for the help! 

Morten 

On 2020-03-18 20:32, Paolo Cavallini wrote:

> Please have a look to the GH bugtracker.
> Cheers.
> 
> On 18 March 2020 19:42:38 CET, Morten Sickel  wrote: 
> 
> I just got an unapproval message,  no  link to the ticket, so idea what is 
> the problem... 
> 
> Morten   
> 
> Sent from Mail [1] for Windows 10 
> 
> From: Paolo Cavallini
> Sent: onsdag 18. mars 2020 19:39
> To: qgis-developer@lists.osgeo.org; Alessandro Pasotti; mor...@sickel.net
> Cc: QGIS Developer Mailing List
> Subject: Re: [QGIS-Developer] Plugin in limbo 
> 
> Please see the ticket opened.
> Do you received gh notifications?
> Cheers.
> 
> On 18 March 2020 19:25:18 CET, Alessandro Pasotti  wrote: 
> 
> approved
> 
> On Wed, Mar 18, 2020 at 7:16 PM Morten Sickel  wrote:
>> 
> 
> Hi,
> 
> I uploaded a qgis plugin some weeks ago that is still awaiting approval
> 
> http://plugins.qgis.org/plugins/DataLoader
> 
> I think I messed up the metadata the first time I uploaded it, but after
> I corrected that and defined a new version, I have still not heard
> anything. If there are any problems with the plugin, I would like to
> know about it so I could correct it.
> 
> Best regard
> 
> Morten Sickel
> 
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

-- 
Please excuse my brevity. 

 

Links:
--
[1] https://go.microsoft.com/fwlink/?LinkId=550986___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Plugin in limbo

2020-03-18 Thread Paolo Cavallini
Please have a look to the GH bugtracker.
Cheers.

On 18 March 2020 19:42:38 CET, Morten Sickel  wrote:
>I just got an unapproval message,  no  link to the ticket, so idea what
>is the problem…
>
>Morten  
>
>Sent from Mail for Windows 10
>
>From: Paolo Cavallini
>Sent: onsdag 18. mars 2020 19:39
>To: qgis-developer@lists.osgeo.org; Alessandro Pasotti;
>mor...@sickel.net
>Cc: QGIS Developer Mailing List
>Subject: Re: [QGIS-Developer] Plugin in limbo
>
>Please see the ticket opened.
>Do you received gh notifications?
>Cheers.
>On 18 March 2020 19:25:18 CET, Alessandro Pasotti 
>wrote:
>approved
>
>On Wed, Mar 18, 2020 at 7:16 PM Morten Sickel 
>wrote:
>>
> Hi,
>
>I uploaded a qgis plugin some weeks ago that is still awaiting approval
>
> http://plugins.qgis.org/plugins/DataLoader
>
>I think I messed up the metadata the first time I uploaded it, but
>after
> I corrected that and defined a new version, I have still not heard
> anything. If there are any problems with the plugin, I would like to
> know about it so I could correct it.
>
> Best regard
>
> Morten Sickel
>
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>
>
>-- 
>Please excuse my brevity.

-- 
Please excuse my brevity.___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Plugin in limbo

2020-03-18 Thread Morten Sickel
I just got an unapproval message,  no  link to the ticket, so idea what is the 
problem…

Morten  

Sent from Mail for Windows 10

From: Paolo Cavallini
Sent: onsdag 18. mars 2020 19:39
To: qgis-developer@lists.osgeo.org; Alessandro Pasotti; mor...@sickel.net
Cc: QGIS Developer Mailing List
Subject: Re: [QGIS-Developer] Plugin in limbo

Please see the ticket opened.
Do you received gh notifications?
Cheers.
On 18 March 2020 19:25:18 CET, Alessandro Pasotti  wrote:
approved

On Wed, Mar 18, 2020 at 7:16 PM Morten Sickel  wrote:
>
 Hi,

 I uploaded a qgis plugin some weeks ago that is still awaiting approval

 http://plugins.qgis.org/plugins/DataLoader

 I think I messed up the metadata the first time I uploaded it, but after
 I corrected that and defined a new version, I have still not heard
 anything. If there are any problems with the plugin, I would like to
 know about it so I could correct it.

 Best regard

 Morten Sickel

 QGIS-Developer mailing list
 QGIS-Developer@lists.osgeo.org
 List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
 Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


-- 
Please excuse my brevity.

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Plugin in limbo

2020-03-18 Thread Paolo Cavallini
Please see the ticket opened.
Do you received gh notifications?
Cheers.

On 18 March 2020 19:25:18 CET, Alessandro Pasotti  wrote:
>approved
>
>On Wed, Mar 18, 2020 at 7:16 PM Morten Sickel 
>wrote:
>>
>> Hi,
>>
>> I uploaded a qgis plugin some weeks ago that is still awaiting
>approval
>>
>> http://plugins.qgis.org/plugins/DataLoader
>>
>> I think I messed up the metadata the first time I uploaded it, but
>after
>> I corrected that and defined a new version, I have still not heard
>> anything. If there are any problems with the plugin, I would like to
>> know about it so I could correct it.
>>
>> Best regard
>>
>> Morten Sickel
>>
>> ___
>> QGIS-Developer mailing list
>> QGIS-Developer@lists.osgeo.org
>> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>
>
>
>-- 
>Alessandro Pasotti
>w3:   www.itopen.it
>___
>QGIS-Developer mailing list
>QGIS-Developer@lists.osgeo.org
>List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

-- 
Please excuse my brevity.___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1993] Spectral data loader unapproval notification.

2020-03-18 Thread noreply

Plugin Spectral data loader unapproval by pcav.
The plugin version "[1993] Spectral data loader 0.11 Experimental" is now 
unapproved
Link: http://plugins.qgis.org/plugins/DataLoader/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] Plugin in limbo

2020-03-18 Thread Alessandro Pasotti
approved

On Wed, Mar 18, 2020 at 7:16 PM Morten Sickel  wrote:
>
> Hi,
>
> I uploaded a qgis plugin some weeks ago that is still awaiting approval
>
> http://plugins.qgis.org/plugins/DataLoader
>
> I think I messed up the metadata the first time I uploaded it, but after
> I corrected that and defined a new version, I have still not heard
> anything. If there are any problems with the plugin, I would like to
> know about it so I could correct it.
>
> Best regard
>
> Morten Sickel
>
> ___
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer



-- 
Alessandro Pasotti
w3:   www.itopen.it
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [1993] Spectral data loader approval notification.

2020-03-18 Thread noreply

Plugin Spectral data loader approval by elpaso.
The plugin version "[1993] Spectral data loader 0.11 Experimental" is now 
approved
Link: http://plugins.qgis.org/plugins/DataLoader/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin in limbo

2020-03-18 Thread Morten Sickel

Hi,

I uploaded a qgis plugin some weeks ago that is still awaiting approval

http://plugins.qgis.org/plugins/DataLoader

I think I messed up the metadata the first time I uploaded it, but after 
I corrected that and defined a new version, I have still not heard 
anything. If there are any problems with the plugin, I would like to 
know about it so I could correct it.


Best regard

Morten Sickel

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Plugin [791] CLUZ3 approval notification.

2020-03-18 Thread noreply

Plugin CLUZ3 approval by pcav.
The plugin version "[791] CLUZ3 2020.3.18" is now approved
Link: http://plugins.qgis.org/plugins/cluz/
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer