Re: [QGIS-Developer] Maintainance of QGIS Plugin repository

2024-04-30 Thread Greg Troxel via QGIS-Developer
Admire Nyakudya via QGIS-Developer writes: > Over the years there has been a steady increase in plugins that are > not approved . This is > due to a number of reasons: > * Duplication of functionality. Plugin functionality already exists in QGIS. >

Re: [QGIS-Developer] Maintainance of QGIS Plugin repository

2024-04-30 Thread Jorge Gustavo Rocha via QGIS-Developer
Hi Admire, Thank you for helping with the plugins. I think we can lower the administration time, if we can enable reviews by the users. Not just voting (that we already have), but written reviews. Written reviews can address issues you mentioned: - Duplication of functionality. Plugin

Re: [QGIS-Developer] Choose DEM layer as terrain in 3D view using PyQGIS

2024-04-30 Thread Stefanos Natsis via QGIS-Developer
Hi Abdelghani, You need to create a symbol, set its data defined properties, assign it to a 3d renderer and then assign the 3d renderer to the layer: ``` s = QgsPolygon3DSymbol() p = QgsProperty() p.setField('field_containing_height') c = QgsPropertyCollection()

Re: [QGIS-Developer] Maintainance of QGIS Plugin repository

2024-04-30 Thread Tim Sutton via QGIS-Developer
Hi Admire Thanks for this! We can certainly task Lova with helping to streamline the process, implement better moderation tools etc. With regards to deleting plugins, I think we should take the approach that we in general do not physically delete things, rather we unpublish them with a flag that

Re: [QGIS-Developer] Choose DEM layer as terrain in 3D view using PyQGIS

2024-04-30 Thread Abdelghani Tamort via QGIS-Developer
This is what I'm trying to achieve (sorry my QGIS GUI is in french, I know it's not very pleasant for the eye) : [image: image.png] I'm supposed to define the symbology first using the class QgsAbstract3DSymbol then feeding it to the QgsVectorLayer3DRenderer (I imagine), but I haven't got a clue

Re: [QGIS-Developer] Choose DEM layer as terrain in 3D view using PyQGIS

2024-04-30 Thread Abdelghani Tamort via QGIS-Developer
Hello Stefanos, Thanks a lot, it works for me! How about showing extruded buildings from a vector layer (using an attribute containing height in meters)? I'm supposed to work with the QgsVectorLayer3DRenderer class right ? Best regards, Abdelghani TAMORT On Tue, 30 Apr 2024 at 11:12, Stefanos

[QGIS-Developer] Maintainance of QGIS Plugin repository

2024-04-30 Thread Admire Nyakudya via QGIS-Developer
Hi All I help out in the approval process of QGIS plugins. There are various issues that are listed https://github.com/qgis/QGIS-Django/issues to streamline the approval process of plugins. Over the years there has been a steady increase in plugins that are not approved

Re: [QGIS-Developer] Build problems using install instructions

2024-04-30 Thread Tony Bazeley via QGIS-Developer
Thanks Julien and Richard I gave it another shot on the weekend with a clean build which was successful. But I'm now thinking I'd be better suited to using the latest stable version, 3_36 in this case. My interpretation of the instructions, git commit git worktree add

Re: [QGIS-Developer] Choose DEM layer as terrain in 3D view using PyQGIS

2024-04-30 Thread Stefanos Natsis via QGIS-Developer
Hi Abdelghani, You should be able to achieve that by setting the project's terrain: ``` p=QgsRasterDemTerrainProvider() p.setLayer(dem_layer) QgsProject.instance().elevationProperties().setTerrainProvider(p) ``` This should get your dem_layer as a terrain for any new 3d views. I don't think the