Re: [QGIS-Developer] How to enable debugging mode on QGIS start in Win11

2023-06-20 Thread Vedran Stojnović via QGIS-Developer
Thank you very much to both of you! After installing an additional dev version I added the same two lines in qgis-dev-bin.env and after starting qgis-dev-bin.exe, now I got some output to the txt file: C:\src\OSGeo4W\src\qgis-dev\qgis\src\app\main.cpp(514) : (main) [0ms] Starting qgis main

Re: [QGIS-Developer] How to enable debugging mode on QGIS start in Win11

2023-06-20 Thread Richard Duivenvoorde via QGIS-Developer
In windows/osgeo4w the 'nightly builds' (with -dev- in there package names) are build in DEBUG mode if I am correct... so these should show you logging info, but I think you also need to install a tool to SEE that logging. I know there was some utility for it. Not sure if you can see it in

Re: [QGIS-Developer] How to enable debugging mode on QGIS start in Win11

2023-06-20 Thread Alessandro Pasotti via QGIS-Developer
QGIS_DEBUG=X has no effect if QGIS was not built in debug mode. On Tue, Jun 20, 2023 at 4:18 PM Vedran Stojnović via QGIS-Developer wrote: > > Hi, > > I just installed QGIS 3.30.3 via web installer ("qgis-full" version) and QGIS > won't start at all, nor does throw any error when I start it

[QGIS-Developer] How to enable debugging mode on QGIS start in Win11

2023-06-20 Thread Vedran Stojnović via QGIS-Developer
Hi, I just installed QGIS 3.30.3 via web installer ("qgis-full" version) and QGIS won't start at all, nor does throw any error when I start it from PowerShell by executing "qgis-bin.exe". I tried reinstalling a few times using different servers (default one and norbit.de) and I also cleaned the

Re: [QGIS-Developer] PyQGIS zoom to layer not working

2023-06-20 Thread Richard Duivenvoorde via QGIS-Developer
On 6/20/23 14:56, Frank Broniewski wrote: I did set the QGIS default CRS to 2169 in the options, but this did not help unfortunately. Mmm, that should work: Settings / CRS and Transforms/ CRS for projects / Use a default CRS AND I would maybe also set the CRS for layer to epsg:2169 Another

Re: [QGIS-Developer] PyQGIS zoom to layer not working

2023-06-20 Thread Frank Broniewski via QGIS-Developer
Hi Richard, thank you for your response, you may have already given me a good hint. QGIS is started from another app with an empty/no project, and the default CRS is in effect (WGS84 here). My layers are in epsg:2169 (Luxembourg), so I definitely need to correct this. Since all layers are in

Re: [QGIS-Developer] GeoFerver canno't read QGIS server WFS Services

2023-06-20 Thread Walter Lorenzetti via QGIS-Developer
Hi René-Luc any idea about it? W Il 05/06/23 15:48, Walter Lorenzetti via QGIS-Developer ha scritto: René-Luc there it is: http://www.qgis.org/gml;     xmlns:ogc="http://www.opengis.net/ogc;     xmlns:gml="http://www.opengis.net/gml; version="1.0"    

Re: [QGIS-Developer] PyQGIS zoom to layer not working

2023-06-20 Thread Richard Duivenvoorde via QGIS-Developer
Hi Frank, It really depends on: - what is the crs of your project - what is the crs of your layer - if they match, it should work - if they do not match you have to reproject the layer extent to the crs of the mapcanvas I think the python console will be helpfull here. While loaded, does the

[QGIS-Developer] PyQGIS zoom to layer not working

2023-06-20 Thread Frank Broniewski via QGIS-Developer
Hi, I am writing a plugin, in which I am loading a bunch of layers, and I want to zoom on one of them. Layers are loaded through an action (click). def load_layer(self): self.project.addMapLayers( [ self.addresses_layer.layer,

[QGIS-Developer] Cannot convert Topocentric to Geocentric

2023-06-20 Thread Gabriele Ascolese via QGIS-Developer
I simply try to convert a point from local Cartesian ENU centered on a point with lat,lon coordinates to geocentric ECEF coordinates. With proj from command line all works well. I use strings from proj to create QGIS CRS, and it seems all works well, i receive true in return code.