[QGIS-Developer] "Loaded project file was meanwhile changed"... how to handle

2022-03-11 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, I have a plugin which set's a custom-property in a layer, AND then saves the project (pyqgis/plugin), just to be sure the property is actually written in it... But now I get the screenshot's message: "Loaded project file was meanwhile changed ..." when I try to save the project

Re: [QGIS-Developer] enabling proxy for wms/wmts layer

2022-03-15 Thread Richard Duivenvoorde via QGIS-Developer
On 3/14/22 19:47, Lucia Kadlecova via QGIS-Developer wrote: Hello, I would like to ask how to enable proxies when adding WMTS via WMS. On server where I run standalone QGIS python to access the WMTS I need to execute below commands to be able connect from server to net. export

[QGIS-Developer] Casting a SimpleMarker (renderer) to a SimpleFill one?

2022-03-15 Thread Richard Duivenvoorde via QGIS-Developer
Hi, I'm wondering if there is an easy way to put the (mostly colors) of a Point-layer upon another Polygon layer. (I recall Andreas also wrote about this?) Usecase: having a layer with a lot of measuring points on it, rule-based styled on value. Creating a Voronoi-layer from it, and being

[QGIS-Developer] Temporal Controller: Select current visible features??

2022-03-21 Thread Richard Duivenvoorde via QGIS-Developer
Hi Dev's, See also: https://github.com/qgis/QGIS/issues/47893 I'm trying to find a way to programmatically (only) select the current visible features in a vector layer which is controlled by the Temporal Controller. As 'select by rectangle' in the gui works... I thought to use:

Re: [QGIS-Developer] Temporal Controller: Select current visible features??

2022-03-23 Thread Richard Duivenvoorde via QGIS-Developer
Thanks Nyall!! With a minimal adjustments this just works: def temporal_filter_for_layer(layer, canvas): if canvas.mapSettings().isTemporal(): if not layer.temporalProperties().isVisibleInTemporalRange(canvas.temporalRange()): return False # nothing is visible temporal_context

Re: [QGIS-Developer] QGIS and WebAssembly

2022-03-22 Thread Richard Duivenvoorde via QGIS-Developer
On 2022-03-18 00:36, Martin Dobias via QGIS-Developer wrote: I am very keen to hear what you think about QGIS and WebAssembly. In the coming days I would like to also get the build system and my hacks available in a git repo, so that others can start to play with it... Hi Martin, Supercool

Re: [QGIS-Developer] Drag and drop form function QdateEdit Widget init

2022-03-25 Thread Richard Duivenvoorde via QGIS-Developer
On 3/25/22 08:33, PIERRE Sylvain via QGIS-Developer wrote: But this is not working with QDateEdit widget : today=date.today() control=dialog.findChild(QDateEdit,"date_insert") control.setDateTime(today) What is the right syntax to init the date widget ? It’s impossible to debug init script

Re: [QGIS-Developer] Drag and drop form function QdateEdit Widget init

2022-03-25 Thread Richard Duivenvoorde via QGIS-Developer
On 3/25/22 09:04, PIERRE Sylvain wrote: Thanks for tip Richard, but I've tried with today = QtCore.QDateTime.currentDateTime() But it's not working I get it working with: from qgis.PyQt.QtWidgets import QWidget, QMessageBox, QDateEdit, QDateTimeEdit from qgis.PyQt.QtCore import

[QGIS-Developer] [Plugins]: is 'plugin_dependencies' being enforced somewhere?

2022-03-29 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, Reading https://docs.qgis.org/3.22/en/docs/pyqgis_developer_cookbook/plugins/plugins.html#plugin-metadata about 'plugin_dependencies' and trying it out in a plugin locally, it does not seem to be enforced or so? I added another plugin in metadata (it's not clear from docs what name

[QGIS-Developer] Use of NE(SW) in the showing of (ordered) coordinates within QGIS

2022-04-11 Thread Richard Duivenvoorde via QGIS-Developer
Hi List(s), Recently the (showing) order of coordinates was 'fixed': eg EPSG-4326 coordinates LatLon(y,x) are properly shown as LatLon while other crs's stay being shown as x,y You can check this by looking into master vs 3.24 and clicking on The Netherlands to Copy a Coordinate. In 3.24

[QGIS-Developer] Review asked for Pull 46028

2022-04-08 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, Anybody can find some time to have a look at: https://github.com/qgis/QGIS/pull/46028 It's a small feature (and adding some documenting the old code) for the 'GoTo-locator'. (that is the litle 'super-search' in the lower left corner of the QGIS window'. Normally you can GoTo (jump

Re: [QGIS-Developer] [Plugins]: is 'plugin_dependencies' being enforced somewhere?

2022-04-11 Thread Richard Duivenvoorde via QGIS-Developer
it is (was?) enforced by the installer, AFAIK there are no checks on the plugins website. See: https://github.com/qgis/QGIS/blob/master/python/pyplugin_installer/plugindependencies.py <https://github.com/qgis/QGIS/blob/master/python/pyplugin_installer/plugindependencies.py> C

Re: [QGIS-Developer] Use of NE(SW) in the showing of (ordered) coordinates within QGIS

2022-04-12 Thread Richard Duivenvoorde via QGIS-Developer
On 2022-04-11 14:38, Greg Troxel via QGIS-Developer wrote: Thanks Greg, I think we should never copy the characters, only numbers ( well, except when using W/S/E/N :-) ).. I also understood from somebody that when using latlon coordinates the minus sign is actually redundant, as you should

[QGIS-Developer] PDAL compile on bookworm?

2023-09-10 Thread Richard Duivenvoorde via QGIS-Developer
Hi All, Anybody succesfully compiled PDAL master recently on Debian Bookworm? Following instructions of https://pdal.io/en/latest/development/compilation/unix.html Ninja stops when trying to link the tests: [448/578] Linking CXX executable bin/pdal_file_utils_test FAILED:

Re: [QGIS-Developer] PDAL compile on bookworm?

2023-09-11 Thread Richard Duivenvoorde via QGIS-Developer
On 9/10/23 23:39, Jürgen E. Fischer via QGIS-Developer wrote: On unstable installing libunwind-16-dev helped - didn't dig any deeper. Cool, yep that works on bookworm also! Well, libunwind-15-dev you get there. Then I can compile/test/install pdal. Thanks! One more question ;-) After pdal

Re: [QGIS-Developer] PDAL compile on bookworm?

2023-09-11 Thread Richard Duivenvoorde via QGIS-Developer
ote: Hi Richard, On Mon, 11. Sep 2023 at 17:11:13 +0200, Richard Duivenvoorde via QGIS-Developer wrote: One more question ;-) After pdal install: if I try to compile QGIS 'WITH_PDAL', ccmake find the PDAL_BIN, PDAL_CPP_LIBRARY and PDAL_INCLUDE_DIR But NOT the PDAL_UTIL_LIBRARY. That was dropped

Re: [QGIS-Developer] LTR version info in version.txt?

2023-09-13 Thread Richard Duivenvoorde via QGIS-Developer
https://github.com/qgis/QGIS-Website/blob/master/scripts/mkversion.py I think it is used for the about box. Juergen is handling this Regards, Richard Duivenvoorde On 9/13/23 05:50, Nyall Dawson via QGIS-Developer wrote: Hi list, Has something changed in the format of

[QGIS-Developer] Mesh netcdf NaN visualisation in QGIS?

2023-09-04 Thread Richard Duivenvoorde via QGIS-Developer
Hi, My colleague is creating netcdf as output of some other modelling software, and viewing/styling it in QGIS. In some places the modelling software goes awry and produces NaN's in de netcdf. Anybody an idea to create a visualisation (in QGIS) to find out WHICH part/cell's contain a NaN?

Re: [QGIS-Developer] VisualChangelog in qgis.org please check/fix

2023-10-31 Thread Richard Duivenvoorde via QGIS-Developer
On 10/31/23 00:27, Valentin BUIRA via QGIS-Developer wrote: Do you think I could be credited as Valentin Buira instead of "Poulpator" ? https://github.com/qgis/QGIS-Website/commit/f4b67fb512d10cd28a7198d6043e8c2ec30e33a3 Regards, Richard Duivenvoorde

[QGIS-Developer] VisualChangelog in qgis.org please check/fix

2023-10-29 Thread Richard Duivenvoorde via QGIS-Developer
Hi, Just pulled the Visual Changelog from the edit site into the website: https://qgis.org/en/site/forusers/visualchangelog334/index.html (English, but other languages building!) Please check and let us know if there is stuff to fix. Regards, Richard Duivenvoorde

Re: [QGIS-Developer] strange files in bin when building qgis server

2023-08-25 Thread Richard Duivenvoorde via QGIS-Developer
Hi Greg, No inner knowledge, others know probably better, but a part of qgis_server is a 'landing page'-web-application. Could it be those files belong to those? Regards, Richard Duivenvoorde On 8/25/23 02:37, Greg Troxel via QGIS-Developer wrote: I maintain the gpksrc entry for qgis,

Re: [QGIS-Developer] Questions of a newbie starting with QGIS Server

2022-04-20 Thread Richard Duivenvoorde via QGIS-Developer
Hi Harrissou, I think your pretty close :-) Some remarks from the times I installed on Windows: - I used a vanilla apache installer from https://www.apachelounge.com/ - indeed used the httpd.conf from osgeo4w to set all paths and env vars, VERY convenient - are you sure the Qt vs qt is an

Re: [QGIS-Developer] [Qgis-user] Questions of a newbie starting with QGIS Server

2022-04-21 Thread Richard Duivenvoorde via QGIS-Developer
On 4/21/22 10:10, Alessandro Pasotti wrote: I'm not sure about windows, but you might also have a look at the standalone development server, it integrates a web server and it is supposed to work out of the box with (almost) zero configuration.

Re: [QGIS-Developer] Questions of a newbie starting with QGIS Server

2022-04-21 Thread Richard Duivenvoorde via QGIS-Developer
On 4/21/22 11:57, DelazJ wrote: The GDAL_DATA path you will need when you use for example the ECW or other drivers QGIS_AUTH_DB_DIR_PATH is maybe only needed when you have a project which uses authentication profiles? Others? So it could make sense to have them added to the default

[QGIS-Developer] Possibility to see what a 'Task' is doing (AND double blue taskbars...)

2022-04-25 Thread Richard Duivenvoorde via QGIS-Developer
Hi, Not sure if others share my experience, but I occasionally have a 'task'(?) running, showing the 'blue waiting bar' in my bottom screen, (when (re)loading data in a plugin), taking several seconds. It is to me not so clear what it taking so long, and there is also no message/tooltip/sign

Re: [QGIS-Developer] Permission Issues during Flatpak Install on NIS clients

2022-04-27 Thread Richard Duivenvoorde via QGIS-Developer
Hi Quentin, I think it is better to ask this in the issue tracker of the github packager: https://github.com/flathub/org.qgis.qgis/issues There they are probably more aware of such details. Regards, Richard Duivenvoorde On 4/26/22 23:36, Coles, Quentin (GSFC-423.0)[RAYTHEON COMPANY] via

[QGIS-Developer] Remove stripe.qgis.org and planet.qgis.org (test.qgis.org?) from DNS

2023-11-08 Thread Richard Duivenvoorde via QGIS-Developer
Looking at the records (still) pointing to qgis2 (old web server), we found stripe.qgis.org and planet.qgis.org We think(!) that those are not used anymore. Are we right? (is donate.qgis.org superseeding the stripe.qgis.org?) (planet is gone?) Can I remove these records from the DNS? Anybody

[QGIS-Developer] flash geometries for (larger) polygons?

2022-07-04 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, We have a geocoder plugin, which is able to return polygons. Wanting to be able to see what (province/neighourhoud/zip code etc) it is I thought to use: https://qgis.org/pyqgis/master/gui/QgsMapCanvas.html#qgis.gui.QgsMapCanvas.flashGeometries but that only flashes a full non

Re: [QGIS-Developer] flash geometries for (larger) polygons?

2022-07-04 Thread Richard Duivenvoorde via QGIS-Developer
On 7/4/22 12:56, pathmapper wrote: Hi Richard, what are you trying to achieve? If you would like to flash only the border of the polygon you could try to use geometry.convertToType(1) (https://qgis.org/pyqgis/master/core/QgsGeometry.html#qgis.core.QgsGeometry.convertToType) to flash only a

Re: [QGIS-Developer] Fwd: Compile Master with Debian Bullseye

2022-06-29 Thread Richard Duivenvoorde via QGIS-Developer
Hi Piet, FYI: ccmake caches a lot apparently, so my way in such issues is often to remove the build directory, create it again, cd into it, and run "ccmake .." again (and then it often magically it finds stuff it earlier did not find...). Keep on compiling :-) Regards, Richard Duivenvoorde

Re: [QGIS-Developer] Time for db manager to become an "opt-in" plugin?

2022-07-10 Thread Richard Duivenvoorde via QGIS-Developer
On 7/10/22 03:02, Alexandre Neto via QGIS-Developer wrote: This db manager functionality is unique, and is (in my opinion) one of the reasons why QGIS is PostGIS de facto client. Hi Alexandre, My de facto client is DBeaver, a cross platform FOSS general Database client (written in Java).

Re: [QGIS-Developer] Zip errors in artefact builds

2022-06-28 Thread Richard Duivenvoorde via QGIS-Developer
On 6/28/22 13:00, Alexis R.L. via QGIS-Developer wrote: Greetings everyone, I wanted to check if anyone had the same error or had a clue of the cause. When using artefact build made from a qgis branch I always have issues when opening files from the recent menu or the provided list. Zip

[QGIS-Developer] Changelog, please check

2022-06-17 Thread Richard Duivenvoorde via QGIS-Developer
Hi People, I (silently) added the visual changelog 3.26 to the site already, please check: https://qgis.org/en/site/forusers/visualchangelog326/index.html for any glitches. If found, either let me know, or just fix it yourself in the rst at

Re: [QGIS-Developer] HOWTO INSTALL QGS ON LINUX WITH PROVIDER TO ORACLE SPATIAL

2022-06-20 Thread Richard Duivenvoorde via QGIS-Developer
WHY ARE YOU SCREAMING THIS :-) It is some time ago, but I did a write up of the process for CentOS some time ago: https://zuidt.nl/blog/html/2015/10/12/build_qgis_master_with_oracle_provider_yourself_on_centos7.html You need to adapt it for Ubuntu but it contains (I think) enough pointers

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

2022-06-21 Thread Richard Duivenvoorde via QGIS-Developer
Thanks, but the dump of changelog.qgis.org is already pulled into the website (and manually edited etc).. Only way to get it into qgis.org site is to add a block manually in the rst and add the image and link to

Re: [QGIS-Developer] Vector Tiles in QGIS: throws "Error loading style: Style not found in database" with 'optional style url'

2022-07-18 Thread Richard Duivenvoorde via QGIS-Developer
if there is some simple global vector tile server which has the same issue, so it is easier to reproduce... Regards, Richard Duivenvoorde On 7/18/22 10:07, Richard Duivenvoorde via QGIS-Developer wrote: Hi People, Just playing with pg_tileserv, to check if QGIS was able to load tiles from

Re: [QGIS-Developer] Vector Tiles in QGIS: throws "Error loading style: Style not found in database" with 'optional style url'

2022-07-18 Thread Richard Duivenvoorde via QGIS-Developer
/22 12:27, Richard Duivenvoorde via QGIS-Developer wrote: Ok, just found out: the layer is not loading IF there is NO other (xyz?) layer. So when it is the first layer you load, it will give the warning and NOT show anything. If you already loaded some other layer (for example OSM xyz), THEN all

Re: [QGIS-Developer] Vector Tiles in QGIS: throws "Error loading style: Style not found in database" with 'optional style url'

2022-07-19 Thread Richard Duivenvoorde via QGIS-Developer
On 7/18/22 23:00, Patrick Dunford via QGIS-Developer wrote: Hi Richard You could test it with the Linz Basemaps vector tile server http://basemaps.linz.govt.nz Ah, thanks, playing with it now... I first got a 'wrong api key issue', but it appears you can copy the right zxy url from the

[QGIS-Developer] OAPIF driver (wfs3) ignoring the ui connection settings of QGIS

2022-07-26 Thread Richard Duivenvoorde via QGIS-Developer
Hi, see https://github.com/qgis/QGIS/issues/49404 I think(!) that QGIS is ignoring the 'enable feature paging' checkbox and 'max number of features' in the GUI for WFS/OAPIF connection I got itworking via PyQGIS, using QGIS itself I never get more then 100 features? Others can confirm?

[QGIS-Developer] Is it possible to make QGIS show the fired queries to databases in Debugging Tools?

2022-07-29 Thread Richard Duivenvoorde via QGIS-Developer
Doing some Postgis work with QGIS, I often asked myself what queries QGIS is firing to the database. I can off course log that in the database, but I was wondering if QGIS had some 'signal' which could be use to pass the queries used to the Debugging Tools? I skimmed QgsDataProvider,

Re: [QGIS-Developer] Is it possible to make QGIS show the fired queries to databases in Debugging Tools?

2022-07-29 Thread Richard Duivenvoorde via QGIS-Developer
tools --> Query Logger It was a recent QGIS grant project and developed by elpaso. Greetings, Andreas On 2022-07-29 10:25, Richard Duivenvoorde via QGIS-Developer wrote: Doing some Postgis work with QGIS, I often asked myself what queries QGIS is  firing to the database. I can off course 

[QGIS-Developer] Temporal Controller / MDAL / NetCDF PR #48942

2022-07-28 Thread Richard Duivenvoorde via QGIS-Developer
Hi Dev's, anybody interested in Temporal Controller / MDAL / NetCDF is able to give some input at https://github.com/qgis/QGIS/pull/49283 so it won't get 'stale' ? My issue [0] is that the temporal controller number of steps seems to be 'off by one' when loading NetCDF's. But I'm not sure

[QGIS-Developer] Vector Tiles in QGIS: throws "Error loading style: Style not found in database" with 'optional style url'

2022-07-18 Thread Richard Duivenvoorde via QGIS-Developer
Hi People, Just playing with pg_tileserv, to check if QGIS was able to load tiles from it with a small data set, I fail to load because: "Error loading style: Style not found in database". Though in the connection dialog it says that the Style URL is Optional... Am I missing something? Tried

[QGIS-Developer] First User Experience: During startup, try/except the Python exceptions (of plugins)

2022-07-18 Thread Richard Duivenvoorde via QGIS-Developer
Hi, see for example: https://github.com/flathub/org.qgis.qgis/issues/174 Would it be an idea to NOT show the python (plugin) exceptions during the startup of QGIS? It find it for non tech users annoying that a plugin (which they sometimes do not use, anymore) is stopping QGIS from starting.

Re: [QGIS-Developer] QGIS-Documentation fails to build

2022-05-03 Thread Richard Duivenvoorde via QGIS-Developer
On 5/3/22 11:35, DelazJ via QGIS-Developer wrote: Hi devs, The "doctest" workflow in QGIS-Documentation repository is again broken. We are getting a segmentation fault [0]. This might have begun at least 5 days ago, only on master branch. The 3.22 doctest passes. If someone can give it a look,

[QGIS-Developer] Attribute indexes for (Temporal) Memory layers

2022-05-09 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, I need to create a temporal selection of a temporal memory layer (just 7500 points). Creating the selection takes 15 seconds, using: point_layer.selectByExpression(temporal_filter, Qgis.SelectBehavior.SetSelection) DEselecting the features after my function takes 22 seconds, using

Re: [QGIS-Developer] Attribute indexes for (Temporal) Memory layers

2022-05-09 Thread Richard Duivenvoorde via QGIS-Developer
On 2022-05-09 11:54, Richard Duivenvoorde via QGIS-Developer wrote: Hi Devs, I need to create a temporal selection of a temporal memory layer (just 7500 points). Creating the selection takes 15 seconds, using: point_layer.selectByExpression(temporal_filter, Qgis.SelectBehavior.SetSelection

Re: [QGIS-Developer] Performance and OGC tests page obsolete?

2022-05-09 Thread Richard Duivenvoorde via QGIS-Developer
On 5/9/22 19:00, Paolo Cavallini via QGIS-Developer wrote: Hi all, I may miss something, but it seems to me that the links in the page https://qgis.org/en/site/getinvolved/daily_reports/performance.html are obsolete. Paul is busy re-creating a new server (if we are talking about

[QGIS-Developer] QGIS compile python issue Debian Testing/Bookworm?

2022-05-05 Thread Richard Duivenvoorde via QGIS-Developer
Hi Configuring qgis, I get: Pedantic compiler settings enabled Debug output enabled Found GSL: -L/usr/lib/x86_64-linux-gnu -lgsl -lgslcblas -lm -- Found Python executable: /usr/bin/python3.9 (version 3.9.12) -- Python library: /usr/lib/x86_64-linux-gnu/libpython3.9.so -- Python

Re: [QGIS-Developer] QGIS compile python issue Debian Testing/Bookworm?

2022-05-05 Thread Richard Duivenvoorde via QGIS-Developer
Sorry for the noise, I just messed up my python(s) on my system... All fine here :-) Regards, Richard On 5/5/22 19:16, Richard Duivenvoorde via QGIS-Developer wrote: Hi Configuring qgis, I get:  Pedantic compiler settings enabled  Debug output enabled  Found GSL: -L/usr/lib/x86_64-linux

Re: [QGIS-Developer] Fwd: [Qgis-user] Latest development version of QGIS as a .msi standalone installer ?

2022-08-25 Thread Richard Duivenvoorde via QGIS-Developer
On 8/24/22 16:23, Régis Haubourg via QGIS-Developer wrote: Do you have opinions on such a much ? (that would require to stress translators so that we don't brake translations for a too long time for such an important landing page ) No strong opinion,I just wanted to help someone, who

Re: [QGIS-Developer] Current state of QGIS and Qt 6 (good news!)

2022-08-18 Thread Richard Duivenvoorde via QGIS-Developer
Cool! Thanks Nyall! Off course this is a challenge for Debianista's :-) Just tried on Debian testing, actually your 4 zip's/dependecies compiling went very well. (did not INSTALL anything, just compiled) But then I get stuck on QGIS itself (looks like it is trying to compile the ossl plugin

Re: [QGIS-Developer] [Qgis-psc] Current state of QGIS and Qt 6 (good news!)

2022-08-18 Thread Richard Duivenvoorde via QGIS-Developer
On 8/18/22 16:24, Martin Dobias wrote: I will give it a try when I have a bit of time to see if it will do the same on my computer. Just for the reference, what Qt6 version exactly are you using? Is it 6.2.x or 6.3.x ? https://twitter.com/nyalldawson/status/1559403068956872704/photo/1

Re: [QGIS-Developer] g++ dependency?

2022-09-02 Thread Richard Duivenvoorde via QGIS-Developer
Hi Raymond, (I've been bitten by this one too) g++ etc is actually in the 'build-essential' package, and named here: https://github.com/qgis/QGIS/blob/release-3_22/INSTALL.md#310-building-debian-packages So, it IS there, but not part of the big line(s) with dependencies per distro... If on

[QGIS-Developer] Model for Temporal Measurement (vector) Datasets ?

2022-09-02 Thread Richard Duivenvoorde via QGIS-Developer
Hi All, Anybody is aware of a model in which data owns a location, but THAT location has a (growing) set of [timestamp, value] observation data to it In GIS/QGIS everything is tabular (talking about vector here, I know meshes can have more shapes). But in the IOT world the 'location' is

Re: [QGIS-Developer] Time for db manager to become an "opt-in" plugin?

2022-09-07 Thread Richard Duivenvoorde via QGIS-Developer
On 9/7/22 14:52, Alexandre Neto via QGIS-Developer wrote: Hi Can anyone please create a github project for dbmanager migration? I don't have enough permissions for it. I had never heard of 'projects'... but Alexandre helpt me to create: https://github.com/orgs/qgis/projects/1 Please let me

Re: [QGIS-Developer] Model for Temporal Measurement (vector) Datasets ?

2022-09-04 Thread Richard Duivenvoorde via QGIS-Developer
On 9/4/22 14:35, Tim Sutton wrote: Hi Richard Don’t people normally use things like https://www.timescale.com/

Re: [QGIS-Developer] Model for Temporal Measurement (vector) Datasets ?

2022-09-04 Thread Richard Duivenvoorde via QGIS-Developer
On 9/4/22 15:27, Matthias Kuhn wrote: Hi Richard, It seems to me this should be possible using: 1. Two tables: - Points - Measurements (Timestamp, Measured attribute) 2.  A view (Points LEFT JOIN Measurements) What would be the actual result in your case (eg in the case of 2 points with

Re: [QGIS-Developer] OSGeo4w 32 or 64 bit

2022-09-06 Thread Richard Duivenvoorde via QGIS-Developer
Hi Paul, For what I know we only do 64 bit nowadays. Regards, Richard Duivenvoorde On 9/6/22 02:31, Paul Burns via QGIS-Developer wrote: Hi I am attempting to build QGIS for windows and have been using a QtCreator 64 bit compiler. Section 4.1.2 Other tool…. of

[QGIS-Developer] Fwd: [Qgis-user] Determine loading time of WFS layers

2022-08-24 Thread Richard Duivenvoorde via QGIS-Developer
See mail from userlist: I was wondering if Qt Result has the response time in it... then we could add it to the DeveloperTools? Or if not, would timestamping (at start and finish) be OK for QGIS? Regards, Richard Duivenvoorde Forwarded Message Subject:[Qgis-user]

Re: [QGIS-Developer] Unable to build master on Ubuntu 22.04

2022-08-24 Thread Richard Duivenvoorde via QGIS-Developer
Could it be that ccache's cache [0] is in your way? (looks like it is trying to build/link immiddialty based on your cache)? ccache --clear (to really clean up stuff in your cache)? Regards, Richard Duivenvoorde [0] https://cppisland.wordpress.com/2018/12/30/ccache-quick-guide/ On 8/24/22

[QGIS-Developer] Fwd: [Qgis-user] Latest development version of QGIS as a .msi standalone installer ?

2022-08-24 Thread Richard Duivenvoorde via QGIS-Developer
Hi Dev's, See thread in user list... Is Windows 7 indeed totally not supported anymore (for 3.22/LTR)? If so we should indeed add a line that current installs are for >=Win10 only? Regards, Richard Forwarded Message Subject:Re: [Qgis-user] Latest development

Re: [QGIS-Developer] Fwd: [Qgis-user] Latest development version of QGIS as a .msi standalone installer ?

2022-08-24 Thread Richard Duivenvoorde via QGIS-Developer
On 8/24/22 15:09, Jürgen E. Fischer via QGIS-Developer wrote: https://github.com/qgis/QGIS-Website/commit/e37bbf2a530f9ad482331d211077e2d5104ad7fd Ok, thanks. used it to add the following note (just below Download for Windows, as it is valid for ALL Windows installs): NOTE: You will need

Re: [QGIS-Developer] Fwd: [Qgis-user] Latest development version of QGIS as a .msi standalone installer ?

2022-08-24 Thread Richard Duivenvoorde via QGIS-Developer
On 8/24/22 14:46, Jürgen E. Fischer via QGIS-Developer wrote: It was unsupported since the introduction of osgeo4w v2 and there was a (big fat red) warning for long - it has just been removed in the last couple of days. Should we revive it (or update it with your info below)? Or was it

Re: [QGIS-Developer] Event to register adding layers in QGIS

2022-08-26 Thread Richard Duivenvoorde via QGIS-Developer
I have a plugin which fires after a layer is added (fired both via drag/drop and when loading project) would these be usable? QgsProject.instance().layerWasAdded.connect(XXX) # after QgsProject.instance().legendLayersAdded.connect(XXX) # before see

Re: [QGIS-Developer] Compile QGIS in docker

2022-10-22 Thread Richard Duivenvoorde via QGIS-Developer
On 10/22/22 16:25, Paul N via QGIS-Developer wrote: Is it possible to compile QGIS in docker on windows system. Any clue. What is your use-case? - Desktop or Server? - Host = Windows, but container = ? There are ready to use QGIS-Server images, others know better which one is most up to

Re: [QGIS-Developer] Remove alan.a.m...@gmail.com from list

2022-10-23 Thread Richard Duivenvoorde via QGIS-Developer
On 10/23/22 16:02, Alan Mick via QGIS-Developer wrote: I am sorry for spamming the list with this request, but I have tried multiple times to remove myself and have not been successful. Would someone please remove me from the list? Thank you! Done Richard Duivenvoorde

[QGIS-Developer] Changelog 3.28 in website

2022-10-25 Thread Richard Duivenvoorde via QGIS-Developer
Hi, I pulled 3.28 changelog into the website, I took oct 22 as released date (it was requested to put that in the changelog), ok? https://qgis.org/en/site/forusers/visualchangelog328/index.html If you seen anything wrong or missing, please us know, or just fix it in a PR

Re: [QGIS-Developer] Changelog 3.28 in website

2022-10-26 Thread Richard Duivenvoorde via QGIS-Developer
On 10/26/22 14:59, Jürgen E. Fischer wrote: Hi Richard, On Tue, 25. Oct 2022 at 18:08:35 +0200, Richard Duivenvoorde via QGIS-Developer wrote: I took oct 22 as released date (it was requested to put that in the changelog), ok? Why? https://github.com/qgis/QGIS/tree/final-3_28_0 I

[QGIS-Developer] git action failing for website build

2022-10-27 Thread Richard Duivenvoorde via QGIS-Developer
Hi, Merging a PR for the website results in an email that the build github action is failing. Looking into the job: https://github.com/qgis/QGIS-Website/actions/runs/3335448522/jobs/5519433842 it says: ar/_downloads/fec0bc7494ac1248c2aa2d46a9ee7687/qgis-icon128.png

[QGIS-Developer] Planning with github build actions? Should I stop the cronjob?

2022-10-28 Thread Richard Duivenvoorde via QGIS-Developer
Hi People, Looking that the github actions running after a commit to QGIS-Website repo, part of the actions is also to rsync/scp(?) it to a server. What is the idea here? Because I'm also running a build cron task on qgis5 (starting at 00:00 see bottom english qgis.org)... Should I remove

[QGIS-Developer] legendLayersAdded signal not fired anymore in master?

2022-10-27 Thread Richard Duivenvoorde via QGIS-Developer
See https://github.com/qgis/QGIS/issues/50718 Anybody can confirm or falsify? Regards, Richard Duivenvoorde ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer Unsubscribe:

Re: [QGIS-Developer] Fwd: Dear develop team GIS (plugin)

2022-10-19 Thread Richard Duivenvoorde via QGIS-Developer
chard Duivenvoorde On 10/19/22 09:13, Werner Macho wrote: Hi Richard, I also searched for the user id "ifeernd" - and could not find it. Maybe it is not a plugin and something completely different is meant? regards werner On Wed, Oct 19, 2022 at 9:02 AM Richard Duivenvoorde via

[QGIS-Developer] Fwd: Dear develop team GIS (plugin)

2022-10-19 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, This mail was (accidently wrong) sent to the list owner of the dev list. Sender tells us a plugin was sent in 2 weeks ago. If I search for V5Pfes I only see 'None', if I search for Forest I see None again. Is there something wrong with the metadata of the plugin? I think I normally

Re: [QGIS-Developer] Import DWG\DXF use curves option

2022-10-10 Thread Richard Duivenvoorde via QGIS-Developer
On 10/10/22 17:11, Alexandre Neto via QGIS-Developer wrote: Hi, Not sure of a feature or a bug, but shouldn't disabling the "use curves" in the Import DWG\DXF tool output non-compound curve geometries? I am getting curves even with the option turned of. Mmm, seeing this message... could the

[QGIS-Developer] OWS dialog(s) broken in master?

2022-08-10 Thread Richard Duivenvoorde via QGIS-Developer
At first I only had it in the CSW dialog, but but now I had the same in the WMS dialog. See: https://github.com/qgis/QGIS/issues/49513 others can confirm? Regards, Richard Duivenvoorde ___ QGIS-Developer mailing list

[QGIS-Developer] QgsMapLayerComboBox constantly firing events when hovering over it

2022-08-12 Thread Richard Duivenvoorde via QGIS-Developer
Building a plugin in which I used a QgsMapLayerComboBox and running it in a QGIS debug build with full debug output, I see the following when I just hover/move over de combobox with my mouse (and having a project with an OSM layer): src/core/qgsmaplayer.cpp:186 : (name) [7ms] returning name

[QGIS-Developer] trying Qt6 build here

2022-08-04 Thread Richard Duivenvoorde via QGIS-Developer
Hi, At my 'apt upgrade' today (Debian Testing), I saw a lot of Qt6 related packages flying in (also QtCreator update to 8)... Wondering if it would be beneficial to QGIS if I start to try a Qt6 build. What is the status, is there anything there to see/test yet, or it is just building the

Re: [QGIS-Developer] Fwd: [gdal-dev] Announcing SOZip: Seek-Optimized profile for the .zip format

2023-01-09 Thread Richard Duivenvoorde via QGIS-Developer
Hi Even, Cool! Out of curiosity: I thought sqlite/geopackage was already relatively 'skinny' packed? Am I wrong? Anybody has experience with zipping "lrge zipped GeoPackages"? ;-) Is that useful? I just tested a 885MB mbtiles file (I know not geopackage...but still sqlite isnt't it?),

Re: [QGIS-Developer] Pyqgis Close init form

2022-12-20 Thread Richard Duivenvoorde via QGIS-Developer
Can you provide a little more code? And more info where exactly it is called (in the startup.py or in some form init code? Is 'dialog' available in the code part in which you try to close it? Regards, Richard Duivenvoorde On 12/20/22 09:24, PIERRE Sylvain via QGIS-Developer wrote: Hi all,

[QGIS-Developer] Message "The operation would change the geometry type." ?

2022-12-21 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, A friend, while editing a vector layer, got the message: "The operation would change the geometry type." while editing a 'standalone' layer, and asked me what it was... Today somebody in the Telegram channel asked the same. I grepped:

Re: [QGIS-Developer] Pyqgis Close init form

2022-12-20 Thread Richard Duivenvoorde via QGIS-Developer
-Message d'origine- De : QGIS-Developer De la part de Richard Duivenvoorde via QGIS-Developer Envoyé : mardi 20 décembre 2022 09:44 À : qgis-developer@lists.osgeo.org Objet : Re: [QGIS-Developer] Pyqgis Close init form Soyez vigilant : ce courriel provient d'une organisation externe à la CeA. •

Re: [QGIS-Developer] Fwd: Dear develop team GIS (plugin)

2022-12-07 Thread Richard Duivenvoorde via QGIS-Developer
      > Maybe it is not a plugin and something completely different is meant? >      > >      > regards >      > werner >      > >      > On Wed, Oct 19, 2022 at 9:02 AM Richard Duivenvoorde via QGIS-Developer mailto:qgis-developer@lists.osgeo.org> &l

Re: [QGIS-Developer] missing info in INSTALL.md, partial trip report for 3.28 on NetBSD

2022-11-29 Thread Richard Duivenvoorde via QGIS-Developer
Hi Greg, Cannot help you with most questions, but I'd say: create some PR's (also on install.md), THEN you will get to the people who know this :-) Regards, Richard Duivenvoorde On 2022-11-28 14:18, Greg Troxel via QGIS-Developer wrote: For background, I have been maintaining the pkgsrc

[QGIS-Developer] Mesh Layers: Way to update/repaint the QgsMeshRendererScalarSettingsWidget after recreating color ramp

2022-11-29 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, I'm loading/styling QGIS via pyqgis. I create my own (dynamic) color ramp, which is shown in the map. My issue now is that the color ram in the Layer styling widget does not represent the actual ramp I created (see screendump). I can force a 'repaint' of that widget, by adding a

Re: [QGIS-Developer] Mesh Layers: Way to update/repaint the QgsMeshRendererScalarSettingsWidget after recreating color ramp

2022-11-30 Thread Richard Duivenvoorde via QGIS-Developer
On 11/29/22 17:25, Vincent Cloarec wrote: Hi Richard, Can you precise how do you set the color ramp to the mesh layer ? Maybe you set only classes (color/value) ? Hi Vincent, Thanks for looking in my mail. These are my first Mesh experiments (using pyqgis). So maybe I'm totally off. So

Re: [QGIS-Developer] createvectorTable error: Could not retrieve driver for connection

2022-12-02 Thread Richard Duivenvoorde via QGIS-Developer
Hi Raymond, I've updated your test script a little: gpkg_fn = '/tmp/test.gpkg' try: print(QgsProviderRegistry.instance().providerList()) md = QgsProviderRegistry.instance().providerMetadata('ogr') print(f'md = {md}') conn = md.createConnection(gpkg_fn, {}) print(f'conn =

Re: [QGIS-Developer] createvectorTable error: Could not retrieve driver for connection

2022-12-02 Thread Richard Duivenvoorde via QGIS-Developer
, it depends on you QGIS version if it creates a fresh one or not? Maybe some core dev can say something about this? Regards, Richard Duivenvoorde On 12/2/22 13:53, Richard Duivenvoorde via QGIS-Developer wrote: Hi Raymond, I've updated your test script a little: gpkg_fn = '/tmp/test.gpkg' try

Re: [QGIS-Developer] Plugin Menu Text

2023-01-18 Thread Richard Duivenvoorde via QGIS-Developer
Mmm, but mTabDescriptions.insert( QStringLiteral( "all_plugins" ), tr( "All Plugins\ means it uses the tr-function, meaning it is being translated, so it should show up in the QGIS tr file... So, yes, it is in: https://github.com/qgis/QGIS/blob/master/i18n/qgis_de.ts Looking at

Re: [QGIS-Developer] language dependency qgis_process

2023-01-18 Thread Richard Duivenvoorde via QGIS-Developer
Hi Michael, I'm not 100% sure, but I would think that such fields should never be translated? Not in Desktop nor in scripts? What do other think? Or has processing some language aware dict with all languages in it? Regards, Richard Duivenvoorde On 1/17/23 22:37, Dr. Michael Hälsig via

Re: [QGIS-Developer] Apply style to all selected layers and groups

2023-01-19 Thread Richard Duivenvoorde via QGIS-Developer
Ah, sorry now I understand. Yes that would be cool, so instead of the dropdown in the Layer Styling panel, you would have an option to select more layers... and apply to all of those the changed you do in the layer styling panel. One thing I'm thinking of, is what to show as 'current'

Re: [QGIS-Developer] Apply style to all selected layers and groups

2023-01-19 Thread Richard Duivenvoorde via QGIS-Developer
Hi Calvin, If I load a layer, duplicate it twice more. Restyle the first layer, Copy Style (of that first one) Then select both other layers in the layer list (select click) Then Paste Style Then both other layers get that style? That is not what you mean? Or do you want to have some ui for

Re: [QGIS-Developer] PyQGIS info on MeshLayer

2023-01-24 Thread Richard Duivenvoorde via QGIS-Developer
Sorry, fiddling with webmail, thinking using an old mail (from you) to sent to the dev list... But apparently not :-( Regards, Richard On 2023-01-24 09:40, Richard Duivenvoorde wrote: Hi Devs, I'm trying to get values from an x,y from a mesh layer via PyQGIS. But I fail to SEE the results.

[QGIS-Developer] PyQGIS info on MeshLayer

2023-01-24 Thread Richard Duivenvoorde via QGIS-Developer
Hi Devs, I'm trying to get values from an x,y from a mesh layer via PyQGIS. But I fail to SEE the results. Debugging in QtCreator, I see that there are results, but apparently they are dropped somewhere? The code I'm using: results = [] # iterator 'reference'? context =

Re: [QGIS-Developer] Plugin Menu Text

2023-01-22 Thread Richard Duivenvoorde via QGIS-Developer
Hi Stefan, Ah, ok clear. One idea I had later, is: the shown text in the gui is actually the text that comes from the ts (Qt translation) files (which are 'compiled' to binary qm(?) files by (eg) Qt Linguist. So (even the english texts in the gui) are determined by the Hi Richard, I have

Re: [QGIS-Developer] PyQt db_manager(?) compile error

2023-01-30 Thread Richard Duivenvoorde via QGIS-Developer
[2]: *** Deleting file 'python/plugins/db_manager/ui_DlgCreateConstraint.py' make[1]: *** [CMakeFiles/Makefile2:6344: python/plugins/db_manager/CMakeFiles/zzz-db_manager-15-depend.dir/all] Error 2 Cheers Matteo On 1/27/23 13:23, Richard Duivenvoorde via QGIS-Developer wrote: Hi, Compiling

[QGIS-Developer] PyQt db_manager(?) compile error

2023-01-27 Thread Richard Duivenvoorde via QGIS-Developer
Hi, Compiling master on Debian Testing today, I first was presented with a new dependency Qt5Multimedia (hopefully we can soon use QGIS as a Spotify client ;-) ), which was installable. But then my (fresh) build stalls at: [9773/9812] Generating ui_DlgAddGeometryColumn.py FAILED:

Re: [QGIS-Developer] Hover function

2023-02-01 Thread Richard Duivenvoorde via QGIS-Developer
On 2/2/23 04:34, Nzikou, Michel via QGIS-Developer wrote: I am developing a qgis plugin and would like to know how to use the mouse hover function to get help infos populated on top of my pushbutton when the mouse is on top. You mean tooltips?

Re: [QGIS-Developer] Timestep for (Temporal) Mesh/netcdf layers?

2023-03-08 Thread Richard Duivenvoorde via QGIS-Developer
y strange thing is that the temporalUnit() always returns 'hours', while the actual data time is relative in minutes... Regards, Richard Duivenvoorde On 3/7/23 14:18, Richard Duivenvoorde via QGIS-Developer wrote: Hi, When loading (temporal) Netcdf files (as MeshLayers), the 'timestep' that you

Re: [QGIS-Developer] [Qgis-community-team] [Qgis-psc] QGIS webserver size vs publishing old docs

2023-03-20 Thread Richard Duivenvoorde via QGIS-Developer
On 3/20/23 17:31, Andreas Neumann wrote: Hi Matthias, Sure - buying more space is an option. I would like to get an idea - however - what the monthly expected costs are. Is this a "virtual" server at Hetzner? How much disk space does it have currently, how much do we want? What is the price

  1   2   >