Maak een QgsLocator (Plugin) met PyQGIS

What is a Locator (plugin)
Some months ago, Nyall Dawson silently dropped a nice widget into the lower left corner of your QGIS screen:
locatorbel
People familiar with QtCreator (the Qt-development environment) should recognize it as a QtCreator Locator look-a-like: a way to (very) quickly search in your project for words, classes, bookmarks, help topics, files etc etc.. It is actually a multipurpose tool to ‘quickly’ search for something, or ‘start’ something. See the original Qt documentation.
Nyall had the brilliant idea to add something like that to QGIS too… and he did. In the code it is called a QgsLocator and it can load/register all kind of so called ‘QgsLocatorFilters’.
Out of the box by starting to type in the search field, you search for: Actions, Processing Algorithms, Spatial Bookmarks, Active Layer Features, Project Layers and Project Layouts.
Just start to type ‘bel…’ and you will see there are a lot of buff(er) related Processing Algorithms available.
Then by clicking on one of the algorithms, you actually start it in processing, super fast, super cool.
Or if you have a world map loaded like in the image and click on ‘Belgium’ you zoom to that ‘feature’.
BUT the coolest thing is, that as a (python) developer you can ‘easily’ implement such a QgsLocatorFilter yourself.
The thing that came up with me first is: ‘Wow, what about using this for a fast searching geocoder…’
So, let’s try…
How to create one
The crux is, to implement/code a so called ‘QgsLocatorFilter’ (see the QgsLocatorFilter api docs, the PyQGIS api or the cpp headerfile).
YOUR implementation of this piece of code is actually the work horse of your Locator Filter. It will take the user input, do something with it (in our case: throw it to an Online Geocoder Api), get back the results, create ‘QgsLocatorResult’s from that, which then will be shown to the user AND describe what happens when a user double clicks on the result.
Off course you need some ‘glue’ to put it in QGIS after this:
– a plugin which you can put in the QGIS plugin repository so a user can download your filter
– the ‘registering’ of your filter to QGIS so it is ‘picked up’ and shown in the Locator search widget
(see the nominatim locator plugin code)
Some geocoders (notably the Google one), need a personal api key to work.
When you left click on the little magnifier-icon a menu will appear in which you can select ‘Configure’
configuremenu
That will bring you to the Locator tab in the Options dialog:
locatoroptions
There you can choose to always enable a Locator Filter, or fully disable it.
As you can see in the right, there is also an (now inactive) configure button. If your locator returns True as a result of calling hasConfigWidget(), then that button becomes active and you can for example implement your own Geocoder configuration window.
An example geocoder: Nominatim_Locator_Plugin
Nominatim (from the Latin, ‘by name’) is “a tool to search OSM data by name and address and to generate synthetic addresses of OSM points (reverse geocoding)”. You can read the OSM wiki or the OSM api information.
I have created a plugin called the ‘Nominatim_Locator_Plugin’ which implements this QgsLocatorFilter interface. Install it in QGIS by enabling the experimental plugins, search for ‘Nominatim’ and install the ‘Nominatim Locator Filter’ plugin. Or … have a look into the python code.
As you can see in the ‘fetchResults’ we wait until we have at least 2 characters, and then we start searching.
One special case with the Nominatim service is that it is a free service, but you are NOT allowed to use it as a ‘suggest’ service. That is: only search a full place name. To handle this, I added the gesture that you have to finish your place- or address-term with a ‘space’, and THEN the request is fired.
The cool thing with Nominatim and OpenStreetMap is that it handles all kind of languages. If you type the dutch word of Statue of Liberty: ‘vrijheidsbeeld’, it will just show up:
vrijheidsbeeld
Some technical details
Which methods you have to define you can find in qgslocatorfilter.h.
One thing to be aware of is that the searching/retrieving/showing of the results is all done in multiple threads! I thought to be clever and tried to use asynchronous GET requests to the services, but ended up fighting ‘thread troubles’. So my tip: just use synchronous HTTP for your requests.
Which brings me to which library to use for the HTTP traffic. In QGIS 2 plugins you see people use the Requests-module pretty often, or plain httplib2 or implement their own NetworkAccessManagers.
Disadvantage of using external modules or home-brew solutions is that often QGIS-configurations like Proxy Settings or Network Timeout values are ignored…
For my experiments I used this module: networkaccessmanager.py.
The nice thing is that it tries to be a thin Python wrapper around QGIS’s own QgsNetworkAccessManager (which in this case is actually a thin wrapper around Qt’s QnetworkAccessManager).
It uses the Proxy settings that a User configured and if needed it can use QGIS’s authorisation module so the HTTP traffix is authenticated against the users own systems.
This boundless solution is a great one, but it would be even cooler if the (rather naive) QgsNetworkAccessManager Cpp implementation could be extended to be more Python/User friendly. So it is easier to handle redirects, timouts, headers etc. And like in the boundless module you could choose between synchronous (blocking) or asynchronous (non-blocking) calls.
I created a QEP (QGIS Enhancement Proposal) for it, and hope others are interested and chime in.
Future Ideas
Off course FOSS is never ‘finished’, as in the good sense of being ‘never finished’ 🙂
New ideas always pop up when you are coding:
– use a Nominatim configuration screen, to for example only search for certain osm tags (what about: “find all pubs in current mapcanvas view”, best to be done with a map of your current surroundings 🙂 )
– use the accept-language option of Nominatim (use current QGIS language) in the query, so you can use ‘Эйфелева башня’ or ‘eiffeltoren’ and get your results back in your preferred language.
eiffeltowerrussion
– a Locator for Google Maps api searching. You will need a key for that one, so create a configuration Window for it too (actually: done 🙂 )
– the PDOK locatieserver interface, our national geocoder service (actually: done 🙂 )
– YOUR national geocoder service
So, I hope we get you interested in Locators and will see your plugins appear at plugins.qgis.org
Ah, and some last tips for Python QGIS / PyQGIS programmers:
Latest Python API docs (thanks Denis): https://qgis.org/pyqgis/master/
https://qgis.org/api/api_break.html (all QGIS2.x – QGIS3.x api breaks and fixes)

Join the Conversation

1 Comment

Leave a comment

Your email address will not be published. Required fields are marked *