Select by location: hoe zit dat met die opties?

Currently, there’s around 20 persons in Bucharest working on QGIS development during the Contributors Meeting. And because the name of the hackfest is changed from developers meeting to contributors meeting, I now feel welcome too (as a non-coding contributor).
So what can I do, as a non-coding QGIS fan? Write documentation! I just started with some documentation that I really thought should be better. I even used it as a (bad) example in a presentation at the FOSS4GNL, titled “what we can learn from esri”. And Iselectbylocation_operators

Continue reading “Select by location: hoe zit dat met die opties?”

(English) Proj: Select Datum Transformations for EPSG:28992

(FOR REFERENCE, TODO: TO BE UPDATED AND TRANSLATED)
If you startup QGIS 3.8 / Zanzibar the first time to load a data in our national CRS (EPSG:28992) you are being presented with the following dialog:
projqgisveranderingen
I thought it had something todo with the fact that this OSGeo4W install maybe used the newer PROJ (6.0.1), but the About box of QGIS shows:
Compiled against PROJ5.2.0
Running against PROJ Rel. 5.2.0, September 15th, 2018

Checking my older version of QGIS I found the proj/Transformation string used there was:
Proj4: +proj=sterea +lat_0=52.15616055555555 +lon_0=5.38763888888889 +k=0.9999079 +x_0=155000 +y_0=463000 +ellps=bessel +towgs84=565.2369,50.0087,465.658,-0.406857,0.350733,-1.87035,4.0812 +units=m +no_defs
The first item in the dialog looks most like it…
Strange thing is that the first item is colored GREEN, so it looks like that is the preferred or current one?
But reading the information (from PROJ), you see:
+towgs84=565.237,50.0087,465.658,-0.406857,0.350733,-1.87035,4.0812
EPSG Transformation Code: 15934
Source CRS: Amersfoort
Destination CRS: WGS 84
Remarks: Parameter values from Amersfoort to ETRS89(3) (tfm code 15739) assuming that ETRS89 is equivalent to QGS84 withing the accuracy of the transformation.
Replaces Amersfoort to WGS 84 (2) (code 1672)
Replaced by Amersfoort to WGS 84 (4) (tfm code 4833)

+towgs84=593.16,26.15,478.54,-1.3044,-0.1033,-1.1445,4.0775
EPSG Transformation Code: 1112
Source CRS: Amersfoort
Destination CRS: WGS 84
Remarks: Replaced by Amersfoort to WGS84 (2) (code 1672).

+towgs84=565.04,49.91,465.84,-0.409394,0.359705,-1.86849,4.0772
EPSG Transformation Code: 1672
Source CRS: Amersfoort
Destination CRS: WGS 84
Remarks: Parameter values from Amersfoort to ETRS89(1) (code 1751) assuming that ETRS89 is equivalent to WGS84 within the accuracy of the transformation. Replaces Amersfoort to WGS84 (1) (code 1112). Replaced by Amersfoort to WGS84 (3) (code 15934).

+towgs84=565.417,50.3319,465.552,-0.398957,0.343988,-1.8774,4.0725
EPSG Transformation Code: 4833
Source CRS: Amersfoort
Destination CRS: WGS 84
Remarks: Parameter values from Amersfoort to ETRS89(5) (tfm code 4830) assuming that ETRS89 is equivalent to WGS84 within the accuracy of the transformation.
Replaces Amersfoort to WGS84 (3) (code 15934).

So my preliminary conclusion now is: do not use the GREEN (top) one, but the last one, as that states: Replaces Amersfoort to WGS84 (3) (code 15934)..
Ok, Nyall answered my question on the mailing list.
It appears that the transformations QGIS used earlier was a little messy, and he advices lo look into QGIS with proj6. Funny thing is then you are shown just 2 options (again the first one green). I’ll have to compile projinfo to see what that gives…
screenshot-20190627104509-716x467
Anybody better information or reasoning?

(English) QGISnetworklogger plugin or what are QGIS and my service talking about…

Just released a ‘new’ plugin:
QGIS Network Logger, install via the plugin manager of QGIS version 3.6 or higher (https://plugins.qgis.org/plugins/qgisnetworklogger/).
One of the things QGIS is pretty good in is talking to OGC services (WebMapService/WMS, WebFeatureService/WFS etc etc), QGIS even talks to Esri web services.
Something what was hard in this, is that if you are an average Windows user of QGIS, with a build without debug information, you were never able to see WHAT exactly QGIS was talking about with the server…
So when QGIS fails to show something on your map, it was not always clear if it was a data problem, a QGIS problem or ( very often ๐Ÿ™‚ ) a service issue.
With this plugin, made possible by work of several core-devs in QGIS 3.6 or more, you can ‘justs’ see all the GET/POST/PUT/DELETE requests that QGIS is firing off to the servers. If you are a WebDeveloper: it even listens to F12 (for others: that is the key to show the web-console in most browsers, which also show you internal information of traffic and web pages).
There is a lot to see:
Information and context menu
You see all url’s being fired, the HTTP Operation, status, query, headers from Request and Reply and data/content from the Request etc etc.
You can even ‘replay’ or try out a request in your browser or terminal, by using the context menu on a url:
open
In this example you can see that you can copy a request as a CURL (https://curl.haxx.se/) command to fetch the data or image again.
OR if it is a GET url, you can just open it in your default browser.
The work was able because in QGIS 3.6 Nyall et al. changed some code, so it was easier to ‘listen’ to all the requests that QgsNetworkManager is doing. So this plugin just listens to the requests and show them in the window.
So as long as the provider (or plugin) is using the QgsNetworkManager interface to connect to online services, you will see the requests flying by in the logger window. I hope this is an argument for plugin builders to not use Requests anymore ;-), but stick to our own network machinery.
As said: this would not have been possible without help of Nyall and Alessandro. Nyall also helped with the treeview in my first rudimentary version.
That treeview also costs me some hair though. Because of the asynchrounous nature of the web, AND the fact that you can filter the requests, I bumped in all kind of threading issues…. The tree(view) is being filled, sorted, changed, updated etc etc so fast, that I suffered a lot of crashes… BUT I think I managed to make it stable now.
If not: let me know: https://github.com/rduivenvoorde/qgisnetworklogger/issues
Also if you want to pick up one of the Feature Requests we already have ๐Ÿ™‚
Happy QGISsing.

About Layer tree embedded widgets and have your WM(T)S always crispy sharp

Around 2014/2015 Martin updated the whole Legend / Layermanager code in QGIS. He wrote some nice blogs about this new “Layer Tree API”: Part 1, Part 2 and Part 3 so people would better understand how “to talk PyQGIS to the Legend”.
In 2016 Martin merged some code on top of this, which would make it possible to create so called ‘Layer Tree embedded widgets’.
In the image below you see an example of this: a little opacity slider which can be used there to change the opacity of the Layer to which it is connected visible in the Layer Manager.
Such embedded widgets are inserted when you move then in the Layer Properties/Legend tab from ‘Available widgets’ to ‘Used widgets’, ONLY for the layer you are viewing the properties.
embeddedwidget_gui
Continue reading “About Layer tree embedded widgets and have your WM(T)S always crispy sharp”

WCS QGIS en PDOK

Rant?
This WCS investigation started off because my PDOKServicesPlugin was not working for the PDOK WCS services anymore. I wanted to see all fired network requests, so am creating a future plugin for that: https://github.com/rduivenvoorde/qgisnetworklogger. But I hit all kind of issues when trying out the service(s). This is some write up of my findings and hopefully is interesting enough for some people interested in WCS’s….
WCS?
WCS is the WebCoverageService, an OGC api to serve Coverage data. In OGC terms a Coverage is “raster-data”: like geo tiff’s, ecw’s being rasterized, DEM’s (Digital Elevation Models) etc.
Our national opendata service: ‘PDOK’ has an WCS endpoint to the AHN (our national DEM available at max 50cm, though governmental agencies can go up to 10cm resolution).
One of the drawbacks of WCS is that there are already so many different versions: 1.0.0, 1.0.1, 1.1.2, 2.0.0, 2.1.0 etc etc
QGIS WCS provider supports the versions: 1.0.0, 1.1.0, 1.1.2.
How?
WCS is part of the OWS-family of api’s: the ‘OGC Web Services’.
To determine the capabilities of a service you use (just like every other OWS service) a ‘GetCapabilities’-request, like:
https://geodata.nationaalgeoregister.nl/ahn3/wcs?request=GetCapabilities&service=wcs&version=1.1.2
This shows you the general information of the service, AND which datasets are available.
To fetch more information about one dataset, we use the ‘DescribeCoverage’-request, like:
https://geodata.nationaalgeoregister.nl/ahn3/wcs?request=DescribeCoverage&service=wcs&version=1.1.2
(in newer versions of the WCS you also have to add the CoverageId to the request)
After you received this information (well, actually nothing more then some crs, layernames and dimension information, I’ve never understood why you would not add data statistic in this also…) you are ready to actually GET the data with a so called ‘GetCoverage’-request. In this request you set the desired data type.
And example to retrieve a part of our 5m National DEM around Haarlem as a tiff raster image:
https://geodata.nationaalgeoregister.nl/ahn3/wcs?SERVICE=WCS&VERSION=1.0.0&REQUEST=GetCoverage&FORMAT=image/tiff&COVERAGE=ahn3_5m_dsm&BBOX=99198.4917734710033983,485588.33618855383247137,106915.96004800940863788,494366.81641667388612404&CRS=EPSG:28992&RESPONSE_CRS=EPSG:28992&WIDTH=450&HEIGHT=512
Save this to disk and you can automagically load it in QGIS, because this is besides a true tiff-image also a geotiff, meaning it has some metadata in it keeping information about the crs (Coordinate Reference System/Projection) and it’s scale and place on earth:
ahn3tiff
As you can see, for example by using the identify tool, in this image there is just one ‘band’: Band 1. Where I clicked the data shows 43, note that this is NOT the height there, but the RGB value of the pixel in the position, going from 0 to 255. So this is NOT the actual data?
You can also load the following url in your browser to ask the service to provide a png image:
https://geodata.nationaalgeoregister.nl/ahn3/wcs?SERVICE=WCS&VERSION=1.0.0&REQUEST=GetCoverage&FORMAT=image/png&COVERAGE=ahn3_5m_dsm&BBOX=99198.4917734710033983,485588.33618855383247137,106915.96004800940863788,494366.81641667388612404&CRS=EPSG:28992&RESPONSE_CRS=EPSG:28992&WIDTH=450&HEIGHT=512
Saving THAT one to disk and loading it in QGIS shows you that it will NOT be placed nicely in the right position of the map. That is because a png image does NOT contain the mentioned metadata (you can provide it as a separate worldfile next to it though).
When you use QGIS to look into the png image, you will find 3 bands: 1,2 and 3 (actually RGB) all holding the same values.
So the service encoded the (actual) raster data into some kind of image where the values are spread over the range 0 till 255…. It is still possible to have some general view of the height variations in this area (actually not that much, besides the dunes in the west ๐Ÿ™‚ ) by providing some styling to the png or tiff:
ahn3png
But what are the real data values of the cells of the raster?
To find that you can (either use the capabilities url and load the service via QGIS, OR use the following request, which should get exact the same data but encoded as 32 bit floats in a tiff (GEOTIFF_FLOAT32):
https://geodata.nationaalgeoregister.nl/ahn3/wcs?SERVICE=WCS&VERSION=1.0.0&REQUEST=GetCoverage&FORMAT=GEOTIFF_FLOAT32&COVERAGE=ahn3_05m_dsm&BBOX=99198.4917734710033983,485588.33618855383247137,106915.96004800940863788,494366.81641667388612404&CRS=EPSG:28992&RESPONSE_CRS=EPSG:28992&WIDTH=450&HEIGHT=512
NOW you receive actual data, data in every cell has it’s (modelled) height in meters, ranging from -4.485 meter below seelevel (in the lower right corner) upto 55.5212 meter: I think some ‘high’ dunes in the west or maybe some tower ๐Ÿ™‚
ahn3floattiff
Mmm, not sure what is going on here, because measuring the cellen, they are not 0.5 meter x 0.5 meter ???
Let’s try the actual service then: use the GetCapabilities service url from above, create a WCS connection and request the ahn3_05m_dsm (raw data) in the format FLOAT32. This takes some time but NOW you will have 0.5×0.5m cells (though it takes some time to retrieve the data….
Open the Layer props, and from the ‘Render type’ dropdown just select ‘Hillshade’. Zoomed in at Haarlem, you will see:
hillshade
Nice and easy he? The ‘mountain’ in the middle is an old ‘landfill’, now ‘recreation area’, 17 meters high.
So?
What are the issues I hit with WCS?
WCS as Standard
– There are just too many variables and options in the ‘standard’. Because of that both WCS client-implementations AND WCS server-implementations often do not play well together. In my case the server change at PDOK from Geoserver -> Mapserver made the Formats totally different. NOT so much a problem if you have a highly configurable client like QGIS. But if you have a more simple client (as my plugin, or some OpenLayers or Leaflet plugin) it would be good if those formats stay more or like the same.
– All the capability documents are (very) different in the different versions
– So: please OGC: Keep It Simple and backward compatible please!
WCS and Server and Services
– the idea is that a WCS is able to server actual data. Why then are most server implementations also serving those image/rgb format (why a PNG with values of 0 – 255 if you want to know the height???). IF you want something like that, use a WMS to serve the data. So PDOK, maybe just only server the FLOAT32 version? As the height/data is in meters so having integers makes the height-resolution rather low.
– why do you not get back the real data if you request an area in float32 in a browser?
– Not sure how realistic it is to server a DEM from a small country like NL via WCS. As you can imagine the actual data is HUGE, so I was thinking: why did we not come up with WCTC (a Tiled version of the WCS) ???
WCS as client
– looking at all the requests QGIS is firing to the server, it seems like it tries to find out some stats first (for the whole dataset), killing the WCS or at least timing out pretty often. Not sure how valid the stats are from the whole extent (but created from the pyramid by gdal?). Anyway: in my view QGIS fires way to much requests to the server. In case of a tiny tiff serving as wcs that is not a problem, but the AHN/DEM of NL is just to big for that. WHY is that raster-statistics info not available in the GetCapabilities or DescribeCoverage response?
PDOK serving WCS’s
– why is PDOK (or it’s data-providers) using different values for the NODATA value for every different service. Can we try to use some standard for that (at least between those services of the same kin)? Like -9999 (as we know nowhere in NL we go that low…).
– should the AHN not being served as float32 only (and a WMS next to it if you want images)?
Conclusion
Serving the AHN as WCS is doable, but you really have to be patient, raise your network timeout value, hope that PDOK internally does not time out, find out about the data first by a lot of trial and error and THEN you can have fun.

QGIS en het KLIC

Just released a new version of the KLIC viewer plugin for QGIS.
This was neccesary because the format of the information received has changed a lot! Before it only included the information on pipelines in raster format. Now the information on pipelines delivered in XML can include information in vector format .
The KLIC viewer plugin shows the result that you receive when you do a call before you dig request in the Netherlands at the National Land Registration and Mapping office named Kadaster.
klicbericht_in_vectorLoaded in QGIS the result look like this: A map with network information of different types of cables and pipes.
Before you plan to dig mechanically, you have to register online at the kadaster where you want to dig. Kadaster collects all information from all net owners that have pipes or cables in the digging area. Next you will receive an email with the result where you can download you Zip-file that contains information like shown above.
klicviewer_enThe plugin looks pretty simple, some buttons to load the Zip-file and a list that can be used to open included documents as wel.
klicviewer_themes_enThe plugin also has a tab with themes, you can use it to quickly turn on or of many layers with a particular theme.
All best wishes for 2019 and have lot ofย  fun with QGIS!
Regards, Diethard