Michael w
Joined 12 March 2013
Babel user information | ||
---|---|---|
| ||
Users by language |
This user is a winner of the International Museum Day Wikidata Competition 2021. |
This person participated in the Wikidata contest Coordinate Me 2024. |
This is a Wikidata user page. If you find this page on any site other than Wikidata (www.wikidata.org), you are viewing a mirror site. Be aware that the page may be outdated, and that the user this page belongs to may have no personal affiliation with any site other than Wikidata itself. The original page is located at https://www.wikidata.org/wiki/User:Michael_w. |
Abfragebeispiele
edit- https://www.wikidata.org/wiki/User:MTheiler
- https://www.wikidata.org/wiki/User:Stefan_K%C3%BChn
- Wikidata:SPARQL Tutorial: https://www.wikidata.org/wiki/Wikidata:SPARQL_tutorial/de
Kulturdenkmale in Penig
edit#---------------------------------------------------------------------------------------
# Alle Kulturdenkmale der Stadt Penig
#---------------------------------------------------------------------------------------
#defaultView:Table;Map
SELECT ?item ?itemLabel ?itemDescription ?image ?coordinate
WHERE
{
?item wdt:P131 wd:Q71145 . # Liegt in Verwaltungseinheit Penig
?item wdt:P1435 wd:Q19413851 . # Suche über Kulturdenkmal in Sachsen
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?item
Kulturdenkmale in Geithain
edit#---------------------------------------------------------------------------------------
# Alle Kulturdenkmale der Stadt Geithain
#---------------------------------------------------------------------------------------
#defaultView:Table;Map
SELECT ?item ?itemLabel ?itemDescription ?image ?coordinate
WHERE
{
?item wdt:P131 wd:Q10765 . # Liegt in Verwaltungseinheit Geithain
?item wdt:P1435 wd:Q11691318 . # Suche über Kulturdenkmal in Deutschland
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?item
Kulturdenkmale in Rochlitz
edit#---------------------------------------------------------------------------------------
# Alle Kulturdenkmale der Stadt Rochlitz
#---------------------------------------------------------------------------------------
#defaultView:Table;Map
SELECT ?item ?itemLabel ?itemDescription ?image ?coordinate
WHERE
{
?item wdt:P131 wd:Q71180 . # Liegt in Verwaltungseinheit Rochlitz
?item wdt:P1435 wd:Q11691318 . # Suche über Kulturdenkmal in Deutschland
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?item
alle Naturschutzgebiete im Landkreis Oder-Spree
edit#---------------------------------------------------------------------------------------
# alle Naturschutzgebiete im Landkreis Oder-Spree
#---------------------------------------------------------------------------------------
#defaultView:Table;Map
SELECT ?item ?itemLabel ?itemDescription ?image ?coordinate
WHERE
{
?item wdt:P31 wd:Q759421 . # ist ein Naturschutzgebiet
?item wdt:P131* wd:Q6178 . # irgendwo im Landkreis Oder-Spree
OPTIONAL { ?item wdt:P18 ?image . }
OPTIONAL { ?item wdt:P625 ?coordinate . }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}
ORDER BY ?item