User:CristianCantoro

From OpenStreetMap Wiki
Jump to navigation Jump to search

About me

Welcome on my user page.

Please find further information on my it.wiki user page (in italian). If you need to contact me, the best way is to leave a message in my it.wiki user talk page or drop me an email at "wikicantoro (AT) gmail (DOT) com" (or use the email user function). You can write either in English, Italian or French (I am also quite comfortable reading Spanish and Portuguese, but I can't write them)

For further contacts, please visit my user page on Wikimedia Italia's wiki.


Benvenuti sulla mia pagina utente

Potete trovare ulteriori informazioni su di me sulla mia pagina utente su Wikipedia in italiano. Per contattarmi, lasciatemi un messaggio nella mia pagina di discussione utente su it.wiki o scrivetemi all'indirizzo "wikicantoro (AT) gmail (DOT) com" (o usando la funzione "Scrivi una mail" nella colonna a sinistra). Potete scrivermi in inglese, italiano o francese (riesco a comprendere anche lo spagnolo e il portogrese scritto, ma non li so scrivere).

Per ulteriori informazioni visitate la mia pagina utente sul wiki di Wikimedia Italia.


Useful stuff

Overpass turbo queries

This code is a query for Overpass turbo that finds parking areas:

  • either nodes or areas;
  • without fee;
  • without gates;
  • with free access.

code

<query type="node">
  <has-kv k="amenity" v="parking"/>
  <has-kv k="fee" modv="not" v="yes"/>
  <has-kv k="access" modv="not" v="private"/>
  <has-kv k="barrier" modv="not" v="gate"/>
  <bbox-query {{bbox}}/>
</query>
<print/>
<query type="way">
	<has-kv k="amenity" v="parking"/>
    <has-kv k="fee" modv="not" v="yes"/>
  	<has-kv k="access" modv="not" v="private"/>
  	<has-kv k="barrier" modv="not" v="gate"/>
	<bbox-query {{bbox}}/>
</query>
<union>
  <item/>
  <recurse type="down"/>
</union>
<print/>