[Qgis-user] 'Keep unavailable layer' at qgis start makes it crash

2019-04-29 Thread Laurence Béchet

Hi everyone,

I'm trying to open a project which refers to a former layer stored in 
postgresql which is not more in the database. I get asked if I want to 
keep the unavailable layer. If I agree to keep it (I'd like to keep the 
name of the missing layers before I call the replacing ones), qGIS crashes.
Easy workaround: do not keep the layer at startup. However it would be 
neat that the option 'keep' works ...

Is it a known issue?

Windows 8 64 bits
qgis 3.6.2 QGIS code revision 656500e0c4

Regards
Laurence
ARK IN THE PARK Volunteer Co-Ordinator
Cascades Ranger Station
Falls Road, Waitakere
___
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] DB Manager:"Load as new layer" query from point data returns invisible poylgon layer

2019-04-29 Thread Bernd Vogelgesang

Hi,

it seems that my project was somehow broken. After a while zooming out
froze the application. After setting up everything from zero, the "Load
as new layer" button works as expected. Great!

Big "but": When such a layer (is it a virtual layer?) is present in the
project, I can't edit the underlying GeoPackage anymore. Trying to add
an entry to a table (which of course will change the query result of the
new layer), an error is thrown that the database is locked. Afterwards
all layers from the geopackage even disappear from thecanvas and I can't
even reconnect to the database in DB Manager, so I have to restart QGIS.

Removing this virtual layer from the project enables editing of the
tables again.

This is somehow unpleasant, cause I thought that I finally found a way
to easily indicate the points I still have to work on through a query,
but it seems that visualizing and editing the source at the same time is
not possible :(

With sad greetings,,

Bernd

Am 29.04.19 um 15:27 schrieb Bernd Vogelgesang:


Hi Alessandro,

forgot to mention that I'm on 3.6.2 on Linux Mint. At the moment I
have no running instance of master, so I can't check if it is resolved
there.

Added sth to https://issues.qgis.org/issues/21675

Cheers,

Bernd

Am 29.04.19 um 14:11 schrieb Alessandro Pasotti:


On Mon, Apr 29, 2019 at 2:00 PM Bernd Vogelgesang
mailto:bernd.vogelges...@gmx.de>> wrote:

Hi,

maybe I miss something obvious, but I can't manage to produce a new
point layer from a query in the DB Manager from a point dataset
(First
time going this route, and very old sql-knowledge only).

The query runs fine, I see the results, but when I hit the "Load
as new
layer"-button, it adds a new polygon-layer name"QueryLayer" and of
course nothing is visible.

When I create a new virtual layer and paste my query there, it
works and
adds a new point layer from my query.

But it seems a bit strange that I have to produce a query, and
then copy
it to another section while there is a "load as new layer"-button
available.

Any hints?


Several issues like this have been fixed in the past, please check
newest releases and if that does not work please file a ticket
(attaching test project & data plus the failing queries).

Kind regards.

--
Alessandro Pasotti
w3: www.itopen.it 


___
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] Shapefile m node values

2019-04-29 Thread Nicolas Cadieux
Hi,

Is the Shapefile format able to deal with m values AND z values for the nodes 
or just one or the other!  Can I use an m value to identify the first and last 
nodes of a line? I would like to be able to identify when two connecting lines 
are digitize in opposing directions.
Thanks

Nicolas
___
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] Esportazione tabella attributi personalizzata

2019-04-29 Thread Alessandro Perego
Devo però avvisare che questo script funziona per mantenere l'ordine ed 
i nome dei campi come visualizzati in tabella attributi, mentre per 
quanto riguarda i valori li esporta come salvati e non come visualizzati 
(le due cose possono essere diverse ad esempio nel caso di mappe 
valori). Purtroppo sono solo un dilettante con python, chi lo sa usare 
bene può fare sicuramente di meglio.


Comunque partendo dal suggerimento di Rossella mi è venuto in mente che 
forse è possibile usare il riorganizzatore campi all'interno del 
modellizzatore grafico per impostare trasformazioni fisse, utile se 
bisogna esportare varie volte la tabella di uno stesso layer.


Il 29/04/2019 21:50, Marco Spaziani ha scritto:

Grazie anche da parte mia.

Il giorno lun 29 apr 2019 alle ore 20:45 Alessandro Perego 
mailto:alspe...@gmail.com>> ha scritto:


Grazie per aver risposto,
purtroppo ho un layer con circa 70 campi di cui 30 da esportare
(ma è probabile che debba aggiungerne altri) e dover fare la
riorganizzazione campi (cambiando l'ordine ed i nomi) ogni volta
che devo esportare la tabella diventa un lavoraccio.
Per ora mi sono fatto uno script da copiare nella console python
che sembra fare il lavoro.
Se a qualcuno può servire lo script è questo:

#
#   Questo script consente di esportare la tabella attributi
personalizzata del layer attivo
#   in un file formato testo con valori delimitati da tabulazione
#
from qgis.core import *
from qgis.utils import iface
from datetime import datetime
layer = iface.activeLayer()
timeNow = datetime.now().strftime('%Y%m%d-%H%M%S')
output = QgsProject.instance().readPath("./") + '/' + layer.name
() + '_table_' + timeNow + '.txt'
new = open(output,'w')
fieldList = []
fieldIdList = []
ATfields = layer.fields()
ATconfig = layer.attributeTableConfig()
ATcolumns = ATconfig.columns()
if len( ATcolumns ) > 0:
    #
    # riga di intestazione
    for ATcolumn in ATcolumns:
        if ATcolumn.hidden == 0:
            fieldName = ATcolumn.name
            fieldID = ATfields.indexFromName(ATcolumn.name)
            fieldIdList.append( fieldID )
            displayName = layer.attributeDisplayName( fieldID )
            fieldList.append( displayName )
    headRow = '\t'.join( map( str, fieldList ) )
    write = new.write( headRow )
    #
    # righe degli attributi
    count = 0
    for feature in layer.getFeatures():
        attribList = []
        for Id in fieldIdList:
            attribList.append( feature[Id] )
        featRow = '\t'.join( map( str, attribList ) )
        write = new.write( '\n' + featRow )
        count = count + 1
    #
    new.close()
    print( 'Operazione completata' )
    print( 'File creato:', output )
    print( 'numero di record:', count )
    print( 'numero di colonne:', len( fieldIdList ) )


Il 29/04/2019 20:07, Rossella Di Bari ha scritto:

Ciao Alessandro,
non conosco un modo diretto per esportare in foglio di calcolo la
tabella attributi come visualizzata, mi spiace...
Conosco invece il Riorganizzatore Campi, che peschi tra gli
strumenti di geoprocessing, e che ti crea un nuovo vettore,
riorganizzando le colonne e ridigitando gli alias che avevi già
dato. Le colonne nascoste precedentemente andrebbero eliminate.
Alla fine della riorganizzazione dei campi viene rigenerato un
nuovo vettore, anche temporaneo, che salvi come foglio di calcolo.
Spero di esserti stata utile (o forse no perchè mi sa che sei più
navigato di me con Qgis ;) )

Saluti a tutti



Mail priva di virus. www.avast.com





Il giorno gio 25 apr 2019 alle ore 20:59 alper78
mailto:alspe...@gmail.com>> ha scritto:

Ciao,
sapete dirmi se c'è modo di esportare la tabella attributi di
un layer
vettoriale mantenendo le caratteristiche con cui viene
visualizzata (cioè
con i nomi alias, con l'ordine impostato in "Organizza
Colonne" ed
escludendo le colonne nascoste)?
Se copio le righe selezionate per poi incollarle in un file
di testo o in un
foglio di calcolo mi perde gli alias e l'ordine
personalizzato delle
colonne.

Grazie




-
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


Re: [QGIS-it-user] Esportazione tabella attributi personalizzata

2019-04-29 Thread Martina Savarese
Grazie per la condivisione dello script, anche commentato!
Martina

Il Lun 29 Apr 2019 20:45 Alessandro Perego  ha scritto:

> Grazie per aver risposto,
> purtroppo ho un layer con circa 70 campi di cui 30 da esportare (ma è
> probabile che debba aggiungerne altri) e dover fare la riorganizzazione
> campi (cambiando l'ordine ed i nomi) ogni volta che devo esportare la
> tabella diventa un lavoraccio.
> Per ora mi sono fatto uno script da copiare nella console python che
> sembra fare il lavoro.
> Se a qualcuno può servire lo script è questo:
>
> #
> #   Questo script consente di esportare la tabella attributi
> personalizzata del layer attivo
> #   in un file formato testo con valori delimitati da tabulazione
> #
> from qgis.core import *
> from qgis.utils import iface
> from datetime import datetime
> layer = iface.activeLayer()
> timeNow = datetime.now().strftime('%Y%m%d-%H%M%S')
> output = QgsProject.instance().readPath("./") + '/' + layer.name() +
> '_table_' + timeNow + '.txt'
> new = open(output,'w')
> fieldList = []
> fieldIdList = []
> ATfields = layer.fields()
> ATconfig = layer.attributeTableConfig()
> ATcolumns = ATconfig.columns()
> if len( ATcolumns ) > 0:
> #
> # riga di intestazione
> for ATcolumn in ATcolumns:
> if ATcolumn.hidden == 0:
> fieldName = ATcolumn.name
> fieldID = ATfields.indexFromName(ATcolumn.name)
> fieldIdList.append( fieldID )
> displayName = layer.attributeDisplayName( fieldID )
> fieldList.append( displayName )
> headRow = '\t'.join( map( str, fieldList ) )
> write = new.write( headRow )
> #
> # righe degli attributi
> count = 0
> for feature in layer.getFeatures():
> attribList = []
> for Id in fieldIdList:
> attribList.append( feature[Id] )
> featRow = '\t'.join( map( str, attribList ) )
> write = new.write( '\n' + featRow )
> count = count + 1
> #
> new.close()
> print( 'Operazione completata' )
> print( 'File creato:', output )
> print( 'numero di record:', count )
> print( 'numero di colonne:', len( fieldIdList ) )
>
>
>
> Il 29/04/2019 20:07, Rossella Di Bari ha scritto:
>
> Ciao Alessandro,
> non conosco un modo diretto per esportare in foglio di calcolo la tabella
> attributi come visualizzata, mi spiace...
> Conosco invece il Riorganizzatore Campi, che peschi tra gli strumenti di
> geoprocessing, e che ti crea un nuovo vettore, riorganizzando le colonne e
> ridigitando gli alias che avevi già dato. Le colonne nascoste
> precedentemente andrebbero eliminate. Alla fine della riorganizzazione dei
> campi viene rigenerato un nuovo vettore, anche temporaneo, che salvi come
> foglio di calcolo.
> Spero di esserti stata utile (o forse no perchè mi sa che sei più navigato
> di me con Qgis ;) )
>
> Saluti a tutti
>
>
> 
>  Mail
> priva di virus. www.avast.com
> 
>
> Il giorno gio 25 apr 2019 alle ore 20:59 alper78  ha
> scritto:
>
>> Ciao,
>> sapete dirmi se c'è modo di esportare la tabella attributi di un layer
>> vettoriale mantenendo le caratteristiche con cui viene visualizzata (cioè
>> con i nomi alias, con l'ordine impostato in "Organizza Colonne" ed
>> escludendo le colonne nascoste)?
>> Se copio le righe selezionate per poi incollarle in un file di testo o in
>> un
>> foglio di calcolo mi perde gli alias e l'ordine personalizzato delle
>> colonne.
>>
>> Grazie
>>
>>
>>
>>
>> -
>> 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
>>
>
>
> --
>
> 
>
> ___
> QGIS-it-user mailing 
> listQGIS-it-user@lists.osgeo.orghttps://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-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [Qgis-user] finding the radius of a curve

2019-04-29 Thread Andreas Neumann

Hi again,

On that matter: If you can isolate only the arc-part of your geometry, 
you could that circular arc into the Postgis-function 
"ST_MinimumBoundingRadius()" to detect center-point and radius. See 
http://www.postgis.net/docs/manual-2.5/ST_MinimumBoundingRadius.html - 
maybe worth a try?


Sample query:

SELECT ST_AsText(center), radius
   FROM ST_MinimumBoundingRadius('CIRCULARSTRING(220268 150415,220227 
150505,220227 150406)');


RESULT:

"POINT(220237.62195122 150455.5)"    "50.6268293270462"

Greetings,

Andreas

Am 29.04.19 um 18:21 schrieb Cory Albrecht:
I tried saving a few layers that had arcs and circles (x,y, r coords), 
but QGIS converts each curve to a bunch of straight line segments 
instead of saving them as curves. :-(


On Mon, Apr 22, 2019 at 3:33 AM McDonaldR > wrote:


As your data is in PostGIS and assuming that they are arcs (curved
lines part of a circle) you could use some geometry and spatial
SQL functions to calculate the radius of any curve knowing the
coordinates of the end points of the curve.

To quote the pseudo code on the linked page:

“To calculate the radius of an arc, take the height -- "H" -- of
the arc and divide it by two. Call the result "C." Now take the
width -- "W" -- of the arc and square it by multiplying it by
itself. Call the result "D." Next multiply height, "H," by eight
and call this result "E." Divide "D" by "E" and call the result
"F." The radius of the arc is C plus F.”

https://sciencing.com/calculate-radius-curve-7804090.html

Could probably be wrapped in a function and run against any curve.

Ross

*From:*Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org
] *On Behalf Of *Cory
Albrecht
*Sent:* 19 April 2019 17:08
*To:* qgis-user@lists.osgeo.org 
*Subject:* Re: [Qgis-user] finding the radius of a curve

I'll give it a try. Thanks!

On Sun, Apr 14, 2019 at 7:52 AM Mike Flannigan mailto:mikef...@att.net>> wrote:


Draw a circle and measure the diameter/radius.

Maybe use this plugin to create a circle:
https://plugins.qgis.org/plugins/CADDigitize/


Mike


On 4/13/2019 2:00 PM, qgis-user-requ...@lists.osgeo.org
 wrote:
> Hello all,
>
> I'm looking for a way to find the radius of a curve (for
roads, railyways)
> in QGIS. If it were a paper map I could do it with a
drafting compass
> (calipers to some) and a ruler, but this is a PostGIS layer.
>
> Any plugin recommendations or links to a set of steps to
accomplish this?
> Thanks in advance!

This message is strictly confidential. If you have received this
in error, please inform the sender and remove it from your system.
If received in error you may not copy, print, forward or use it or
any attachment in any way. This message is not capable of creating
a legal contract or a binding representation and does not
represent the views of Angus Council. Emails may be monitored for
security and network management reasons.Messages containing
inappropriate content may be intercepted. Angus Council does not
accept any liability for any harm that may be caused to the
recipient system or data on it by this message or any attachment.


___
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] finding the radius of a curve

2019-04-29 Thread Andreas Neumann

Hi Cory,

Not if you use a file-format that supports arcs: Geopackage, Postgis, 
Interlines, GML. Maybe also FGDB (but not sure if OGR supports curves 
for that format).


Greetings,

Andreas

Am 29.04.19 um 18:21 schrieb Cory Albrecht:
I tried saving a few layers that had arcs and circles (x,y, r coords), 
but QGIS converts each curve to a bunch of straight line segments 
instead of saving them as curves. :-(


On Mon, Apr 22, 2019 at 3:33 AM McDonaldR > wrote:


As your data is in PostGIS and assuming that they are arcs (curved
lines part of a circle) you could use some geometry and spatial
SQL functions to calculate the radius of any curve knowing the
coordinates of the end points of the curve.

To quote the pseudo code on the linked page:

“To calculate the radius of an arc, take the height -- "H" -- of
the arc and divide it by two. Call the result "C." Now take the
width -- "W" -- of the arc and square it by multiplying it by
itself. Call the result "D." Next multiply height, "H," by eight
and call this result "E." Divide "D" by "E" and call the result
"F." The radius of the arc is C plus F.”

https://sciencing.com/calculate-radius-curve-7804090.html

Could probably be wrapped in a function and run against any curve.

Ross

*From:*Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org
] *On Behalf Of *Cory
Albrecht
*Sent:* 19 April 2019 17:08
*To:* qgis-user@lists.osgeo.org 
*Subject:* Re: [Qgis-user] finding the radius of a curve

I'll give it a try. Thanks!

On Sun, Apr 14, 2019 at 7:52 AM Mike Flannigan mailto:mikef...@att.net>> wrote:


Draw a circle and measure the diameter/radius.

Maybe use this plugin to create a circle:
https://plugins.qgis.org/plugins/CADDigitize/


Mike


On 4/13/2019 2:00 PM, qgis-user-requ...@lists.osgeo.org
 wrote:
> Hello all,
>
> I'm looking for a way to find the radius of a curve (for
roads, railyways)
> in QGIS. If it were a paper map I could do it with a
drafting compass
> (calipers to some) and a ruler, but this is a PostGIS layer.
>
> Any plugin recommendations or links to a set of steps to
accomplish this?
> Thanks in advance!

This message is strictly confidential. If you have received this
in error, please inform the sender and remove it from your system.
If received in error you may not copy, print, forward or use it or
any attachment in any way. This message is not capable of creating
a legal contract or a binding representation and does not
represent the views of Angus Council. Emails may be monitored for
security and network management reasons.Messages containing
inappropriate content may be intercepted. Angus Council does not
accept any liability for any harm that may be caused to the
recipient system or data on it by this message or any attachment.


___
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] Esportazione tabella attributi personalizzata

2019-04-29 Thread Alessandro Perego

Grazie per aver risposto,
purtroppo ho un layer con circa 70 campi di cui 30 da esportare (ma è 
probabile che debba aggiungerne altri) e dover fare la riorganizzazione 
campi (cambiando l'ordine ed i nomi) ogni volta che devo esportare la 
tabella diventa un lavoraccio.
Per ora mi sono fatto uno script da copiare nella console python che 
sembra fare il lavoro.

Se a qualcuno può servire lo script è questo:

#
#   Questo script consente di esportare la tabella attributi 
personalizzata del layer attivo

#   in un file formato testo con valori delimitati da tabulazione
#
from qgis.core import *
from qgis.utils import iface
from datetime import datetime
layer = iface.activeLayer()
timeNow = datetime.now().strftime('%Y%m%d-%H%M%S')
output = QgsProject.instance().readPath("./") + '/' + layer.name() + 
'_table_' + timeNow + '.txt'

new = open(output,'w')
fieldList = []
fieldIdList = []
ATfields = layer.fields()
ATconfig = layer.attributeTableConfig()
ATcolumns = ATconfig.columns()
if len( ATcolumns ) > 0:
    #
    # riga di intestazione
    for ATcolumn in ATcolumns:
        if ATcolumn.hidden == 0:
            fieldName = ATcolumn.name
            fieldID = ATfields.indexFromName(ATcolumn.name)
            fieldIdList.append( fieldID )
            displayName = layer.attributeDisplayName( fieldID )
            fieldList.append( displayName )
    headRow = '\t'.join( map( str, fieldList ) )
    write = new.write( headRow )
    #
    # righe degli attributi
    count = 0
    for feature in layer.getFeatures():
        attribList = []
        for Id in fieldIdList:
            attribList.append( feature[Id] )
        featRow = '\t'.join( map( str, attribList ) )
        write = new.write( '\n' + featRow )
        count = count + 1
    #
    new.close()
    print( 'Operazione completata' )
    print( 'File creato:', output )
    print( 'numero di record:', count )
    print( 'numero di colonne:', len( fieldIdList ) )


Il 29/04/2019 20:07, Rossella Di Bari ha scritto:

Ciao Alessandro,
non conosco un modo diretto per esportare in foglio di calcolo la 
tabella attributi come visualizzata, mi spiace...
Conosco invece il Riorganizzatore Campi, che peschi tra gli strumenti 
di geoprocessing, e che ti crea un nuovo vettore, riorganizzando le 
colonne e ridigitando gli alias che avevi già dato. Le colonne 
nascoste precedentemente andrebbero eliminate. Alla fine della 
riorganizzazione dei campi viene rigenerato un nuovo vettore, anche 
temporaneo, che salvi come foglio di calcolo.
Spero di esserti stata utile (o forse no perchè mi sa che sei più 
navigato di me con Qgis ;) )


Saluti a tutti

 
	Mail priva di virus. www.avast.com 
 




Il giorno gio 25 apr 2019 alle ore 20:59 alper78 > ha scritto:


Ciao,
sapete dirmi se c'è modo di esportare la tabella attributi di un layer
vettoriale mantenendo le caratteristiche con cui viene
visualizzata (cioè
con i nomi alias, con l'ordine impostato in "Organizza Colonne" ed
escludendo le colonne nascoste)?
Se copio le righe selezionate per poi incollarle in un file di
testo o in un
foglio di calcolo mi perde gli alias e l'ordine personalizzato delle
colonne.

Grazie




-
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



--


___
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


Re: [QGIS-it-user] Esportazione tabella attributi personalizzata

2019-04-29 Thread Rossella Di Bari
Ciao Alessandro,
non conosco un modo diretto per esportare in foglio di calcolo la tabella
attributi come visualizzata, mi spiace...
Conosco invece il Riorganizzatore Campi, che peschi tra gli strumenti di
geoprocessing, e che ti crea un nuovo vettore, riorganizzando le colonne e
ridigitando gli alias che avevi già dato. Le colonne nascoste
precedentemente andrebbero eliminate. Alla fine della riorganizzazione dei
campi viene rigenerato un nuovo vettore, anche temporaneo, che salvi come
foglio di calcolo.
Spero di esserti stata utile (o forse no perchè mi sa che sei più navigato
di me con Qgis ;) )

Saluti a tutti


Mail
priva di virus. www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

Il giorno gio 25 apr 2019 alle ore 20:59 alper78  ha
scritto:

> Ciao,
> sapete dirmi se c'è modo di esportare la tabella attributi di un layer
> vettoriale mantenendo le caratteristiche con cui viene visualizzata (cioè
> con i nomi alias, con l'ordine impostato in "Organizza Colonne" ed
> escludendo le colonne nascoste)?
> Se copio le righe selezionate per poi incollarle in un file di testo o in
> un
> foglio di calcolo mi perde gli alias e l'ordine personalizzato delle
> colonne.
>
> Grazie
>
>
>
>
> -
> 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
>


-- 

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


Re: [QGIS-it-user] tile in qgis 3

2019-04-29 Thread Ludovico
Ti consiglio di provare SAS planet come alternativa (programma stand-alone)



-
Dott. For. Ludovico Frate, PhD

--
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] finding the radius of a curve

2019-04-29 Thread Cory Albrecht
I tried saving a few layers that had arcs and circles (x,y, r coords), but
QGIS converts each curve to a bunch of straight line segments instead of
saving them as curves. :-(

On Mon, Apr 22, 2019 at 3:33 AM McDonaldR  wrote:

> As your data is in PostGIS and assuming that they are arcs (curved lines
> part of a circle) you could use some geometry and spatial SQL functions to
> calculate the radius of any curve knowing the coordinates of the end points
> of the curve.
>
>
>
> To quote the pseudo code on the linked page:
>
>
>
> “To calculate the radius of an arc, take the height -- "H" -- of the arc
> and divide it by two. Call the result "C." Now take the width -- "W" -- of
> the arc and square it by multiplying it by itself. Call the result "D."
> Next multiply height, "H," by eight and call this result "E." Divide "D" by
> "E" and call the result "F." The radius of the arc is C plus F.”
>
>
>
> https://sciencing.com/calculate-radius-curve-7804090.html
>
>
>
> Could probably be wrapped in a function and run against any curve.
>
>
>
> Ross
>
>
>
> *From:* Qgis-user [mailto:qgis-user-boun...@lists.osgeo.org] *On Behalf
> Of *Cory Albrecht
> *Sent:* 19 April 2019 17:08
> *To:* qgis-user@lists.osgeo.org
> *Subject:* Re: [Qgis-user] finding the radius of a curve
>
>
>
> I'll give it a try. Thanks!
>
>
>
> On Sun, Apr 14, 2019 at 7:52 AM Mike Flannigan  wrote:
>
>
> Draw a circle and measure the diameter/radius.
>
> Maybe use this plugin to create a circle:
> https://plugins.qgis.org/plugins/CADDigitize/
>
>
> Mike
>
>
> On 4/13/2019 2:00 PM, qgis-user-requ...@lists.osgeo.org wrote:
> > Hello all,
> >
> > I'm looking for a way to find the radius of a curve (for roads,
> railyways)
> > in QGIS. If it were a paper map I could do it with a drafting compass
> > (calipers to some) and a ruler, but this is a PostGIS layer.
> >
> > Any plugin recommendations or links to a set of steps to accomplish this?
> > Thanks in advance!
>
>
>
> This message is strictly confidential. If you have received this in error,
> please inform the sender and remove it from your system. If received in
> error you may not copy, print, forward or use it or any attachment in any
> way. This message is not capable of creating a legal contract or a binding
> representation and does not represent the views of Angus Council. Emails
> may be monitored for security and network management reasons. Messages
> containing inappropriate content may be intercepted. Angus Council does not
> accept any liability for any harm that may be caused to the recipient
> system or data on it by this message or any attachment.
>
___
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] tile in qgis 3

2019-04-29 Thread Luigi Pirelli
https://github.com/nextgis/QTiles/issues/94

qmetatiles non lo conosco..

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://goo.gl/BYRQKg
**


On Mon, 29 Apr 2019 at 18:03, Robi Brazzelli  wrote:

> Ciao a tutti,
> in qgis 3 sono scomparsi i plugin qtiles e qmetatiles vero?
> C'è una soluzione alternativa?
>
> grazie
> Roberto
> ___
> 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] tile in qgis 3

2019-04-29 Thread Robi Brazzelli
Ciao a tutti,
in qgis 3 sono scomparsi i plugin qtiles e qmetatiles vero?
C'è una soluzione alternativa?

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


Re: [QGIS-it-user] topologia layer lineare

2019-04-29 Thread Stefano Campus
non avevo pensato a elementi su livelli diversi.
giusto così allora.

s.



--
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] topologia layer lineare

2019-04-29 Thread Totò
Stefano Campus wrote
> ciò è fastidioso perché i controlli topologici riportano "nodi non
> terminati" e bisogna poi darli in pasto a v.clean perché spezzi gli
> elementi
> producendo un nodo oppure spezzarli "a mano" valutando volta per volta.
> 
> è corretto che sia così?
> 
> s.
> 
> ps: provato sia in ltr 2.18 sia in ltr 3.4

Nelle reti esistono anche i sovrappassi o sottopassi e in questi casi NON si
devono spezzare le linee (e neanche creare dei vertici) che si intersecano;
poi stiamo parlando di uno snap con modifica topologica cioè serve per
modificare e non per creare nuove feature.

m2c



-
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-user] DB Manager: Different results from query in DB Manager and in Virtual Layer

2019-04-29 Thread Bernd Vogelgesang

Hi,

I have a point dataset with nesting boxes (443) and a non-spatial table
from QField where I filled in the already controlled nesting boxes.

Now trying to find out which bixes are still need to be controlled. To
filter the already boxes, I use this query

SELECT "Birdboxes_GTA_20190316".*
FROM "Birdboxes_GTA_20190316"
WHERE EXISTS (SELECT 1 FROM  "birdbox_kontrolle"  WHERE
"Birdboxes_GTA_20190316"."kasten_nr"= "birdbox_kontrolle"."kastennr")

in DB Manager, this returns the quiet low of 35 matches.

When I now create new Virtual Layer with exact the same query, a point
dataset is produced with the quite resonable amount of 262

Same the other way round: To get those not controlled boxes I use

SELECT "Birdboxes_GTA_20190316".*
FROM "Birdboxes_GTA_20190316"
WHERE NOT EXISTS (SELECT 1 FROM  "birdbox_kontrolle"  WHERE
"Birdboxes_GTA_20190316"."kasten_nr"= "birdbox_kontrolle"."kastennr")

which returns 408 rows, but the more resonable number that is produced
with the virtual layer is 181

I'm happy that all my points are generated correctly, but still I'm a
bit concerned that the query result in DB Manager is so awfully wrong.

Is this just due to my poor sql-knowledge or is it a bug?

Cheers,

Bernd


___
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] DB Manager:"Load as new layer" query from point data returns invisible poylgon layer

2019-04-29 Thread Bernd Vogelgesang

Hi Alessandro,

forgot to mention that I'm on 3.6.2 on Linux Mint. At the moment I have
no running instance of master, so I can't check if it is resolved there.

Added sth to https://issues.qgis.org/issues/21675

Cheers,

Bernd

Am 29.04.19 um 14:11 schrieb Alessandro Pasotti:


On Mon, Apr 29, 2019 at 2:00 PM Bernd Vogelgesang
mailto:bernd.vogelges...@gmx.de>> wrote:

Hi,

maybe I miss something obvious, but I can't manage to produce a new
point layer from a query in the DB Manager from a point dataset (First
time going this route, and very old sql-knowledge only).

The query runs fine, I see the results, but when I hit the "Load
as new
layer"-button, it adds a new polygon-layer name"QueryLayer" and of
course nothing is visible.

When I create a new virtual layer and paste my query there, it
works and
adds a new point layer from my query.

But it seems a bit strange that I have to produce a query, and
then copy
it to another section while there is a "load as new layer"-button
available.

Any hints?


Several issues like this have been fixed in the past, please check
newest releases and if that does not work please file a ticket
(attaching test project & data plus the failing queries).

Kind regards.

--
Alessandro Pasotti
w3: www.itopen.it 
___
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] (no subject)

2019-04-29 Thread Kirk Schmidt

Hi Tulika:

You will need a minimum of 3 GCP's for the algorithm to work. With out 
more detail, it is difficult to determine what the issue is.  Please 
provide more detail and I am sure we can find a solution for you.


Kirk


On 4/28/2019 2:35 PM, Tulika Biswas wrote:
I have an issue with using the georeferencer.My problem is after 
adding co ordinates to the map and giving the transformation 
settings.. I am running the georeferencing option.. Then it is being 
displayed on the screen as
"Failed to compute GCP points." and the map is also not being shown in 
the qgis interface..

Plz  help.. Its very urgent..

___
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


--
Kirk Schmidt, MScF, BScF, RPF
General Manager
Nortek Resource Solutions Inc.
RR # 1
Thorburn, NS
B0K 1W0
Tel (902) 922.3607
Email: k...@nortekresources.com
Web: www.nortekresources.com

___
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] DB Manager:"Load as new layer" query from point data returns invisible poylgon layer

2019-04-29 Thread Alessandro Pasotti
On Mon, Apr 29, 2019 at 2:00 PM Bernd Vogelgesang 
wrote:

> Hi,
>
> maybe I miss something obvious, but I can't manage to produce a new
> point layer from a query in the DB Manager from a point dataset (First
> time going this route, and very old sql-knowledge only).
>
> The query runs fine, I see the results, but when I hit the "Load as new
> layer"-button, it adds a new polygon-layer name"QueryLayer" and of
> course nothing is visible.
>
> When I create a new virtual layer and paste my query there, it works and
> adds a new point layer from my query.
>
> But it seems a bit strange that I have to produce a query, and then copy
> it to another section while there is a "load as new layer"-button
> available.
>
> Any hints?
>
>
Several issues like this have been fixed in the past, please check newest
releases and if that does not work please file a ticket (attaching test
project & data plus the failing queries).

Kind regards.

-- 
Alessandro Pasotti
w3:   www.itopen.it
___
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] DB Manager:"Load as new layer" query from point data returns invisible poylgon layer

2019-04-29 Thread Bernd Vogelgesang

Hi,

maybe I miss something obvious, but I can't manage to produce a new
point layer from a query in the DB Manager from a point dataset (First
time going this route, and very old sql-knowledge only).

The query runs fine, I see the results, but when I hit the "Load as new
layer"-button, it adds a new polygon-layer name"QueryLayer" and of
course nothing is visible.

When I create a new virtual layer and paste my query there, it works and
adds a new point layer from my query.

But it seems a bit strange that I have to produce a query, and then copy
it to another section while there is a "load as new layer"-button available.

Any hints?

Cheers,

Bernd

___
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] topologia layer lineare

2019-04-29 Thread Ludovico
Ciao,
stai editando linee esistenti con lo strumento vertici o cosa?



-
Dott. For. Ludovico Frate, PhD

--
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] Problema parentesi quadra in console python

2019-04-29 Thread Alessandro Perego

Perfetto, funziona.

Grazie


Il 29/04/2019 10:52, Marco Guiducci ha scritto:



Il 29/04/2019 09:26, Alessandro Perego ha scritto:


Grazie del suggerimento. Non sapevo di questa opzione che 
effettivamente mi risolve il problema.


Comunque questa mattina (con la mente un po' più fresca) ho avuto 
l'ovvia idea di cercare tra i bug segnalati ed ho trovato questo: 
https://issues.qgis.org/issues/21203. Mi pare di capire che su 
Windows c'è un conflitto con la funzione "Zoom in" a cui è assegnata 
la stessa combinazione di tasti Crtl Alt +.




ho seguito quanto scritto nella issue: puoi cambiare la scorciatoia 
(menu impostazioni--> scorciatoie, cerchi "ingrandisci" poi pulsante 
"cambia" e digiti Ctrl + ], poi salvi in un file).

Vedrai che ora ti funzionerà.
grazie e ciao
marcog


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


Re: [QGIS-it-user] Problema parentesi quadra in console python

2019-04-29 Thread Marco Guiducci



Il 29/04/2019 09:26, Alessandro Perego ha scritto:


Grazie del suggerimento. Non sapevo di questa opzione che 
effettivamente mi risolve il problema.


Comunque questa mattina (con la mente un po' più fresca) ho avuto 
l'ovvia idea di cercare tra i bug segnalati ed ho trovato questo: 
https://issues.qgis.org/issues/21203. Mi pare di capire che su Windows 
c'è un conflitto con la funzione "Zoom in" a cui è assegnata la stessa 
combinazione di tasti Crtl Alt +.




ho seguito quanto scritto nella issue: puoi cambiare la scorciatoia 
(menu impostazioni--> scorciatoie, cerchi "ingrandisci" poi pulsante 
"cambia" e digiti Ctrl + ], poi salvi in un file).

Vedrai che ora ti funzionerà.
grazie e ciao
marcog

--
Marco Guiducci - 055 4383194
SITA - Sistema informativo territoriale e ambientale
Regione Toscana - Via di Novoli 26 - 50127 Firenze

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


Re: [Qgis-user] GeoPackage-Hickups

2019-04-29 Thread Paul Wittle
Hi,

I think I encountered point 2 the other day using QGIS 2 and although it was 
the old version I still found it a bit worrying as the fault appeared to be 
with the GeoPackage format rather than the software (although I'm sure the 
software is heavily involved really).

I tried to add a virtual column to a GeoPackage table which others also had 
open and it resulted in the file becoming locked. QGIS wouldn't close even with 
windows end task!

In the end I had to do a hard reboot (holding the off button) and the others 
had to reboot their PCs and the file unlocked restoring the data.

All in all, I found it extremely worrying and hope that it was just a one off 
really; anything that can lock a PC, even against end task; is in my opinion a 
potentially dangerous format.

It was a fix already dealt with or a problem with the GeoPackage spec that is 
already in hand then that is all fine but if not; I hope it doesn't happen 
again.

Cheers,
Paul

-Original Message-
From: Qgis-user  On Behalf Of 
qgis-user-requ...@lists.osgeo.org
Sent: 27 April 2019 20:00
To: qgis-user@lists.osgeo.org
Subject: Qgis-user Digest, Vol 158, Issue 35

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. GeoPackage-Hickups (Bernd Vogelgesang)
   2. Re: GeoPackage-Hickups (Matthias Kuhn)
   3. RETORNANDO AO GEOPROCESSAMENTO (Ruy Edy Iglesias da Silveira)


--

Message: 1
Date: Sat, 27 Apr 2019 15:57:18 +0200
From: Bernd Vogelgesang 
To: qgis-user 
Subject: [Qgis-user] GeoPackage-Hickups
Message-ID: 
Content-Type: text/plain; charset=utf-8; format=flowed

Hi,

I try to use Geopackage as my standard format for a while, but so far my joy is 
only moderate.

1. Is it default behaviour, that when I make one layer of this GeoPackage 
editable, all other layers become editable as well?

2. Mostly I add or modify data in a non-spatial table with a relation to a 
point layer. "Most" of the time this works quite ok, but quite often the save 
of the changes is not possible, cause OGR claims that the database is locked. 
Toggle the edit status or refreshing the database in DB Manager does not help, 
so most of the time I have to shut down QGIS to be able to work on. Is there a 
"trick" to unlock the database without having to shut down the application? 
(btw. the files are stored on a synology network drive)

QGIS 3.6.2 on Linux Mint

Cheers,
Bernd


--

Message: 2
Date: Sat, 27 Apr 2019 16:20:17 +0200
From: Matthias Kuhn 
To: Bernd Vogelgesang , qgis-user

Subject: Re: [Qgis-user] GeoPackage-Hickups
Message-ID: <7fd75d08-b974-b500-a74a-9835f1408...@opengis.ch>
Content-Type: text/plain; charset="utf-8"

Hi Bernd,

1. Only when you have set "automatically create transaction groups if possible" 
in the project properties

2. Might possibly be resolved by #1 as well

Matthias

On 4/27/19 3:57 PM, Bernd Vogelgesang wrote:
> Hi,
>
> I try to use Geopackage as my standard format for a while, but so far
> my joy is only moderate.
>
> 1. Is it default behaviour, that when I make one layer of this
> GeoPackage editable, all other layers become editable as well?
>
> 2. Mostly I add or modify data in a non-spatial table with a relation
> to a point layer. "Most" of the time this works quite ok, but quite
> often the save of the changes is not possible, cause OGR claims that
> the database is locked. Toggle the edit status or refreshing the
> database in DB Manager does not help, so most of the time I have to
> shut down QGIS to be able to work on. Is there a "trick" to unlock the
> database without having to shut down the application? (btw. the files
> are stored on a synology network drive)
>
> QGIS 3.6.2 on Linux Mint
>
> Cheers,
> Bernd
> ___
> 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
>
--
Matthias Kuhn
matth...@opengis.ch 
+41 (0)76 435 67 63 
OPENGIS.ch Logo 
-- next part --
An HTML attachment was scrubbed...
URL: 

-- next part --
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 6671 bytes
Desc: not available
URL: 

Re: [QGIS-it-user] Problema parentesi quadra in console python

2019-04-29 Thread Alessandro Perego
Grazie del suggerimento. Non sapevo di questa opzione che effettivamente 
mi risolve il problema.


Comunque questa mattina (con la mente un po' più fresca) ho avuto 
l'ovvia idea di cercare tra i bug segnalati ed ho trovato questo: 
https://issues.qgis.org/issues/21203. Mi pare di capire che su Windows 
c'è un conflitto con la funzione "Zoom in" a cui è assegnata la stessa 
combinazione di tasti Crtl Alt +.


Il 29/04/2019 08:45, Marco Guiducci ha scritto:



Il 27/04/2019 18:55, alper78 ha scritto:

Ciao a tutti,
ho un problema ridicolo ma fastidioso: nella console python non riesco a
chiudere le parentesi quadre, cioè non riesco ad inserire la " ] ". 
In tutti
gli atri programmi (ma anche in altre finestre di QGIS) la inserisco 
senza
problemi premendo Ctrl Alt +, ma nella console python non mi 
funziona, così
mi tocca scrivere la " ] " altrove e poi fare copie e incolla. Invece 
con la

" [ " non ho problemi.
Provato con QGIS 3.4.7 e 3.6.2 su Windows 10. Non capisco se è un 
problema

di QGIS o di impostazione della tastiera.

Qualcuno riesce a verificare?

Grazie



io ho la "vecchia" 3.4.4 e confermo. però puoi abilitare la chiusura 
automatica delle parentesi... visto che funziona l'apertura.
nella consolle clicca sulla chiave inglese. si può abilitare sia per 
il terminjale sia per l'editor.

ciao
marcog


--
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-it-user] topologia layer lineare

2019-04-29 Thread Stefano Campus
buongiorno a tutt@,
attivando l'editing topologico per un layer lineare, quando attacco un
vertice di una linea ad un'altra (tipica strada che confluisce in un'altra)
non dovrebbe generarsi automaticamente un nodo?
Invece ho tantissimi "nodi non terminati".
Classico è la T in cui nel punto di aggancio della gambetta verticale non si
genera un nodo che spezzi in due il segmento orizzontale, ma solo un
vertice; infatti gli elementi rimangono due e non tre.

ciò è fastidioso perché i controlli topologici riportano "nodi non
terminati" e bisogna poi darli in pasto a v.clean perché spezzi gli elementi
producendo un nodo oppure spezzarli "a mano" valutando volta per volta.

è corretto che sia così?

s.

ps: provato sia in ltr 2.18 sia in ltr 3.4




--
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] Problema parentesi quadra in console python

2019-04-29 Thread Marco Guiducci



Il 27/04/2019 18:55, alper78 ha scritto:

Ciao a tutti,
ho un problema ridicolo ma fastidioso: nella console python non riesco a
chiudere le parentesi quadre, cioè non riesco ad inserire la " ] ". In tutti
gli atri programmi (ma anche in altre finestre di QGIS) la inserisco senza
problemi premendo Ctrl Alt +, ma nella console python non mi funziona, così
mi tocca scrivere la " ] " altrove e poi fare copie e incolla. Invece con la
" [ " non ho problemi.
Provato con QGIS 3.4.7 e 3.6.2 su Windows 10. Non capisco se è un problema
di QGIS o di impostazione della tastiera.

Qualcuno riesce a verificare?

Grazie



io ho la "vecchia" 3.4.4 e confermo. però puoi abilitare la chiusura 
automatica delle parentesi... visto che funziona l'apertura.
nella consolle clicca sulla chiave inglese. si può abilitare sia per il 
terminjale sia per l'editor.

ciao
marcog

--
Marco Guiducci - 055 4383194
SITA - Sistema informativo territoriale e ambientale
Regione Toscana - Via di Novoli 26 - 50127 Firenze

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