Re: [QGIS-Developer] It's time to contribute to the Changelog for QGIS 3.20!

2021-06-07 Thread uclaros
Hi Tim, https://github.com/qgis/QGIS/pull/42250 could be added to the changelog, it missed the changelog tags. There's also a typo on the category 's/Digitising/Digitizing/' Best regards, Stefanos -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html

Re: [QGIS-Developer] #qgis on Freenode

2021-05-28 Thread uclaros
Maybe also post this to the PSC list? -- 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

Re: [QGIS-Developer] Speeding up a virtual layer

2021-05-07 Thread uclaros
For a simple left join you can skip using a virtual layer and use layer properties > join instead. -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

[QGIS-Developer] Crash when loading Oracle layers

2021-04-20 Thread uclaros
Hi list, on Debian Bullseye I can no longer load Oracle layers without crashing. I have attached a stack trace on https://github.com/qgis/QGIS/issues/42857 The recent change on my system triggering this was probably upgrading qt5 to 5.15.2 before rebuilding qgis. Anyone using Oracle on Debian

Re: [QGIS-Developer] Require documentation PR for new features

2021-04-19 Thread uclaros
Hi all, just wanted to point out that tooltips are at least as useful as the docs and while the docs may be maintained by the documentation team, the tooltips are not. Furthermore, a missing tooltip is harder to be fixed by a documentation contributor or a first time contributor since sometimes it

[QGIS-Developer] moderation for nabble.com

2021-04-01 Thread uclaros
Hi all, could someone with moderation rights remove the huge spam posts from OSGeo.org › OSGeo Software Projects › QGIS on nabble? Browsing the lists through http://osgeo-org.1560.x6.nabble.com/QGIS-f4099105.html has become inconvenient! Regards, Stefanos -- Sent from:

Re: [QGIS-Developer] Welcome screen with garbled HTML code

2021-03-23 Thread uclaros
Looks like a translation problem. I'm not too familiar with transifex, but if you search for "changelog" there is something fishy with the parameters. -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer

Re: [QGIS-Developer] FFT convolution plugin help

2021-02-05 Thread uclaros
Hi Salva, can't you wrap your rather lengthy set of inividual operations based on the i.fft and i.ifft grass routines into a QGIS model? -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list

Re: [QGIS-Developer] Avoid overlap settings issue

2021-01-12 Thread uclaros
Hi, the advanced configuration right now selects the layers that one wants to avoid overlapping *with*. We could have a second checkbox on each layer that will select the layers that one wants to avoid overlaps *on*, but that will complicate things visually. I think it would be better to add a

Re: [QGIS-Developer] Adding a menu item in "View" menu

2020-12-17 Thread uclaros
Hi, you need to modify src/ui/qgisapp.ui with qt creator or qt designer. Just note that the 'view' menu is a bit overcrowded and barely fits in one column on older 1366x768 displays. We should consider grouping some actions in sub-menus in 'view' and 'edit' menus. -- Sent from:

Re: [QGIS-Developer] QGIS disables plugin on loading problem

2020-12-04 Thread uclaros
Hi, I am doing the same thing with no issues by setting QGIS_PLUGINPATH to a shared network path. Users connect to the network via VPN and the plugin is loaded automatically. If the VPN is down while QGIS is starting, the plugin is not loaded, but connecting to the VPN and restarting QGIS brings

[QGIS-Developer] ssl module in Python is not available

2020-12-03 Thread uclaros
Hi list, it's been some time that on windows machines when I try to do `python -m pip install xxx` with the included python I get an error that "pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available." so I cannot have my plugins automatically

Re: [QGIS-Developer] Loss of data

2020-11-16 Thread uclaros
Hi, you could check if the plugin you mention (I am not familiar with it) keeps backups before saving, it would be good practice! Losing data is always tough, hope you sort it out! -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html

Re: [QGIS-Developer] GEOS issues/improvements

2020-11-09 Thread uclaros
I recently encountered this: https://github.com/qgis/QGIS/issues/39719 and opened an issue upstream: https://trac.osgeo.org/geos/ticket/1064#ticket It is by no means important, but since you asked!... -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html

Re: [QGIS-Developer] [Qgis-community-team] Changelog check

2020-10-26 Thread uclaros
That's great! However, I think that cases of "won't fix", "not a bug", "works ok for me" etc. do not look nice in the Notable Fixes section. -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list

Re: [QGIS-Developer] GPKG and FID -- can we fix this mess?

2020-10-16 Thread uclaros
Given two layers, A and B, there are two cases of merge: - B is inserted into A: A features keep their fid values, B features get a new one on insert. - A and B are inserted into C: Both A and B features get new fids on insert. This is at least what I expect from an autogenerated, not null,

Re: [QGIS-Developer] GPKG and FID -- can we fix this mess?

2020-10-15 Thread uclaros
Wouldn't making the fid field read only and generated once upon insert solve the issues? Still, it will uniquely identify the feature for its lifetime in the dataset. -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___

Re: [QGIS-Developer] QGIS Debug build fails to launch in QtCreator

2020-09-04 Thread uclaros
Hi Tim, have a look at http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-Qtcreator-debug-issues-td5389889.html for a workaround. -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list

[QGIS-Developer] Move GCP in georeferencer on hidpi display

2020-08-10 Thread uclaros
Hi list, the move GCP tool in the georeferencer is a little pita to use, needing pixel perfect aiming. I tried to remedy this with PR https://github.com/qgis/QGIS/pull/37256 but Nyall raised the issue regarding hidpi displays with this approach. Since I don't have a hidpi display to test, can

Re: [QGIS-Developer] Raster layers: average resampling disappeared

2020-07-28 Thread uclaros
You can have a look at the discussion at https://github.com/qgis/QGIS/pull/37044 -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

[QGIS-Developer] Stale PRs best practice

2020-04-23 Thread uclaros
Hi all, I would like to ask what would be considered best practice for an issuer to handle stale pull requests. In the cases that a review was made and further changes are expected from the contributor, it is obvious that unless the changes are applied the PR should be closed. My question is about

Re: [QGIS-Developer] EditInPlace Processing script

2020-04-19 Thread uclaros
Hi Matteo, not sure what exactly you want to achieve, but you can do a union and dissolve by doing a buffer with zero buffer distance and enabling the dissolve result checkbox. Regards, Stefanos -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-15 Thread uclaros
FYI the issue is resolved with https://github.com/qgis/QGIS/pull/35776 -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-14 Thread uclaros
master, qgis almost master) and all my problems seem solved! I'll use it in production tomorrow to check if it's indeed crash free. Regards, uclaros -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-14 Thread uclaros
There's https://github.com/qgis/QGIS/issues/35719 -- Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Developer-f4099106.html ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info:

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-14 Thread uclaros
Thanks for the reply, the python code was just an easy way to trigger the crash. The problem is not python related, it's reproducible on a fresh debian testing vm, fully upgraded, ie proj 7.0.0, gdal 3.4, geos 3.8.1. The issue does not exist on debian stable, maybe your ubuntu is based on the

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-14 Thread uclaros
Part of my problems seem to be caused by the fact that intersections between a polygon or linestring and a point cause QGIS to crash... eg. the following python code: QgsGeometry.fromWkt('Polygon ((0 0, 1 1, 1 0, 0 0))').intersection(QgsGeometry.fromWkt('Point (42 0)')) -- Sent from:

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-12 Thread uclaros
Thanks fro the suggestion, it is not a plugin issue, nor profile related. I could replicate on a clean VM, fresh debian install apt upgrade to testing. The strange thing is the freezes can't be reproduced at will so debugging is difficult. Sometimes it happens right away, sometimes it takes a

Re: [QGIS-Developer] QGIS unstable on debian testing

2020-04-11 Thread uclaros
Thanks Bas, I completely removed libproj19 and its dependents and built from source the following chain: -proj 6.3.1 -libgeotiff master -libspatialite 4.3.0a (with CFLAGS="-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1") -gdal master -qgis (a few days old master) Unfortunately, things have not changed

Re: [QGIS-Developer] QGIS Georeferencer improvements

2020-04-10 Thread uclaros
Toggling selected layers has been recently added to master and can be assigned to a key. Regarding the georeference window, if the live preview is implemented, it would be useful to track mouse movement on the image window and display a transformed pointer on the main map with the live preview.

[QGIS-Developer] QGIS unstable on debian testing

2020-04-10 Thread uclaros
Hi, after some recent package updates in Debian bullseye (testing), QGIS builds have become unstable for me. While rendering on pan/zoom/vertex editing on a project with a couple of geopackage layers, QGIS may freeze completely (idle cpu) or crash with a dump like : 2020-04-09T00:00:27.315 [New