Re: [QGIS-Developer] [RoadMap] Dates Versions Release Calendar

2020-04-26 Thread Nathan Woodrow
Yes, please! That would be super handy.

I have also though about a display like this
[image: image.png]



On Mon, Apr 27, 2020 at 1:41 PM Nyall Dawson  wrote:

> On Sun, 26 Apr 2020 at 06:27, João Gaspar 
> wrote:
> >
> > Hi devs,
> > it is possible or integrate the roadmap of releases in a shared calendar?
> >
> > The idea is to receive in the Calendar the releases dates through
> calendar notifications to easily manager test and deploy QGIS releases
> >
> > I don't know if this make sense please let me know if I need to clarify
> more this subject.
>
> This would be GREAT!
>
> Nyall
>
> >
> > Best regards,
> > João Gaspar
> > ___
> > 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
___
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] [RoadMap] Dates Versions Release Calendar

2020-04-26 Thread Nyall Dawson
On Sun, 26 Apr 2020 at 06:27, João Gaspar  wrote:
>
> Hi devs,
> it is possible or integrate the roadmap of releases in a shared calendar?
>
> The idea is to receive in the Calendar the releases dates through calendar 
> notifications to easily manager test and deploy QGIS releases
>
> I don't know if this make sense please let me know if I need to clarify more 
> this subject.

This would be GREAT!

Nyall

>
> Best regards,
> João Gaspar
> ___
> 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] Server manual

2020-04-26 Thread Gerald Kogler
Thanks Vincent for the document donation.

I just submitted a pull request with the systemd approach (#5356). It's
mainly taken from the mentioned tutorial from oslandia. Feel free to
make the adaptations you consider appropriate.

thanks
Gerald




On 21/4/20 18:11, Paolo Cavallini wrote:
> Merci Vincent!
> 
> Il 21/04/20 18:05, Vincent Picavet (ml) ha scritto:
>> Hi all,
>>
>> On 21/04/2020 18:03, Paolo Cavallini wrote:
>>>
>>>
>>> Il 21/04/20 17:41, Gerald Kogler ha scritto:
 © 2020 Oslandia.

 Maybe I should ask them to donate this post to QGIS Documentation? Or
 better to make a short resume and link to their post?
>>>
>>> I think the first option is preferable
>>
>> Thanks you for pointing out potential IP rights.
>>
>> I hereby give you the right to freely to use the content of this blog article
>> for any documentation. Consider the article under CC-0 licence, so that it 
>> will
>> fit any doc licence.
>>
>> You can credit us somewhere, it will be welcome, but not mandatory.
>>
>> Thank you for your documentation efforts !
>>
>> Best regards,
>> vincent
>>
>>
>>
> 

___
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] RES: Mesh layer

2020-04-26 Thread Jorge Almerio
Many thanks!

 

You saved me!!

 

De: Vincent Cloarec [mailto:vcloa...@gmail.com] 
Enviada em: Sunday, April 26, 2020 11:35 AM
Para: Jorge Almerio 
Cc: qgis-developer ; 
qgis-developer-boun...@lists.osgeo.org
Assunto: Re: [QGIS-Developer] Mesh layer

 

Hi,

 

With QGIS master you can use  

 updateTriangularMesh.

Before, there is a workaround that consists to just call  

 createMapRenderer without using the renderer.

 

Vincent

 

Le sam. 25 avr. 2020 à 11:32, Jorge Almerio mailto:jorgealme...@yahoo.com.br> > a écrit :

Hi everyone,

Sometimes I got "NaN" return when trying to get scalar value to a point from a 
Mesh layer. I guess the reason is that it was not rendered previously as said 
in the documentation.

< 
 
https://qgis.org/api/classQgsMeshLayer.html#a07cb62f04b64979500d3873afb580216>
QgsMeshDatasetValue:
"Note:
It uses previously cached and indexed triangular mesh and so if the layer 
has not been rendered previously (e.g. when used in a script) it returns NaN 
value"

When I turn ON and OFF the loaded mesh layer in the active project it Works!

I would like to know if there is a proper way to render the mesh layer, before 
get values.

Below is my code:

proj = QgsProject.instance()
layerPto = iface.activeLayer() # a Point layer
layer = proj.mapLayersByName("mesh01")[0] # a Mesh layer
dataset = QgsMeshDatasetIndex(0,0)
for feat in layerPto.getSelectedFeatures():
ptoGeo = feat.geometry()
pt = ptoGeo.asPoint()
value = layer.datasetValue(dataset, pt).scalar()
print('elevation={}'.format(value))



___
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] Mesh layer

2020-04-26 Thread Vincent Cloarec
Hi,

With QGIS master you can use updateTriangularMesh.

Before, there is a workaround that consists to just call createMapRenderer

without using the renderer.

Vincent

Le sam. 25 avr. 2020 à 11:32, Jorge Almerio  a
écrit :

> Hi everyone,
>
> Sometimes I got "NaN" return when trying to get scalar value to a point
> from a Mesh layer. I guess the reason is that it was not rendered
> previously as said in the documentation.
>
> <
> https://qgis.org/api/classQgsMeshLayer.html#a07cb62f04b64979500d3873afb580216
> >
> QgsMeshDatasetValue:
> "Note:
> It uses previously cached and indexed triangular mesh and so if the
> layer has not been rendered previously (e.g. when used in a script) it
> returns NaN value"
>
> When I turn ON and OFF the loaded mesh layer in the active project it
> Works!
>
> I would like to know if there is a proper way to render the mesh layer,
> before get values.
>
> Below is my code:
>
> proj = QgsProject.instance()
> layerPto = iface.activeLayer() # a Point layer
> layer = proj.mapLayersByName("mesh01")[0] # a Mesh layer
> dataset = QgsMeshDatasetIndex(0,0)
> for feat in layerPto.getSelectedFeatures():
> ptoGeo = feat.geometry()
> pt = ptoGeo.asPoint()
> value = layer.datasetValue(dataset, pt).scalar()
> print('elevation={}'.format(value))
>
>
>
> ___
> 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

[QGIS-Developer] Plugin [2032] Queensland property boundaries approval notification.

2020-04-26 Thread noreply

Plugin Queensland property boundaries approval by pcav.
The plugin version "[2032] Queensland property boundaries 1.8" is now approved
Link: http://plugins.qgis.org/plugins/qld_property_boundaries/
___
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] Call for Grant Proposals 2020

2020-04-26 Thread Anita Graser

Dear QGIS Community,

Our previous rounds of grant proposals have always been a great success.
We are very pleased to announce that this year’s round of grants is now
available. The call is open to anybody who wants to make a funded
contribution to QGIS, subject to the call conditions outlined in the
application form. The deadline for this round is in four weeks: 24th May
2020.

For more details, please read:

http://blog.qgis.org/2020/04/26/qgis-grants-5-call-for-grant-proposals-2020/


We look forward to seeing all your great ideas for improving QGIS!

Regards,

Anita


___
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