[QGIS-Developer] Protobuf mismatch with compiled python package

2022-06-07 Thread Nils Nolde via QGIS-Developer
Hi all, bit of an exotic one: I'm trying to use a Python package for a new QGIS Plugin we want to release soon, and which has a C++ extension: https://pypi.org/project/pyvalhalla/. One of the dependencies of that library is protobuf. I've been using it extensively over the past months, but now

[QGIS-Developer] Protobuf mismatch with compiled python package

2022-06-07 Thread Nils Nolde via QGIS-Developer
Hi all, bit of an exotic one: I'm trying to use a Python package for a new QGIS Plugin we want to release soon, and which has a C++ extension: https://pypi.org/project/pyvalhalla/. One of the dependencies of that library is protobuf. I've been using it extensively over the past months, but now

Re: [QGIS-Developer] network analyst in qgis

2021-09-16 Thread Nils Nolde
On 16.09.21 15:25, Greg Troxel wrote: I am surprised it is considered ok to have non-free software as part of a plugin. Usually in Free Software plugins are considered derived works of the project, so them including code not compatible with GPL2 seems problematic. I wasn't clear on the

Re: [QGIS-Developer] network analyst in qgis

2021-09-16 Thread Nils Nolde
On 16.09.21 14:59, Greg Troxel wrote: Nils Nolde writes: That all sounds like great progress. Thanks Greg:) Speaking as a packager for systems that are somewhat unusual: solvers, that's above our heads. For everything we need a performant routing engine, so we have to include several

[QGIS-Developer] network analyst in qgis

2021-09-16 Thread Nils Nolde
Hi devs, I'd have sort of an early announcement, but also a related question: we're currently developing a proper network analyst toolkit as a plugin. We feel it's another important step to make ArcMap/Pro more redundant haha one can dream:)  In any case, the plan is to provide highly

[QGIS-Developer] Buffer of lines results in "random" vertex order in buffer polygon

2020-08-06 Thread Nils Nolde
Dear devs, I have a fairly complex geometry-(and mind-)bending workflow where I'd ideally depend on the fact that buffering a line (regular buffer, flat cap, miter join with almost infinite limit) would result in a reproducible pattern for the vertex order in the resulting buffer polygon (s.

Re: [QGIS-Developer] Removal of PostGISExecuteSQL.py in 3.14

2020-07-13 Thread Nils Nolde
Thanks for the heads up Etienne! That’s great:) > On 13. Jul 2020, at 18:02, Etienne Trimaille > wrote: > >  >> Le lun. 13 juil. 2020 à 15:59, Nils Nolde a écrit : >> Hi, >> >> I just realized that the processing algo PostGISExecuteSQL.py

[QGIS-Developer] Old(ish) plugins not using QgsNetworkAccessManager crashing regularly

2020-07-13 Thread Nils Nolde
Hi, just wanted to know if anyone experiences problems with QMS maps (and other plugins using deprecated network access managers, e.g. the new MapTiler plugin)? Whenever I zoom in/out too fast (with mouse wheel) with e.g. CartoDB's Positron map or MapTiler's Basic map, QGIS gets stuck in

[QGIS-Developer] Removal of PostGISExecuteSQL.py in 3.14

2020-07-13 Thread Nils Nolde
Hi, I just realized that the processing algo PostGISExecuteSQL.py was removed for the 3.14 release. Some time after processing.tools.postgis module was removed (as the only module using it was PostGISExecuteSQL, but still, it's a public API protected by backwards compatibility right?) Was

Re: [QGIS-Developer] QScintilla headers not found before compiling

2019-12-16 Thread Nils Nolde
Yes, that did the trick! Thanks so much Jorge! Cheers Nils ___ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer Unsubscribe:

[QGIS-Developer] QScintilla headers not found before compiling

2019-12-14 Thread Nils Nolde
Hi all, I was trying to build the current QGIS master from source on Ubuntu 18.04 following the Github Pages docu: https://htmlpreview.github.io/?https://raw.github.com/qgis/QGIS/master/doc/INSTALL.html#toc3. Mostly to try remote plugin debugging in PyCharm. While scanning the build

[QGIS-Developer] QgsProcessingAlgorithm: no output layer when cancelled

2019-07-22 Thread Nils Nolde
Hola, running into 2 notorious problems with the ORS Tools plugin: 1. QgsProcessingAlgorithm, where it doesn't return the features which were processed until the user presses Cancel. More elaborate on SE:

[QGIS-Developer] Use of ORS tools and OSM in QGIS for an accessibility and, mobility project (arkaitz mañas)

2019-06-12 Thread Nils Nolde
Hi Arkaitz, best ask us directly on https://ask.openrouteservice.org for all openrouteservice related questions. Best Nils On 12.06.19 22:00, qgis-developer-requ...@lists.osgeo.org wrote: Use of ORS tools and OSM in QGIS for an accessibility and mobility project (arkaitz mañas)

[QGIS-Developer] Proxy support in Python Plugins

2019-03-30 Thread Nils Nolde
Hi, I want to upgrade ORS Tools to not work with requests anymore to fetch GET and POST queries. However, I never used QgsNetworkAccessManager and have little knowledge about networking in general. I tried mostly Boundless Geo's NetworkAccessManager wrapper. Couldn't make it work for my

[QGIS-Developer] Rename QGIS plugin

2019-02-16 Thread Nils Nolde
Hi Ervin, I went through the same pain not too long ago. Unfortunately there's no graceful way to rename a plugin. I mean, no way to just change the name and the stats and history will preserve. You will have to create a new plugin basically and deprecate the old one. In my case it was purely

Re: [QGIS-Developer] Change plugin name

2018-12-17 Thread Nils Nolde
BTW, the installPlugin()/uninstallPlugin() method works beautifully! All from within OSMtools (which I think is a cleaner solution, rather than uninstalling from ORStools). Will be available in 2-3 weeks:) Cheers Nils On 27.11.18 15:52, Borys Jurgiel wrote: Dnia wtorek, 27 listopada 2018

Re: [QGIS-Developer] How to deal with time delay in QgsProcessingAlgorithm?

2018-12-09 Thread Nils Nolde
algorithms, but I'll open another question for that. Actually I'll do it on Stack Exchange first. Thanks! Nils On 08.12.18 11:42, Nils Nolde wrote: Hi Nyall, Ok, I wasn't sure if they're being executed in another thread by default. Then it is weird. I'm not doing anything out

Re: [QGIS-Developer] How to deal with time delay in QgsProcessingAlgorithm?

2018-12-08 Thread Nils Nolde
On 08.12.18 05:20, Nyall Dawson wrote: Did you change your algorithm to prevent this background execution? How are you launching the algorithm? Sorry, didn't really answer this. I'm launching it from the Processing Toolbox. Didn't try a Model or script yet. Cheers Nils

Re: [QGIS-Developer] How to deal with time delay in QgsProcessingAlgorithm?

2018-12-08 Thread Nils Nolde
ope someone can clear up the mystery. Thanks Nils On 08.12.18 05:20, Nyall Dawson wrote: On Sat, 8 Dec 2018 at 09:14, Nils Nolde wrote: Hi, I'd like to extend the openrouteservice API client plugin with a processing provider, but I run into problems implementing an error catch for 'Query

[QGIS-Developer] Curated list of available OSGeo4W Python packages

2018-11-27 Thread Nils Nolde
Hi again, I couldn't find a list of packages bundled with a OSGeo4W Python distro. As that is the most limiting Python API of all OS's and I'd usually like to avoid 3rd party dependencies: Is there a list of packages which are shipped per QGIS version? If not, I think that'd be a great

Re: [QGIS-Developer] Change plugin name

2018-11-27 Thread Nils Nolde
a bit aggressive) which tells your user that the plugin has been renamed. Denis Le mar. 27 nov. 2018 à 06:40, Paolo Cavallini <mailto:cavall...@faunalia.it>> a écrit : Il 2018-11-23 22:23 Nils Nolde ha scritto: > Hi, > > I'm the author of OSM Tools plugin.

[QGIS-Developer] Change plugin name

2018-11-23 Thread Nils Nolde
Hi, I'm the author of OSM Tools plugin. As several people (rightfully) pointed out, the name is way too generic (in my defense, when I set out I wanted it to be way more generic). Now, I'm a few versions in and I think a few people are using it and became sorta dependent on it. But I'd like

[QGIS-Developer] Is there a QList/other container for QgsRubberBand?

2018-03-02 Thread Nils Nolde
Hi, playing around for a new plugin release, I tested the pyqgis cookbook rubber band example. I'd like to be able to access the drawn rubberbands outside of the calling functions without passing around objects. So some equivalent to mapCanvas().mapLayers() for rubber bands would be cool. Is

[QGIS-Developer] Renaming plugin for QGIS3

2018-02-19 Thread Nils Nolde
Hi, I'm considering renaming OSM Tools to ORS Tools for QGIS 3. Mostly because the provided functionality didn't turn out to use other OSM API's than ORS, but also to maintain consistency with Github (where the repo is called ORStools). Will QGIS 3