Re: [QGIS-Developer] [SoC] GSoC 2020 - Coding Period Week 2 Report

2020-06-17 Thread Nyall Dawson
On Wed, 17 Jun 2020 at 07:31, BELGACEM NEDJIMA  wrote:
>
> Hi all,
> Here is my first week of the coding period report:
>
> Tasks done this week:
>
> Got the separation between walls and roof working as you can in this 
> screenshot.

Beautiful! This is looking fantastic :D

Nyall



> Got the textures rotation working (Very useful for roofs texture to be 
> aligned properly).
> Finishing the implementation of directional lights (PR link : Github PR).
> Refactoring the code in vector layer texturing PR according to suggestions 
> (PR link : Github PR).
> Fixing some bugs with the vector layer texturing implementation.
>
> Tasks to be done:
>
> Finish the implementation of vector layer texture support.
> Document the feature implemented more and enhance the UI.
> Get my pull requests approved.
> Discuss next features implementation (mainly exporting scenes)
>
> Blocking issues:
> I had some trouble organizing my time due to some school project this week 
> but everything is going well I think.
>
> You can find the report here as well: 
> https://wiki.osgeo.org/wiki/Improving_qgis_3d
> Best wishes,
>
> --
> Belgacem Nedjima
> 4th year computer science and engineering student.
> https://github.com/NEDJIMAbelgacem
>
> ___
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] QSqlTableModel not working with PostgreSQL 12

2020-06-17 Thread Nyall Dawson
On Thu, 18 Jun 2020 at 02:20, David Erill  wrote:

> Developing with QGIS 3.12 in Ubuntu Bionic
>
> Any hints how could I solve this issue? Will Qt version updated in next 
> releases?

That's up to Ubuntu to decide -- you're getting the Qt version pushed
out by Ubuntu, and the QGIS project doesn't influence this decision in
any way...

Nyall
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] plugin approval request

2020-06-17 Thread Bernd Vogelgesang

Just a general request to those request:

Would it be possible to "guide" plugin authors, when creating specific
plugins for specific countries, to maybe use their country code in the
repo name?
By this, it would maybe be much easier not to get confused, when one day
there are e.g. 180 open-data loaders around ;)

opendata_loader is a huge title for such a tiny potential audience (no
disrespect!)

opendata_loader_il vs. opendata_loader_us vs. opendata_loader_fr ...
would look much better to me than having dozens of differentiating
names, trying to describe the same function but with other words.

I do not mean this plugin specifically, cause it has at least "Israel"
in it's name on the plugin page. But with a lot others, you'll even have
to dig into the description to find out that it's of no use for you.
Or even add country code tags in the meta-data for filtering
country-specific plugin?

Just my two offtopic cents

Bernd

On 17.06.20 18:00, Richard Duivenvoorde wrote:

Hi,

This plugin author requested on a Telegram group channel to be approved:

https://plugins.qgis.org/plugins/opendata_loader/

I found the plugin but there was an error in the repo/issue metadata
(the author apparently renamed the repo), so created an issue now:

https://github.com/KaplanOpenSource/qgis-open-data/issues/2

Regards,

Richard Duivenvoorde

PS what about creating an email group for 'plugin-approvers'? If
somebody sents me all mail addresses I can create one group (if others
agree)
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [QGIS-Developer] plugin approval request

2020-06-17 Thread Lior Kaplan
Thanks Richard for noticing. The metadata was fixed.

Looking forward for approval.


+972-52-2235911
L: Lior Kaplan 
T: @opensource_il 
F: @liorkaplanopensource 
https://kaplanopensource.co.il/



On Wed, Jun 17, 2020 at 7:00 PM Richard Duivenvoorde 
wrote:

> Hi,
>
> This plugin author requested on a Telegram group channel to be approved:
>
> https://plugins.qgis.org/plugins/opendata_loader/
>
> I found the plugin but there was an error in the repo/issue metadata
> (the author apparently renamed the repo), so created an issue now:
>
> https://github.com/KaplanOpenSource/qgis-open-data/issues/2
>
> Regards,
>
> Richard Duivenvoorde
>
> PS what about creating an email group for 'plugin-approvers'? If
> somebody sents me all mail addresses I can create one group (if others
> agree)
>
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] QSqlTableModel not working with PostgreSQL 12

2020-06-17 Thread David Erill
Hi,

I'm aware about other issues dealing with PostgreSQL12, like this one:
https://github.com/qgis/QGIS/issues/32321

But my project that uses Qt class *QSqlTableModel* to fill QTableView is
not working.
I can execute this code:
model = QSqlTableModel()
model.setTable(table_name)
model.select()

But when I check if model is valid with:
model.lastError().isValid()

model.lastError().text() returns me this message:
Unable to find table 'tablename'

Developing with QGIS 3.12 in Ubuntu Bionic

Any hints how could I solve this issue? Will Qt version updated in next
releases?

Also there is a reported bug in Qt:
https://bugreports.qt.io/browse/QTBUG-79033

Thanks
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] plugin approval request

2020-06-17 Thread Richard Duivenvoorde
Hi,

This plugin author requested on a Telegram group channel to be approved:

https://plugins.qgis.org/plugins/opendata_loader/

I found the plugin but there was an error in the repo/issue metadata
(the author apparently renamed the repo), so created an issue now:

https://github.com/KaplanOpenSource/qgis-open-data/issues/2

Regards,

Richard Duivenvoorde

PS what about creating an email group for 'plugin-approvers'? If
somebody sents me all mail addresses I can create one group (if others
agree)
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

[QGIS-Developer] Issues with obsolete installation of QGIS 2.x in Osgeo4W installer

2020-06-17 Thread Denis Rouzaud
Hi all, hi Juergen,

I got contacted by someone facing a missing CRS in a fresh QGIS 2.18
installation from the Osgeo4W installer (which can be found in obsolete).

Using the standalone obviously fixes it.

I don't know if this can easily be fixed. I guess recent proj/gdal don't
play well with QGIS 2.18.
I would recommend dropping QGIS 2.18 from the installer.

Cheers,
Denis
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer