Re: [Qgis-user] How to download and use layers from the website of the Maine Office of GIS

2019-05-20 Per discussione Clifford Snow
Ted,
Can you provide a link to some of the data that QGIS doesn't recognize?

On Mon, May 20, 2019 at 1:48 PM Ted Butler  wrote:

> 4 years ago, with an earlier version and an older laptop, I could load,
> edit and print many layers at a time. Now, I can’t get wGIS to recognize
> them.  Please help?!
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user



-- 
@osm_washington
www.snowandsnow.us
OpenStreetMap: Maps with a human touch
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Query cross-table "similar" time stamps?

2019-05-20 Per discussione Martin Bain
Hi Bernd,
I replied to your question on stack exchange (with a similar expression to 
Harrissou)

I initially started with a virtual layer (because I’m a database guy – you know 
the expression “when you only have hammer everything looks like nail”) but then 
I thought I should try to find a more accessible, QGIS way to do it.

Here is the SQL I used in the DB Manager which could be loaded as a layer:

SELECT  *, (select "Tracks"."fid" as PositionId
  FROM "Tracks"
  where julianday("Sightings"."ObsTime" ) 
-julianday("Tracks"."PositionTime")>=0
  order by "Tracks"."PositionTime" DESC LIMIT 1) as 
PositionID
FROM "Sightings"

My two test tables where Sightings(fid,ObsTime) and Tracks(fid, PositionTime).

It creates a look alike of the Sightings layer with an additional column for 
the id of the Position.

I also made another SQL statement which created Line geometries connecting the 
Sighting and the associated position.  That’s on my computer at home which I 
don’t have access to ATM.


Regards,
Martin.

From: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of DelazJ
Sent: Tuesday, 21 May 2019 1:51 PM
To: Bernd Vogelgesang 
Cc: qgis-user 
Subject: Re: [Qgis-user] Query cross-table "similar" time stamps?

Hi Bernd

I did not understand that you were looking for a way to create a virtual layer. 
Virtual layers require SQL instructions and in this particular case, I think 
you'll need window function (I don't know if supported by the SpatiaLite 
provider in the backend and don't have time to give it a try). This is quite a 
different thing.

From what I understood you wanted to be able to join both layers. This is what 
the expression I'm suggesting is meant to do:
#. Open the birds layer attribute table
# Use the field calculator button to add a new (virtual?) field (it will be 
used store the track id)
#. Populate the field using the provided expression

attribute(get_feature ('track_points','time', aggregate( layer:='track_points',

aggregate:='max',

expression:="time",

filter:="time"< attribute(@parent, 'time'))),'fid')

#. Apply



This expression is a kind of WHERE clause so basically we say update bird_layer 
set yournewfield=fid from track_points where whatisinget_featureparenthesis. 
@parent indeed is a imho hidden variable that refers to the feature in the bird 
layer. [0]

What dialect is it? QGIS' (highly inspired from sql... (and python?)). I don't 
know if it has a proper name and there's no better doc as far as I know than 
looking at the functions' help in the expression dialog and practice. You 
quickly get the logic. You also have some samples in the user manual [2]. And 
probably in some tutorials out there.

Yes single or double quotes are important and have their meaning [3]



Then you can do whatever you want with this field (label, symbolize with 
geometry generator [1] eg line connecting track_point and bird, the usual join 
of layers...)


PS: I did not test your data since the date formatting I had in the temporary 
layers I used was the same as in your picture (that i only viewed after I sent 
my first reply)


[0] 
https://docs.qgis.org/3.4/en/docs/user_manual/working_with_vector/expression.html#variables-functions
 actually polished at https://github.com/qgis/QGIS-Documentation/pull/3753
[1] 
https://docs.qgis.org/3.4/en/docs/user_manual/working_with_vector/style_library.html#the-geometry-generator
[2] 
https://docs.qgis.org/3.4/en/docs/user_manual/working_with_vector/expression.html
[3] http://osgeo-org.1560.x6.nabble.com/SQL-Expressions-tp5190508p5196052.html

Hope that helps,
Harrissou

Le lun. 20 mai 2019 à 19:42, Bernd Vogelgesang 
mailto:bernd.vogelges...@gmx.de>> a écrit :
Am 18.05.19 um 11:42 schrieb DelazJ:
Hi Bernd,
Hum.. interesting. Assuming you have two layers: tracks (id_track, date_track) 
and birds(id_bird, date_bird), the idea is to get the id of the highest among 
the date_track(s) lower than the date_bird for each bird. Am I right?
I gave it a shot and i think i have some working expression. Here I display the 
matching track id in birds labels

attribute(
  get_feature ( 'tracks',
  'date_track',
  aggregate( layer:='tracks',
  aggregate:='max',
  expression:="date_track",
  filter:="date_track"< attribute(@parent, 
'date_bird')
  )
 ),
  'id_track'
)

I used temporary layers with datetime field.
Now, without sample of dataset to actually see the date formatting issue you 
were afraid of...

Hope that helps,
Harrissou


Hi Harrissou,

I tried your expression in a virtual layer, but it throws an error

Query execution error on CREATE TEMP VIEW _tview AS attribute(get_feature 
('track_points','time', aggregate( layer:='track_points',

aggregate:='max',

expression:="time",

filter:="time"< 

Re: [Qgis-user] Query cross-table "similar" time stamps?

2019-05-20 Per discussione DelazJ
Hi Bernd

I did not understand that you were looking for a way to create a virtual
layer. Virtual layers require SQL instructions and in this particular case,
I think you'll need window function (I don't know if supported by the
SpatiaLite provider in the backend and don't have time to give it a try).
This is quite a different thing.

>From what I understood you wanted to be able to join both layers. This is
what the expression I'm suggesting is meant to do:
#. Open the birds layer attribute table
# Use the field calculator button to add a new (virtual?) field (it will be
used store the track id)
#. Populate the field using the provided expression

attribute(get_feature ('track_points','time', aggregate(
layer:='track_points',

aggregate:='max',

expression:="time",

filter:="time"< attribute(@parent, 'time'))),'fid')

#. Apply


This expression is a kind of WHERE clause so basically we say *update
bird_layer set yournewfield=fid from track_points where
whatisinget_featureparenthesis*. @parent indeed is a imho hidden variable
that refers to the feature in the bird layer. [0]

What dialect is it? QGIS' (highly inspired from sql... (and python?)). I
don't know if it has a proper name and there's no better doc as far as I
know than looking at the functions' help in the expression dialog and
practice. You quickly get the logic. You also have some samples in the user
manual [2]. And probably in some tutorials out there.

Yes single or double quotes are important and have their meaning [3]


Then you can do whatever you want with this field (label, symbolize with
geometry generator [1] eg line connecting track_point and bird, the usual
join of layers...)

PS: I did not test your data since the date formatting I had in the
temporary layers I used was the same as in your picture (that i only viewed
after I sent my first reply)


[0]
https://docs.qgis.org/3.4/en/docs/user_manual/working_with_vector/expression.html#variables-functions
actually polished at https://github.com/qgis/QGIS-Documentation/pull/3753
[1]
https://docs.qgis.org/3.4/en/docs/user_manual/working_with_vector/style_library.html#the-geometry-generator
[2]
https://docs.qgis.org/3.4/en/docs/user_manual/working_with_vector/expression.html
[3]
http://osgeo-org.1560.x6.nabble.com/SQL-Expressions-tp5190508p5196052.html

Hope that helps,
Harrissou

Le lun. 20 mai 2019 à 19:42, Bernd Vogelgesang  a
écrit :

> Am 18.05.19 um 11:42 schrieb DelazJ:
>
> Hi Bernd,
> Hum.. interesting. Assuming you have two layers: *tracks (id_track,
> date_track)* and *birds(id_bird, date_bird)*, the idea is to get the id
> of the highest among the date_track(s) lower than the date_bird for each
> bird. Am I right?
> I gave it a shot and i think i have some working expression. Here I
> display the matching track id in birds labels
>
> attribute(
>   get_feature ( 'tracks',
>   'date_track',
>   aggregate( layer:='tracks',
>   aggregate:='max',
>   expression:="date_track",
>   filter:="date_track"<
> attribute(@parent, 'date_bird')
>   )
>  ),
>   'id_track'
> )
>
> I used temporary layers with datetime field.
> Now, without sample of dataset to actually see the date formatting issue
> you were afraid of...
>
> Hope that helps,
> Harrissou
>
> Hi Harrissou,
>
> I tried your expression in a virtual layer, but it throws an error
>
> Query execution error on CREATE TEMP VIEW _tview AS attribute(get_feature
> ('track_points','time', aggregate( layer:='track_points',
>
> aggregate:='max',
>
> expression:="time",
>
> filter:="time"< attribute(@parent, 'time'))),'fid'): 1 - near "attribute":
> syntax error
>
> Unfortunately, I have no clue at all how to debug this. Especially the
> part with single or double quotes ... is there any system in that? ;)
>
> As I can't see the bird point mentioned somewhere, I assume that @parent
> is the selected feature in the bird layer?
>
> What kind of "dialect" is spoken there, and is there any "dictionary" on
> this somewhere?
>
> Ok, will try to send some testdata with 105kb, hope it will go through. As
> both layers derive from gpx, their time columns are both named time.
>
> Cheers,
>
> Bernd
>
> Le ven. 17 mai 2019 à 20:34, Bernd Vogelgesang 
> a écrit :
>
>> Hi Mike,
>>
>> thank you for your hint, but the distance between the point and the
>> track is of no relevance for me.
>>
>> It seems that the screenshot I posted is a bit misleading
>> (https://i.stack.imgur.com/MqPhK.jpg). Seems I picked a point where the
>> associated trackpoints are also the closest ones. But the information we
>> need is the time, where the observer was when taking the observation.
>> And this might also be on a more distant location.
>>
>> Furthermore, I do not intend to create a new layer. I'm just looking for
>> a way to highlight the track point(s) which compare best by 

[Qgis-user] CRS / reprojection problems

2019-05-20 Per discussione Matt Boyd
Hi QGISers,
I'm having an issue with reprojecting things in QGIS.
Installer OSGEO64W
Latest version and LTS both have same issue.

Issue:
reprojection just isn't working. If I load a data set with decimal degrees
and another with a projected coordinate system the data (points / lines /
polygons) will only display if the basemap is in the same projection system.

This is happening across 2 PCs, (windows10) and the LTS and latest versions
of QGIS. Has anyone got some troubleshooting tips?

Thanks
Matt
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Fw: KMZ

2019-05-20 Per discussione Brent Wood
Save project as image - teh image (of the current map canvas) will be 
georeferenced (possibly with an accompanying world file)


Brent Wood

Programme leader: Environmental Information Delivery
NIWA
DDI:  +64 (4) 3860529


[cid:image32b2e3.PNG@b08d6d79.418d88c3]


Brent Wood
Principal Technician - GIS and Spatial Data Management
Programme Leader - Environmental Information Delivery
T +64-4-386-0529

National Institute of Water & Atmospheric Research Ltd (NIWA)
301 Evans Bay Parade, Greta Point, Wellington
Connect with NIWA: niwa.co.nz 
Facebook Twitter 
LinkedIn 
Instagram

To ensure compliance with legal requirements and to maintain cyber security 
standards, NIWA's IT systems are subject to ongoing monitoring, activity 
logging and auditing. This monitoring and auditing service may be provided by 
third parties. Such third parties can access information transmitted to, 
processed by and stored on NIWA's IT systems.



From: Qgis-user  on behalf of Lukas Sadler 

Sent: Monday, May 20, 2019 14:58
To: qgis-user@lists.osgeo.org
Subject: [Qgis-user] Fw: KMZ

another question, pretty please

how does one export a clip of a base map layer as a reference jpeg/Tiff

I've tried 'clip raster by extent' but when i run it it says 'layers were not 
correctly generated'





- Forwarded Message -
From: Lukas Sadler 
To: qgis-user@lists.osgeo.org ; Brent Wood 

Sent: Monday, May 20, 2019, 2:39:05 PM GMT+12
Subject: Fw: [Qgis-user] KMZ

Okay

I got it to work

project and base map layer needs to be in WGS 84/Pseudo-Mercator with KMZ file 
set as WSG 84





- Forwarded Message -
From: Lukas Sadler 
To: qgis-user@lists.osgeo.org ; Brent Wood 

Sent: Monday, May 20, 2019, 2:26:16 PM GMT+12
Subject: Re: [Qgis-user] KMZ

thanks guys

but still not doing the trick

I've got everything in 4326 and the KMZ is still not sitting in the correct 
location

the location is in New Zealnd but if i use 4326 it looks like it sits on the 
opposite longitude





On Monday, May 20, 2019, 2:14:17 PM GMT+12, Brent Wood  
wrote:



I think KMZ supports lat/long coords only... Google doesn't really understand 
projections...


Make sure your KMZ layer has EPSG:4326 as its projection


HTH


Brent Wood

Programme leader: Environmental Information Delivery
NIWA
DDI:  +64 (4) 3860529


[cid:265101fe-b096-bac2-7122-686f70596ff5@yahoo.com]


Brent Wood
Principal Technician - GIS and Spatial Data Management
Programme Leader - Environmental Information Delivery
T +64-4-386-0529

National Institute of Water & Atmospheric Research Ltd (NIWA)
301 Evans Bay Parade, Greta Point, Wellington
Connect with NIWA: niwa.co.nz 
Facebook Twitter 
LinkedIn 
Instagram

To ensure compliance with legal requirements and to maintain cyber security 
standards, NIWA's IT systems are subject to ongoing monitoring, activity 
logging and auditing. This monitoring and auditing service may be provided by 
third parties. Such third parties can access information transmitted to, 
processed by and stored on NIWA's IT systems.



From: Qgis-user  on behalf of Lukas Sadler 

Sent: Monday, May 20, 2019 13:45
To: qgis-user@lists.osgeo.org
Subject: [Qgis-user] KMZ

Hi,

I've tried importing KMZ files from google earth into a project on QGIS (3.6.3 
Noosa) but the files don't project in the same location even if i set it to the 
project's CRS

what should i do to have the KMZ files projecting in the correct location






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Silvio Grosso
Salve Stefano,

> Visto come è finito/sta finendo gvSIG forse non è un buon punto di
> riferimento...

Se guardiamo la raccolta di fondi internazionali gvSIG non se la passa poi
tanto male in realta'...

Con il Google summer of code del 2019 ci sono 2 progetti finanziati per
gvSIG [1] e 1 solo per Qgis (3D). 
Questi sono progetti dove Google sponsorizza il lavoro informatico di
studenti universitari che vengono pagati per implementare delle piccole
funzionalita' durante la primavera-estate di ogni anno.

Per la cronaca: quest'anno Grass non ha ottenuto nessun progetto e questo mi
e' dispiaciuto moltissimo perche' tutti gli anni Grass ha sempre avuto
almeno 2-3 progetti finanziati con il Google Summer of code.
Presumo che non ci fossero quest'anno studenti abbastanza motivati oppure
qualificati. Tra l'altro serve anche qualcuno che gli faccia da mentore
durante il loro lavoro e anche questa persona non e' sempre facile da
trovare.

p.s: NON sono un utente di gvSIG e il mio intervento non ha nessuna
motivazione polemica :-)

Salve a tutti

Silvio Grosso

[1]
https://blog.gvsig.org/2019/05/07/gvsig-at-google-summer-of-code-gsoc-2019/







--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Italian-User-f5250612.html
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] Fw: KMZ

2019-05-20 Per discussione Lukas Sadler
brilliant, it worked thanks a mil


 
 

On Monday, May 20, 2019, 6:28:35 PM GMT+12, Stefan Giese 
 wrote:  
 
  
from the menu just use Project -> Import/Export -> Export Map to Image
 
and your map will be saved as an image (tif, jpg, png...) with or without a 
world file (for georeference)
 
 Mit freundlichen Grüßen
Stefan Giese
Projektleiter/Consultant
---
Aufwind durch Wissen!
Qualifizierte Open-Source-Schulungen
bei der www.foss-academy.com
--- 
WhereGroup GmbH & Co. KG
Schwimmbadstr. 2
79100 Freiburg
Germany

Fon: +49 (0)761 / 519 102 - 61
Fax: +49 (0)761 / 519 102 - 11

stefan.gi...@wheregroup.com
www.wheregroup.com
Amtsgericht Bonn, HRA 6788
---
Komplementärin:
WhereGroup Verwaltungs GmbH
vertreten durch:
Olaf Knopp, Peter Stamm
--- Am 20.05.2019 um 04:58 schrieb Lukas Sadler:
  
 
  another question, pretty please 
  how does one export a clip of a base map layer as a reference jpeg/Tiff 
  I've tried 'clip raster by extent' but when i run it it says 'layers were not 
correctly generated'  
  
   
 
   
  
 - Forwarded Message - From: Lukas Sadler  
To: qgis-user@lists.osgeo.org ; Brent Wood 
 Sent: Monday, May 20, 2019, 2:39:05 PM GMT+12 Subject: 
Fw: [Qgis-user] KMZ 
   Okay 
  
  I got it to work 
  
  project and base map layer needs to be in WGS 84/Pseudo-Mercator with KMZ 
file set as WSG 84
  
   
 
   
  
  - Forwarded Message - From: Lukas Sadler  
To: qgis-user@lists.osgeo.org ; Brent Wood 
 Sent: Monday, May 20, 2019, 2:26:16 PM GMT+12 Subject: 
Re: [Qgis-user] KMZ 
   thanks guys 
  but still not doing the trick 
  I've got everything in 4326 and the KMZ is still not sitting in the correct 
location 
  
  the location is in New Zealnd but if i use 4326 it looks like it sits on the 
opposite longitude 
  
   
 
   
  
   On Monday, May 20, 2019, 2:14:17 PM GMT+12, Brent Wood 
 wrote:  
  
 
I think KMZ supports lat/long coords only... Google doesn't really understand  
projections...
 

 
 
Make sure your KMZ layer has EPSG:4326 as its projection
 

 
 
HTH
 
 

 
Brent Wood
 
 Programme leader: Environmental Information Delivery
 NIWA
 DDI:  +64 (4) 3860529
 
 
| 
 
  |  
| Brent Wood |
| Principal Technician - GIS and  Spatial Data Management |
| Programme Leader - Environmental  Information Delivery |
|  
| T +64-4-386-0529 |   | 
  |

  |
| National Institute of Water & Atmospheric Research Ltd  (NIWA) |
| 301 Evans Bay Parade, Greta Point,  Wellington |
| Connect with NIWA: niwa.co.nz Facebook Twitter LinkedIn Instagram |

  |

 

 

 

 
|   
| To ensure compliance  with legal requirements and to  maintain cyber security 
standards, NIWA's IT systems are  subject to ongoing monitoring,  activity 
logging and  auditing. This monitoring and auditing  service may be provided by 
 third parties. Such third parties can  access information transmitted to, 
processed by and stored  on NIWA's IT systems. |

  |

 
 

 

From: Qgis-user  on behalf of Lukas 
Sadler 
 Sent: Monday, May 20, 2019 13:45
 To: qgis-user@lists.osgeo.org
 Subject: [Qgis-user] KMZ  Hi, 
  
  I've tried importing KMZ files from  google earth into a project on QGIS 
(3.6.3 Noosa) but the files don't project in the  same location even if i set 
it to the project's CRS 
  what should i do to have the KMZ files  projecting in the correct location
  
 
 
  
  ___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user   ___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] How to download and use layers from the website of the Maine Office of GIS

2019-05-20 Per discussione Ted Butler
4 years ago, with an earlier version and an older laptop, I could load,
edit and print many layers at a time. Now, I can’t get wGIS to recognize
them.  Please help?!
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Stefano Campus
Visto come è finito/sta finendo gvSIG forse non è un buon punto di
riferimento...

s.



Il lun 20 mag 2019, 15:30 Marco Spaziani  ha
scritto:

> Vi propongo tutto un'altro scenario.
> Quasi un paio di decenni fa (come passa il tempo!), quando lasciai il
> vecchio ArcView 3 rigorosamente crackato per passare all'open source, non
> approdai subito a QuantumGIS (allora si chiamava così) ma per un paio
> d'anni me la feci con gvSIG. Orbene, se non sbaglio, mi sembra di ricordare
> che gvSIG si manteneva grazie a periodici e sistematici finanziamenti
> europei in quanto aveva vinto non solo quale bando/progetto della comunità
> europea. Mi chiedevo. Perchè non esplorare la jungla dei finanziamenti
> europei (finanziano di tutto, dalla valorizzazione del lardo di Colonnata
> alla tutela dei dialetti delle Alpi orientali) e vedere se c'è un qualche
> bando con il quale poter proporre lo sviluppo e il mantenimento del
> progetto QGIS?
>
> Il giorno lun 20 mag 2019 alle ore 10:17 matteo 
> ha scritto:
>
>> > Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
>> > trasformare qgis da software libero a (parzialmente) proprietario.
>>
>> stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
>> bisogna insistere e convincere chi usa QGIS. Il problema d'altronde è
>> nelle coscienze degli utenti, non in QGIS
>> ___
>> QGIS-it-user mailing list
>> QGIS-it-user@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>>
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>

Il lun 20 mag 2019, 15:30 Marco Spaziani  ha
scritto:

> Vi propongo tutto un'altro scenario.
> Quasi un paio di decenni fa (come passa il tempo!), quando lasciai il
> vecchio ArcView 3 rigorosamente crackato per passare all'open source, non
> approdai subito a QuantumGIS (allora si chiamava così) ma per un paio
> d'anni me la feci con gvSIG. Orbene, se non sbaglio, mi sembra di ricordare
> che gvSIG si manteneva grazie a periodici e sistematici finanziamenti
> europei in quanto aveva vinto non solo quale bando/progetto della comunità
> europea. Mi chiedevo. Perchè non esplorare la jungla dei finanziamenti
> europei (finanziano di tutto, dalla valorizzazione del lardo di Colonnata
> alla tutela dei dialetti delle Alpi orientali) e vedere se c'è un qualche
> bando con il quale poter proporre lo sviluppo e il mantenimento del
> progetto QGIS?
>
> Il giorno lun 20 mag 2019 alle ore 10:17 matteo 
> ha scritto:
>
>> > Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
>> > trasformare qgis da software libero a (parzialmente) proprietario.
>>
>> stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
>> bisogna insistere e convincere chi usa QGIS. Il problema d'altronde è
>> nelle coscienze degli utenti, non in QGIS
>> ___
>> QGIS-it-user mailing list
>> QGIS-it-user@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>>
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


[QGIS-it-user] Problema esportazione raster a GRD

2019-05-20 Per discussione Luca Bellani
Salve ho notato un'anomalia apparente.
Ho creato un maisco di raster DEM (aggiungo che il geoprocess interno a
QGIS, anche se limitato in opzioni rispetto a Mosaic RAster Layer di SAGA
risulta essere molto pi´pu veloce).
é un file grosso, 1.6 giga, e al cercare di esportarlo in formato GRD, QGIS
va in na sorta di loop e non finisce mai il processo...credevo fosse colpa
del layer, ma lo stesso layer importato a SAGA GUI, funziona perfettamente
in pochi secondi.
Ho provato a fare un piccolo clip, del Mosaico TIF originale e ripetere
l'operazione...ma succede la stessa cosa, al punto di andare in crash.
Vorrei chiedervi, per chi avesse uno spazio di tempo, di provare la stessa
pocedura, ossia esportare da QGIS  (io uso 3.6.3) il raster in formato GRD.

Grazie, Luca clip_raster.rar
  



--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Italian-User-f5250612.html
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Marco Spaziani
Ottimo spunto!

Il Lun 20 Mag 2019, 16:13 Martina Savarese  ha
scritto:

> Salve,
> premetto che non sono così addentro al progetto QGIS per suggerire un
> indirizzo generale, però sondare il campo dei finanziamenti europei non mi
> sembra una cattiva idea per vari motivi:
> il primo ovviamente è quello appunto di avere dei finanziamenti, e
> finanziamenti pubblici, per un progetto open source;
> il secondo è che ottenere finanziamenti europei potrebbe innescare un
> circuito virtuoso (anche se non è detto che avvenga).
> Mi spiego meglio: i bandi europei funzionano con coofinanziamenti, il che
> significa che i partner che propongono un progetto (istituzioni e realtà
> economiche di vario tipo) devono a loro volta finanziare in proprio parte
> del progetto, cosa che in genere viene fatta tramite il personale
> impiegato, in vario modo, nel progetto stesso.
>
> Relativamente ai programmi su cui rivolgere l'attenzione credo che uno su
> tutti potrebbe essere Horizon, sul quale non ho alcuna personale
> esperienza, ma se qualcuno riuscisse a coinvolgre università e gruppi di
> ricerca sarebbe praticabile.Altri programmi potrebbero poi essere sondati
> per sviluppare aspetti e/o applicazioni in ambiti più specifici (un
> programma da prendere in considerazione è Life, poi ci sono quelli della DG
> cultura, e forse COSME per le piccole e medie imprese).
> Rispetto alle amministrazioni pubbliche ci sono poi i finanziamenti
> indiretti dei fondi strutturali erogati dalle singole regioni.
>
> Martina
>
> Il giorno lun 20 mag 2019 alle ore 15:35 Paolo Cavallini <
> cavall...@faunalia.it> ha scritto:
>
>> esatto: come dicevo, chi se ne dovrebbe far carico è lo Stato. e visto
>> il paese in cui viviamo, e la gente che mandiamo al governo, questo
>> equivale a chiedere aiuto alla santa europa.
>>
>> On 20/05/19 15:30, Marco Spaziani wrote:
>> > Vi propongo tutto un'altro scenario.
>> > Quasi un paio di decenni fa (come passa il tempo!), quando lasciai il
>> > vecchio ArcView 3 rigorosamente crackato per passare all'open source,
>> > non approdai subito a QuantumGIS (allora si chiamava così) ma per un
>> > paio d'anni me la feci con gvSIG. Orbene, se non sbaglio, mi sembra di
>> > ricordare che gvSIG si manteneva grazie a periodici e sistematici
>> > finanziamenti europei in quanto aveva vinto non solo quale
>> > bando/progetto della comunità europea. Mi chiedevo. Perchè non esplorare
>> > la jungla dei finanziamenti europei (finanziano di tutto, dalla
>> > valorizzazione del lardo di Colonnata alla tutela dei dialetti delle
>> > Alpi orientali) e vedere se c'è un qualche bando con il quale poter
>> > proporre lo sviluppo e il mantenimento del progetto QGIS?
>> >
>> > Il giorno lun 20 mag 2019 alle ore 10:17 matteo <
>> matteo.ghe...@gmail.com
>> > > ha scritto:
>> >
>> > > Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
>> > > trasformare qgis da software libero a (parzialmente) proprietario.
>> >
>> > stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
>> > bisogna insistere e convincere chi usa QGIS. Il problema d'altronde
>> è
>> > nelle coscienze degli utenti, non in QGIS
>> > ___
>> > QGIS-it-user mailing list
>> > QGIS-it-user@lists.osgeo.org 
>> > https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>> >
>> >
>> > ___
>> > QGIS-it-user mailing list
>> > QGIS-it-user@lists.osgeo.org
>> > https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>> >
>>
>> --
>> Paolo Cavallini - www.faunalia.eu
>> QGIS.ORG Chair:
>> http://planet.qgis.org/planet/user/28/tag/qgis%20board/
>> ___
>> QGIS-it-user mailing list
>> QGIS-it-user@lists.osgeo.org
>> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>>
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


[Qgis-user] Help with feedback - GeoPriv

2019-05-20 Per discussione Juan Pablo Duque Ordoñez
Hello everyone,
My name is Juan Pablo Duque, I'm a computer science student in Colombia and
for my bachelor degree final project me and a partner developed a QGIS
Plugin: GeoPriv.
The plugin is already on the QGIS repository but now, for the class, we
need people to do a usability survey to show results about the impact of
the project and to prove that the plugin is a real contribution to the
field.

We need you to help us, since here in our university very few students and
teachers use QGIS and we need people to fill the survey. If you can make
the survey and also distribute it with your colleges we would be thankful.
Our final report is due on Wednesday.

The home page for a tutorial on how to use the plugin is in the homepage
https://diuke.github.io . Also the survey is in this link
http://geopriv.questionpro.com/
Make sure to download the latest version of the plugin from the QGIS plugin
manager.

Also, all the feedback you can give us is very helpful. I enjoyed a lot
working in this project and with QGIS and I deeply want to contribute and
make a good tool for geoprivacy.

Thank you very much in advance,
Juan Pablo Duque


-- 
*Juan Pablo Duque Ordóñez*
Estudiante Ingeniería de Sistemas y Computación
Universidad del Norte

Presidente Universidad del Norte ACM Student Chapter

-- 
*Este correo no representa opinión o consentimiento oficial de la 
Universidad del Norte, por lo que esta no adquiere ninguna responsabilidad 
por su contenido, salvo en el caso de funcionarios en ejercicio de 
atribuciones reglamentarias. Puede provenir de una cuenta ofrecida a 
funcionarios o estudiantes, como parte del ejercicio educativo, evento en 
el cual tanto el mensaje como sus anexos son estrictamente confidenciales. 
Ha sido analizado con software antivirus; no obstante, no se garantiza que 
sea seguro o no contenga errores o virus, por lo que la Universidad del 
Norte no se hace responsable de su transmisión.*
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] 3D map scripting

2019-05-20 Per discussione Martin Dobias
Hi Darrel

On Fri, May 17, 2019 at 4:03 PM Darrel Maddy
 wrote:
> I am happy with the views I am creating manually now and I have been looking 
> for a way to automate this process (as I do not want to prepare 7000 frames 
> individually). Can this be done in scripting? Or is there a macro type 
> facility that at least would ease the pain ?
>
> I am happy to write the code (in Python) if there is a way to access the 3d 
> map window. It also appears that the settings cannot be saved i.e. any 
> changes to the default view – again anyway to keep this persistent would be 
> welcome. Maybe I am just missing something obvious?

Currently there is only limited API support for 3D map views. For
example, you can set 3D renderers for your vector layers, but some
functionality is not available in Python (like access to the 3D map
view or creation of "offline" 3D renderer that would allow you to
trigger 3D rendering upon request).

Can you explain in a bit more detail what are the bits you would like
to modify for every new frame? How are the 7000 data overlays
represented? I may have some time to make the necessary API
functionality available in QGIS 3.8 which will be out soon.

Cheers
Martin
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] las files

2019-05-20 Per discussione Garth Fletcher

Andreas Neumann recommended:
If you want to go the "free" route you'll have to use PDAL outside of 
QGIS (on the command-line) and convert them to GeoTIFF files. Have a 
look at the PLAS tutorials at https://pdal.io/tutorial/index.html


I concur with using PDAL - it worked very well for me for converting
50+ Lidar tiles (~ 5 GB) into a GeoTiff DEM which works with QGIS.


Under Mac OS X 10.12 (Sierra) I used PDAL in the Terminal window. i.e.,
using "command lines".

Here are my somewhat cryptic notes about the process:


first merged all the .las into all.las extracting the type 2 (ground) 
and 9 (water)


CD folder containing the .las files to be merged
pdal pipeline P2.json

 where file P2.json contained:
{
"pipeline":[
{
"filename":"19*.las"
},
{
"type":"filters.range",
"limits":"Classification[2:2], Classification[9:9]"
},
{
"type":"writers.las",
"filename":"all_plus.las"
}
]
}
resulted in 680 MB all_plus.las file



then converted to GeoTIFF with 6' x 6' cells

pdal pipeline Ptiff.json

 where file Ptiff.json contained:
{
"pipeline":[
{
"filename":"all_plus.las"
},
{
"type":"filters.reprojection",
"out_srs":"EPSG:3614"
},
{
"type":"filters.range",
"limits":"Classification[2:2], Classification[9:9]"
},
{
"type":"writers.gdal",
"filename":"all_plus.tif",
"output_type":"min",
"resolution": 6.0,
"radius": 9.0,
"window_size":1,
"data_type":"float"
}
]
}
created 198 MB file all_plus.tif


Notes:

I extracted Class 2 (ground) and Class 9 (water) to get "surface" points

In our area the tif contained a number of "noData" pixels where no
 points were found within a pixel (6' x 6' area for our case) which
 were classified as Ground or Water.  Using larger cells, e.g., 12x12,
 reduces the number of noData cells, but does not eliminated them.

QGIS > Processing > GDAL > Raster Analysis > Fill nodata
 was then used to fill in the remaining noData cells through
 interpolation from adjacent areas.  I used a maximum reach of 30.

I wanted to create contours.  When the raw Tif DEM was used the contours
 were very "busy", i.e., full of little jaggedy wiggles.

So the next step was to use
  QGIS > Processing > SAGA > Raster filter > Gaussian filter
 to "smooth" the DEM.  Settings of 2 for SD and 5 for Radius seemed to
 produce acceptable contour smoothness for 5' contours

Final step was to use
  QGIS > Processing > GDAL > Raster Extraction > contour
 to create the contour layer.

I hope the above helps guide you through the process
--
Garth Fletcher
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] QGIS crea shapefile poligono

2019-05-20 Per discussione Totò
Grazie a tutti per i test,
ho aperto ticket

https://issues.qgis.org/issues/22107

saluti



-
https://pigrecoinfinito.wordpress.com/
--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-Italian-User-f5250612.html
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Martina Savarese
Salve,
premetto che non sono così addentro al progetto QGIS per suggerire un
indirizzo generale, però sondare il campo dei finanziamenti europei non mi
sembra una cattiva idea per vari motivi:
il primo ovviamente è quello appunto di avere dei finanziamenti, e
finanziamenti pubblici, per un progetto open source;
il secondo è che ottenere finanziamenti europei potrebbe innescare un
circuito virtuoso (anche se non è detto che avvenga).
Mi spiego meglio: i bandi europei funzionano con coofinanziamenti, il che
significa che i partner che propongono un progetto (istituzioni e realtà
economiche di vario tipo) devono a loro volta finanziare in proprio parte
del progetto, cosa che in genere viene fatta tramite il personale
impiegato, in vario modo, nel progetto stesso.

Relativamente ai programmi su cui rivolgere l'attenzione credo che uno su
tutti potrebbe essere Horizon, sul quale non ho alcuna personale
esperienza, ma se qualcuno riuscisse a coinvolgre università e gruppi di
ricerca sarebbe praticabile.Altri programmi potrebbero poi essere sondati
per sviluppare aspetti e/o applicazioni in ambiti più specifici (un
programma da prendere in considerazione è Life, poi ci sono quelli della DG
cultura, e forse COSME per le piccole e medie imprese).
Rispetto alle amministrazioni pubbliche ci sono poi i finanziamenti
indiretti dei fondi strutturali erogati dalle singole regioni.

Martina

Il giorno lun 20 mag 2019 alle ore 15:35 Paolo Cavallini <
cavall...@faunalia.it> ha scritto:

> esatto: come dicevo, chi se ne dovrebbe far carico è lo Stato. e visto
> il paese in cui viviamo, e la gente che mandiamo al governo, questo
> equivale a chiedere aiuto alla santa europa.
>
> On 20/05/19 15:30, Marco Spaziani wrote:
> > Vi propongo tutto un'altro scenario.
> > Quasi un paio di decenni fa (come passa il tempo!), quando lasciai il
> > vecchio ArcView 3 rigorosamente crackato per passare all'open source,
> > non approdai subito a QuantumGIS (allora si chiamava così) ma per un
> > paio d'anni me la feci con gvSIG. Orbene, se non sbaglio, mi sembra di
> > ricordare che gvSIG si manteneva grazie a periodici e sistematici
> > finanziamenti europei in quanto aveva vinto non solo quale
> > bando/progetto della comunità europea. Mi chiedevo. Perchè non esplorare
> > la jungla dei finanziamenti europei (finanziano di tutto, dalla
> > valorizzazione del lardo di Colonnata alla tutela dei dialetti delle
> > Alpi orientali) e vedere se c'è un qualche bando con il quale poter
> > proporre lo sviluppo e il mantenimento del progetto QGIS?
> >
> > Il giorno lun 20 mag 2019 alle ore 10:17 matteo  > > ha scritto:
> >
> > > Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
> > > trasformare qgis da software libero a (parzialmente) proprietario.
> >
> > stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
> > bisogna insistere e convincere chi usa QGIS. Il problema d'altronde è
> > nelle coscienze degli utenti, non in QGIS
> > ___
> > QGIS-it-user mailing list
> > QGIS-it-user@lists.osgeo.org 
> > https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> >
> >
> > ___
> > QGIS-it-user mailing list
> > QGIS-it-user@lists.osgeo.org
> > https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> >
>
> --
> Paolo Cavallini - www.faunalia.eu
> QGIS.ORG Chair:
> http://planet.qgis.org/planet/user/28/tag/qgis%20board/
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Paolo Cavallini
esatto: come dicevo, chi se ne dovrebbe far carico è lo Stato. e visto
il paese in cui viviamo, e la gente che mandiamo al governo, questo
equivale a chiedere aiuto alla santa europa.

On 20/05/19 15:30, Marco Spaziani wrote:
> Vi propongo tutto un'altro scenario.
> Quasi un paio di decenni fa (come passa il tempo!), quando lasciai il
> vecchio ArcView 3 rigorosamente crackato per passare all'open source,
> non approdai subito a QuantumGIS (allora si chiamava così) ma per un
> paio d'anni me la feci con gvSIG. Orbene, se non sbaglio, mi sembra di
> ricordare che gvSIG si manteneva grazie a periodici e sistematici
> finanziamenti europei in quanto aveva vinto non solo quale
> bando/progetto della comunità europea. Mi chiedevo. Perchè non esplorare
> la jungla dei finanziamenti europei (finanziano di tutto, dalla
> valorizzazione del lardo di Colonnata alla tutela dei dialetti delle
> Alpi orientali) e vedere se c'è un qualche bando con il quale poter
> proporre lo sviluppo e il mantenimento del progetto QGIS?
> 
> Il giorno lun 20 mag 2019 alle ore 10:17 matteo  > ha scritto:
> 
> > Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
> > trasformare qgis da software libero a (parzialmente) proprietario.
> 
> stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
> bisogna insistere e convincere chi usa QGIS. Il problema d'altronde è
> nelle coscienze degli utenti, non in QGIS
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org 
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> 
> 
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> 

-- 
Paolo Cavallini - www.faunalia.eu
QGIS.ORG Chair:
http://planet.qgis.org/planet/user/28/tag/qgis%20board/
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Marco Spaziani
Vi propongo tutto un'altro scenario.
Quasi un paio di decenni fa (come passa il tempo!), quando lasciai il
vecchio ArcView 3 rigorosamente crackato per passare all'open source, non
approdai subito a QuantumGIS (allora si chiamava così) ma per un paio
d'anni me la feci con gvSIG. Orbene, se non sbaglio, mi sembra di ricordare
che gvSIG si manteneva grazie a periodici e sistematici finanziamenti
europei in quanto aveva vinto non solo quale bando/progetto della comunità
europea. Mi chiedevo. Perchè non esplorare la jungla dei finanziamenti
europei (finanziano di tutto, dalla valorizzazione del lardo di Colonnata
alla tutela dei dialetti delle Alpi orientali) e vedere se c'è un qualche
bando con il quale poter proporre lo sviluppo e il mantenimento del
progetto QGIS?

Il giorno lun 20 mag 2019 alle ore 10:17 matteo 
ha scritto:

> > Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
> > trasformare qgis da software libero a (parzialmente) proprietario.
>
> stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
> bisogna insistere e convincere chi usa QGIS. Il problema d'altronde è
> nelle coscienze degli utenti, non in QGIS
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] las files

2019-05-20 Per discussione Randal Hale
You can also go the GRASS Route for LAS files. You get GRASS with an 
install of QGIS by default.


Wiki: https://grasswiki.osgeo.org/wiki/LIDAR

GRASS is a bit of a learning curve but with patience you can get up to 
speed. There's also a very active GRASS users list also: 
https://grass.osgeo.org/support/mailing-lists/


On 5/20/19 3:10 AM, Tony Shepherd (FarmMaps NZ) wrote:


Hi All

I'm new to QGIS after using MapInfo for more years than I dare to 
admit and finding QGIS great.  I’m making full use of the 3D features 
as I work mainly in the forestry industry and as they say, a picture 
says a thousand words, particularly when showing topography.  My 
question is, I am trying to find a way of converting some LiDar data 
that I have (las files) to something that QGis can use when creating 
3D views.  Currently I’m using tif DEM files, so can anyone point me 
in the right direction to creating a dem from las files?  I can't see 
any plugins so wonder how others are achieving this?


Cheers

Tony

*Tony Shepherd**|*GeoSpatial

Ph 027 435 6193 *|*  E t...@farmmaps.nz

FarmMaps NZ, 3 Kerwood Place, Gore 9740

FM_logo1_small (Custom)

**

** ** 
**



___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user


--
Randal Hale
North River Geographic Systems, Inc
https://www.northrivergeographic.com
(423) 653-3611

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Crash and not able to restart after changing theme

2019-05-20 Per discussione Bernd Vogelgesang

correction, it was not the theme, but the style that I changed in the
options.

I now manually changed back the value for style to default in the
QGIS3.ini file, and now everything seems to be back and working.
Loosing all settings because that stuff would have been not so funny!

Is it possible that styles are platform-dependend? Anyway, just wanted
to mention that there might be a problem with those settings that might
lead to a corrupted set-up.

Cheers,
Bernd


Am 20.05.19 um 12:21 schrieb Bernd Vogelgesang:

Hi,

just for fun I wanted to change the theme. When doing so, a python error
window was shown, but had no content but a duplicate of the canvas. Then
everything froze.

I was able to restart once. Fumbling again in the theme setting led to a
sudden crash, and QGIS could not be restarted.

Starting from terminal shows this:

bernd@bernd-Z87M-D3H:~$ qgis
using qt5ct plugin
D-Bus global menu: no
D-Bus system tray: no
QGIS died on signal 11Could not attach to process.  If your uid matches
the uid of the target
process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try
again as the root user.  For more details, see
/etc/sysctl.d/10-ptrace.conf
ptrace: Vorgang nicht zulässig.
No thread selected
No stack.
gdb returned 0
Abgebrochen (Speicherabzug geschrieben)

Is this a local problem or worth a bug report?

Cheers,

Bernd

QGIS 3.6.3 on Linux Mint

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] las files

2019-05-20 Per discussione Luigi Pirelli
Hi Tony

the only free (as speach) solutions are WhiteBox (integrated in Processign
via provider plugin but not so wide community) and Fusion (only for Win)...
LAStools better integrated in QGIS has only some tools available with free
licence.

as correctly said PDAL by Andreas is not yet well supported in QGIS... I
did PDALTools plugin to integrate run of pdal pipelines ins a
QGIS/Processing modeler. Probably timing was not the correct one, because I
supposed to have contribution a new models and pipelines to this provider.
Probably I'll have more chances to work on it next months.

BTW if you need support to try to use PDAL in a QGIS processign context,
please write me, or in IRC channel, or this dev list or opening issues to
PDALTools.
Other than this, you can use PDAL without using QGIS at all to create a DEM.

The best way to have QGIS and PDAL integrated is using the Anaconda
packaging. In this way you can also use python-pdal bindings also inside
QGIS.

regards

Luigi Pirelli

**
* LinkedIn: https://www.linkedin.com/in/luigipirelli
* Stackexchange: http://gis.stackexchange.com/users/19667/luigi-pirelli
* GitHub: https://github.com/luipir
* Mastering QGIS 2nd Edition:
*
https://www.packtpub.com/big-data-and-business-intelligence/mastering-qgis-second-edition
* Hire me: http://www.qcooperative.net
**


On Mon, 20 May 2019 at 09:28, Tony Shepherd (FarmMaps NZ) 
wrote:

> Hi All
>
>
>
> I'm new to QGIS after using MapInfo for more years than I dare to admit
> and finding QGIS great.  I’m making full use of the 3D features as I work
> mainly in the forestry industry and as they say, a picture says a thousand
> words, particularly when showing topography.  My question is, I am trying
> to find a way of converting some LiDar data that I have (las files) to
> something that QGis can use when creating 3D views.  Currently I’m using
> tif DEM files, so can anyone point me in the right direction to creating a
> dem from las files?  I can't see any plugins so wonder how others are
> achieving this?
>
>
>
>
>
> Cheers
>
> Tony
>
>
>
> *Tony Shepherd*  *|*  GeoSpatial
>
> Ph 027 435 6193  *|*  E t...@farmmaps.nz
>
> FarmMaps NZ, 3 Kerwood Place, Gore 9740
>
>
>
> [image: FM_logo1_small (Custom)]
>
>
>
>
>
> 
> 
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Fix Geometries

2019-05-20 Per discussione GILLEN Finbar
Hi All,

I have a few polygon layers where anytime I go to use them I have to use the 
fix geometries plugin so that invalid geometries are fixed.

When I save the output from the fixed geometries plugin and add it in a new 
project the same issues appears where I can't use it accurately to do a Select 
or Join by Location because some of the geometries are still seen as invalid 
even though they have been 'fixed'.

Is there anyway solution to this or do I have to keep using the fix geometries 
plugin anytime I use the polygons for analysis?

Regards
Finbar


*

The contents and any attachments of this electronic mail message are 
confidential and intended only for the named addressees. Dissemination, 
forwarding, publication or other use of the message or attachments by any 
unauthorised person is strictly prohibited.

Unless stated to the contrary, any opinions expressed in this message are 
personal and may not be attributed to AXA Insurance dac or any member of the 
AXA Group of Companies.

AXA Insurance dac is regulated by the Central Bank of Ireland. For business in 
Northern Ireland, AXA Insurance dac is authorised by the Central Bank of 
Ireland and subject to limited regulation by the Financial Conduct Authority. 
Details about the extent of our regulation by the Financial Conduct Authority 
are available from us on request. AXA Insurance dac is a private company 
limited by shares, registered in Ireland number 136155. Registered Office Wolfe 
Tone House, Wolfe Tone Street, Dublin 1.

"AXA Supporting Road Safety in Ireland"

Internet e-mails are not necessarily secure. AXA Group does not accept 
responsibility for changes made to this message after it was sent. To help 
promote the use of electronic documents and to be kinder to the environment, 
please consider whether you really need to print this
email.

*
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

[Qgis-user] Crash and not able to restart after changing theme

2019-05-20 Per discussione Bernd Vogelgesang

Hi,

just for fun I wanted to change the theme. When doing so, a python error
window was shown, but had no content but a duplicate of the canvas. Then
everything froze.

I was able to restart once. Fumbling again in the theme setting led to a
sudden crash, and QGIS could not be restarted.

Starting from terminal shows this:

bernd@bernd-Z87M-D3H:~$ qgis
using qt5ct plugin
D-Bus global menu: no
D-Bus system tray: no
QGIS died on signal 11Could not attach to process.  If your uid matches
the uid of the target
process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try
again as the root user.  For more details, see /etc/sysctl.d/10-ptrace.conf
ptrace: Vorgang nicht zulässig.
No thread selected
No stack.
gdb returned 0
Abgebrochen (Speicherabzug geschrieben)

Is this a local problem or worth a bug report?

Cheers,

Bernd

QGIS 3.6.3 on Linux Mint

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] las files

2019-05-20 Per discussione Alexander Bruy
There is also WhiteboxTools.

пн, 20 трав. 2019 о 12:35 Andreas Neumann  пише:

> Hi Tony,
>
> Basically you have two options for using/converting LAS/LAZ files in QGIS:
>
> * LasTools (commercial, requires license), integrated in QGIS processing
> toolbox
>
> * PDAL (OpenSource), not yet properly integrated in QGIS processing toolbox
>
> If all you need is a LAS/LAZ viewer there is also plas.io where you can
> load and view a LAS/LATZ directly in a modern web browser with WebGL
> support.
>
> If you want to go the "free" route you'll have to use PDAL outside of QGIS
> (on the command-line) and convert them to GeoTIFF files. Have a look at the
> PLAS tutorials at https://pdal.io/tutorial/index.html
>
> There are very loose, not yet concrete, plans to better integrate PDAL in
> the QGIS processing toolbox, and there is even a QGIS plugin for that in
> the very early stages. If you are adventurous you could try if it works for
> you.
>
> Greetings,
>
> Andreas
> Am 20.05.19 um 09:10 schrieb Tony Shepherd (FarmMaps NZ):
>
> Hi All
>
>
>
> I'm new to QGIS after using MapInfo for more years than I dare to admit
> and finding QGIS great.  I’m making full use of the 3D features as I work
> mainly in the forestry industry and as they say, a picture says a thousand
> words, particularly when showing topography.  My question is, I am trying
> to find a way of converting some LiDar data that I have (las files) to
> something that QGis can use when creating 3D views.  Currently I’m using
> tif DEM files, so can anyone point me in the right direction to creating a
> dem from las files?  I can't see any plugins so wonder how others are
> achieving this?
>
>
>
>
>
> Cheers
>
> Tony
>
>
>
> *Tony Shepherd*  *|*  GeoSpatial
>
> Ph 027 435 6193  *|*  E t...@farmmaps.nz
>
> FarmMaps NZ, 3 Kerwood Place, Gore 9740
>
>
>
> [image: FM_logo1_small (Custom)]
>
>
>
>
>
> 
> 
>
>
>
> ___
> Qgis-user mailing listqgis-u...@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user



-- 
Alexander Bruy
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Layer panel docking problem

2019-05-20 Per discussione Stefan Giese

Hi,

I think just double click in the header of the layer panel will dock it 
again, see this animated gif: 
https://drive.google.com/file/d/1_pxBEFx9J5ny1cCyk8XlxWl5xKe81bSR/view?usp=sharing


Mit freundlichen Grüßen
Stefan Giese
Projektleiter/Consultant
---
Aufwind durch Wissen!
Qualifizierte Open-Source-Schulungen
bei der www.foss-academy.com
---
WhereGroup GmbH & Co. KG
Schwimmbadstr. 2
79100 Freiburg
Germany

Fon: +49 (0)761 / 519 102 - 61
Fax: +49 (0)761 / 519 102 - 11

stefan.gi...@wheregroup.com
www.wheregroup.com
Amtsgericht Bonn, HRA 6788
---
Komplementärin:
WhereGroup Verwaltungs GmbH
vertreten durch:
Olaf Knopp, Peter Stamm
---

Am 20.05.2019 um 11:39 schrieb Karl Magnus Jönsson:


Hi!
The Layer Panel should be dockable. Could be a little bit tricky. Try 
several times.


*Karl-Magnus*

*Från:*Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] *För 
*Susan Iremonger

*Skickat:* den 19 maj 2019 16:32
*Till:* qgis-user
*Ämne:* [Qgis-user] Layer panel docking problem

Hi All,

Please help me with this: I am using QGIS 3.4. Somehow I un-docked my 
Layer Panel and now it just floats over the display, which now takes 
up all the space on my screen. So the Layer Panel obscures the left 
side of the display of the map/data. I have tried moving the panel all 
the way to the left to see if it will dock again for me, without joy.  
I have also tried the same thing moving it to the right. I have even 
uninstalled and installed the program again, and it has the same problem.


Before this happened I think I clicked a little icon next to the "x" 
at the right hand upper corner of the Layer Panel . This has 
disappeared now but it might have had somehting to do with the 
undocking of the panel. Any help much appreciated.


Susan.

--

Carra Lodge

Pound road

Carrabaun
Westport
Co. Mayo F28 VK58
Ireland


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] Layer panel docking problem

2019-05-20 Per discussione Karl Magnus Jönsson
Hi!
The Layer Panel should be dockable. Could be a little bit tricky. Try several 
times.

Karl-Magnus

Från: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] För Susan Iremonger
Skickat: den 19 maj 2019 16:32
Till: qgis-user
Ämne: [Qgis-user] Layer panel docking problem

Hi All,
Please help me with this: I am using QGIS 3.4. Somehow I un-docked my Layer 
Panel and now it just floats over the display, which now takes up all the space 
on my screen. So the Layer Panel obscures the left side of the display of the 
map/data. I have tried moving the panel all the way to the left to see if it 
will dock again for me, without joy.  I have also tried the same thing moving 
it to the right. I have even uninstalled and installed the program again, and 
it has the same problem.
Before this happened I think I clicked a little icon next to the "x" at the 
right hand upper corner of the Layer Panel . This has disappeared now but it 
might have had somehting to do with the undocking of the panel. Any help much 
appreciated.
Susan.

--
Carra Lodge
Pound road
Carrabaun
Westport
Co. Mayo F28 VK58
Ireland
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] las files

2019-05-20 Per discussione Andreas Neumann

Hi Tony,

Basically you have two options for using/converting LAS/LAZ files in QGIS:

* LasTools (commercial, requires license), integrated in QGIS processing 
toolbox


* PDAL (OpenSource), not yet properly integrated in QGIS processing toolbox

If all you need is a LAS/LAZ viewer there is also plas.io where you can 
load and view a LAS/LATZ directly in a modern web browser with WebGL 
support.


If you want to go the "free" route you'll have to use PDAL outside of 
QGIS (on the command-line) and convert them to GeoTIFF files. Have a 
look at the PLAS tutorials at https://pdal.io/tutorial/index.html


There are very loose, not yet concrete, plans to better integrate PDAL 
in the QGIS processing toolbox, and there is even a QGIS plugin for that 
in the very early stages. If you are adventurous you could try if it 
works for you.


Greetings,

Andreas

Am 20.05.19 um 09:10 schrieb Tony Shepherd (FarmMaps NZ):


Hi All

I'm new to QGIS after using MapInfo for more years than I dare to 
admit and finding QGIS great.  I’m making full use of the 3D features 
as I work mainly in the forestry industry and as they say, a picture 
says a thousand words, particularly when showing topography.  My 
question is, I am trying to find a way of converting some LiDar data 
that I have (las files) to something that QGis can use when creating 
3D views.  Currently I’m using tif DEM files, so can anyone point me 
in the right direction to creating a dem from las files?  I can't see 
any plugins so wonder how others are achieving this?


Cheers

Tony

*Tony Shepherd**|*GeoSpatial

Ph 027 435 6193 *|*  E t...@farmmaps.nz

FarmMaps NZ, 3 Kerwood Place, Gore 9740

FM_logo1_small (Custom)

**

** ** 
**



___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [Qgis-user] las files

2019-05-20 Per discussione Karl Magnus Jönsson
Hi!
There is a plugin called "Fusion for processing" that might work for you. 
Marked as experimental.

http://forsys.cfr.washington.edu/FUSION/fusion_overview.html

Karl-Magnus Jönsson

Från: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] För Tony Shepherd 
(FarmMaps NZ)
Skickat: den 20 maj 2019 09:11
Till: Qgis-user@lists.osgeo.org
Ämne: [Qgis-user] las files

Hi All

I'm new to QGIS after using MapInfo for more years than I dare to admit and 
finding QGIS great.  I'm making full use of the 3D features as I work mainly in 
the forestry industry and as they say, a picture says a thousand words, 
particularly when showing topography.  My question is, I am trying to find a 
way of converting some LiDar data that I have (las files) to something that 
QGis can use when creating 3D views.  Currently I'm using tif DEM files, so can 
anyone point me in the right direction to creating a dem from las files?  I 
can't see any plugins so wonder how others are achieving this?


Cheers
Tony

Tony Shepherd  |  GeoSpatial
Ph 027 435 6193  |  E t...@farmmaps.nz
FarmMaps NZ, 3 Kerwood Place, Gore 9740

[FM_logo1_small (Custom)]


[cid:image002.png@01D50EFE.5D8113C0][cid:image003.png@01D50EFE.5D8113C0]

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione matteo
> Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
> trasformare qgis da software libero a (parzialmente) proprietario.

stavo per scriverlo anche io. Secondo me non va trasformato QGIS,
bisogna insistere e convincere chi usa QGIS. Il problema d'altronde è
nelle coscienze degli utenti, non in QGIS
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Paolo Cavallini
Tutto bene, ma vorrei vi fosse chiaro che state proponendo di
trasformare qgis da software libero a (parzialmente) proprietario.
Saluti.

On 20/05/19 09:50, Alessandro Perego wrote:
> Ciao,
> 
> concordo con Matteo quando scrive: "non è tanto chi fa uso "occasionale"
> di un software a dover restituire qualcosa, ma ad aziende che ne fanno
> un uso massiccio."
> 
> Quindi mi chiedo: esiste una stima di quanti siano gli utilizzatori di
> QGIS, magari suddvisa tra occasionali e abituali?
> 
> Immagino sia facile sapere quanti download di QGIS siano stati fatti, ma
> sicuramente ci sono persone che lo usano solo per aprire uno shapefile
> una volta all'anno, oppure per vedere un progetto QGIS fatto da un
> professionista esterno e stampare una mappa. Se questi utenti dovessero
> pagare qualcosa per usare QGIS probabilmente passerebbero ad altro
> software; di conseguenza anche il professionista che è disposto a pagare
> QGIS dovrebbe comunque cambiare se i suoi clienti non lo vogliono usare.
> 
> A questo punto butto là una proposta: creare sul sito di QGIS un'area
> riservata ad utenti donatori/sostenitori dove poter accedere a tutto ciò
> che può essere utile all'utente abituale (documentazione, tutorial,
> progetti di esempio, script di esempio, etc.)
> Ad esempio per il manuale utente si potrebbe lasciare ad accesso libero
> una versione "leggera" che spiega le funzioni base utili agli utenti
> occasionali, ma spostare nell'area riservata la versione completa.
> Ovviamente ci sono tanti siti, blog, forum ed anche questa lista dove
> trovare informazioni su QGIS evitando il manuale utente, ma credo che un
> professionista preferisca spendere una piccola cifra per accedere
> all'area riservata piuttosto che perdere tempo a cercare informazioni
> (magari non aggiornate) su vari siti.
> 
> Alessandro
> 
> 
> Il 20/05/2019 09:02, Paolo Cavallini ha scritto:
>> Il fatto è che oggettivamente conviene, almeno nel breve termine,
>> prendere senza dare, che è quel che fa la maggioranza. Poi si rischia la
>> tragedy of the commons, e questo è un problema molto generale, non
>> limitato al software, ma oggi particolarmente evidente.
>> Credo che solo uno Stato intelligente potrebbe ribaltare la situazione,
>> investendo nei fondamentali, ma chiaramente questa è un'illusione,
>> specialmente in Italia (in Francia ad es. qualcosa fanno).
>> Saluti.
>>
>> On 20/05/19 08:54, matteo wrote:
>>> Ciao a tutti,
>>>
>>> sono molto belli tutti gli spunti che sono venuti fuori e che spero
>>> continueranno a esserci.
>>>
>>> Sono soluzioni interessanti quelle proposte (la filigrana, la donazione
>>> obbligatoria, ecc) perché capisco BENISSIMO che qualcuno si senta in
>>> qualche modo in debito con QGIS, in qualunque modo: è un software che
>>> funzione bene e ci si può fare business.
>>>
>>> Basta farsi un giro sul repository di QGIS per vedere che grazie al
>>> lavoro di pochi, tanti (anzi, tantissimi) usufruiscono di un prodotto
>>> eccezionale.
>>>
>>> A mio personalissimo avviso manca coscienza di software libero, intendo
>>> proprio del concetto. Contribuire al software libero (in qualunque dei
>>> 1000 modi) oltre a essere bello è fondamentale. Non avrei mai potuto
>>> scrivere DataPlotly se i ragazzi di plotly non avessero aperto il codice
>>> di plotly.
>>>
>>> Si tratta di FAR capire come restituire qualcosa indietro a quei pochi
>>> che permettono di avere delle infrastrutture su cui ci basiamo tutti (da
>>> SSL, alla crittografia, ai database ecc). Insomma non è tanto chi fa uso
>>> "occasionale" di un software a dover restituire qualcosa, ma ad aziende
>>> che ne fanno un uso massiccio.
>>>
>>> Aziende private piccole o enormi, enti pubblici più o meno grandi che
>>> non restituiscono NIENTE (né economicamente, né in risorse, né in nessun
>>> altro modo) dovrebbero farsi due conti (sicuramente qualcuno li ha
>>> fatti) e valutare cosa succede se da un momento all'altro quel
>>> software/infrastruttura crolla.
>>>
>>> Mi sono un po' dilungato scusatemi
>>>
>>> Matteo
>>> ___
>>> QGIS-it-user mailing list
>>> QGIS-it-user@lists.osgeo.org
>>> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>>>
> -- 
> Alessandro Perego www.alspergis.altervista.org
> 
> 
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> 

-- 
Paolo Cavallini - www.faunalia.eu
QGIS.ORG Chair:
http://planet.qgis.org/planet/user/28/tag/qgis%20board/
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Alessandro Perego

Ciao,

concordo con Matteo quando scrive: "non è tanto chi fa uso "occasionale" 
di un software a dover restituire qualcosa, ma ad aziende che ne fanno 
un uso massiccio."


Quindi mi chiedo: esiste una stima di quanti siano gli utilizzatori di 
QGIS, magari suddvisa tra occasionali e abituali?


Immagino sia facile sapere quanti download di QGIS siano stati fatti, ma 
sicuramente ci sono persone che lo usano solo per aprire uno shapefile 
una volta all'anno, oppure per vedere un progetto QGIS fatto da un 
professionista esterno e stampare una mappa. Se questi utenti dovessero 
pagare qualcosa per usare QGIS probabilmente passerebbero ad altro 
software; di conseguenza anche il professionista che è disposto a pagare 
QGIS dovrebbe comunque cambiare se i suoi clienti non lo vogliono usare.


A questo punto butto là una proposta: creare sul sito di QGIS un'area 
riservata ad utenti donatori/sostenitori dove poter accedere a tutto ciò 
che può essere utile all'utente abituale (documentazione, tutorial, 
progetti di esempio, script di esempio, etc.)
Ad esempio per il manuale utente si potrebbe lasciare ad accesso libero 
una versione "leggera" che spiega le funzioni base utili agli utenti 
occasionali, ma spostare nell'area riservata la versione completa.
Ovviamente ci sono tanti siti, blog, forum ed anche questa lista dove 
trovare informazioni su QGIS evitando il manuale utente, ma credo che un 
professionista preferisca spendere una piccola cifra per accedere 
all'area riservata piuttosto che perdere tempo a cercare informazioni 
(magari non aggiornate) su vari siti.


Alessandro


Il 20/05/2019 09:02, Paolo Cavallini ha scritto:

Il fatto è che oggettivamente conviene, almeno nel breve termine,
prendere senza dare, che è quel che fa la maggioranza. Poi si rischia la
tragedy of the commons, e questo è un problema molto generale, non
limitato al software, ma oggi particolarmente evidente.
Credo che solo uno Stato intelligente potrebbe ribaltare la situazione,
investendo nei fondamentali, ma chiaramente questa è un'illusione,
specialmente in Italia (in Francia ad es. qualcosa fanno).
Saluti.

On 20/05/19 08:54, matteo wrote:

Ciao a tutti,

sono molto belli tutti gli spunti che sono venuti fuori e che spero
continueranno a esserci.

Sono soluzioni interessanti quelle proposte (la filigrana, la donazione
obbligatoria, ecc) perché capisco BENISSIMO che qualcuno si senta in
qualche modo in debito con QGIS, in qualunque modo: è un software che
funzione bene e ci si può fare business.

Basta farsi un giro sul repository di QGIS per vedere che grazie al
lavoro di pochi, tanti (anzi, tantissimi) usufruiscono di un prodotto
eccezionale.

A mio personalissimo avviso manca coscienza di software libero, intendo
proprio del concetto. Contribuire al software libero (in qualunque dei
1000 modi) oltre a essere bello è fondamentale. Non avrei mai potuto
scrivere DataPlotly se i ragazzi di plotly non avessero aperto il codice
di plotly.

Si tratta di FAR capire come restituire qualcosa indietro a quei pochi
che permettono di avere delle infrastrutture su cui ci basiamo tutti (da
SSL, alla crittografia, ai database ecc). Insomma non è tanto chi fa uso
"occasionale" di un software a dover restituire qualcosa, ma ad aziende
che ne fanno un uso massiccio.

Aziende private piccole o enormi, enti pubblici più o meno grandi che
non restituiscono NIENTE (né economicamente, né in risorse, né in nessun
altro modo) dovrebbero farsi due conti (sicuramente qualcuno li ha
fatti) e valutare cosa succede se da un momento all'altro quel
software/infrastruttura crolla.

Mi sono un po' dilungato scusatemi

Matteo
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


--
Alessandro Perego www.alspergis.altervista.org 

___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


[Qgis-user] las files

2019-05-20 Per discussione Tony Shepherd (FarmMaps NZ)
Hi All

 

I'm new to QGIS after using MapInfo for more years than I dare to admit and
finding QGIS great.  I'm making full use of the 3D features as I work mainly
in the forestry industry and as they say, a picture says a thousand words,
particularly when showing topography.  My question is, I am trying to find a
way of converting some LiDar data that I have (las files) to something that
QGis can use when creating 3D views.  Currently I'm using tif DEM files, so
can anyone point me in the right direction to creating a dem from las files?
I can't see any plugins so wonder how others are achieving this?

 

 

Cheers

Tony

 

Tony Shepherd  |  GeoSpatial

Ph 027 435 6193  |  E t...@farmmaps.nz

FarmMaps NZ, 3 Kerwood Place, Gore 9740

 



 

 

 
 

 

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Paolo Cavallini
Il fatto è che oggettivamente conviene, almeno nel breve termine,
prendere senza dare, che è quel che fa la maggioranza. Poi si rischia la
tragedy of the commons, e questo è un problema molto generale, non
limitato al software, ma oggi particolarmente evidente.
Credo che solo uno Stato intelligente potrebbe ribaltare la situazione,
investendo nei fondamentali, ma chiaramente questa è un'illusione,
specialmente in Italia (in Francia ad es. qualcosa fanno).
Saluti.

On 20/05/19 08:54, matteo wrote:
> Ciao a tutti,
> 
> sono molto belli tutti gli spunti che sono venuti fuori e che spero
> continueranno a esserci.
> 
> Sono soluzioni interessanti quelle proposte (la filigrana, la donazione
> obbligatoria, ecc) perché capisco BENISSIMO che qualcuno si senta in
> qualche modo in debito con QGIS, in qualunque modo: è un software che
> funzione bene e ci si può fare business.
> 
> Basta farsi un giro sul repository di QGIS per vedere che grazie al
> lavoro di pochi, tanti (anzi, tantissimi) usufruiscono di un prodotto
> eccezionale.
> 
> A mio personalissimo avviso manca coscienza di software libero, intendo
> proprio del concetto. Contribuire al software libero (in qualunque dei
> 1000 modi) oltre a essere bello è fondamentale. Non avrei mai potuto
> scrivere DataPlotly se i ragazzi di plotly non avessero aperto il codice
> di plotly.
> 
> Si tratta di FAR capire come restituire qualcosa indietro a quei pochi
> che permettono di avere delle infrastrutture su cui ci basiamo tutti (da
> SSL, alla crittografia, ai database ecc). Insomma non è tanto chi fa uso
> "occasionale" di un software a dover restituire qualcosa, ma ad aziende
> che ne fanno un uso massiccio.
> 
> Aziende private piccole o enormi, enti pubblici più o meno grandi che
> non restituiscono NIENTE (né economicamente, né in risorse, né in nessun
> altro modo) dovrebbero farsi due conti (sicuramente qualcuno li ha
> fatti) e valutare cosa succede se da un momento all'altro quel
> software/infrastruttura crolla.
> 
> Mi sono un po' dilungato scusatemi
> 
> Matteo
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> 

-- 
Paolo Cavallini - www.faunalia.eu
QGIS.ORG Chair:
http://planet.qgis.org/planet/user/28/tag/qgis%20board/
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione matteo
Ciao a tutti,

sono molto belli tutti gli spunti che sono venuti fuori e che spero
continueranno a esserci.

Sono soluzioni interessanti quelle proposte (la filigrana, la donazione
obbligatoria, ecc) perché capisco BENISSIMO che qualcuno si senta in
qualche modo in debito con QGIS, in qualunque modo: è un software che
funzione bene e ci si può fare business.

Basta farsi un giro sul repository di QGIS per vedere che grazie al
lavoro di pochi, tanti (anzi, tantissimi) usufruiscono di un prodotto
eccezionale.

A mio personalissimo avviso manca coscienza di software libero, intendo
proprio del concetto. Contribuire al software libero (in qualunque dei
1000 modi) oltre a essere bello è fondamentale. Non avrei mai potuto
scrivere DataPlotly se i ragazzi di plotly non avessero aperto il codice
di plotly.

Si tratta di FAR capire come restituire qualcosa indietro a quei pochi
che permettono di avere delle infrastrutture su cui ci basiamo tutti (da
SSL, alla crittografia, ai database ecc). Insomma non è tanto chi fa uso
"occasionale" di un software a dover restituire qualcosa, ma ad aziende
che ne fanno un uso massiccio.

Aziende private piccole o enormi, enti pubblici più o meno grandi che
non restituiscono NIENTE (né economicamente, né in risorse, né in nessun
altro modo) dovrebbero farsi due conti (sicuramente qualcuno li ha
fatti) e valutare cosa succede se da un momento all'altro quel
software/infrastruttura crolla.

Mi sono un po' dilungato scusatemi

Matteo
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione Paolo Cavallini
aggiungo: è un problema sempre più sentito, in molti sw.
ho trovato questa lettura molto interessante:
https://www.fordfoundation.org/about/library/reports-and-studies/roads-and-bridges-the-unseen-labor-behind-our-digital-infrastructure

On 20/05/19 08:45, matteo wrote:
> Ciao a tutti,
> 
> sono molto belli tutti gli spunti che sono venuti fuori e che spero
> continueranno a esserci.
> 
> Sono soluzioni interessanti quelle proposte (la filigrana, la donazione
> obbligatoria, ecc) perché capisco BENISSIMO che qualcuno si senta in
> qualche modo in debito con QGIS, in qualunque modo: è un software che
> funzione bene e ci si può fare business.
> 
> Da sviluppatore "leggero" di QGIS (non sono core developer)
> 
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
> 

-- 
Paolo Cavallini - www.faunalia.eu
QGIS.ORG Chair:
http://planet.qgis.org/planet/user/28/tag/qgis%20board/
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Riflessione sulle donazioni e futuro QGIS

2019-05-20 Per discussione matteo
Ciao a tutti,

sono molto belli tutti gli spunti che sono venuti fuori e che spero
continueranno a esserci.

Sono soluzioni interessanti quelle proposte (la filigrana, la donazione
obbligatoria, ecc) perché capisco BENISSIMO che qualcuno si senta in
qualche modo in debito con QGIS, in qualunque modo: è un software che
funzione bene e ci si può fare business.

Da sviluppatore "leggero" di QGIS (non sono core developer)

___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] Unable to launch QGIS with X Forwarding - Can Not make

2019-05-20 Per discussione Hillers Heather

I am having the same qgis.db error using a Windows Farm environment with 
profiles stored on a network drive.  It appears to be a problem with the delay 
in synchronizing the directory with the server 

After getting this error and closing QGIS 3, we find ourselves in the following 
situation

1. We open msys.
2. We cd to the parent of the profiles directory.
3. We ls. profiles does not exist.
4. We mkdir foo.  That is successful.  So we have permissions.
5. We cannot mkdir profiles.  That is an error from the file system, because it 
thinks profiles exists already.
6. We cannot remove profiles, because the system thinks it is in use by another 
program.

Restarting QGIS doesn't work.  The only solution we have found is to completely 
log the user out of the system, log back in, copy a dummy profile to the 
profile location, and start QGIS 3.

This is happening to 1 out of 4 new users on our system, as we move them from 
QGIS 2 to QGIS 3.  (QGIS 2 never had this problem.)  

Since we have 50 users, we are going to each user and doing their first startup 
and settings personally, using the dummy profile.  This isn't so bad, since it 
helps make sure the user's environment is just as they want it, but I would be 
happier if the profile problem wasn't there.

Heather


-Ursprüngliche Nachricht-
Von: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] Im Auftrag von 
qgis-user-requ...@lists.osgeo.org
Gesendet: Sunday, May 19, 2019 9:00 PM
An: qgis-user@lists.osgeo.org
Betreff: Qgis-user Digest, Vol 159, Issue 26

Send Qgis-user mailing list submissions to
qgis-user@lists.osgeo.org

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.osgeo.org/mailman/listinfo/qgis-user
or, via email, send a message with subject or body 'help' to
qgis-user-requ...@lists.osgeo.org

You can reach the person managing the list at
qgis-user-ow...@lists.osgeo.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Qgis-user digest..."


Today's Topics:

   1. Unable to launch QGIS with X Forwarding - Can Not make
  qgis.db private copy (Amedeo Fadini)
   2. Re: Unable to launch QGIS with X Forwarding - Can Not make
  qgis.db private copy (Jürgen E. Fischer)
   3. Layer panel docking problem (Susan Iremonger)
   4. Re: Unable to launch QGIS with X Forwarding - Can Not make
  qgis.db private copy (Amedeo Fadini)
   5. Re: Unable to launch QGIS with X Forwarding - Can Not make
  qgis.db private copy (Jürgen E. Fischer)


--

Message: 1
Date: Sun, 19 May 2019 11:06:56 +0200
From: Amedeo Fadini 
To: Qgis Users List - International 
Subject: [Qgis-user] Unable to launch QGIS with X Forwarding - Can Not
make qgis.db private copy
Message-ID:

Content-Type: text/plain; charset="utf-8"

Hi everybody,
I have a ubuntu Bionic LTS server with QGIS 3.4 LTR installed
Since the Qgis project I've published connects to local postggis data I
would like to launch Qgis with X forwarding to modify directly the
published project...

The client is debian 9.8 when I try to launch qgis it shows me the import
esttings window, then the splash screen and after that an alert window with
message "ERROR Can Not make qgis.db private copy" the stdout also log the
following

ERROR: auth db directory path could not be created
ERROR: opening of authentication db FAILED

the auth db path is setted in apache. conf for qgis server: tried to set
the same path as environment variable but no change.

seems that after installation I don't have .qgis3 folder

Any suggestion?

Amedeo
-- next part --
An HTML attachment was scrubbed...
URL: 


--

Message: 2
Date: Sun, 19 May 2019 12:58:56 +0200
From: Jürgen E. Fischer 
To: qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] Unable to launch QGIS with X Forwarding - Can
Not make qgis.db private copy
Message-ID: <20190519105856.2b2fbjdrytv77...@norbit.de>
Content-Type: text/plain; charset="utf-8"

Hi Amedeo,

On Sun, 19. May 2019 at 11:06:56 +0200, Amedeo Fadini wrote:
> seems that after installation I don't have .qgis3 folder

There's no .qgis3 anymore - the user profiles are in
~/.local/share/QGIS/QGIS3/profiles


Jürgen

-- 
Jürgen E. Fischer   norBIT GmbH Tel. +49-4931-918175-31
Dipl.-Inf. (FH) Rheinstraße 13  Fax. +49-4931-918175-50
Software Engineer   D-26506 Nordenhttps://www.norbit.de
QGIS release manager (PSC)  GermanyIRC: jef on FreeNode
-- next part --
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 827 bytes
Desc: not available
URL: 

[QGIS-it-user] Fwd: Help with GeoPriv plugin project

2019-05-20 Per discussione Paolo Cavallini
Una richiesta di un piccolo aiuto, mi pare interessante.
Saluti.


 Forwarded Message 
Subject:Help with GeoPriv plugin project
Date:   Sat, 18 May 2019 20:22:32 -0500
From:   Juan Pablo Duque Ordoñez 
To: cavall...@faunalia.it



Hello Paolo,
My name is Juan Pablo Duque, I'm a computer science student in Colombia
and for my bachelor degree final project me and a partner developed a
QGIS Plugin: GeoPriv.
You already have approved the plugin to be in the plugin repository but
now, for the class, we need people to do a usability survey to show
results about the impact of the project and to prove that the plugin is
a real contribution.

We need you to help us, since here in our university very few students
and teachers use QGIS and we need to have more survey responses. If you
can make the survey and also distribute it with your colleges we would
be thankful.

The home page for a little tutorial on how to use the plugin is in the
homepage https://diuke.github.io  . Also the
survey is in this link http://geopriv.questionpro.com/
Make sure to download the latest version.

I will be waiting for your response and any questions you have. Also all
the feedback you can give us is very helpful. I enjoyed a lot working in
this project and with QGIS and I deeply want to contribute and make a
good tool for geoprivacy.

P.S: Sorry for the hour, is only 8:00pm in Colombia.

Best Regards,
Juan Pablo Duque

-- 
_*Juan Pablo Duque Ordóñez*_
Estudiante Ingeniería de Sistemas y Computación
Universidad del Norte

Presidente Universidad del Norte ACM Student Chapter

/Este correo no representa opinión o consentimiento oficial de la
Universidad del Norte, por lo que esta no adquiere ninguna
responsabilidad por su contenido, salvo en el caso de funcionarios en
ejercicio de atribuciones reglamentarias. Puede provenir de una cuenta
ofrecida a funcionarios o estudiantes, como parte del ejercicio
educativo, evento en el cual tanto el mensaje como sus anexos son
estrictamente confidenciales. Ha sido analizado con software antivirus;
no obstante, no se garantiza que sea seguro o no contenga errores o
virus, por lo que la Universidad del Norte no se hace responsable de su
transmisión./
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] Fw: KMZ

2019-05-20 Per discussione Stefan Giese

from the menu just use Project -> Import/Export -> Export Map to Image

and your map will be saved as an image (tif, jpg, png...) with or 
without a world file (for georeference)


Mit freundlichen Grüßen
Stefan Giese
Projektleiter/Consultant
---
Aufwind durch Wissen!
Qualifizierte Open-Source-Schulungen
bei der www.foss-academy.com
---
WhereGroup GmbH & Co. KG
Schwimmbadstr. 2
79100 Freiburg
Germany

Fon: +49 (0)761 / 519 102 - 61
Fax: +49 (0)761 / 519 102 - 11

stefan.gi...@wheregroup.com
www.wheregroup.com
Amtsgericht Bonn, HRA 6788
---
Komplementärin:
WhereGroup Verwaltungs GmbH
vertreten durch:
Olaf Knopp, Peter Stamm
---

Am 20.05.2019 um 04:58 schrieb Lukas Sadler:

another question, pretty please

how does one export a clip of a base map layer as a reference jpeg/Tiff

I've tried 'clip raster by extent' but when i run it it says 'layers 
were not correctly generated'


**



- Forwarded Message -
*From:* Lukas Sadler 
*To:* qgis-user@lists.osgeo.org ; Brent 
Wood 

*Sent:* Monday, May 20, 2019, 2:39:05 PM GMT+12
*Subject:* Fw: [Qgis-user] KMZ

Okay

I got it to work

project and base map layer needs to be in WGS 84/Pseudo-Mercator with 
KMZ file set as WSG 84


**



- Forwarded Message -
*From:* Lukas Sadler 
*To:* qgis-user@lists.osgeo.org ; Brent 
Wood 

*Sent:* Monday, May 20, 2019, 2:26:16 PM GMT+12
*Subject:* Re: [Qgis-user] KMZ

thanks guys

but still not doing the trick

I've got everything in 4326 and the KMZ is still not sitting in the 
correct location


the location is in New Zealnd but if i use 4326 it looks like it sits 
on the opposite longitude


**



On Monday, May 20, 2019, 2:14:17 PM GMT+12, Brent Wood 
 wrote:



I think KMZ supports lat/long coords only... Google doesn't really 
understand projections...



Make sure your KMZ layer has EPSG:4326 as its projection


HTH


Brent Wood

Programme leader: Environmental Information Delivery
NIWA
DDI:  +64 (4) 3860529





Brent Wood
Principal Technician - GIS and Spatial Data Management
Programme Leader - Environmental Information Delivery
T +64-4-386-0529

National Institute of Water & Atmospheric Research Ltd (NIWA)
301 Evans Bay Parade, Greta Point, Wellington
Connect with NIWA: niwa.co.nz Facebook 
Twitter 
LinkedIn 
Instagram 



To ensure compliance with legal requirements and to maintain cyber 
security standards, NIWA's IT systems are subject to ongoing 
monitoring, activity logging and auditing. This monitoring and 
auditing service may be provided by third parties. Such third parties 
can access information transmitted to, processed by and stored on 
NIWA's IT systems.




*From:* Qgis-user  on behalf of 
Lukas Sadler 

*Sent:* Monday, May 20, 2019 13:45
*To:* qgis-user@lists.osgeo.org
*Subject:* [Qgis-user] KMZ
Hi,

I've tried importing KMZ files from google earth into a project on 
QGIS (3.6.3 Noosa) but the files don't project in the same location 
even if i set it to the project's CRS


what should i do to have the KMZ files projecting in the correct location




___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user