Re: [Qgis-user] Polygon next to road search term

2022-09-13 Thread Jon via Qgis-user
I would want the polygon to have road access. So you should be able to
access the polygon firectly from a road. Just a corner touching may
work but that would depend on an easement and I am having enough
trouble just trying to figure out what I should be searching on without
throwing that in as well.

So at this point, the polygon should be able to be accessed by the road
line. So possibly 20' of the road line is touching the polygon.

-Original Message-
From: David Strip 
To: j...@destar.net, Qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] Polygon next to road search term
Date: Tue, 13 Sep 2022 21:12:01 -0600

  Is a polygon "next to a road" because one (or more) edges of the polygon is 
exactly coincident with the road line? Or is it within some distance of the 
road line? These lead to different solutions, but unless your data is very 
precise, asking for the boundary to be exactly coincident with a road line is 
not going to be very robust.Does your road polyline feature have a road width? 
If so, does that factor into "next to"?
 
 
 On 9/13/2022 5:26 PM, Jon via Qgis-user wrote: 
> I am trying to figure out if a property that is a polygon is next to a
> polyline (road). I am not well versed with QGIS and every search I do
> seems to tell me how to map a polygon onto a road or convert polylines
> to a polygon. I am not sure what exactly I need to search on to find
> some documentation on how to do what I am looking to do.
> 
> What should I be searching on to find if a property that has 4 sides
> and is a polygon is next to a road? Is what I am trying to find called
> something specific and that is why I am not finding?
> 
> Thanks for any help,
> 
> Jon
> ___
> 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] Polygon next to road search term

2022-09-13 Thread David Strip via Qgis-user

  
  
Is a polygon "next to a road" because one (or more) edges of the
polygon is exactly coincident with the road line? Or is it within
some distance of the road line? These lead to different solutions,
but unless your data is very precise, asking for the boundary to be
exactly coincident with a road line is not going to be very
robust.Does your road polyline feature have a road width? If so,
does that factor into "next to"?


On 9/13/2022 5:26 PM, Jon via Qgis-user wrote:

  I am trying to figure out if a property that is a polygon is next to a
polyline (road). I am not well versed with QGIS and every search I do
seems to tell me how to map a polygon onto a road or convert polylines
to a polygon. I am not sure what exactly I need to search on to find
some documentation on how to do what I am looking to do.

What should I be searching on to find if a property that has 4 sides
and is a polygon is next to a road? Is what I am trying to find called
something specific and that is why I am not finding?

Thanks for any help,

Jon
___
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] Polygon next to road search term

2022-09-13 Thread Jon via Qgis-user
I am trying to figure out if a property that is a polygon is next to a
polyline (road). I am not well versed with QGIS and every search I do
seems to tell me how to map a polygon onto a road or convert polylines
to a polygon. I am not sure what exactly I need to search on to find
some documentation on how to do what I am looking to do.

What should I be searching on to find if a property that has 4 sides
and is a polygon is next to a road? Is what I am trying to find called
something specific and that is why I am not finding?

Thanks for any help,

Jon
___
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] Creazione di nuovi campi

2022-09-13 Thread Giuliano Curti
Il mar 13 set 2022, 13:34 Davide Lucia  ha scritto:

> Buongiorno,
>

Buonasera

torno a chiedere il vostro aiuto.
> Ho bisogno di calcolare la somma di elementi in un'area, in base alla
> categorizzazione di un campo.
> L'obiettivo finale è realizzare una tabella come questa
> [image: image.png]
> dove "Cat 1", "Cat 2", ecc., sono le categorie della stessa colonna "Campo
> 1". i numeri sono quindi il risultato del conteggio.
>
> Il Database è organizzato in questo modo:
> Campo 1 name
> Cat 1 
> Cat 1 
>

Scusa, a me l'esempio non torna chiaro (ad es. parli di "somma di elementi
di un'area", ma lì aree non ne vedo); puoi mettere per cortesia tutti i
campi del record, i loro nomi e qualche loro contenuto? Sarà più facile
darti un aiuto.

Grazie mille!!
>

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


Re: [Qgis-user] Issues by using a script inside the python console

2022-09-13 Thread Richard Duivenvoorde via Qgis-user

I use succesfully the following in a script and a plugin:

# Voronoing ONLY the selected
# NOTE: the colon (:) behind 'memory' in the 'OUTPUT' param is 
mandatory,
# else QGIS will create a geopackage!
selected = True
params = {
'INPUT': QgsProcessingFeatureSourceDefinition(point_layer.id(), 
selectedFeaturesOnly=selected),
'OUTPUT': 'memory:',
'BUFFER': 5,
}
result = processing.run("qgis:voronoipolygons", params)

Maybe you can use that to reconstruct your call?

Regards,

Richard Duivenvoorde


On 9/13/22 10:52, Hesels, Marie-Christine via Qgis-user wrote:

Hi all,


I am currently using the "Snap to Roads" script inside my qgis environment, to match 
gpx-points to the OSM (https://spatialthoughts.com/2020/02/22/snap-to-roads-qgis-and-osrm/ 
).

I am able to execute the Script by using the QGIS Script Environment:



Unfortunatly, I would like to run the script via python console inside QGiS, 
but this doesn't work at all ...


By executing the following command:


layer_SnappedLine = processing.run("script:snap_to_roads",
{'INPUT':layer_GPX_Points['OUTPUT'],
'SERVICE':'http://127.0.0.1:5000',
'TOLERANCE':10,
'OUTPUT':'TEMPORARY_OUTPUT'})

I receive the error message:

"Traceback (most recent call last):

   File "C:\PROGRA~1\QGIS32~1.10\apps\Python39\lib\code.py", line 90, in runcode
     exec(code, self.locals)
   File "", line 1, in 
   File 
"C:\PROGRA~1/QGIS32~1.10/apps/qgis-ltr/./python/plugins\processing\tools\general.py",
 line 108, in run
     return Processing.runAlgorithm(algOrName, parameters, onFinish, feedback, 
context)
   File 
"C:\PROGRA~1/QGIS32~1.10/apps/qgis-ltr/./python/plugins\processing\core\Processing.py",
 line 205, in runAlgorithm
     layer = context.takeResultLayer(result)  # transfer layer ownership out of 
context
TypeError: QgsProcessingContext.takeResultLayer(): argument 1 has unexpected type 
'QgsFeatureSink'"

Can anybody help me with this issue? I am using QGIS Version 3.22.10

Regards and thanks,
Marie


___
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] il prossimo splashscreen di QGIS sarà dedicato a Firenze

2022-09-13 Thread Totò Fiandaca
Iacopo,
ho caricato i dati della tua proposta,
rimane da inserire la descrizione e il progetto GIMP.

Stefano,
ho preparato il README pure per la tua proposta, occorre caricare tutti i
dati

per chi avesse fatto un fork, occorre riallinearsi, perché ho appena
aggiornato il repo.

per qualsiasi cosa contattatemi in privato.

saluti

Il giorno lun 12 set 2022 alle ore 18:52 Iacopo 
ha scritto:

> Esistono altre versioni, qusta è la migliore:
>
> https://commons.wikimedia.org/wiki/File:Florence_-_View_with_Chain_-_woodcut.png#filehistory
> Però non riesco a capire che tipo di licenza ha. Prima di arrendermi
> qualcuno mi sa aiutare?
> Grazie
>
> Iacopo
>
> P.S. chiedo scusa avevo risposto in privato senza volere
>
> Il giorno dom, 11/09/2022 alle 12.17 +0200, Stefano Campus ha scritto:
> > confermo: deve essere pubblico dominio o CC0.
> > non sprechiamo tempo su soggetti che poi non possono essere usati.
> > s.
> >
> > Il giorno sab 10 set 2022 alle ore 21:35 Rossella Di Bari
> >  ha scritto:
> > > Salve prof!
> > > che bel contributo :)
> > >
> > > Ho fatto una ricerca: la xilografia di Berlino è in CC-BY
> > >
> https://recherche.smb.museum/detail/944067/die-gro%C3%9Fe-ansicht-von-florenz-der-kettenplan?language=de=%22Lucantonio+Degli+Uberti%3F%22=15=none=2
> > >
> > > Ho chiesto ad Anita: la licenza dell'immagine splash screen dovrà
> > > essere in pubblico dominio, dunque CC0... Chiedo agli altri della
> > > lista una conferma. Che dite?
> > >
> > > Grazie
> > >
> > > Rossella
> > >
> > > Il ven 9 set 2022, 09:28 Iacopo  ha
> > > scritto:
> > > > Sottopongo, per ora in lista, una
> > > > ipotesi:
> > > > https://drive.google.com/file/d/1mZjvVUDM4cEFrOJEo_tEGPe2CBq4IWU1
> > > > /view?usp=sharing
> > > >
> > > > La carta della catena, che ho utilizzato, è una pietra miliare
> > > > della
> > > > cartografia. Si tratta in realtà di una vista, ma viene quasi
> > > > sempre
> > > > chiamata carta perché costituisce il primo esempio di uso della
> > > > prospettiva per rappresentare una città. Dietro ci sono le teorie
> > > > matematiche di Paolo dal Pozzo Toscanelli e la lezione del
> > > > disegno in
> > > > prospettiva di Leon Battista Alberti che, seguendo gli stessi
> > > > metodi,
> > > > poi realizzò la prima pianta di Roma. Insomma la madre della
> > > > cartografia moderna in scala, cosa che potrebbe sostenere di
> > > > usarla
> > > > per lo spalsh di un moderno software gis (non che la mappa del
> > > > Molini o
> > > > eventualmente del Bonsiglnori del 1584 non siano ottime idee).
> > > >
> > > > Saluti
> > > >
> > > > Iacopo
> > > > ___
> > > > 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
>


-- 
*Ing. Salvatore Fiandaca*
*mobile*.:+39 327.493.8955
*m*: *pigrecoinfin...@gmail.com *
*C.F*.: FNDSVT71E29Z103G
*P.IVA*: 06597870820
*membro QGIS Italia - http://qgis.it/ *
*socio GFOSS.it - *http://gfoss.it/
*blog:*
* https://pigrecoinfinito.com/  FB: Co-admin
- https://www.facebook.com/qgis.it/ **
 *
*TW:  **https://twitter.com/totofiandaca
*

43°51'0.54"N  10°34'27.62"E - EPSG:4326

“Se la conoscenza deve essere aperta a tutti,
perchè mai limitarne l’accesso?”
R. Stallman

Questo documento, allegati inclusi, contiene informazioni di proprietà di
FIANDACA SALVATORE e deve essere utilizzato esclusivamente dal destinatario
in relazione alle finalità per le quali è stato ricevuto. E' vietata
qualsiasi forma di riproduzione o divulgazione senza l'esplicito consenso
di FIANDACA SALVATORE. Qualora fosse stato ricevuto per errore si prega di
informare tempestivamente il mittente e distruggere la copia in proprio
possesso.
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


Re: [QGIS-it-user] Creazione di nuovi campi

2022-09-13 Thread Totò Fiandaca
Ciao,
hai provato ad utilizzare gli algoritmi di processing?
in particolare l'algoritmo Riorganizza campi

o Aggrega

.

Entrambi ti permettono di aggiungere tutti i campi che desideri e di
popolarli tramite espresioni.

Senza dati di esempio non posso essere più preciso.

saluti

Il giorno mar 13 set 2022 alle ore 13:34 Davide Lucia <
davideluci...@gmail.com> ha scritto:

> Buongiorno,
> torno a chiedere il vostro aiuto.
> Ho bisogno di calcolare la somma di elementi in un'area, in base alla
> categorizzazione di un campo.
> L'obiettivo finale è realizzare una tabella come questa
> [image: image.png]
> dove "Cat 1", "Cat 2", ecc., sono le categorie della stessa colonna "Campo
> 1". i numeri sono quindi il risultato del conteggio.
>
> Il Database è organizzato in questo modo:
> Campo 1 name
> Cat 1 
> Cat 1 
> Cat 1 
> Cat 2 
> Cat 2 
> Cat 2 
> Cat 2 
> Cat 2 
> Cat 3 
> Cat 3 
> Cat 3 
> Cat 3 
> Cat 3 
>
> Avete da suggerire una semplice funzione o un modo alternativo a mille
> passaggi, che esploda le categorie di un campo, in differenti campi per
> ognuna di esse e poi mi conti il totale.
>
> Grazie mille!!
> --
> Arch. Davide Lucia
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>


-- 
*Ing. Salvatore Fiandaca*
*mobile*.:+39 327.493.8955
*m*: *pigrecoinfin...@gmail.com *
*C.F*.: FNDSVT71E29Z103G
*P.IVA*: 06597870820
*membro QGIS Italia - http://qgis.it/ *
*socio GFOSS.it - *http://gfoss.it/
*blog:*
* https://pigrecoinfinito.com/  FB: Co-admin
- https://www.facebook.com/qgis.it/ **
 *
*TW:  **https://twitter.com/totofiandaca
*

43°51'0.54"N  10°34'27.62"E - EPSG:4326

“Se la conoscenza deve essere aperta a tutti,
perchè mai limitarne l’accesso?”
R. Stallman

Questo documento, allegati inclusi, contiene informazioni di proprietà di
FIANDACA SALVATORE e deve essere utilizzato esclusivamente dal destinatario
in relazione alle finalità per le quali è stato ricevuto. E' vietata
qualsiasi forma di riproduzione o divulgazione senza l'esplicito consenso
di FIANDACA SALVATORE. Qualora fosse stato ricevuto per errore si prega di
informare tempestivamente il mittente e distruggere la copia in proprio
possesso.
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


[QGIS-it-user] Creazione di nuovi campi

2022-09-13 Thread Davide Lucia
Buongiorno,
torno a chiedere il vostro aiuto.
Ho bisogno di calcolare la somma di elementi in un'area, in base alla
categorizzazione di un campo.
L'obiettivo finale è realizzare una tabella come questa
[image: image.png]
dove "Cat 1", "Cat 2", ecc., sono le categorie della stessa colonna "Campo
1". i numeri sono quindi il risultato del conteggio.

Il Database è organizzato in questo modo:
Campo 1 name
Cat 1 
Cat 1 
Cat 1 
Cat 2 
Cat 2 
Cat 2 
Cat 2 
Cat 2 
Cat 3 
Cat 3 
Cat 3 
Cat 3 
Cat 3 

Avete da suggerire una semplice funzione o un modo alternativo a mille
passaggi, che esploda le categorie di un campo, in differenti campi per
ognuna di esse e poi mi conti il totale.

Grazie mille!!
-- 
Arch. Davide Lucia
___
QGIS-it-user mailing list
QGIS-it-user@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/qgis-it-user


[Qgis-user] Spatial indexes in virtual layers

2022-09-13 Thread WhereGroup

Hi list,

using spatial predicates on virtual layers is slow by default as spatial 
indexes are not used.


https://docs.qgis.org/testing/en/docs/user_manual/managing_data_source/create_layers.html#use-of-indexes 
says that one can use the _search_frame_ column to "trigger the use of a 
spatial index". The page has an example where this is compared to a 
MBR/BBOX:


SELECT * FROM vtab WHERE 
_search_frame_=BuildMbr(-2.10,49.38,-1.3,49.99,4326)


What does it actually mean and what does it really do? What is the 
_search_frame_ really and why can we compare it for *equality* against a 
simple bounding box? Is the "=" operator used for a different logic?


Does it magically "trigger" the use of the sources' spatial indexes in 
the background? That would surprise me.


The original docs of virtual layers at 
https://github.com/mhugo/qgis_vlayers#index-support _search_frame_ say


> For spatial indexes, a 'hidden' field named '/search_frame/' is 
created for each virtual table (i.e. each referenced layer of the 
virtual layer). The bounding box of the given geometry will be used to 
restrain the query to a particular region of space. This bounding box is 
passed to the underlyng provider by a QgsFeatureRequest with a "filterRect".


and show this example:

> SELECT * FROM pt, poly WHERE pt._search_frame_ = poly.geometry AND 
Intersects(pt.geometry, poly.geometry)


I have some trouble parsing that in my brain. Does it mean that there 
are N QgsFeatureRequests and each uses the _search_frame_ BBOX of its 
feature geometry as filterRect?



It would be great to demystify this and make people more aware of how to 
make their virtual layers not slow.


Thanks!

Hannes

PS: QgsFeatureRequest.setFilterRectcould use a note about the spatial 
predicate being used to determine which features to return. Intersection 
probably but it is not clear. People might expect Within. Might file/fix 
this later but feel welcome to do it before me. :)


--
Johannes Kröger / GIS-Entwickler/-Berater

-
Schon gewusst?
In unserem Blog geben wir Tipps & Tricks zu Open-Source-GIS-Software
und berichten aus unserem Experten-Alltag:
https://wheregroup.com/blog/
-

WhereGroup GmbH
Grevenweg 89
20537 Hamburg
Germany

Tel: +49 (0)228 / 90 90 38 - 36
Fax: +49 (0)228 / 90 90 38 - 11

johannes.kroe...@wheregroup.com
www.wheregroup.com
Geschäftsführer:
Olaf Knopp, Peter Stamm
Amtsgericht Bonn, HRB 9885
---



OpenPGP_0x840A4B843789797F.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature
___
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] Issues by using a script inside the python console

2022-09-13 Thread Hesels, Marie-Christine via Qgis-user
Hi all,


I am currently using the "Snap to Roads" script inside my qgis environment, to 
match gpx-points to the OSM 
(https://spatialthoughts.com/2020/02/22/snap-to-roads-qgis-and-osrm/).



I am able to execute the Script by using the QGIS Script Environment:

[cid:317d9d57-3f6d-41dd-8234-b68dcfa66fc2]


Unfortunatly, I would like to run the script via python console inside QGiS, 
but this doesn't work at all ...


By executing the following command:


layer_SnappedLine = processing.run("script:snap_to_roads",
{'INPUT':layer_GPX_Points['OUTPUT'],
'SERVICE':'http://127.0.0.1:5000',
'TOLERANCE':10,
'OUTPUT':'TEMPORARY_OUTPUT'})


I receive the error message:

"Traceback (most recent call last):

  File "C:\PROGRA~1\QGIS32~1.10\apps\Python39\lib\code.py", line 90, in runcode
exec(code, self.locals)
  File "", line 1, in 
  File 
"C:\PROGRA~1/QGIS32~1.10/apps/qgis-ltr/./python/plugins\processing\tools\general.py",
 line 108, in run
return Processing.runAlgorithm(algOrName, parameters, onFinish, feedback, 
context)
  File 
"C:\PROGRA~1/QGIS32~1.10/apps/qgis-ltr/./python/plugins\processing\core\Processing.py",
 line 205, in runAlgorithm
layer = context.takeResultLayer(result)  # transfer layer ownership out of 
context
TypeError: QgsProcessingContext.takeResultLayer(): argument 1 has unexpected 
type 'QgsFeatureSink'"

Can anybody help me with this issue? I am using QGIS Version 3.22.10

Regards and thanks,
Marie
___
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] il prossimo splashscreen di QGIS sarà dedicato a Firenze

2022-09-13 Thread Totò Fiandaca
Mandatemi il materiale
e aggiorno io il repo
Grazie

Scusami per la brevità, ti sto scrivendo dal cellulare

Il mar 13 set 2022, 10:17 Stefano Campus  ha scritto:

> ho realizzato una proposta.
> come faccio a presentarlo?
> 1) faccio un fork e chiedo una PR sul tuo repo?
> 2) ti mando il materiale e aggiorni tu il file readme nel tuo repo?
>
> s.
>
> Il giorno mer 7 set 2022 alle ore 16:18 Totò Fiandaca <
> pigrecoinfin...@gmail.com> ha scritto:
>
>> Buonasera a tutt@
>> ho realizzato un repository dove ho messo le linee guida per la
>> realizzazione dello splashscreen, compreso di progetto GIMP.
>>
>> Per favore, sarebbe molto gradito, per chi volesse partecipare,
>> aggiungere eventuali altre ipotesi di splashscreen, seguendo le linee guida
>> e aggiungendo in coda al file README immagini, link, descrizione e progetto.
>>
>> saluti
>>
>> https://github.com/pigreco/splashscreen_QGIS328_Firenze
>>
>> Il giorno mer 7 set 2022 alle ore 14:45 Stefano Campus 
>> ha scritto:
>>
>>>
>>> mappe che mi piacciono:
>>>
>>> 1)  Florentia pvlcherrima etrvriae civitas, 1695
>>>
>>> https://curiosity.lib.harvard.edu/scanned-maps/catalog/44-990105957300203941
>>>
>>> public domain (
>>> https://osc.hul.harvard.edu/programs/open-initiatives/hl-pd/)
>>>
>>> https://imgbox.com/WTQdG3w9
>>>
>>> 2) pianta giardno di boboli, XVIII sec.
>>>
>>> https://commons.wikimedia.org/wiki/File:Boboli_pianta_antica.jpg?uselang=it
>>>
>>> public domain
>>>
>>> 
>>>
>>>
>>>
 Il giorno mar 6 set 2022 alle ore 22:18 Totò Fiandaca <
 pigrecoinfin...@gmail.com> ha scritto:

> Salve a tutt@,
> la prossima versione di QGIS, la 3.28 sarà dedicata a Firenze grazie
> all'ultimo HackFest
> svoltosi,
> tra il 18 e il 22 agosto, proprio a Firenze.
>
> Io ho già preparato una bozza di splashscreen usando come sfondo
> questa immagine
> (che
> è di dominio pubblico: requisito indispensabile), il risultato lo trovate
> qui
> 
> .
>
> Il mio è solo un suggerimento, se qualcuno avesse altre proposte le
> faccia sapere.
>
> Se andasse bene la mia proposta o altre, il passo successivo sarebbe
> quello di scrivere una email a Anita Graser del PSC di QGIS, lei si occupa
> anche di realizzare gli splashscreen di QGIS.
>
> Abbiamo tempo tutto settembre, ma prima decidiamo, meglio è.
>
> saluti
>
> --
> *Ing. Salvatore Fiandaca*
> *mobile*.:+39 327.493.8955
> *m*: *pigrecoinfin...@gmail.com *
> *C.F*.: FNDSVT71E29Z103G
> *P.IVA*: 06597870820
> *membro QGIS Italia - http://qgis.it/ *
> *socio GFOSS.it - *http://gfoss.it/
> *blog:*
> * https://pigrecoinfinito.com/  FB:
> Co-admin - https://www.facebook.com/qgis.it/
> **
>  *
> *TW:  **https://twitter.com/totofiandaca
> *
>
> 43°51'0.54"N  10°34'27.62"E - EPSG:4326
>
> “Se la conoscenza deve essere aperta a tutti,
> perchè mai limitarne l’accesso?”
> R. Stallman
>
> Questo documento, allegati inclusi, contiene informazioni di proprietà
> di FIANDACA SALVATORE e deve essere utilizzato esclusivamente dal
> destinatario in relazione alle finalità per le quali è stato ricevuto. E'
> vietata qualsiasi forma di riproduzione o divulgazione senza l'esplicito
> consenso di FIANDACA SALVATORE. Qualora fosse stato ricevuto per
> errore si prega di informare tempestivamente il mittente e distruggere la
> copia in proprio possesso.
>
>
> ___
> QGIS-it-user mailing list
> QGIS-it-user@lists.osgeo.org
> https://lists.osgeo.org/mailman/listinfo/qgis-it-user
>

>>
>> --
>> *Ing. Salvatore Fiandaca*
>> *mobile*.:+39 327.493.8955
>> *m*: *pigrecoinfin...@gmail.com *
>> *C.F*.: FNDSVT71E29Z103G
>> *P.IVA*: 06597870820
>> *membro QGIS Italia - http://qgis.it/ *
>> *socio GFOSS.it - *http://gfoss.it/
>> *blog:*
>> * https://pigrecoinfinito.com/  FB:
>> Co-admin - https://www.facebook.com/qgis.it/
>> **
>>  *
>> *TW:  **https://twitter.com/totofiandaca
>> *
>>
>> 43°51'0.54"N  10°34'27.62"E - EPSG:4326
>>
>> “Se la conoscenza deve essere aperta a tutti,
>> perchè mai limitarne l’accesso?”
>> R. Stallman
>>
>> Questo documento, allegati inclusi, contiene informazioni di proprietà di
>> FIANDACA SALVATORE e 

Re: [QGIS-it-user] il prossimo splashscreen di QGIS sarà dedicato a Firenze

2022-09-13 Thread Stefano Campus
ho realizzato una proposta.
come faccio a presentarlo?
1) faccio un fork e chiedo una PR sul tuo repo?
2) ti mando il materiale e aggiorni tu il file readme nel tuo repo?

s.

Il giorno mer 7 set 2022 alle ore 16:18 Totò Fiandaca <
pigrecoinfin...@gmail.com> ha scritto:

> Buonasera a tutt@
> ho realizzato un repository dove ho messo le linee guida per la
> realizzazione dello splashscreen, compreso di progetto GIMP.
>
> Per favore, sarebbe molto gradito, per chi volesse partecipare, aggiungere
> eventuali altre ipotesi di splashscreen, seguendo le linee guida e
> aggiungendo in coda al file README immagini, link, descrizione e progetto.
>
> saluti
>
> https://github.com/pigreco/splashscreen_QGIS328_Firenze
>
> Il giorno mer 7 set 2022 alle ore 14:45 Stefano Campus 
> ha scritto:
>
>>
>> mappe che mi piacciono:
>>
>> 1)  Florentia pvlcherrima etrvriae civitas, 1695
>>
>> https://curiosity.lib.harvard.edu/scanned-maps/catalog/44-990105957300203941
>>
>> public domain (
>> https://osc.hul.harvard.edu/programs/open-initiatives/hl-pd/)
>>
>> https://imgbox.com/WTQdG3w9
>>
>> 2) pianta giardno di boboli, XVIII sec.
>>
>> https://commons.wikimedia.org/wiki/File:Boboli_pianta_antica.jpg?uselang=it
>>
>> public domain
>>
>> 
>>
>>
>>
>>> Il giorno mar 6 set 2022 alle ore 22:18 Totò Fiandaca <
>>> pigrecoinfin...@gmail.com> ha scritto:
>>>
 Salve a tutt@,
 la prossima versione di QGIS, la 3.28 sarà dedicata a Firenze grazie
 all'ultimo HackFest
 svoltosi,
 tra il 18 e il 22 agosto, proprio a Firenze.

 Io ho già preparato una bozza di splashscreen usando come sfondo questa 
 immagine

 (che
 è di dominio pubblico: requisito indispensabile), il risultato lo trovate
 qui
 
 .

 Il mio è solo un suggerimento, se qualcuno avesse altre proposte le
 faccia sapere.

 Se andasse bene la mia proposta o altre, il passo successivo sarebbe
 quello di scrivere una email a Anita Graser del PSC di QGIS, lei si occupa
 anche di realizzare gli splashscreen di QGIS.

 Abbiamo tempo tutto settembre, ma prima decidiamo, meglio è.

 saluti

 --
 *Ing. Salvatore Fiandaca*
 *mobile*.:+39 327.493.8955
 *m*: *pigrecoinfin...@gmail.com *
 *C.F*.: FNDSVT71E29Z103G
 *P.IVA*: 06597870820
 *membro QGIS Italia - http://qgis.it/ *
 *socio GFOSS.it - *http://gfoss.it/
 *blog:*
 * https://pigrecoinfinito.com/  FB:
 Co-admin - https://www.facebook.com/qgis.it/
 **
  *
 *TW:  **https://twitter.com/totofiandaca
 *

 43°51'0.54"N  10°34'27.62"E - EPSG:4326

 “Se la conoscenza deve essere aperta a tutti,
 perchè mai limitarne l’accesso?”
 R. Stallman

 Questo documento, allegati inclusi, contiene informazioni di proprietà
 di FIANDACA SALVATORE e deve essere utilizzato esclusivamente dal
 destinatario in relazione alle finalità per le quali è stato ricevuto. E'
 vietata qualsiasi forma di riproduzione o divulgazione senza l'esplicito
 consenso di FIANDACA SALVATORE. Qualora fosse stato ricevuto per
 errore si prega di informare tempestivamente il mittente e distruggere la
 copia in proprio possesso.


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

>>>
>
> --
> *Ing. Salvatore Fiandaca*
> *mobile*.:+39 327.493.8955
> *m*: *pigrecoinfin...@gmail.com *
> *C.F*.: FNDSVT71E29Z103G
> *P.IVA*: 06597870820
> *membro QGIS Italia - http://qgis.it/ *
> *socio GFOSS.it - *http://gfoss.it/
> *blog:*
> * https://pigrecoinfinito.com/  FB: Co-admin
> - https://www.facebook.com/qgis.it/ **
>  *
> *TW:  **https://twitter.com/totofiandaca
> *
>
> 43°51'0.54"N  10°34'27.62"E - EPSG:4326
>
> “Se la conoscenza deve essere aperta a tutti,
> perchè mai limitarne l’accesso?”
> R. Stallman
>
> Questo documento, allegati inclusi, contiene informazioni di proprietà di
> FIANDACA SALVATORE e deve essere utilizzato esclusivamente dal destinatario
> in relazione alle finalità per le quali è stato ricevuto. E' vietata
> qualsiasi forma di riproduzione o divulgazione senza l'esplicito consenso
> di FIANDACA SALVATORE. Qualora fosse stato ricevuto per errore si prega
> di informare