Skip to main content

Hello everybody :-)
 

we have a QGIS Project (.qgz) with 2 Layers, which we want as GeoJsons export. If possible uploading them into a FTP Server.

Can we do this using FME? I have searched a bit and I do not find any Readers for QGIS…

 

Thanks in advance!

 

Looking at this page - https://docs.fileformat.com/gis/qgz/

It seems this is just a ‘zip’ file with a sqlite database in it (.qgd). In theory you should be able to open it with an sqlite reader and a path like:

 

c:\temp\file.gqz\*.qgd

 


Looking at this page - https://docs.fileformat.com/gis/qgz/

It seems this is just a ‘zip’ file with a sqlite database in it (.qgd). In theory you should be able to open it with an sqlite reader and a path like:

 

c:\temp\file.gqz\*.qgd

 

It’s a very interesting answer.


I have tested it today. Unfortunately I cannot use the sqlite Reader. It does not open the file...


According to the QGIS documentation:

“The QGS format is an XML format for storing QGIS projects. The QGZ format is a compressed (zip) archive containing a QGS file and a QGD file. The QGD file is the associated sqlite database of the qgis project that contain auxiliary data for the project. If there are no auxiliary data, the QGD file will be empty.”

Usually in my QGZ files the QGD file is not present; presumably the QGD file is optional.

So the information describing the layers is in the QGS file, which is in an XML like structure.

The layer information is in tags named layer-tree-layer.

From here it gets more difficult, as there are many different providers possible for a layer, and the contents of the layer properties are different depending on the relevant provider.

Providers are recognisable by providerKey, which includes 'wms’, 'wfs’, 'vectortile’, 'oracle’, 'postgres’, 'ogr’, 'gdal’, and many more.


Reply