Re: [QGIS-it-user] Informazione Plug-in

2019-01-11 Thread Marco Spaziani
Leggi un po qui:
https://github.com/NINAnor/GarminCustomMaps/issues/4

P.S. per Totò: ...Q-gis? ...una bestemmia, ok, maaa sempre meglio di
CuGis ...ti ricordi? ... ;-))

Il giorno ven 11 gen 2019 alle ore 19:38 Totò 
ha scritto:

> archeo.altovicentino wrote
> > Buonasera a tutti,
> >
> > premetto di essere un neofita di Q-gis.
>
> Benvenut@
>
> che sei neofita si deduce da come scrivi QGIS [0] (praticamente hai
> bestemmiato :-))
>
> Per quanto riguarda il plugin non lo conosco e quindi mai usato, per il
> porting verso la 3.x la cosa migliora da fare è contattare lo sviluppatore
> e
> magari fare una raccolta fondi.
>
> saluti
>
> [0] https://pigrecoinfinito.wordpress.com/2018/04/12/qgis-si-scrive-qgis/
>
>
>
> -
> 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
>
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Informazione Plug-in

2019-01-11 Thread Totò
archeo.altovicentino wrote
> Buonasera a tutti,
> 
> premetto di essere un neofita di Q-gis.

Benvenut@

che sei neofita si deduce da come scrivi QGIS [0] (praticamente hai
bestemmiato :-))

Per quanto riguarda il plugin non lo conosco e quindi mai usato, per il
porting verso la 3.x la cosa migliora da fare è contattare lo sviluppatore e
magari fare una raccolta fondi.

saluti

[0] https://pigrecoinfinito.wordpress.com/2018/04/12/qgis-si-scrive-qgis/



-
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


[QGIS-it-user] Informazione Plug-in

2019-01-11 Thread archeo . altovicentino
Buonasera a tutti,

premetto di essere un neofita di Q-gis.

Volevo sottopoVi questa domanda, con la vecchia versione 2.18 utilizzavo un 
ottimo plug-in, almeno per le mie necessità, denominato:

GarminCustomMap (export the current map canvas to a Garmin Custom Map 
(.kmz-file))

Scaricata la Versione 3.2 questo plug-in non è più attivo. 

Sapete se per caso verrà ripristinato anche per le nuove versioni? Sapete se 
esiste un'alternativa?

Mi rimetto alla Vostra incommensurabile sapienza.

Grazie

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


[Qgis-user] QgsVectorLayer Fails to Load in PyQGIS 3

2019-01-11 Thread Matt Brauer
I am having issues getting a shape file to load with the QgsVectorLayer
function in PyQGIS. If I use the function in the python console within the
QGIS GUI the layer loads fine and is valid. However, if I implement the
same function in my standalone python 3 script, the layer.isValid()
function returns False and the layer fails to load.

import sys, os, time

sys.path.extend([r'C:\OSGeo4W\apps\qgis\python',r'C:\OSGeo4W\apps\Python37\L
ib\site-packages'])

#modify environment variables to find qgis and qt plugins during qgis.core
import
os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = r'C:\OSGeo4W\apps\Qt5\plugins'
#os.environ['QT_PLUGIN_PATH'] =
r'%QT_PLUGIN_PATH%;C:\OSGeo4W\apps\Qt5\plugins;C:\OSGeo4W\apps\qgis\qtplugins'
os.environ['PATH'] += r';C:\OSGeo4W\apps\qgis\bin;C:\OSGeo4W\apps\Qt5\bin'

from qgis.core import *
from qgis.gui import *

# supply path to qgis install location
QgsApplication.setPrefixPath(r'C:\OSGeo4W\apps\qgis', True)
#QgsApplication.setPluginPath('C:\\OSGeo4W\\apps\Qt5\\plugins\\platforms')
#print(QgsApplication.systemEnvVars())

# create a reference to the QgsApplication
# setting the second argument to True enables the GUI, which we need to do
# since this is a custom application
qgs = QgsApplication([], True)

# load providers
qgs.initQgis()

##
# Write your code here to load some layers, use processing algorithms, etc.
canvas = QgsMapCanvas()
canvas.show()
layer = QgsVectorLayer(r'C:\Users\Matt\OneDrive\FarmProject\Kankakee_Parcels
\K3_TaxParcels.shp', 'Kankakee', 'ogr')
print(layer.attributeList())
if not layer.isValid():
print('Failed to open the layer')

# add layer to the registry
add_layers = QgsProject.instance().addMapLayer(layer)

# set extent to the extent of our layer
canvas.setExtent(layer.extent())

# set the map canvas layer set
canvas.setLayers([add_layers])
canvas.refresh()
time.sleep(30)


# When your script is complete, call exitQgis() to remove the provider and
# layer registries from memory
qgs.exitQgis()
___
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] Errore al caricare il file di progetto

2019-01-11 Thread skampus
https://gis.stackexchange.com/questions/293849/is-there-any-way-to-recover-data-when-a-qgz-file-will-not-open



--
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


[QGIS-it-user] Requisiti dispositivo per QField?

2019-01-11 Thread alper78
Ciao,
probabilmente quest'anno andrò in giro per monti a fare rilevamenti e mi
piacerebbe provare QField; visto che è stato detto di usare questa lista
anche per QField ne approfitterò per fare un po' di domande.
I primi dubbi sono sul dispositivo da usare. Al momento non dispongo di
smartphone o tablet e vorrei prenderne uno da usare proprio per fare
rilevamento. Ci sono requisiti hardware per l'uso di QField? caratteristiche
consigliate o caratteristiche da evitare?
Credo sia improbabile ma magari qualcuno l'ha già provato sui recenti
smartphone che ricevono GPS e Galileo in doppia frequenza? pensate che il
miglioramento di precisione promesso sia reale?

Grazie,
Alessandro

PS: sui motori di ricerca mi viene indicata questa pagina:
https://new.opengis.ch/android-gis/qfield/supported-devices/ ma non riesco
ad accedere (mi dice "Forbidden")




-
Alessandro Perego
http://www.alspergis.altervista.org
--
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] Errore al caricare il file di progetto

2019-01-11 Thread Luca Bellani
Grazie a tutti per la disponibilitpa, ma purtroppo non ha funzionato. Era la
prima cosa che avevo fatto quella di prendere il file con il tilde, ma sin
da subito qualcosa andó storto. alla prima apertura erronea, lo stesso QGIS
mi chiese di usare il file di backup, ma al dare SI uscí lo stesso errore.
Oltretutto, i 2 file originale e con tilde, se si aprono con un blocnote,
sono vuoti.
Quello che proprio non capisco é cosa sia successo, dato che ricordo
benissimo aver salvato prima di uscire dall'ufficio e lasciare il pc acceso.
Grazie comunque!




--
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] Errore al caricare il file di progetto

2019-01-11 Thread Martina Savarese
Stavo notando la stessa cosa. Onestamente io ricordavo di aver letto da
qualche parte (ma non ricordo dove nè sono certa si trattasse proprio di
Qgis) che era stato introdotto l'autosave.
Martina

Il giorno Ven 11 Gen 2019 15:57 Totò  ha scritto:

> Ciao a tutti,
> approfitto per chiedere perché non esiste il file di backup per il nuovo
> formato .qgz;
> ormai dalla 3.2 QGIS salva by default in *.qgz
>
> cosa mi è sfuggito??
>
> 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
>

Il 11/Gen/2019 15:57, "Totò"  ha scritto:

Ciao a tutti,
approfitto per chiedere perché non esiste il file di backup per il nuovo
formato .qgz;
ormai dalla 3.2 QGIS salva by default in *.qgz

cosa mi è sfuggito??

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
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Errore al caricare il file di progetto

2019-01-11 Thread Totò
Ciao a tutti,
approfitto per chiedere perché non esiste il file di backup per il nuovo
formato .qgz;
ormai dalla 3.2 QGIS salva by default in *.qgz

cosa mi è sfuggito??

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-user] [Qgis-community-team] training manual QGIS 3

2019-01-11 Thread Janneke van Dijk

Hi Harrissou and others,

With your steps described below it was perfectly clear what I had to do, 
no confusion in my mind whatsoever. So I just tried to compare it to the 
documentation (link: 
https://docs.qgis.org/testing/en/docs/documentation_guidelines/first_contribution.html#share-your-changes-via-pull-request) 
 
and will try to describe what according to me was not clear in the 
documentation.


In the documentation, I had arrived at step 1, second bullet point, 
where it says "you therefore need to leave that page and follow the next 
step". Then, moving to the next step (2) it says "you can create a new 
pull request at any moment from many pages" - which "tricked" me into 
pressing the button "new pull request" from my own page - and I think 
the compare across forks option is either not there, or maybe it is not 
so obvious, and the "if needed" addition made it sound it might not be 
that important to click the compare across forks. Once you do click 
"compare across forks" it is more clear that what I thought was the 
actual "master" was just my own master, not qgis master.


For me, as a complete beginner, I would prefer the method you describe 
below (1. 2. 3. off you go) if it is a fool-proof way of creating your 
pull request. I do not necessarily need to know about all the other 
ways. Would it be possible/make sense to maybe have a simple workflow 
that always works (even if it is not the most efficient one) and 
separately discuss alternative methods?


I'll come back to the fix me button in another mail.

Janneke

On 09/01/2019 21:01, DelazJ wrote:

Hi Janneke,

I guess you are talking about 
https://github.com/janneke-qgis/QGIS-Documentation/pull/1 which is 
unfortunately a pull-request against your own branch and not the 
upstream one. This is a trap we all fall in at the beginning and 
mentioned at 
https://docs.qgis.org/testing/en/docs/documentation_guidelines/first_contribution.html#share-your-changes-via-pull-request


What you have to do is also explained in the page I linked above (if 
ever not clear, let us know, we'll try to improve it) but in short:

1. Go to https://github.com/qgis/QGIS-Documentation/pulls
2. Press "New pull request"
3. Click "Compare accross forks" and select your repo in the head fork 
drop down menu and then the your branch (janneke-qgis-patch-1 in this 
case)

4. Press "Create pull request"
5. And you are done!

H.

Le mer. 9 janv. 2019 à 18:46, Janneke van Dijk > a écrit :


Hi Alexandre and Harrissou (and others),

I'm trying to feel my way through the contribution thing and
github by starting with some small remarks/changes I suggested
myself. I think I have just made an edit and created a pull 
request - it tells me 'This branch has no conflicts with the base
branch'. Not sure how to proceed from here. Is this enough from my
side?

Thanks for some guidance
Janneke



On 07/01/2019 23:27, Alexandre Neto wrote:


Screenshots shouldn't be a blocker, you can take screenshots
using windows. Then, if we have time, we can replace windows
screenshots later.


A seg, 7/01/2019, 18:17, Janneke van Dijk mailto:janneke.q...@gmail.com>> escreveu:

Yes, I would be up for learning how to do it. I remember once
upon a time trying to get started and somehow getting
stranded before I got anywhere. Partly because I couldn't get
linux to work on VM on my laptop so I couldn't do the screen
shots.

On 07/01/2019 17:39, Alexandre Neto wrote:


Some of those changes are quite small. Would you be
interested in learning how to fix it yourself?

A seg, 7/01/2019, 14:37, Alexandre Neto
mailto:senhor.n...@gmail.com>> escreveu:



Actually, someone already did it. Thanks!!

A seg, 7/01/2019, 14:37, Alexandre Neto
mailto:senhor.n...@gmail.com>>
escreveu:

I can do it.

A seg, 7/01/2019, 13:43, Janneke van Dijk
mailto:janneke.q...@gmail.com>> escreveu:

I've registered all that I've noticed, I just
didn't manage to tag them with training manual.
Should I do that or is that someone else who
adds the labels?
Janneke

On 07/01/2019 00:42, Alexandre Neto wrote:

Better duplicated issues than missing ones . So
please report whatever you feel that is a bug,
or a possible improvement. That way we won't
forget.

Thanks!


A dom, 6/01/2019, 10:07, Janneke van Dijk
mailto:janneke.q...@gmail.com>> escreveu:

Hi Harrissou,


Re: [Qgis-user] Fehler bei Flächenberechnung unter Qgis 3.4.3

2019-01-11 Thread Andreas Neumann

Hallo Andreas,

Verwende mal area($geometry) statt $area. Ersteres ist die 
planimetrische Fläche, zweiteres die ellipsoidische.


Aus der Hilfe von area($gemetry):

Returns the area of a geometry polygon object. Calculations are always 
planimetric in the Spatial Reference System (SRS) of this geometry, and 
the units of the returned area will match the units for the SRS. This 
differs from the calculations performed by the $area function, which 
will perform ellipsoidal calculations based on the project's ellipsoid 
and area unit settings.


Grüsse,

Andreas

Am 11.01.19 um 14:28 schrieb Andreas Sauter:

Hallo Zusammen,

weiß jemand woran es liegt, wenn im neuen QGIS 3.4.3 die Flächengrößen 
falsch berechnet werden (Fieldcalculator --> Geometrie --> $area)?


Bei der Berechnung der Flächengrößen des SELBEN Shapes mit der QGIS 
Version 2.18 kommen die richtigen Werte raus...


Viele Grüße
Andreas

___
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] Fehler bei Flächenberechnung unter Qgis 3.4.3

2019-01-11 Thread Andreas Sauter

Hallo Zusammen,

weiß jemand woran es liegt, wenn im neuen QGIS 3.4.3 die Flächengrößen 
falsch berechnet werden (Fieldcalculator --> Geometrie --> $area)?


Bei der Berechnung der Flächengrößen des SELBEN Shapes mit der QGIS 
Version 2.18 kommen die richtigen Werte raus...


Viele Grüße
Andreas

___
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] Errore al caricare il file di progetto

2019-01-11 Thread Sergio Gollino
Non credo si possa, il file di backup viene rigenerato ad ogni salvataggio
normale (se non salvi il progetto non ti crea nessun backup). Esiste un
plugin comunque che permette di impostare una temporizzazione per i
salvattaggi. si chiama autoSaver se non ricordo male.


Il giorno ven 11 gen 2019 alle ore 12:56 Martina Savarese <
martina.savar...@gmail.com> ha scritto:

> A proposito, qualcuno sa dirmi da dove impostare l'intervallo di
> salvataggio automatico del file di backup?
> Martina
>
> Il giorno Ven 11 Gen 2019 11:07 Marco Spaziani 
> ha scritto:
>
>> Mi è capitata più o meno la stessa cosa anni fa. Ho fatto come suggerito
>> da Gollino e ho risolto. Vai tranquillo, leva la tilde e riaprilo come un
>> normale file di progetto *.qgs.
>>
>> Il giorno ven 11 gen 2019 alle ore 09:20 Sergio Gollino <
>> gollinoser...@gmail.com> ha scritto:
>>
>>> Ciao Luca,
>>> probabilmente il file .qgs non è stato chiuso correttamente per via del
>>> crash. L'unica cosa che puoi fare è utilizzare il filetto di backup che
>>> qgis crea in automatico ossia il nomeprogetto..qgs~
>>> Cancella la tilde nell'estensione e riaprilo. è il tuo progetto
>>> all'ultimo salvataggio.
>>>
>>> saluti
>>>
>>>
>>> Il giorno gio 10 gen 2019 alle ore 18:44 Luca Bellani <
>>> lucabellani.arqueolo...@gmail.com> ha scritto:
>>>
 Ho un grosso problema: ho lasciato il pc con windows 10 acceso per
 circa 3
 ore senza usarlo, con il progetto QGIS 2.18.26 aperto.l
 Quando sono tornato al pc lo schermo era nero e, non riuscendo a
 dialogare
 con il pc, l'ho riavviato. Ora, il progetto non ri apre piú, e si
 presenta
 un errore. mi da opzione di caricare il file "copia" ma l'errore
 persiste.
 Ho provato anche co QGIS 3.4 ma nulla.
 Ci puó essere una forma di oter recuperare il progetto? Mai successo in
 vari
 anni di utilizzo..
 Grazie a tutti

 



 --
 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

>>>
>>>
>>> --
>>> Sergio Gollino
>>>
>>> Questo messaggio, comprensivo di eventuali allegati, è ad uso esclusivo
>>> del destinatario e potrebbe contenere  informazioni riservate; se è stato
>>> recapitato per errore ci scusiamo per l'accaduto e Vi invitiamo
>>> cortesemente a darcene notizia provvedendo alla sua distruzione.
>>> Vi ricordiamo che la diffusione, l'utilizzo e/o la conservazione dei
>>> dati ricevuti per errore costituiscono violazione alle disposizioni del
>>> D.Lgs. n. 196/2003 "Codice in materia di protezione dei dati personali".
>>> ___
>>> 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
>


-- 
Sergio Gollino

Questo messaggio, comprensivo di eventuali allegati, è ad uso esclusivo del
destinatario e potrebbe contenere  informazioni riservate; se è stato
recapitato per errore ci scusiamo per l'accaduto e Vi invitiamo
cortesemente a darcene notizia provvedendo alla sua distruzione.
Vi ricordiamo che la diffusione, l'utilizzo e/o la conservazione dei dati
ricevuti per errore costituiscono violazione alle disposizioni del D.Lgs.
n. 196/2003 "Codice in materia di protezione dei dati personali".
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Errore al caricare il file di progetto

2019-01-11 Thread Martina Savarese
A proposito, qualcuno sa dirmi da dove impostare l'intervallo di
salvataggio automatico del file di backup?
Martina

Il giorno Ven 11 Gen 2019 11:07 Marco Spaziani 
ha scritto:

> Mi è capitata più o meno la stessa cosa anni fa. Ho fatto come suggerito
> da Gollino e ho risolto. Vai tranquillo, leva la tilde e riaprilo come un
> normale file di progetto *.qgs.
>
> Il giorno ven 11 gen 2019 alle ore 09:20 Sergio Gollino <
> gollinoser...@gmail.com> ha scritto:
>
>> Ciao Luca,
>> probabilmente il file .qgs non è stato chiuso correttamente per via del
>> crash. L'unica cosa che puoi fare è utilizzare il filetto di backup che
>> qgis crea in automatico ossia il nomeprogetto..qgs~
>> Cancella la tilde nell'estensione e riaprilo. è il tuo progetto
>> all'ultimo salvataggio.
>>
>> saluti
>>
>>
>> Il giorno gio 10 gen 2019 alle ore 18:44 Luca Bellani <
>> lucabellani.arqueolo...@gmail.com> ha scritto:
>>
>>> Ho un grosso problema: ho lasciato il pc con windows 10 acceso per circa
>>> 3
>>> ore senza usarlo, con il progetto QGIS 2.18.26 aperto.l
>>> Quando sono tornato al pc lo schermo era nero e, non riuscendo a
>>> dialogare
>>> con il pc, l'ho riavviato. Ora, il progetto non ri apre piú, e si
>>> presenta
>>> un errore. mi da opzione di caricare il file "copia" ma l'errore
>>> persiste.
>>> Ho provato anche co QGIS 3.4 ma nulla.
>>> Ci puó essere una forma di oter recuperare il progetto? Mai successo in
>>> vari
>>> anni di utilizzo..
>>> Grazie a tutti
>>>
>>> 
>>>
>>>
>>>
>>> --
>>> 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
>>>
>>
>>
>> --
>> Sergio Gollino
>>
>> Questo messaggio, comprensivo di eventuali allegati, è ad uso esclusivo
>> del destinatario e potrebbe contenere  informazioni riservate; se è stato
>> recapitato per errore ci scusiamo per l'accaduto e Vi invitiamo
>> cortesemente a darcene notizia provvedendo alla sua distruzione.
>> Vi ricordiamo che la diffusione, l'utilizzo e/o la conservazione dei dati
>> ricevuti per errore costituiscono violazione alle disposizioni del D.Lgs.
>> n. 196/2003 "Codice in materia di protezione dei dati personali".
>> ___
>> 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


Re: [Qgis-user] QGIS 3.4.3 becoming unusable for me on Windows 10

2019-01-11 Thread Michel Stuyts
You can use the Python variable qgis.utils.plugin_times to find out how long 
each plugin takes to load at startup of QGIS. For end users I created a plugin 
that shows the information of that Python variable with a pie chart and a list 
of all plugins.  This plugin is called "Plugin Load Times" and it can be found 
in the QGIS Plugin Repository 
(https://plugins.qgis.org/plugins/PluginLoadTimes/), so you can install it from 
within QGIS. It works in QGIS 2.x and 3.x.

With the information from this plugin you can see which of the installed 
plugins takes a long time to load at startup. If those are plugins you don't 
use every day, you can disable them and only enable them when you occasionally 
use them.  On my computer I have many plugins installed, but only a few are 
enabled.  It makes a big difference.

Michel

-Oorspronkelijk bericht-
Van: Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] Namens David Addy
Verzonden: woensdag 9 januari 2019 17:21
Aan: qgis-user@lists.osgeo.org
Onderwerp: Re: [Qgis-user] QGIS 3.4.3 becoming unusable for me on Windows 10

Thanks for the advice fellas.
Unfortunately being an end user, I never usually delve into the guts of QGIS.
Advice received is : "Can you try to start QGIS with the following options: 

qgis --noversioncheck --noplugins --hide-browser "

I have discovered the option to 'Check version no on startup' and unchecked it.
But how do I stop all the plug ins from Loading? I cannot find any 'disable all 
plugins' button.
Neither can I see how to hide the browser.
Any advice on where to find these options would be welcome.
Sorry if this is very basic stuff but I have never had to worry about these 
options in versions of 3.4.0 and earlier.




--
Sent from: http://osgeo-org.1560.x6.nabble.com/QGIS-User-f4125267.html
___
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-it-user] Errore al caricare il file di progetto

2019-01-11 Thread Marco Spaziani
Mi è capitata più o meno la stessa cosa anni fa. Ho fatto come suggerito da
Gollino e ho risolto. Vai tranquillo, leva la tilde e riaprilo come un
normale file di progetto *.qgs.

Il giorno ven 11 gen 2019 alle ore 09:20 Sergio Gollino <
gollinoser...@gmail.com> ha scritto:

> Ciao Luca,
> probabilmente il file .qgs non è stato chiuso correttamente per via del
> crash. L'unica cosa che puoi fare è utilizzare il filetto di backup che
> qgis crea in automatico ossia il nomeprogetto..qgs~
> Cancella la tilde nell'estensione e riaprilo. è il tuo progetto all'ultimo
> salvataggio.
>
> saluti
>
>
> Il giorno gio 10 gen 2019 alle ore 18:44 Luca Bellani <
> lucabellani.arqueolo...@gmail.com> ha scritto:
>
>> Ho un grosso problema: ho lasciato il pc con windows 10 acceso per circa 3
>> ore senza usarlo, con il progetto QGIS 2.18.26 aperto.l
>> Quando sono tornato al pc lo schermo era nero e, non riuscendo a dialogare
>> con il pc, l'ho riavviato. Ora, il progetto non ri apre piú, e si presenta
>> un errore. mi da opzione di caricare il file "copia" ma l'errore persiste.
>> Ho provato anche co QGIS 3.4 ma nulla.
>> Ci puó essere una forma di oter recuperare il progetto? Mai successo in
>> vari
>> anni di utilizzo..
>> Grazie a tutti
>>
>> 
>>
>>
>>
>> --
>> 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
>>
>
>
> --
> Sergio Gollino
>
> Questo messaggio, comprensivo di eventuali allegati, è ad uso esclusivo
> del destinatario e potrebbe contenere  informazioni riservate; se è stato
> recapitato per errore ci scusiamo per l'accaduto e Vi invitiamo
> cortesemente a darcene notizia provvedendo alla sua distruzione.
> Vi ricordiamo che la diffusione, l'utilizzo e/o la conservazione dei dati
> ricevuti per errore costituiscono violazione alle disposizioni del D.Lgs.
> n. 196/2003 "Codice in materia di protezione dei dati personali".
> ___
> 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] Different behaviour Raster Calculater under Raster menu vs Processing Toolbox

2019-01-11 Thread Janneke van Dijk

Dear all,

I'm testing the training manual (QGIS 3) and think I ran into a bug - 
unless I am misunderstanding something. I am doing the following, QGIS 
3.4.3 on Windows:


1. Processing>Raster terrain analysis>Aspect: use the 
exercise_data\raster\SRTM\srtm_41_19.tif DEM as an input and use the 
default settings (data from 
https://github.com/qgis/QGIS-Training-Data/archive/v2.0.zip)


2. Processing>Raster analysis>Raster calculator: "Aspect@1" <= 90 OR 
"Aspect@1">= 270 as expression, use the DEM layer for extents.


3. The resulting output gets created, but the information from provider 
shows "STATISTICS_VALID_PERCENT=0" and it does not have min and max values


I have tried using a more simple expression like  "Aspect@1" > 90 with 
the same result. Copying and pasting the expression in the Raster 
calculator under the menu Raster works as expected (values of 0 and 1). 
Using the Raster Calculator under Processing with another input layer 
and similar expression worked.


So it seems that "something" when the aspect raster is created causes it 
"not to work" with the raster calculator under processing, while it 
still works with the RC under Raster.


Can anyone confirm this is a bug?

Thanks,

Janneke

___
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] Project files with local and remote connections to postgreSQL databases

2019-01-11 Thread Andreas Neumann

Hi,

Yes - it is a perfect case for PostgreSQL service definitions.

See 
https://docs.qgis.org/testing/en/docs/user_manual/managing_data_source/opening_data.html#postgresql-service-connection-file


This way you are flexible: you don't connect to a 
hostname/ip/port/database connection but to a service definition - which 
can be managed centrally without having to change the data sources in QGIS.


On different computers and users you can have different service 
defitions (pg_service.conf files) - on one machine pointing to 
"localhost", on another to a "remote host".


That way you can also easily migrate your PostgreSQL server to a 
different hostname or IP without having to change hundreds of QGIS 
projects that point to a fixed hostname.


It is good practice to use PostgreSQL service definitions anyway.

On windows, make sure you use Unix line ending in your service defintion 
file, or you may get troubles using it.


Greetings,

Andreas

Am 11.01.19 um 08:00 schrieb Paolo Cavallini:

Use pg_services.

Il 11 gennaio 2019 01:54:24 CET, Brent Wood  ha 
scritto:


This is not tested, but I think it should work

Enable host based access for local connections via the server IP
address in your pg_hba file and use this for all QGIS access, so
you apply the same access approach for both local & remote
connections.


Cheers

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
Laurence Béchet 
Sent: Friday, January 11, 2019 13:04
To: qgis-user@lists.osgeo.org
Subject: [Qgis-user] Project files with local and remote
connections to postgreSQL databases

Hi,

I am having a basic problem with my project files. I usually run qgis
locally, where the PostgreSQL database is. However, sometimes I
need to
have these same projects run on a remote computer (where a version a
qGIS is locally installed, but the connection to the database is
remote). And then the project file 'doesn't work' because the expected
connection to the database is locally not remotely, and I have not
figured out how to modify this parameter when the project is loaded in
qGIS. My current work around is to create a specific project for the
remote computer.

However this solution is annoying when you have plenty of
composers that
you lose in the process ... and playing directly in the xml
project file
is a bit scary ...
Anybody would have an idea how to fix the problem?

Kind regards
Laurence Béchet
ARK IN THE PARK Volunteer Co-Ordinator
Cascades Ranger Station
Falls Road, Waitakere
Phone:  (09) 810 7014

www.arkinthepark.org.nz www.forestandbird.org.nz




___
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




--
Sorry for being short

___
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-it-user] Errore al caricare il file di progetto

2019-01-11 Thread Sergio Gollino
Ciao Luca,
probabilmente il file .qgs non è stato chiuso correttamente per via del
crash. L'unica cosa che puoi fare è utilizzare il filetto di backup che
qgis crea in automatico ossia il nomeprogetto..qgs~
Cancella la tilde nell'estensione e riaprilo. è il tuo progetto all'ultimo
salvataggio.

saluti


Il giorno gio 10 gen 2019 alle ore 18:44 Luca Bellani <
lucabellani.arqueolo...@gmail.com> ha scritto:

> Ho un grosso problema: ho lasciato il pc con windows 10 acceso per circa 3
> ore senza usarlo, con il progetto QGIS 2.18.26 aperto.l
> Quando sono tornato al pc lo schermo era nero e, non riuscendo a dialogare
> con il pc, l'ho riavviato. Ora, il progetto non ri apre piú, e si presenta
> un errore. mi da opzione di caricare il file "copia" ma l'errore persiste.
> Ho provato anche co QGIS 3.4 ma nulla.
> Ci puó essere una forma di oter recuperare il progetto? Mai successo in
> vari
> anni di utilizzo..
> Grazie a tutti
>
> 
>
>
>
> --
> 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
>


-- 
Sergio Gollino

Questo messaggio, comprensivo di eventuali allegati, è ad uso esclusivo del
destinatario e potrebbe contenere  informazioni riservate; se è stato
recapitato per errore ci scusiamo per l'accaduto e Vi invitiamo
cortesemente a darcene notizia provvedendo alla sua distruzione.
Vi ricordiamo che la diffusione, l'utilizzo e/o la conservazione dei dati
ricevuti per errore costituiscono violazione alle disposizioni del D.Lgs.
n. 196/2003 "Codice in materia di protezione dei dati personali".
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user