Utente:Nastoshka/Ripostiglio
ATTREZZI o in buon englishitaliano TOOLS
modificaXX:Special:Permalink/OLDID
- Not in the other language tool usa le categorie di livello
- tools
- Tool che mostra le pagine esistenti ma completametne vuote (cambia la fine dell'URL per cambiare progetto. Questo link è per it:voy)
- Modello citylist
{{Citylist | 1={{Città| nome=[[]] | alt='''' | descrizione=}} | 2={{Città| nome=[[]] | alt='''' | descrizione=}} | 3={{Città| nome=[[]] | alt='''' | descrizione=}} | 4={{Città| nome=[[]] | alt='''' | descrizione=}} | 5={{Città| nome=[[]] | alt='''' | descrizione=}} | 6={{Città| nome=[[]] | alt='''' | descrizione=}} | 7={{Città| nome=[[]] | alt='''' | descrizione=}} | 8={{Città| nome=[[]] | alt='''' | descrizione=}} | 9={{Città| nome=[[]] | alt='''' | descrizione=}} | 10={{Città| nome=[[]] | alt='''' | descrizione=}} | 11={{Città| nome=[[]] | alt='''' | descrizione=}} | 12={{Città| nome=[[]] | alt='''' | descrizione=}} | 13={{Città| nome=[[]] | alt='''' | descrizione=}} | 14={{Città| nome=[[]] | alt='''' | descrizione=}} | 15={{Città| nome=[[]] | alt='''' | descrizione=}} | 16={{Città| nome=[[]] | alt='''' | descrizione=}} | 17={{Città| nome=[[]] | alt='''' | descrizione=}} | 18={{Città| nome=[[]] | alt='''' | descrizione=}} | 19={{Città| nome=[[]] | alt='''' | descrizione=}} | 20={{Città| nome=[[]] | alt='''' | descrizione=}} }}
Template
modifica- {{Da aggiornare}}
- {{Clima}}
- {{Avvisocopyviol}}
- {{AvvisoCopyviol|voce=titolo_della_voce|url=indirizzo_web_del_sito}} --~~~~
- {{Mapmask}}
Statisiche voy
modificaLink esterni
modificaPer ricordarmi i Namespace
modificaNamespace di Wikivoyage | |||
---|---|---|---|
N° | Namespace | Discussione | N° |
0 | Principale | Discussione | 1 |
2 | Utente | Discussioni utente | 3 |
4 | Wikivoyage | Discussioni Wikivoyage | 5 |
6 | File | Discussioni file | 7 |
8 | MediaWiki | Discussioni MediaWiki | 9 |
10 | Template | Discussioni template | 11 |
12 | Aiuto | Discussioni aiuto | 13 |
14 | Categoria | Discussioni categoria | 15 |
100 | Portale | Discussioni portale | 101 |
828 | Modulo | Discussioni modulo | 829 |
Da fare
modificaMappe
modifica- Wikivoyage Districtifier by Renek
Wikidata
modificaArticoli presenti in molti Voy ma non in it.voy
modificaSELECT ?item ?itemLabel ?countryLabel (COUNT(DISTINCT ?languagelink) AS ?linkcount) WHERE {
?item wdt:P31 wd:Q515; # Cities
wdt:P17 ?country. # Located in a country
?country wdt:P30 wd:Q46. # Continent is Europe
{
?languagelink schema:about ?item; schema:isPartOf <https://en.wikivoyage.org/>. # with link in en.voy
} UNION {
?languagelink schema:about ?item; schema:isPartOf <https://de.wikivoyage.org/>. # OR with link in de.voy
} UNION {
?languagelink schema:about ?item; schema:isPartOf <https://ru.wikivoyage.org/>. # OR with link in ru.voy
} UNION {
?languagelink schema:about ?item; schema:isPartOf <https://fr.wikivoyage.org/>. # OR with link in fr.voy
}
FILTER(NOT EXISTS { # but no link on it.voy
?itlanguagelink schema:about ?item;
schema:inLanguage "it";
schema:isPartOf <https://it.wikivoyage.org/>.
})
SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en". }
}
GROUP BY ?item ?itemLabel ?countryLabel
ORDER BY DESC(?linkcount)
LIMIT 100
Ricerca per comuni / città in una nazione per label
modificaSELECT ?city ?cityLabel WHERE {
?city wdt:P31/wdt:P279* wd:Q15642541; # Instance of a human settlement (or all discendents of this entity = city, town, village....)
wdt:P17 wd:Q1028; # Located in Morocco
rdfs:label ?label.
FILTER(LANG(?label) = "en").
FILTER(CONTAINS(LCASE(?label), "tata")).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Ricerca in un raggio di 50&km
modificaSELECT DISTINCT ?place ?placeLabel ?location ?dist
WHERE {
# center coordinates
wd:Q3033 wdt:P625 ?center . # Gottinga
SERVICE wikibase:around {
?place wdt:P625 ?location .
bd:serviceParam wikibase:center ?center .
bd:serviceParam wikibase:radius "50" .
bd:serviceParam wikibase:distance ?dist.
}
# Filter for desired types of places
?place wdt:P31 ?type .
FILTER(?type IN (wd:Q515, wd:Q532, wd:Q486972, wd:Q8502, wd:Q839954)) # City, Village, Human settlement, Mountain, Archaeological site
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ASC(?dist)
LIMIT 50