Nyall Dawson

Results 204 comments of Nyall Dawson
trafficstars

That shouldn't be the case -- there's multiple unit tests covering over formats here too. Can you share your script?

This works correctly for me. Here's the full log I get: ``` options("repos"="http://cran.at.r-project.org/") .libPaths("/home/nyall/.local/share/QGIS/QGIS3/profiles/default/processing/rlibs") tryCatch(find.package("rgdal"), error=function(e) install.packages("rgdal", dependencies=TRUE)) tryCatch(find.package("raster"), error=function(e) install.packages("raster", dependencies=TRUE)) library("raster") library("rgdal") input=readOGR("/tmp/processing_22300635cb7342e6bba0da7c89933c79/91b6ddb2ad0940df8fef5d32239d8499/result.gpkg") result

Hm - this is an API limitation in core QGIS, it'll need to be addressed upstream

I was intending to leave this open and will address the core API limitations for QGIS 3.8 (and backport). It'll just take some time.

@rouault I'm 50/50 on whether we should go a generic "NATIVE" string, or instead list something which is more descriptive for each individual native format (e.g. "PostgreSQL" for the postgres...

@mdsumner I'm interested where you sit on this question: > I'm 50/50 on whether we should go a generic "NATIVE" string, or instead list something which is more descriptive for...

>I'm 50/50 on whether we should go a generic "NATIVE" string, or instead list something which is more descriptive for each individual native format (e.g. "PostgreSQL" for the postgres driver)....

I'm on leave for the next two weeks, but will dive into this conversation when I'm back 👍

Hmm, I can't recall doing this -- must have been an errant click!

There's a missing part in qgis still - you can't define raster styling using the text values from the RAT. It still requires hardcoded numeric values. That needs to be...