Re: [QGIS-Developer] Future of OTB provider plugin?

2023-11-12 Thread Alexander Bruy via QGIS-Developer
Just to remind that most of the Processing developers were against its inclusion in the core back in 2018 and predicted that it won't be maintained and eventually will be removed. Said that, a huge +1 from me. нд, 12 лист. 2023 р. о 23:38 Nyall Dawson via QGIS-Developer пише: > > Hi list, > > I'

Re: [QGIS-Developer] QGIS equivalent of Turf/nearest-point function

2023-11-12 Thread Pankajeshwara Sharma via QGIS-Developer
Dear Sebastian, Thank you so much. I was just wondering if this tool can be called using Python from within QGIS. I am trying to write a Python equivalent of the following JavaScript block of code. nearestPoint = turf.nearestPoint(currentFeature, entire_dataset) Yours sincerely, Pankaj On Mon,

Re: [QGIS-Developer] Future of OTB provider plugin?

2023-11-12 Thread Tim Sutton via QGIS-Developer
Hi +1 from me too. Regards Tim On Sun, Nov 12, 2023 at 9:46 PM Jürgen E. Fischer via QGIS-Developer < qgis-developer@lists.osgeo.org> wrote: > Hi Nyall, > > On Mon, 13. Nov 2023 at 07:38:49 +1000, Nyall Dawson via QGIS-Developer > wrote: > > So... what does everyone else think? Can we safely d

Re: [QGIS-Developer] Future of OTB provider plugin?

2023-11-12 Thread Jürgen E . Fischer via QGIS-Developer
Hi Nyall, On Mon, 13. Nov 2023 at 07:38:49 +1000, Nyall Dawson via QGIS-Developer wrote: > So... what does everyone else think? Can we safely demote OTB to a 3rd > party plugin and remove it for QGIS 3.36? +1 Jürgen -- Jürgen E. Fischer norBIT GmbH Tel. +49-4931-918175-

[QGIS-Developer] Future of OTB provider plugin?

2023-11-12 Thread Nyall Dawson via QGIS-Developer
Hi list, I'd like to kick start some discussions about the future of the official OTB Processing Provider plugin which comes pre-installed with QGIS. As you may or may not be aware of, the Processing maintainers have been on a multi-year quest to slim down the core set of out-of-the-box providers

[QGIS-Developer] Introducing the Kontur team

2023-11-12 Thread Tim Sutton via QGIS-Developer
Dear QGIS Developers and Interested Lookers On! As you are hopefully aware, the PSC has allocated funds to help us get our new website made, awesome and deployed. We ran an open call[1] for interested parties to apply, which was published on the blog and on the QGIS News Feed. During our PSC me

Re: [QGIS-Developer] QGIS equivalent of Turf/nearest-point function

2023-11-12 Thread Sebastian Gutwein via QGIS-Developer
Not that exact function that I am aware of but there is a *Distance to nearest hub (points) *tool in the processing toolbox that will give you the distance to all of the points and then you can choose the one with the shortest distance. You could also use select by expression using the *Closest Poi

[QGIS-Developer] QGIS equivalent of Turf/nearest-point function

2023-11-12 Thread Pankajeshwara Sharma via QGIS-Developer
Dear developers, I was wondering of there is a QGIS equivalent of Turf's nearest point function? https://www.npmjs.com/package/@turf/nearest-point The function takes a reference point and a FeatureCollection of Features with Point geometries and returns the point from the FeatureCollection closes