Re: [QGIS-Developer] crssync issues

2021-01-21 Thread Andreas Neumann
Hi Even, Yes - indeed that seems to be the case. There seem to be two versions of libproj on the system: /usr/local/lib/libproj.so.19 and /usr/lib/x86_64-linux-gnu/libproj.so.15 The first was compiled by myself, the second seems have to be slipped in by the package manager. And indeed

Re: [QGIS-Developer] crssync issues

2021-01-21 Thread Even Rouault
Andreas, if you've built yourself PROJ on a system that has older proj versions, I'd suppose that one of the QGIS dependency links against that older proj (might be spatialite for example), and at runtime you get a clash between it and 7.2.x Check the output of: ldd

[QGIS-Developer] crssync issues

2021-01-21 Thread Andreas Neumann
Hi, Since a few weeks I can't compile QGIS anymore. It always hangs at crssync (core dumped) during compile and then stops compiling. Could there be an issue with the proj library version I have? I tried with versions 7.2.0 and 7.2.1. Here is the output I usually get: [41/3286] Running

[QGIS-Developer] New QGIS Date/Time Tools Plugin

2021-01-21 Thread C Hamilton
I would like to invite you to take a look at a new QGIS plugin that I have titled "Date/Time Tools". Currently it only has one capability to display date, time, and timezone information with conversions between UNIX time (Epoch), Julian dates, and ISO8601 date/time formats. It can calculate the

Re: [QGIS-Developer] Layer Temporal Settings

2021-01-21 Thread Pedro Venâncio
Yes, that is a magnific walkthrough from Nyall. I've done this animation just following Nyall's "webinar": https://youtu.be/w9VLFfgU5C8 A quinta, 21/01/2021, 11:50, Richard Duivenvoorde escreveu: > On 1/21/21 11:00 AM, st...@nexusnine.co.uk wrote: > > Good Morning, > > > > I have been using

Re: [QGIS-Developer] Layer Temporal Settings

2021-01-21 Thread Richard Duivenvoorde
On 1/21/21 11:00 AM, st...@nexusnine.co.uk wrote: > Good Morning, > > I have been using QGIS for some time now or generating reports and > visualising data and was mostly using the ‘TimeManager’ plugin in Version > 3.10(LTR) to animate some GPS data derived from UAVS.  I am now looking to >

[QGIS-Developer] QWC-services without Docker?

2021-01-21 Thread Thomas Schüttenberg
Hi there! Now that I have learned to successfully get the QWC2 demo app[1] up and running, I would like to install some enhancements (a.k.a. qwc-services). I have read about qwc-services[2] and now I have some general questions: Is it possible to deploy these extension services without

[QGIS-Developer] Layer Temporal Settings

2021-01-21 Thread steve
Good Morning, I have been using QGIS for some time now or generating reports and visualising data and was mostly using the 'TimeManager' plugin in Version 3.10(LTR) to animate some GPS data derived from UAVS. I am now looking to utilise the Temporal settings in version 3.16.3 in a similar

Re: [QGIS-Developer] Proxy configuration in plugin

2021-01-21 Thread Etienne Trimaille
The proxy settings are only set up for core class in QGIS, which you should look at to make your requests. CF https://gis.stackexchange.com/questions/343126/how-to-perform-sync-or-async-network-request-in-pyqgis If you really want to use "requests", you should read the QgsSettings about proxy and

Re: [QGIS-Developer] Proxy configuration in plugin

2021-01-21 Thread Richard Duivenvoorde
On 1/21/21 9:02 AM, Sampo Savolainen wrote: > So this seems to boil down to the QGIS proxy settings are not passed to the > plugin via http_proxy and https_proxy environment variables. Is there a best > practice on how plugins should access proxy configuration in QGIS and use it? Hi Sampo, In

[QGIS-Developer] Proxy configuration in plugin

2021-01-21 Thread Sampo Savolainen
Hi, I'm developing a small QGIS plugin ( https://github.com/spatineo/qgis-intelligent-search/) and ran into issues with proxy configuration. The plugin uses the Python requests library to make HTTP API calls and owslib to download and parse GetCapabilities documents from WxS services. Owslib