Re: [QGIS-Developer] DWG/DXF QGIS on Linux/Debian

2023-07-13 Thread Stefan Giese (WhereGroup) via QGIS-Developer
Hi Matteo, did you import via drag-and-drop from the Browser or did you use use the dedicated Project ► Import/Export ► Import Layers from DWG/DXF tool? Best Stefan Am 13.07.2023 um 09:10 schrieb Matteo Ghetta via QGIS-Developer: Hi all, I'm on a Debian testing fresh machine and with both Q

Re: [QGIS-Developer] Custom functions does not automatically load

2023-04-11 Thread Stefan Giese (WhereGroup) via QGIS-Developer
Hi, an in addition to Hannes you should check the python expression folder in your profile folder: * goto "Settings"->"User Profiles"->"Open Active Profile Folder" * and then check the subfolder \python\expressions * there should be your python expression function as python file Best regar

Re: [QGIS-Developer] Tool to create Mesh from raster layer?

2023-03-20 Thread Stefan Giese (WhereGroup) via QGIS-Developer
Hi all, I think it is not nessasary to go through Blender, just use theese two algorithm: * pixeltopoints * tinmeshcreation Best regards Stefan Am 20.03.2023 um 14:11 schrieb Sebastian Gutwein via QGIS-Developer: The ridiculous work around I use is to go through Blender using the Blender

Re: [QGIS-Developer] Plugin Menu Text

2023-01-18 Thread Stefan Giese (WhereGroup) via QGIS-Developer
blob/master/src/app/pluginmanager/qgspluginmanager_texts.cpp#L11> Best regards On Wed, Jan 18, 2023 at 2:23 PM Stefan Giese (WhereGroup) via QGIS-Developer <mailto:qgis-developer@lists.osgeo.org>> wrote:     Hi Devs,     we want to change this text which is shown in the Plugin menu. Is this

[QGIS-Developer] Plugin Menu Text

2023-01-17 Thread Stefan Giese (WhereGroup) via QGIS-Developer
Hi Devs, we want to change this text which is shown in the Plugin menu. Is this configurable? Best regards Stefan -- Mit freundlichen Grüßen Stefan Giese Projektleiter/Consultant - Aufwind durch Wissen! Jetzt neu: Web-Seminare und Online-Schulungen

Re: [QGIS-Developer] QGIS expression to get internal ID of a feature in a related layer

2022-11-29 Thread Stefan Giese (WhereGroup) via QGIS-Developer
Hi Andreas, in case of a relation 1:many you can use the /relation_aggregate/ function, something like: /  relation_aggregate('test_n_318_fk_test1_7993_id','concatenate',//to_string(@id),',')/ where the first parameter is the ID of the relation. Hope this helps... Stefan Am 29.11.2022 um 15

Re: [QGIS-Developer] Overlay expression function without a current object

2022-07-13 Thread Stefan Giese (WhereGroup) via QGIS-Developer
Hi Andreas, you can use the aggregate function for this, something like: aggregate(layer:='layer1',   aggregate:='concatenate',      expression:="name",      filter:=intersects(      map_get( item_variables( 'Karte 1'), 'map_extent_center' ), $geometry),      concat

Re: [QGIS-Developer] projected CRS

2021-10-13 Thread Stefan Giese (WhereGroup)
Thank you Nyall for clarifying. After sending my answer I realized that there can be projection which are not registered and have an official code Best Stefan Am 14.10.2021 um 02:49 schrieb Nyall Dawson: On Wed, 13 Oct 2021 at 20:10, Stefan Giese (WhereGroup) wrote: in python I would do

Re: [QGIS-Developer] projected CRS

2021-10-13 Thread Stefan Giese (WhereGroup)
in python I would do it like this one: /l = iface.activeLayer()// //if l.crs().authid() != "":// //    print(l.crs().authid ())// //else:// //    print("No projection")/ Am 13.10.2021 um 11:50 schrieb pierluigi de rosa: Dear all, mayble a very simple question. Is it possible to check quickly i

Re: [QGIS-Developer] Python libraries default of QGIS

2021-06-30 Thread Stefan Giese (WhereGroup)
Hi Luis, just type */help("modules")/* into the python console. Best regards Stefan Am 30.06.2021 um 23:50 schrieb Luiz Motta: Hi guys, I use a long times ago the Numpy in my plugins. But, for my surprise, recently i discover that is possible use the PILLOW(PIL) no need to install. I