Introduction
This documentation outlines key observations, known limitations, and conventions related to the GeoNames data dumps and ontologies used, as well as the transformation to RDF and the SPARQL editor.
Known Limitations and Approaches
1. Use of dcterms:modified vs. Absence of dcterms:created
Original GeoNames Data Issue
The GeoNames CSV dumps provide only the last modification date for each feature. This is represented as dcterms:modified in the RDF transformation. However, no corresponding dcterms:created property is present in the source data. This means the creation date of a given feature cannot be derived from the GeoNames dataset.
Alignment Approach
The modification date provided in the CSV (modification date column)
is mapped directly to dcterms:modified.
Since dcterms:created is entirely absent from the dataset, no
attempt is made to artificially populate it.
2. Namespace Prefix "gn" Variations
Original GeoNames Data Issue
The GeoNames ontology uses the namespace http://www.geonames.org/ontology#. However, in practice both the official files and third-party ones sometimes mix http and https variants of this prefix. These inconsistencies lead to subtle but significant issues:
- Queries using the https:// prefix may not match data stored with an http:// prefix, and vice versa.
Alignment Approach
To avoid mismatches, the officially correct prefix was
standardized:
PREFIX gn: <http://www.geonames.org/ontology#>
All pipeline outputs use the http:// form consistently.
A modified version of the GeoNames ontology
(ontology_v3.3_modified.rdf), which uses http:// like some of its
previous versions, is used to ensure consistent IRI usage across the
dataset.
3. Alternate Names and Language Tag Inconsistencies
Original GeoNames Data Issue
The GeoNames CSV dumps contain many alternate names without language codes. These untagged names appear in the alternateNames.txt file with empty language code fields. The language tag formats varies across the available datasets, leading to inconsistencies in how alternate names are represented.
Filtering Approach
To ensure consistency, strict filtering rules were applied in the RDF transformation:
- Alternate names with explicit language codes (e.g., de, en, fr) are included.
- Alternate names with no language codes are included.
- Entries marked as links or postal codes are treated separately and not mixed into alternate names.
4. Handling Population Values
Original GeoNames Data Issue
The GeoNames CSV dumps contain population figures for many features. However, population values of 0 almost always indicate that the actual population is unknown rather than truly zero. Keeping these values in RDF output would misrepresent data, especially in queries filtering for low or zero populations.
Alignment Approach
- Zero‑valued population entries were excluded during transformation.
- Only population values greater than zero are represented as gn:population triples.
5. Postal Codes and Integration Challenges
Original GeoNames Data Issue
GeoNames distributes postal code information separately in its ZIP export files and also encodes some postal codes within alternateNames.txt using the isolanguage = post marker. However, the official GeoNames RDF dumps (about.rdf files) do not consistently include postal codes. This creates a discrepancy between the CSV/ZIP sources and the RDF representation, making it difficult to fully match localities with their corresponding postal regions.
Integration Approach
To address these gaps, postal codes from the available sources were reconciled:
- Postal codes provided via the ZIP files are considered the main reference for coverage.
- Entries from alternateNames.txt marked with post are extracted and added as gn:postalCode values.
Custom Property Additions
-
Wikidata Property Integration
The GeoNames ontology does not provide certain nationally‑specific identifiers that are crucial for linking with government datasets. In the German context, one important identifier is the Amtlicher Gemeindeschlüssel (official municipality key), which uniquely identifies every German municipality.Integration Approach
Wikidata provides the property wdt:P439 for the Amtlicher Gemeindeschlüssel (official municipality key). GeoNames includes the actual key values in its CSV files.
During integration, the system reuses wdt:P439 as the property to link GeoNames features with their official keys.
It:- reads key values from GeoNames CSV data.
- assigns them to German municipalities using Wikidata’s wdt:P439.
- links each feature URI to its corresponding key.
-
Altitude data
Altitude information in GeoNames is available in the CSV dumps under the elevation and dem columns. The elevation value represents the feature’s altitude in meters when available, while the dem (Digital Elevation Model) provides a model‑based average elevation.
Integration Approach
During integration, both columns are read and converted to decimal values. The elevation value is the prefered altitude value, and if it is missing, the dem value is used as a fallback altitude value. The resulting altitude is then expressed using the wgs84_pos:alt property of the WGS84 vocabulary.
This ensures each geographic feature includes a consistent altitude value derived directly from the most reliable available source.
Feature Comparisons
The following tables show side-by-side comparisons of selected
example features across different GeoNames sources:
about.rdf files (downloaded from the GeoNames website
on October 18, 2025), the corresponding HTML pages, the Geonames RDF
dump (dated February 14, 2020), and the generated Turtle file
geonames_DE_2025-10-18.ttl. These comparisons make it easier to
identify consistent values across sources and highlight where
differences occur.
The tables make use of standard RDF prefixes, including:
gn:(http://www.geonames.org/ontology#)dcterms:(http://purl.org/dc/terms/)rdfs:(http://www.w3.org/2000/01/rdf-schema#)-
wgs84_pos:(http://www.w3.org/2003/01/geo/wgs84_pos#) foaf:(http://xmlns.com/foaf/0.1/)cc:(http://creativecommons.org/ns#)geo:(http://www.opengis.net/ont/geosparql#)wdt:(http://www.wikidata.org/prop/direct/)
The following color coding is used: green = consistent, yellow = minor differences, red = missing or major differences.
Summary Table
The table below provides an overview of whether specific RDF properties are present across the four GeoNames data sources.This summary uses simple Yes/No indicators to show whether a property is included in each source.
| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | Geonames RDF dump | HTML page | Found in GeoNames CSV: file/column |
| gn:Feature | Yes | Yes | Yes | Yes | Entity root; DE.txt |
| rdfs:isDefinedBy | Yes | Yes | Yes | Yes | Constructed from feature URI (geonameid) |
| rdfs:seeAlso | Yes | Yes | Yes | No | Derived from gn:wikipediaArticle(alternateNamesV2.txt / alternateName where isolanguage='link') |
| gn:name | Yes | Yes | Yes | Yes | DE.txt / name |
| gn:officialName | Yes | Yes | Yes | Yes | alternateNamesV2.txt / alternateName where isPreferredName=1 |
| gn:alternateName | Yes | Yes | Yes |
Yes | alternateNamesV2.txt / alternateName |
| gn:shortName | Yes | Yes | Yes | Yes | alternateNamesV2.txt / alternateName where isShortName=1 |
| gn:featureClass | Yes | Yes | Yes | Yes | DE.txt / feature class |
| gn:featureCode | Yes | Yes | Yes | Yes | DE.txt / feature code |
| gn:countryCode | Yes | Yes | Yes | Yes | DE.txt / country code |
| gn:population | Yes | Yes | Yes | Yes | DE.txt / population |
| wgs84_pos:lat | Yes | Yes | Yes | Yes | DE.txt / latitude |
| wgs84_pos:long | Yes | Yes | Yes | Yes | DE.txt / longitude |
| gn:parentFeature | Yes | Yes | Yes | Yes | admin1CodesASCII.txt, admin2Codes.txt, DE.txt/(admin3 code, admin4 code) |
| gn:childrenFeatures | Yes | Yes | Yes | No | Constructed URI using geonameid (e.g., https://sws.geonames.org/{geonameid}/contains.rdf) |
| gn:neighbouringFeatures | Yes | Yes | Yes | No | Constructed URI using geonameid (e.g., https://sws.geonames.org/{geonameid}/neighbours.rdf) |
| gn:locationMap | Yes | Yes | Yes | Yes | DE.txt / asciiname |
| gn:wikipediaArticle | Yes | Yes | Yes | Yes | alternateNames.txt / alternateName where type='wiki' |
| foaf:Document | Yes | Yes | No | No | Only in GeoNames RDF metadata |
| cc:license | Yes | Yes | Yes | No | Only in GeoNames RDF metadata |
| cc:attributionURL | Yes | Yes | No | No | Only in GeoNames RDF metadata |
| cc:attributionName | Yes | Yes | No | No | Only in GeoNames RDF metadata |
| dcterms:created | No | Yes | No | No | Only in GeoNames RDF metadata |
| dcterms:modified | Yes | Yes | No | No | DE.txt / modification date |
| wdt:P439 | Yes | No | No | Yes | DE.txt / (admin1 code, admin1 code, admin3 code, admin4 code ) |
| wgs84_pos:alt | Yes | No | No | Yes | DE.txt / elevation, dem |
| geo:asWKT | No | No | No | No | Polygon and bounding box downloads are available only in Premium export |
Feature 1: Germany
Feature IRI: https://sws.geonames.org/2921044/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| rdfs:isDefinedBy | https://sws.geonames.org/2921044/about.rdf | https://sws.geonames.org/2921044/about.rdf | https://sws.geonames.org/2921044/about.rdf | https://sws.geonames.org/2921044/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Germany | https://dbpedia.org/resource/Germany | https://dbpedia.org/resource/Germany | None |
| gn:name | Germany | Germany | Germany | Germany |
| gn:officialName | "i-Germany"@zu , "德国"@zh , "Orílẹ́ède Gemani"@yo , "Jámánì"@yo , "דייטשלאַנד"@yi , "Almaañ"@wo , "Đức"@vi , "Germaniya"@uz , "جرمنی"@ur , "Німеччина"@uk , "گېرمانىيە"@ug , "Германия"@tt , "Almanya"@tr , "Siamane"@to , "Germaniýa"@tk , "ጀርመን"@ti , "เยอรมัน"@th , "เยอรมนี"@th , "Германия"@tg , "జర్మనీ"@te , "ஜெர்மனி"@ta , "Ujerumani"@sw , "Tyskland"@sv , "Jérman"@su , "Немачка"@sr , "Gjermani"@sq , "Jarmal"@so , "Germany"@sn , "Nemčija"@sl , "Nemecko"@sk , "ජර්මනිය"@si , "Zâmani"@sg , "Duiskka"@se , "Duiska"@se , "جرمني"@sd , "जर्मनीदेश:"@sa , "Германия"@ru , "Germania"@ro , "Ubudage"@rn , "Germania"@rm , "Alemania"@qu , "Alemanha"@pt , "المان"@ps , "Niemcy"@pl , "ਜਰਮਨੀ"@pa , "Герман"@os , "ଜର୍ମାନୀ"@or , "Germany"@om , "Alemanha"@oc , "Tyskland"@no , "Duitsland"@nl , "जर्मनी"@ne , "Germany"@nd , "Tyskland"@nb , "ဂျာမနီ"@my , "il-Ġermanja"@mt , "Jerman"@ms , "जर्मनी"@mr , "जमिन"@mr , "Герман"@mn , "ജർമ്മനി"@ml , "Германија"@mk , "Tiamana"@mi , "Alemaina"@mg , "Vācija"@lv , "Alemanu"@lu , "Vokietija"@lt , "ເຢຍລະມັນ"@lo , "Alemani"@ln , "Budaaki"@lg , "Däitschland"@lb , "Германия"@ky , "Almayn"@kw , "Almanya"@ku , "جرمٔنی"@ks , "독일"@ko , "ಜರ್ಮನಿ"@kn , "អាល្លឺម៉ង់"@km , "Tysklandi"@kl , "Германия"@kk , "Njeremani"@ki , "გერმანია"@ka , "Jérman"@jv , "ドイツ連邦共和国"@ja , "ドイツ"@ja , "Germania"@it , "Þýskaland"@is , "ꄓꇩ"@ii , "Jamanị"@ig , "Jerman"@id , "Germania"@ia , "Գերմանիա"@hy , "Németország"@hu , "Njemačka"@hr , "जर्मनी"@hi , "גרמניה"@he , "Jamus"@ha , "જર્મની"@gu , "Alemaña"@gl , "A’ Ghearmailt"@gd , "an Ghearmáin"@ga , "Dútslân"@fy , "Allemagne"@fr , "Týskland"@fo , "Saksa"@fi , "Almaañ"@ff , "آلمان"@fa , "Alemania"@eu , "Saksamaa"@et , "Alemania"@es , "Germanujo"@eo , "Germany"@en , "Γερμανία"@el , "Germania nutome"@ee , "ཇཱར་མ་ནི"@dz , "Deutschland"@de , "Bundesrepublik Deutschland"@de , "Tyskland"@da , "Yr Almaen"@cy , "Německo"@cs , "Германи"@ce , "Alemanya"@ca , "Njemačka"@bs , "Nemačka"@bs , "Alamagn"@br , "འཇར་མན་"@bo , "জার্মানি"@bn , "Alimaɲi"@bm , "Германия"@bg , "Германія"@be , "Almaniya"@az , "জাৰ্মানী"@as , "ألمانيا"@ar , "ጀርመን"@am , "Gyaaman"@ak , "Duitsland"@af , "Germany"@aa | "i-Germany"@zu , "德国"@zh , "Orílẹ́ède Gemani"@yo , "Jámánì"@yo , "דייטשלאַנד"@yi , "Almaañ"@wo , "Đức"@vi , "Germaniya"@uz , "جرمنی"@ur , "Німеччина"@uk , "گېرمانىيە"@ug , "Германия"@tt , "Almanya"@tr , "Siamane"@to , "Germaniýa"@tk , "ጀርመን"@ti , "เยอรมัน"@th , "เยอรมนี"@th , "Германия"@tg , "జర్మనీ"@te , "ஜெர்மனி"@ta , "Ujerumani"@sw , "Tyskland"@sv , "Jérman"@su , "Немачка"@sr , "Gjermani"@sq , "Jarmal"@so , "Germany"@sn , "Nemčija"@sl , "Nemecko"@sk , "ජර්මනිය"@si , "Zâmani"@sg , "Duiskka"@se , "Duiska"@se , "جرمني"@sd , "जर्मनीदेश:"@sa , "Германия"@ru , "Germania"@ro , "Ubudage"@rn , "Germania"@rm , "Alemania"@qu , "Alemanha"@pt , "المان"@ps , "Niemcy"@pl , "ਜਰਮਨੀ"@pa , "Герман"@os , "ଜର୍ମାନୀ"@or , "Germany"@om , "Alemanha"@oc , "Tyskland"@no , "Duitsland"@nl , "जर्मनी"@ne , "Germany"@nd , "Tyskland"@nb , "ဂျာမနီ"@my , "il-Ġermanja"@mt , "Jerman"@ms , "जर्मनी"@mr , "जमिन"@mr , "Герман"@mn , "ജർമ്മനി"@ml , "Германија"@mk , "Tiamana"@mi , "Alemaina"@mg , "Vācija"@lv , "Alemanu"@lu , "Vokietija"@lt , "ເຢຍລະມັນ"@lo , "Alemani"@ln , "Budaaki"@lg , "Däitschland"@lb , "Германия"@ky , "Almayn"@kw , "Almanya"@ku , "جرمٔنی"@ks , "독일"@ko , "ಜರ್ಮನಿ"@kn , "អាល្លឺម៉ង់"@km , "Tysklandi"@kl , "Германия"@kk , "Njeremani"@ki , "გერმანია"@ka , "Jérman"@jv , "ドイツ連邦共和国"@ja , "ドイツ"@ja , "Germania"@it , "Þýskaland"@is , "ꄓꇩ"@ii , "Jamanị"@ig , "Jerman"@id , "Germania"@ia , "Գերմանիա"@hy , "Németország"@hu , "Njemačka"@hr , "जर्मनी"@hi , "גרמניה"@he , "Jamus"@ha , "જર્મની"@gu , "Alemaña"@gl , "A’ Ghearmailt"@gd , "an Ghearmáin"@ga , "Dútslân"@fy , "Allemagne"@fr , "Týskland"@fo , "Saksa"@fi , "Almaañ"@ff , "آلمان"@fa , "Alemania"@eu , "Saksamaa"@et , "Alemania"@es , "Germanujo"@eo , "Germany"@en , "Γερμανία"@el , "Germania nutome"@ee , "ཇཱར་མ་ནི"@dz , "Deutschland"@de , "Bundesrepublik Deutschland"@de , "Tyskland"@da , "Yr Almaen"@cy , "Německo"@cs , "Германи"@ce , "Alemanya"@ca , "Njemačka"@bs , "Nemačka"@bs , "Alamagn"@br , "འཇར་མན་"@bo , "জার্মানি"@bn , "Alimaɲi"@bm , "Германия"@bg , "Германія"@be , "Almaniya"@az , "জাৰ্মানী"@as , "ألمانيا"@ar , "ጀርመን"@am , "Gyaaman"@ak , "Duitsland"@af , "Germany"@aa | "Duiskka"@se, "Bundesrepublik Deutschland"@de, "Alemania"@es, "འཇར་མན་"@bo, "Siamane"@to, "Deutschland"@de, "Jamus"@ha, "ꄓꇩ"@ii, "ജര്മனி"@ml, "Alemani"@ln, "Germany"@en, "Germany"@nd, "ଜର୍ମାନୀ"@or, "Alemaña"@gl, "Ubudage"@rn, "Герман"@mn, "Germany"@sn, "Orílẹ́ède Gemani"@yo, "i-Germany"@zu, "ጀርመን"@ti, "Almaañ"@ff, "Germania nutome"@ee, "Budaaki"@lg, "Alemanu"@lu, "জাৰ্মানি"@as, "Gyaaman"@ak, "Alemaina"@mg, "Germany"@nd, "Germany"@am, "Germany"@ig, "Němska"@hsb, "Zâmani"@sg, "Germany"@sn, "Germany"@en, "Allemagne"@fr, "ဂျာမဏီ"@my, "Alimaɲi"@bm, "જર્મની"@gu, "Germany"@en, "Germany"@om, "Germany"@sn, "Germany"@sn, "Njeremani"@ki, "Tysklandi"@kl, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn, "Germany"@sn | "i-Germany"@zu , "德国"@zh , "Orílẹ́ède Gemani"@yo , "Jámánì"@yo , "דייטשלאַנד"@yi , "Almaañ"@wo , "Đức"@vi , "Germaniya"@uz , "جرمنی"@ur , "Німеччина"@uk , "گېرمانىيە"@ug , "Германия"@tt , "Almanya"@tr , "Siamane"@to , "Germaniýa"@tk , "ጀርመን"@ti , "เยอรมัน"@th , "เยอรมนี"@th , "Германия"@tg , "జర్మనీ"@te , "ஜெர்மனி"@ta , "Ujerumani"@sw , "Tyskland"@sv , "Jérman"@su , "Немачка"@sr , "Gjermani"@sq , "Jarmal"@so , "Germany"@sn , "Nemčija"@sl , "Nemecko"@sk , "ජර්මනිය"@si , "Zâmani"@sg , "Duiskka"@se , "Duiska"@se , "جرمني"@sd , "जर्मनीदेश:"@sa , "Германия"@ru , "Germania"@ro , "Ubudage"@rn , "Germania"@rm , "Alemania"@qu , "Alemanha"@pt , "المان"@ps , "Niemcy"@pl , "ਜਰਮਨੀ"@pa , "Герман"@os , "ଜର୍ମାନୀ"@or , "Germany"@om , "Alemanha"@oc , "Tyskland"@no , "Duitsland"@nl , "जर्मनी"@ne , "Germany"@nd , "Tyskland"@nb , "ဂျာမနီ"@my , "il-Ġermanja"@mt , "Jerman"@ms , "जर्मनी"@mr , "जमिन"@mr , "Герман"@mn , "ജർമ്മനി"@ml , "Германија"@mk , "Tiamana"@mi , "Alemaina"@mg , "Vācija"@lv , "Alemanu"@lu , "Vokietija"@lt , "ເຢຍລະມັນ"@lo , "Alemani"@ln , "Budaaki"@lg , "Däitschland"@lb , "Германия"@ky , "Almayn"@kw , "Almanya"@ku , "جرمٔنی"@ks , "독일"@ko , "ಜರ್ಮನಿ"@kn , "អាល្លឺម៉ង់"@km , "Tysklandi"@kl , "Германия"@kk , "Njeremani"@ki , "გერმანია"@ka , "Jérman"@jv , "ドイツ連邦共和国"@ja , "ドイツ"@ja , "Germania"@it , "Þýskaland"@is , "ꄓꇩ"@ii , "Jamanị"@ig , "Jerman"@id , "Germania"@ia , "Գերմանիա"@hy , "Németország"@hu , "Njemačka"@hr , "जर्मनी"@hi , "גרמניה"@he , "Jamus"@ha , "જર્મની"@gu , "Alemaña"@gl , "A’ Ghearmailt"@gd , "an Ghearmáin"@ga , "Dútslân"@fy , "Allemagne"@fr , "Týskland"@fo , "Saksa"@fi , "Almaañ"@ff , "آلمان"@fa , "Alemania"@eu , "Saksamaa"@et , "Alemania"@es , "Germanujo"@eo , "Germany"@en , "Γερμανία"@el , "Germania nutome"@ee , "ཇཱར་མ་ནི"@dz , "Deutschland"@de , "Bundesrepublik Deutschland"@de , "Tyskland"@da , "Yr Almaen"@cy , "Německo"@cs , "Германи"@ce , "Alemanya"@ca , "Njemačka"@bs , "Nemačka"@bs , "Alamagn"@br , "འཇར་མན་"@bo , "জার্মানি"@bn , "Alimaɲi"@bm , "Германия"@bg , "Германія"@be , "Almaniya"@az , "জাৰ্মানী"@as , "ألمانيا"@ar , "ጀርመን"@am , "Gyaaman"@ak , "Duitsland"@af , "Germany"@aa |
| gn:alternateName | "IJalimani"@zu , "德意志聯邦共和國"@zh , "德意志联邦共和国"@zh , "德國"@zh , "דייטשלאנד"@yi , "Alemanya"@war , "Deutän"@vo , "Duutsland"@vls , "Germania"@vec , "Olmoniya"@uz , "Германия"@udm , "Heremani"@ty , "Siaman"@tpi , "Alemanya"@tl , "สหพันธ์สาธารณรัฐเยอรมนี"@th , "ประเทศเยอรมนี"@th , "Олмон"@tg , "Alemaña"@tet , "ஜெர்மன்"@ta , "Udachi"@sw , "Jėrman"@su , "Tôitšhi"@st , "Gjermania"@sq , "Jarmalka"@so , "Germany"@sco , "Girmania"@scn , "Germània"@sc , "ФРГ"@ru , "Германии"@ru , "Ӂермания"@ro , "Jermaniya"@rmy , "Alimanya"@qu , "Alimaniya"@qu , "جرمني/آلمان"@ps , "Germania"@pms , "Deitschland"@pdc , "Germany"@pam , "Germuanii"@olo , "Allemangne"@nrm , "Tyskland"@nn , "Düütschland"@nds , "Teutōtitlan"@nah , "Germany"@na , "ജര്മ്മനി"@ml , "Alémani"@ln , "Germania"@lmo , "Discüssiun sura la fundazziun"@lmo , "Duutsjlandj"@li , "Girimane"@lg , "Alemania"@lad , "Germania"@la , "Алмания"@kk , "Jerman"@jv , "dotygu'e"@jbo , "Germania"@io , "Alemania"@ilo , "Germany"@ig , "Němska"@hsb , "Nemačka"@hbs , "Yn Ghermaan"@gv , "Alemaña"@gn , "A' Ghearmailt"@gd , "Gjermanie"@fur , "Alemagne"@frp , "Germanio"@eo , "West Germany"@en , "Federal Republic of Germany"@en , "Bundesrepublik"@de , "Германи"@cv , "Miemieckô"@csb , "ئەڵمانیا"@ckb , "Нямеччына"@be , "Deitschlånd"@bar , "Deitschland"@bar , "Alemaña"@ast , "ܓܪܡܢ"@arc , "المانيا"@ar , "Þēodiscland"@ang , "Alemaña"@an , "Duitschland" | "IJalimani"@zu , "德意志聯邦共和國"@zh , "德意志联邦共和国"@zh , "德國"@zh , "דייטשלאנד"@yi , "Alemanya"@war , "Deutän"@vo , "Duutsland"@vls , "Germania"@vec , "Olmoniya"@uz , "Германия"@udm , "Heremani"@ty , "Siaman"@tpi , "Alemanya"@tl , "สหพันธ์สาธารณรัฐเยอรมนี"@th , "ประเทศเยอรมนี"@th , "Олмон"@tg , "Alemaña"@tet , "ஜெர்மன்"@ta , "Udachi"@sw , "Jėrman"@su , "Tôitšhi"@st , "Gjermania"@sq , "Jarmalka"@so , "Germany"@sco , "Girmania"@scn , "Germània"@sc , "Германии"@ru , "Ӂермания"@ro , "Jermaniya"@rmy , "Alimanya"@qu , "Alimaniya"@qu , "جرمني/آلمان"@ps , "Germania"@pms , "Deitschland"@pdc , "Germany"@pam , "Germuanii"@olo , "Allemangne"@nrm , "Tyskland"@nn , "Düütschland"@nds , "Teutōtitlan"@nah , "Germany"@na , "ജര്മ്മനി"@ml , "Alémani"@ln , "Germania"@lmo , "Discüssiun sura la fundazziun"@lmo , "Duutsjlandj"@li , "Girimane"@lg , "Alemania"@lad , "Germania"@la , "Алмания"@kk , "Jerman"@jv , "dotygu'e"@jbo , "Germania"@io , "Alemania"@ilo , "Germany"@ig , "Němska"@hsb , "Nemačka"@hbs , "Yn Ghermaan"@gv , "Alemaña"@gn , "A' Ghearmailt"@gd , "Gjermanie"@fur , "Alemagne"@frp , "Germanio"@eo , "West Germany"@en , "Federal Republic of Germany"@en , "Германи"@cv , "Miemieckô"@csb , "ئەڵمانیا"@ckb , "Нямеччына"@be , "Deitschlånd"@bar , "Deitschland"@bar , "Alemaña"@ast , "ܓܪܡܢ"@arc , "المانيا"@ar , "Þēodiscland"@ang , "Alemaña"@an , "Duitschland" | "Jerman"@id, "สหพันธ์สาธารณรัฐเยอรมนี"@th, "Alimanya"@qu, "Nemčija"@sl, "Deutän"@vo, "Германия"@ru, "Alimaniya"@qu, "جرمنی"@ur, "Vācija"@lv, "Alemanha"@pt, "Germania"@pms, "Gjermani"@sq, "អាល្លឺម៉ង់"@km, "ཇཱར་མ་ནི"@dz, "Njemačka"@hr, "Jarmalka"@so, "Gjermania"@sq, "Deitschland"@pdc, "Germany"@pam, "Tyskland"@sv, "Tyskland"@nb, "Герман"@os, "德国"@zh, "Німеччина"@uk, "Alemanha"@oc, "Немачка"@sr, "Ġermanja"@mt, "Tôitšhi"@st, "Alemanya"@war, "Jėrman"@su, "เยอรมนี"@th, "Ujerumani"@sw, "Германия"@bg, "Allemangne"@nrm, "Německo"@cs, "Ӂермания"@ro, "ఙర్మని"@te, "ஜெர்மன்"@ta, "المان"@ps, "Jámánì"@yo, "דייטשלאנד"@yi, "독일"@ko, "Tyskland"@no, "ドイツ"@ja, "გერმანია"@ka, "گېرمانийә"@ug, "Düütschland"@nds, "المانيا"@ar, "Германія"@be, "Teutōtitlan"@nah, "Germany"@na, "Tiamana"@mi, "Alemaña"@tet, "Alémani"@ln, "Germania"@lmo, "Discüssiun sura la fundazziun"@lmo, "Duutsjlandj"@li, "Girimane"@lg, "Däitschland"@lb, "Alemania"@lad, "Germania"@la, "Almayn"@kw, "Germany"@aa, "Almanya"@ku, "Duutsland"@vls, "Алмания"@kk, "Jerman"@jv, "dotygu'e"@jbo, "Germania"@io, "Germania"@vec, "Germany"@ig, "Němska"@hsb, "Alemaña"@gn, "A' Ghearmailt"@gd, "Gjermanie"@fur, "Germanio"@eo, "Олмон"@tg, "Գերմանիա"@hy, "Miemieckô"@csb, "Олмония"@uz, "ജര്മ്മനി"@ml, "Tyskland"@da, "जर्मनी"@hi, "Alemania"@eu, "Duitsland"@af, "Alamagn"@br, "Alemanya"@tl, "Alemanya"@ca, "Siaman"@tpi, "Yr Almaen"@cy, "IJalimani"@zu, "Germanujo"@eo, "Germuanii"@olo, "德意志联邦共和国"@zh, "Deitschlånd"@bar, "Saksamaa"@et, "Týskland"@fo, "Almaniya"@az, "Saksa"@fi, "Þēodiscland"@ang, "Németország"@hu, "Germania"@it, "Vokietija"@lt, "Duitsland"@nl, "Alemania"@ilo, "Germania"@ia, "Germany"@om, "Germania"@ro, "West Germany"@en, "Nemecko"@sk, "ئەڵمانیا"@ckb, "Yn Ghermaan"@gv, "Dútslân"@fy, "Alemagne"@frp, "Jarmal"@so, "Германи"@cv, "Njemačka"@bs, "Нямеччына"@be, "Deitschland"@bar, "Udachi"@sw, "Almanya"@tr, "ජර්මනිය"@si, "Alemaña"@ast, "Alemaña"@an, "Heremani"@ty, "জার্মানি"@bn, "ဂျာမဏီ"@my, "Alimaɲi"@bm, "Duitschland", "Federal Republic of Germany"@en, "જર્મની"@gu, "Jerman"@ms, "An Ghearmáin"@ga, "Þýskaland"@is, "Nemačka"@hbs, "ເຢຍລະມັນ"@lo, "גרמניה"@he, "Германия"@udm, "Đức"@vi, "Γερμανία"@el, "آلمان"@fa, "Tyskland"@nn, "Niemcy"@pl, "Дuitsland"@af, "Gayarman"@sn, "Tysklandi"@kl, "ドイツ連邦共和国"@ja, "जमिन"@mr, "เยอรมัน"@th, "Duiska"@se, "ประเทศเยอรมนี"@th, "ஜெர்மனி"@ta, "جرمني/آلمان"@ps, "Almaañ"@ff, "Germania nutome"@ee, "Budaaki"@lg, "Германија"@mk, "Alemanu"@lu, "Nemačka"@bs, "জাৰ্মানি"@as, "Gyaaman"@ak, "जर्मनी"@ne, "Alemaina"@mg, "Germany"@nd, "ଜର୍ମାନୀ"@or, "Alemaña"@gl, "Ubudage"@rn, "Герман"@mn, "जर्मनी"@mr, "ܓܪܡܢ"@arc, "ألمانيا"@ar, "Zâmani"@sg, "Germany"@sn, "Germany"@en, "Germany"@sco, "Girmania"@scn, "Germània"@sc, "Germany"@zu, "Jermaniya"@rmy, "ಜರ್ಮನಿ"@kn, "Germania"@rm, "Olmoniya"@uz | "Allemagne"@fr , "Germany"@en , "Federal Republic of Germany"@en , "West Germany"@en , "Alemanya"@war , "Alemanha"@oc , "Alemaña"@an , "Alemaña"@ast , "Alemaña"@gl , "Almanya"@ku , "Almanya"@tr , "Almaniya"@az , "Almanya"@ku , "Almaniya"@az , "Alemania"@es , "Alemania"@eu , "Alemanya"@ca , "Alemanha"@pt , "Alemagna"@it , "Duitsland"@nl , "Düütschland"@nds , "Duitschland"@af , "Dütschland"@gsw , "Deutschland"@de , "Bundesrepublik Deutschland"@de , "Bundesrepublik"@de , "Deitschland"@bar , "Deitsechland"@pdc , "Deutän"@vo , "Yr Almaen"@cy , "an Ghearmáin"@ga , "Duitschland"@fy , "Duitsland"@vls , "Nemecko"@sk , "Nemčija"@sl , "Německo"@cs , "Němska"@hsb , "Németország"@hu , "Niemcy"@pl , "Njemačka"@bs , "Njemačka"@hr , "Gjermani"@sq , "Gjermania"@sq , "Gjermanie"@fur , "Germani"@ro , "Germania"@it , "Germania"@rm , "Germania"@la , "Germania"@vec , "Germania"@pms , "Germanio"@eo , "Germanujo"@eo , "Germaniya"@uz , "Germaniýa"@tk , "Germaniya"@rmy , "Germania"@vo , "Saksa"@fi , "Saksamaa"@et , "Tyskland"@da , "Tyskland"@nb , "Tyskland"@nn , "Tyskland"@no , "Tyskland"@sv , "Týskland"@fo , "Tysklandi"@kl , "Siaman"@tpi , "Siamane"@to , "Tôitšhi"@st , "Ubudage"@rn , "Ujerumani"@sw , "Udachi"@sw , "Vācija"@lv , "Vokietija"@lt , "Yn Ghermaan"@gv , "Þýskaland"@is , "Þēodiscland"@ang , "Γερμανία"@el , "გერმანია"@ka , "Գերմանիա"@hy , "גרמניה"@he , "دويتشلاند"@yi , "دייטשלאנד"@yi , "آلمان"@fa , "ألمانيا"@ar , "المانيا"@ar , "ئەڵمانیا"@ckb , "جرمني"@sd , "جرمنی"@ur , "جرمني/آلمان"@ps , "المان"@ps , "አጀርመን"@am , "ጄርመን"@ti , "ಜರ್ಮನಿ"@kn , "ஜெர்மனி"@ta , "ஜெர்மன்"@ta , "ජර්මනිය"@si , "ಜರ್ಮನಿ"@ml , "জাৰ্মানী"@as , "జర్మనీ"@te , "જર્મની"@gu , "ಜರ್ಮನಿ"@kn , "เยอรมนี"@th , "ประเทศเยอรมนี"@th , "เยอรมัน"@th , "សហព័ន្ធសាធារណរដ្ឋអាល្លឺម៉ង់"@th , "འཇར་མན་"@bo , "ဂျာမနီ"@my , "អាល្លឺម៉ង់"@km , "ドイツ"@ja , "ドイツ連邦共和国"@ja , "德国"@zh , "德國"@zh , "德意志联邦共和国"@zh , "德意志聯邦共和國"@zh-Hant , "德國"@zh-Hant , "i-Germany"@zu , "IJalimani"@zu , "Budaaki"@lg , "Girimane"@lg , "Jermaniya"@rmy , "Zâmani"@sg , "Alemani"@ln , "Alémani"@ln , "Alemanu"@lu , "Gyaaman"@ak , "Orílẹ́ède Gemani"@yo , "Jámánì"@yo , "Jamus"@ha , "Jarmalka"@so , "Jarmal"@so , "Jerman"@id , "Jérman"@jv , "Jėrman"@su , "Đức"@vi , "Duiska"@se , "Budaaki"@lg , "ጀርመን"@am , "ཇཱར་མ་ནི"@dz , "ꄓꇩ"@ii |
| gn:shortName | "ФРГ"@ru , "Bundesrepublik"@de | "ФРГ"@ru , "Bundesrepublik"@de | None | "ФРГ"@ru , "Bundesrepublik"@de , "Deutschland"@de |
| gn:featureClass | https://www.geonames.org/ontology#A | https://www.geonames.org/ontology#A | https://www.geonames.org/ontology#A | A |
| gn:featureCode | https://www.geonames.org/ontology#A.PCLI | https://www.geonames.org/ontology#A.PCLI | https://www.geonames.org/ontology#A.PCLI | PCLI |
| gn:countryCode | DE | DE | DE | DE |
| gn:population | 82927922 | 82927922 | 81,802,257 | 82927922 |
| wgs84_pos:lat | 51.5 | 51.5 | 51.5 | 51.5 |
| wgs84_pos:long | 10.5 | 10.5 | 10.5 | 10.5 |
| gn:parentFeature | https://sws.geonames.org/12217848/ , https://sws.geonames.org/12503661/ , https://sws.geonames.org/12718413/ , https://sws.geonames.org/6255148/ , https://sws.geonames.org/6695072/ , https://sws.geonames.org/9408659/ | https://sws.geonames.org/12217848/ , https://sws.geonames.org/12503661/ , https://sws.geonames.org/12718413/ , https://sws.geonames.org/6695072/ , https://sws.geonames.org/9408659/ | https://sws.geonames.org/9408659/, https://sws.geonames.org/6255148/, https://sws.geonames.org/6695072/" | https://sws.geonames.org/12217848/ , https://sws.geonames.org/12503661/ , https://sws.geonames.org/12718413/ , https://sws.geonames.org/6695072/ , https://sws.geonames.org/9408659/ |
| gn:childrenFeatures | https://sws.geonames.org/2921044/contains.rdf | https://sws.geonames.org/2921044/contains.rdf | https://sws.geonames.org/2921044/contains.rdf | None |
| gn:neighbouringFeatures | https://sws.geonames.org/2921044/neighbours.rdf | https://sws.geonames.org/2921044/neighbours.rdf | https://sws.geonames.org/2921044/neighbours.rdf | None |
| gn:locationMap | https://www.geonames.org/2921044/federal-republic-of-germany.html | https://www.geonames.org/2921044/federal-republic-of-germany.html | https://www.geonames.org/2921044/federal-republic-of-germany.html | https://www.geonames.org/2921044/federal-republic-of-germany.html |
| gn:wikipediaArticle | https://en.wikipedia.org/wiki/Germany , https://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0 | https://en.wikipedia.org/wiki/Germany , https://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0 | https://en.wikipedia.org/wiki/Germany , https://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0 | https://en.wikipedia.org/wiki/Germany , https://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0 |
| foaf:Document | https://sws.geonames.org/2921044/about.rdf | https://sws.geonames.org/2921044/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2006-01-15 | None | None |
| dcterms:modified | 2024-11-04 | 2024-11-04 | None | None |
| wdt:P439 | None | None | None | None |
| wgs84_pos:alt | 303 | None | None | 303 |
| geo:asWKT | None | None | None | None |
Feature 2: Bavaria
Feature IRI: https://sws.geonames.org/2951839/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| rdfs:isDefinedBy | https://sws.geonames.org/2951839/about.rdf | https://sws.geonames.org/2951839/about.rdf | https://sws.geonames.org/2951839/about.rdf | https://sws.geonames.org/2951839/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Bavaria | https://dbpedia.org/resource/Bavaria | https://dbpedia.org/resource/Bavaria | None |
| gn:name | "Bavaria" | "Bavaria" | "Bavaria" | "Bavaria" |
| gn:officialName | "Bayern"@de , "Bavaria"@en , "바이에른 자유주"@ko , "Baviera"@es , "بفاريا"@ar | "Bayern"@de , "Bavaria"@en , "바이에른 자유주"@ko , "Baviera"@es , "بفاريا"@ar | "بفاريا"@ar, "바이에른 자유주"@ko, "Bavaria"@en, "Bayern"@de, "Bayern", "Baviera"@es | "بفاريا"@ar, "바이에른 자유주"@ko, "Bavaria"@en, "Bayern"@de, "Bayern", "Baviera"@es |
| gn:alternateName | "بایرن"@fa , "Bavaria" , "巴伐利亚州"@zh , "拜仁"@yue , "Bavaria"@yo , "בייערן"@yi , "ბავარია"@xmf , "巴伐利亚"@wuu , "Bayern"@war , "Bayän"@vo , "Bayan"@vmf , "Beyern"@vls , "Bayern"@vi , "Baviera"@vec , "Bavariya"@uz , "باواریا"@ur , "Баварія"@uk , "Бавария"@tt , "Bavyera"@tr , "Bavariya"@tly , "Bavaria"@tl , "Bawariýa"@tk , "รัฐบาวาเรีย"@th , "Бавария"@tg , "Baviera"@tet , "బవేరియా"@te , "பவேரியா"@ta , "Bajery"@szl , "Bavaria"@sw , "Bayern"@sv , "Bayern"@su , "Bayern"@stq , "Баварска"@sr , "Bavaria"@sq , "Bavarska"@sl , "Bavorsko"@sk , "බවයිරා"@si , "Bavarėjė"@sgs , "Bayern"@se , "بويريا"@sd , "Bavarie"@sco , "Baviera"@scn , "Baviera"@sc , "Бавария"@sah , "Баварія"@rue , "Бавария"@ru , "Bavaria"@ro , "Baviera"@rm , "Bayern"@qu , "Baviera"@pt , "بایرن"@ps , "باویریا"@pnb , "Baviera"@pms , "Bawaria"@pl , "Bayan"@pfl , "Bavaari"@pdc , "Bavière"@pcd , "Freistaat Bayern"@pap , "Babyera"@pam , "ਬਾਈਆਨ"@pa , "Бавари"@os , "Bavièra"@oc , "Bavaria"@nov , "Bayern"@no , "Bayern"@nn , "Beieren"@nl , "बभेरिया"@new , "बाभारिया"@ne , "Bayern"@nds , "Bayern"@nb , "Bayern"@nan , "Bavaria"@nah , "باوریا"@mzn , "ဘာဗေးရီးယားပြည်နယ်"@my , "Bavarja"@mt , "Bavaria"@ms , "बायर्न"@mr , "Бавар"@mn , "ബവേറിയ"@ml , "Баварија"@mk , "Bavaria"@mg , "巴伐利亞"@lzh , "Bavārija"@lv , "Bavāreja"@ltg , "Bavarija"@lt , "Baviera"@lmo , "Paiern"@lld , "Bavea"@lij , "Beiere"@li , "Bayern"@lfn , "Bayern"@lb , "Baviera"@lad , "Bavaria"@la , "Бавария"@ky , "Bavaria"@kw , "Bayern"@ku , "Bajore"@ksh , "ಬವೇರಿಯಾ"@kn , "Бавария"@kk , "Bavaria"@kg , "Bavariya"@kaa , "ბავარია"@ka , "Bayern"@jv , "バイエルン"@ja , "Baviera"@it , "Bæjaraland"@is , "Bavaria"@io , "Бавари"@inh , "Bavaria"@ilo , "Bavaria"@ie , "Bayern"@id , "Bavaria"@ia , "Պաւարիա"@hyw , "Բավարիա"@hy , "Bajorország"@hu , "Bayerska"@hsb , "Bavarska"@hr , "बायर्न"@hi , "בוואריה"@he , "Bavarska"@hbs , "Bayern"@hak , "Yn Vaveyr"@gv , "બાવેરિયા"@gu , "Bayern"@gsw , "Baviera"@gn , "Baviera"@gl , "Bayern"@gd , "An Bhaváir"@ga , "Beieren"@fy , "Baviere"@fur , "Bayern"@frr , "Baviére"@frp , "Bavière"@fr , "Baijeri"@fi , "Baviera"@ext , "Bavaria"@eu , "Baieri"@et , "Bayern"@es , "Bavario"@eo , "Free State of Bavaria"@en , "Βαυαρία"@el , "Bayerska"@dsb , "Bavyera"@diq , "Bayern"@da , "Bafaria"@cy , "Бавари"@cv , "Bajerë"@csb , "Bavorsko"@cs , "Bavariya"@crh , "Baviera"@co , "باڤاریا"@ckb , "Bavaria"@ceb , "Бавари"@ce , "Bayern"@cdo , "Baviera"@ca , "Бавари"@bxr , "Bavarska"@bs , "Bavaria"@br , "বায়ার্ন"@bn , "Бавария"@bg , "Баварыя"@be , "Bayern"@bar , "Bayern"@ban , "Бавария"@ba , "بایرن"@azb , "Bavariya"@az , "Bayern suyu"@ay , "Estáu Llibre de Baviera"@ast , "بافاريا"@arz , "باڤاريا"@ary , "بايرين"@ar , "بايرن"@ar , "بافاريا"@ar , "Bægwaraland"@ang , "Bavera"@an , "ባቫሪያ"@am , "Beiere"@af , "Land Bayern" , "Freistaat Bayern" | "بایرن"@fa , "Bavaria" , "巴伐利亚州"@zh , "拜仁"@yue , "Bavaria"@yo , "בייערן"@yi , "ბავარია"@xmf , "巴伐利亚"@wuu , "Bayern"@war , "Bayän"@vo , "Bayan"@vmf , "Beyern"@vls , "Bayern"@vi , "Baviera"@vec , "Bavariya"@uz , "باواریا"@ur , "Баварія"@uk , "Бавария"@tt , "Bavyera"@tr , "Bavariya"@tly , "Bavaria"@tl , "Bawariýa"@tk , "รัฐบาวาเรีย"@th , "Бавария"@tg , "Baviera"@tet , "బవేరియా"@te , "பவேரியா"@ta , "Bajery"@szl , "Bavaria"@sw , "Bayern"@sv , "Bayern"@su , "Bayern"@stq , "Баварска"@sr , "Bavaria"@sq , "Bavarska"@sl , "Bavorsko"@sk , "බවයිරා"@si , "Bavarėjė"@sgs , "Bayern"@se , "بويريا"@sd , "Bavarie"@sco , "Baviera"@scn , "Baviera"@sc , "Бавария"@sah , "Баварія"@rue , "Бавария"@ru , "Bavaria"@ro , "Baviera"@rm , "Bayern"@qu , "Baviera"@pt , "بایرن"@ps , "باویریا"@pnb , "Baviera"@pms , "Bawaria"@pl , "Bayan"@pfl , "Bavaari"@pdc , "Bavière"@pcd , "Freistaat Bayern"@pap , "Babyera"@pam , "ਬਾਈਆਨ"@pa , "Бавари"@os , "Bavièra"@oc , "Bavaria"@nov , "Bayern"@no , "Bayern"@nn , "Beieren"@nl , "बभेरिया"@new , "बाभारिया"@ne , "Bayern"@nds , "Bayern"@nb , "Bayern"@nan , "Bavaria"@nah , "باوریا"@mzn , "ဘာဗေးရီးယားပြည်နယ်"@my , "Bavarja"@mt , "Bavaria"@ms , "बायर्न"@mr , "Бавар"@mn , "ബവേറിയ"@ml , "Баварија"@mk , "Bavaria"@mg , "巴伐利亞"@lzh , "Bavārija"@lv , "Bavāreja"@ltg , "Bavarija"@lt , "Baviera"@lmo , "Paiern"@lld , "Bavea"@lij , "Beiere"@li , "Bayern"@lfn , "Bayern"@lb , "Baviera"@lad , "Bavaria"@la , "Бавария"@ky , "Bavaria"@kw , "Bayern"@ku , "Bajore"@ksh , "ಬವೇರಿಯಾ"@kn , "Бавария"@kk , "Bavaria"@kg , "Bavariya"@kaa , "ბავარია"@ka , "Bayern"@jv , "バイエルン"@ja , "Baviera"@it , "Bæjaraland"@is , "Bavaria"@io , "Бавари"@inh , "Bavaria"@ilo , "Bavaria"@ie , "Bayern"@id , "Bavaria"@ia , "Պաւարիա"@hyw , "Բավարիա"@hy , "Bajorország"@hu , "Bayerska"@hsb , "Bavarska"@hr , "बायर्न"@hi , "בוואריה"@he , "Bavarska"@hbs , "Bayern"@hak , "Yn Vaveyr"@gv , "બાવેરિયા"@gu , "Bayern"@gsw , "Baviera"@gn , "Baviera"@gl , "Bayern"@gd , "An Bhaváir"@ga , "Beieren"@fy , "Baviere"@fur , "Bayern"@frr , "Baviére"@frp , "Bavière"@fr , "Baijeri"@fi , "Baviera"@ext , "Bavaria"@eu , "Baieri"@et , "Bayern"@es , "Bavario"@eo , "Free State of Bavaria"@en , "Βαυαρία"@el , "Bayerska"@dsb , "Bavyera"@diq , "Bayern"@da , "Bafaria"@cy , "Бавари"@cv , "Bajerë"@csb , "Bavorsko"@cs , "Bavariya"@crh , "Baviera"@co , "باڤاریا"@ckb , "Bavaria"@ceb , "Бавари"@ce , "Bayern"@cdo , "Baviera"@ca , "Бавари"@bxr , "Bavarska"@bs , "Bavaria"@br , "বায়ার্ন"@bn , "Бавария"@bg , "Баварыя"@be , "Bayern"@bar , "Bayern"@ban , "Бавария"@ba , "بایرن"@azb , "Bavariya"@az , "Bayern suyu"@ay , "Estáu Llibre de Baviera"@ast , "بافاريا"@arz , "باڤاريا"@ary , "بايرين"@ar , "بايرن"@ar , "بافاريا"@ar , "Bægwaraland"@ang , "Bavera"@an , "ባቫሪያ"@am , "Beiere"@af , "Land Bayern" , "Freistaat Bayern" | ""Bavyera"@tr, "باواریا"@ur, "Bavaria"@ro, "Bavaari"@pdc, "Bavaria"@la, "بايرين"@ar, "Bavaria"@io, "بايرن"@ar, "Bavarska"@hr, "بويريا"@sd, "Baviera"@gl, "باویریا"@pnb, "Bavera"@an, "بایرن"@azb, "Baieri"@et, "بافاريا"@arz, "Bayern"@da, "Baviera"@ca, "Бавария"@bg, "Estáu Llibre de Baviera"@ast, "Bayern"@es, "巴伐利亚"@zh, "Баварія"@uk, "பவேரியா"@ta, "ბავარია"@ka, "Bavaria", "バイエルン州"@ja, "Βαυαρία"@el, "بافاريا"@ar, "Բավարիա"@hy, "Land Bayern", "بایرن"@fa, "Bavorsko"@cs, "Bavarska"@bs, "Free State of Bavaria"@en, "Bavario"@eo, "Баварска"@sr, "Bavorsko"@sk, "Baviera"@scn, "Bayern"@nn, "Bayern"@nds, "Bavārija"@lv, "Bayern"@lb, "Bayern"@jv, "Baviera"@it, "Freistaat Bayern", "Bajorország"@hu, "Baijeri"@fi, "Bavaria"@eu, "Bavarska"@hbs, "Baiarn"@bar, "Bayän"@vo, "Bayern"@sv, "Bavarska"@sl, "Бавария"@ru, "Baviera"@pt, "Beiere"@af, "בוואריה"@he, "Bayern"@id, "Bayern"@no, "Beieren"@nl, "Bawaria"@pl, "Bavière"@fr, "Bayern"@vi, "Baian"@bar, "Bavarija"@lt, "Bæjaraland"@is, "Баварија"@mk | "바이에른 자유주"@ko, "An Bhaváir"@ga, "Babyera"@pam, "Bægwaraland"@ang, "Bæjaraland"@is, "Bafaria"@cy, "Baieri"@et, "Baiern"@nds-NL, "Baijeri"@fi, "Bajerë"@csb, "Bajery"@szl, "Bajore"@ksh, "Bajorország"@hu, "Bavaari"@pdc, "Bavāreja"@ltg, "Bavarėjė"@sgs, "Bavaria"@br, "Bavaria"@ceb, "Bavaria"@en, "Bavaria"@eu, "Bavaria"@ia, "Bavaria"@ie, "Bavaria"@ilo, "Bavaria"@io, "Bavaria"@kg, "Bavaria"@kw, "Bavaria"@la, "Bavaria"@mg, "Bavaria"@ms, "Bavaria"@nah, "Bavaria"@nov, "Bavaria"@ro, "Bavaria"@sq, "Bavaria"@sw, "Bavaria"@tl, "Bavaria"@yo, "Bavarie"@sco, "Bavarija"@lt, "Bavārija"@lv, "Bavario"@eo, "Bavariya"@az, "Bavariya"@crh, "Bavariya"@kaa, "Bavariya"@tly, "Bavariya"@uz, "Bavarja"@mt, "Bavarska"@bs, "Bavarska"@hbs, "Bavarska"@hr, "Bavarska"@sl, "Bavea"@lij, "Bavera"@an, "Baviera"@ca, "Baviera"@co, "Baviera"@es, "Baviera"@ext, "Baviera"@gl, "Baviera"@gn, "Baviera"@it, "Baviera"@lad, "Baviera"@lmo, "Baviera"@pms, "Baviera"@pt, "Baviera"@rm, "Baviera"@sc, "Baviera"@scn, "Baviera"@tet, "Baviera"@vec, "Bavièra"@oc, "Baviere"@fur, "Baviére"@frp, "Bavière"@fr, "Bavière"@pcd, "Bavorsko"@cs, "Bavorsko"@sk, "Bavyera"@diq, "Bavyera"@tr, "Bawaria"@pl, "Bawariýa"@tk, "Bayan"@pfl, "Bayan"@vmf, "Bayän"@vo, "Bayern"@ban, "Bayern"@bar, "Bayern"@cdo, "Bayern"@da, "Bayern"@de, "Bayern"@es, "Bayern"@frr, "Bayern"@gd, "Bayern"@gsw, "Bayern"@hak, "Bayern"@id, "Bayern"@jv, "Bayern"@ku, "Bayern"@lb, "Bayern"@lfn, "Bayern"@nan, "Bayern"@nb, "Bayern"@nds, "Bayern"@nn, "Bayern"@no, "Bayern"@qu, "Bayern"@se, "Bayern"@stq, "Bayern"@su, "Bayern"@sv, "Bayern"@vi, "Bayern"@war, "Bayern suyu"@ay, "Bayerska"@dsb, "Bayerska"@hsb, "Beiere"@af, "Beiere"@li, "Beieren"@fy, "Beieren"@nl, "Beyern"@vls, "Estáu Llibre de Baviera"@ast, "Free State of Bavaria"@en, "Freistaat Bayern"@pap, "Land Bayern", "Paiern"@lld, "Yn Vaveyr"@gv, "Βαυαρία"@el, "Бавар"@mn, "Бавари"@bxr, "Бавари"@ce, "Бавари"@cv, "Бавари"@inh, "Бавари"@os, "Баварија"@mk, "Бавария"@ba, "Бавария"@bg, "Бавария"@kk, "Бавария"@ky, "Бавария"@ru, "Бавария"@sah, "Бавария"@tg, "Бавария"@tt, "Баварія"@rue, "Баварія"@uk, "Баварска"@sr, "Баварыя"@be, "ბავარია"@ka, "ბავარია"@xmf, "Բավարիա"@hy, "Պաւարիա"@hyw, "בוואריה"@he, "בייערן"@yi, "بافاريا"@ar, "بافاريا"@arz, "باڤاريا"@ary, "باڤاریا"@ckb, "باواریا"@ur, "باوریا"@mzn, "باویریا"@pnb, "بايرن"@ar, "بايرين"@ar, "بایرن"@azb, "بایرن"@fa, "بایرن"@ps, "بفاريا"@ar, "بويريا"@sd, "ባቫሪያ"@am, "बभेरिया"@new, "बाभारिया"@ne, "बायर्न"@hi, "बायर्न"@mr, "বায়ার্ন"@bn, "ਬਾਈਆਨ"@pa, "બાવેરિયા"@gu, "பவேரியா"@ta, "బవేరియా"@te, "ಬವೇರಿಯಾ"@kn, "ബവേറിയ"@ml, "බවයිරා"@si, "รัฐบาวาเรีย"@th, "ဘာဗေးရီးယားပြည်နယ်"@my, "バイエルン"@ja, "巴伐利亚"@wuu, "巴伐利亚州"@zh, "巴伐利亞"@lzh, "巴伐利亞州"@zh-Hant, "巴伐利亞州"@zh-HK, "巴伐利亞州"@zh-MO, "拜仁"@yue |
| gn:shortName | "Bayern"@de , "Bavaria", "Baviera"@en | None | None | "Bayern"@de , "Bavaria", "Baviera"@en |
| gn:featureClass | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | A |
| gn:featureCode | http://www.geonames.org/ontology#A.ADM1 | http://www.geonames.org/ontology#A.ADM1 | http://www.geonames.org/ontology#A.ADM1 | A.ADM1 |
| gn:countryCode | DE | DE | DE | DE |
| gn:population | 13124737 | 13124737 | 12510331 | 13124737 |
| wgs84_pos:lat | 49 | 49 | 49 | 49 |
| wgs84_pos:long | 11.5 | 11.5 | 11.5 | 11.5 |
| gn:parentFeature | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:parentCountry | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:childrenFeatures | https://sws.geonames.org/2951839/contains.rdf | https://sws.geonames.org/2951839/contains.rdf | https://sws.geonames.org/2951839/contains.rdf | None |
| gn:wikipediaArticle | https://en.wikipedia.org/wiki/Bavaria , https://ru.wikipedia.org/wiki/%D0%91%D0%B0%D0%B2%D0%B0%D1%80%D0%B8%D1%8F | https://en.wikipedia.org/wiki/Bavaria , https://ru.wikipedia.org/wiki/%D0%91%D0%B0%D0%B2%D0%B0%D1%80%D0%B8%D1%8F | https://en.wikipedia.org/wiki/Bavaria , https://ru.wikipedia.org/wiki/%D0%91%D0%B0%D0%B2%D0%B0%D1%80%D0%B8%D1%8F | https://en.wikipedia.org/wiki/Bavaria , https://ru.wikipedia.org/wiki/%D0%91%D0%B0%D0%B2%D0%B0%D1%80%D0%B8%D1%8F |
| gn:locationMap | https://www.geonames.org/2951839/bavaria.html | https://www.geonames.org/2951839/bavaria.html | https://www.geonames.org/2951839/bavaria.html | https://www.geonames.org/2951839/bavaria.html |
| foaf:Document | https://sws.geonames.org/2951839/about.rdf | https://sws.geonames.org/2951839/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2006-01-15 | None | None |
| dcterms:modified | 2022-12-26 | 2022-12-26 | None | None |
| wdt:P439 | 09 | None | None | 02 |
| wgs84_pos:alt | 503 | None | None | 503 |
| geo:asWKT | None | None | None | None |
Feature 3: Upper Bavaria
Feature IRI: https: https://sws.geonames.org/2861322/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| rdfs:isDefinedBy | https://sws.geonames.org/2861322/about.rdf | https://sws.geonames.org/2861322/about.rdf | https://sws.geonames.org/2861322/about.rdf | https://sws.geonames.org/2861322/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Upper_Bavaria | https://dbpedia.org/resource/Upper_Bavaria | https://dbpedia.org/resource/Upper_Bavaria | None |
| gn:name | "Upper Bavaria" | "Upper Bavaria" | "Upper Bavaria" | "Upper Bavaria" |
| gn:officialName | "Regierungsbezirk Oberbayern"@de | "Regierungsbezirk Oberbayern"@de | None | "Regierungsbezirk Oberbayern"@de |
| gn:alternateName | "Øvre Bayern"@no , "Upper Bavaria"@en | "Øvre Bayern"@no , "Upper Bavaria"@en | "Øvre Bayern"@no , "Upper Bavaria"@en, "Regierungsbezirk" Oberbayern"@de | "Øvre Bayern"@no , "Upper Bavaria"@en |
| gn:shortName | "Alta Baviera"@it , "Haute-Bavière"@fr , "Oberbayern"@de | "Alta Baviera"@it , "Haute-Bavière"@fr , "Oberbayern"@de | "Alta Baviera"@it , "Haute-Bavière"@fr , "Oberbayern"@de | "Alta Baviera"@it , "Haute-Bavière"@fr , "Oberbayern"@de |
| gn:featureClass | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | A |
| gn:featureCode | http://www.geonames.org/ontology#A.ADM2 | http://www.geonames.org/ontology#A.ADM2 | http://www.geonames.org/ontology#A.ADM2 | A.ADM2 |
| gn:countryCode | DE | DE | DE | DE |
| gn:parentCountry | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:population | 4764548 | 4764548 | 4232962 | 4764548 |
| wgs84_pos:lat | 48 | 48 | 48 | 48 |
| wgs84_pos:long | 11 | 11 | 11 | 11 |
| gn:parentFeature | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| gn:parentADM1 | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| gn:childrenFeatures | https://sws.geonames.org/2861322/contains.rdf | https://sws.geonames.org/2861322/contains.rdf | https://sws.geonames.org/2861322/contains.rdf | None |
| gn:wikipediaArticle | https://sws.geonames.org/2861322/contains.rdf | https://sws.geonames.org/2861322/contains.rdf | https://sws.geonames.org/2861322/contains.rdf | https://sws.geonames.org/2861322/contains.rdf |
| gn:locationMap | https://www.geonames.org/2861322/upper-bavaria.html | https://www.geonames.org/2861322/upper-bavaria.html | https://www.geonames.org/2861322/upper-bavaria.html | https://www.geonames.org/2861322/upper-bavaria.html |
| foaf:Document | https://sws.geonames.org/2861322/about.rdf | https://sws.geonames.org/2861322/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2006-01-15 | None | None |
| dcterms:modified | 2025-09-28 | 2025-09-28 | None | None |
| wdt:P439 | 091 | None | None | 091 |
| wgs84_pos:alt | 647 | None | None | 647 |
| geo:asWKT | None | None | None | None |
Feature 4: Munich (rural district)
Feature IRI: https: https://sws.geonames.org/3220838/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/3220838/ | https://sws.geonames.org/3220838/ | https://sws.geonames.org/3220838/ | https://sws.geonames.org/3220838/ |
| rdfs:isDefinedBy | https://sws.geonames.org/3220838/about.rdf | https://sws.geonames.org/3220838/about.rdf | https://sws.geonames.org/3220838/about.rdf | https://sws.geonames.org/3220838/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Munich_%28district%29 | https://dbpedia.org/resource/Munich_%28district%29 | https://dbpedia.org/resource/Munich_%28district%29 | None |
| gn:name | "Munich" | "Munich" | "Munich" | "Munich" |
| gn:officialName | "Munich"@en , "Munich"@es , "Landkreis München"@de | "Munich"@en , "Munich"@es , "Landkreis München"@de | "Munich"@en , "Munich"@es , "Landkreis München"@de | "Munich"@en , "Munich"@es , "Landkreis München"@de |
| gn:alternateName | "慕尼黑县"@zh , "Munich"@war , "München"@vi , "Округ Минхен"@sr , "Munich"@sco , "Мюнхен"@ru , "Districtul München"@ro , "Munique"@pt , "Powiat Monachium"@pl , "Munich"@ms , "Mònaco"@lmo , "Мюнхен"@kk , "Circondario di Monaco di Baviera"@it , "München"@id , "Arrondissement de Munich"@fr , "Distrito de Múnich"@es , "Distrikto München"@eo , "Munich county"@en , "Landkroas Minga"@bar , "München" | "慕尼黑县"@zh , "Munich"@war , "München"@vi , "Округ Минхен"@sr , "Munich"@sco , "Мюнхен"@ru , "Districtul München"@ro , "Munique"@pt , "Powiat Monachium"@pl , "Munich"@ms , "Mònaco"@lmo , "Мюнхен"@kk , "Circondario di Monaco di Baviera"@it , "München"@id , "Arrondissement de Munich"@fr , "Distrito de Múnich"@es , "Distrikto München"@eo , "Munich county"@en , "Landkroas Minga"@bar , "München" | "Munich county"@en, "Arrondissement de Munich"@fr, "Circondario di Monaco di Baviera"@it, "Districtul München"@ro, "Landkroas Minga"@bar, "Munich"@sco, "München"@vi, "München"@id, "Distrito de Múnich"@es, "Munique"@pt, "Мюнхен"@ru, "München", "慕尼黑县"@zh, "Мюнхен"@kk, "Distrikto München"@eo, "Округ Минхен"@sr, "Munich"@ms, "Mònaco"@lmo, "Munich"@war, "Powiat Monachium"@pl | "Arrondissement de Munich"@fr, "Circondario di Monaco di Baviera"@it, "Districtul München"@ro, "Distrikto München"@eo, "Distrito de Múnich"@es, "Landkroas Minga"@bar, "Mònaco"@lmo, "München"@id, "München"@vi, "München", "Munich"@ms, "Munich"@sco, "Munich"@war, "Munich county"@en, "Munique"@pt, "Powiat Monachium"@pl, "Мюнхен"@kk, "Мюнхен"@ru, "Округ Минхен"@sr, "慕尼黑县"@zh |
| gn:shortName | "München"@de , "Munich"@es | "München"@de | "München"@de | "München"@de , "Munich"@es |
| gn:featureClass | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | A |
| gn:featureCode | http://www.geonames.org/ontology#A.ADM3 | http://www.geonames.org/ontology#A.ADM3 | http://www.geonames.org/ontology#A.ADM3 | A.ADM3 |
| gn:countryCode | DE | DE | DE | DE |
| gn:population | 354396 | 354396 | 343405 | 354396 |
| wgs84_pos:lat | 48.05139 | 48.05139 | 48.05139 | 48.05139 |
| wgs84_pos:long | 11.64222 | 11.64222 | 11.64222 | 11.64222 |
| gn:parentFeature | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| gn:parentADM1 | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| gn:parentADM2 | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| gn:parentCountry | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:wikipediaArticle | https://en.wikipedia.org/wiki/Munich_%28district%29 | https://en.wikipedia.org/wiki/Munich_%28district%29 | https://en.wikipedia.org/wiki/Munich_%28district%29 | https://en.wikipedia.org/wiki/Munich_%28district%29 |
| gn:locationMap | https://www.geonames.org/3220838/landkreis-muenchen.html | https://www.geonames.org/3220838/landkreis-muenchen.html | https://www.geonames.org/3220838/landkreis-muenchen.html | https://www.geonames.org/3220838/landkreis-muenchen.html |
| gn:childrenFeatures | https://sws.geonames.org/3220838/contains.rdf | https://sws.geonames.org/3220838/contains.rdf | https://sws.geonames.org/3220838/contains.rdf | None | foaf:Document | https://sws.geonames.org/3220838/about.rdf | https://sws.geonames.org/3220838/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2006-01-15 | None | None |
| dcterms:modified | 2025-09-28 | 2025-09-28 | None | None |
| wdt:P439 | 09184 | None | None | 09184 |
| wgs84_pos:alt | 560 | None | None | 560 |
| geo:asWKT | None | None | None | None |
Feature 5: Munich (urban district)
Feature IRI: https: https://sws.geonames.org/3220837/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/3220837/contains.rdf | https://sws.geonames.org/3220837/contains.rdf | https://sws.geonames.org/3220837/contains.rdf | https://sws.geonames.org/3220837/contains.rdf |
| rdfs:isDefinedBy | https://sws.geonames.org/3220837/about.rdf | https://sws.geonames.org/3220837/about.rdf | https://sws.geonames.org/3220837/about.rdf | https://sws.geonames.org/3220837/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Munich_%28district%29 | https://dbpedia.org/resource/Munich_%28district%29 | https://dbpedia.org/resource/Munich_%28district%29 | None |
| gn:name | "Munich, Urban District" | "Munich, Urban District" | "Munich, Urban District" | "Munich, Urban District" |
| gn:officialName | "Munich, ville-arrondissement"@fr , "Munich, Urban District"@en , "Kreisfreie Stadt München"@de | "Munich, ville-arrondissement"@fr , "Munich, Urban District"@en , "Kreisfreie Stadt München"@de | "Munich, ville-arrondissement"@fr , "Munich, Urban District"@en , "Kreisfreie Stadt München"@de | "Munich, ville-arrondissement"@fr , "Munich, Urban District"@en , "Kreisfreie Stadt München"@de |
| gn:alternateName | "Munich" | "Munich" | "Munich" | "Munich" |
| gn:shortName | "München"@de | "München"@de | "München"@de | "München"@de |
| gn:featureClass | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | A |
| gn:featureCode | http://www.geonames.org/ontology#A.ADM3 | http://www.geonames.org/ontology#A.ADM3 | http://www.geonames.org/ontology#A.ADM3 | A.ADM3 |
| gn:countryCode | DE | DE | DE | DE |
| gn:population | 1505005 | 1505005 | 1464301 | 1505005 |
| wgs84_pos:lat | 48.15389 | 48.15389 | 48.15389 | 48.15389 |
| wgs84_pos:long | 11.54806 | 11.54806 | 11.54806 | 11.54806 |
| gn:parentFeature | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| gn:parentADM1 | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| gn:parentADM2 | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| gn:parentCountry | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:wikipediaArticle | https://en.wikipedia.org/wiki/Munich_(district) | https://en.wikipedia.org/wiki/Munich_(district) | https://en.wikipedia.org/wiki/Munich_(district) | https://en.wikipedia.org/wiki/Munich_(district) |
| gn:locationMap | https://www.geonames.org/3220837/kreisfreie-stadt-muenchen.html | https://www.geonames.org/3220837/kreisfreie-stadt-muenchen.html | https://www.geonames.org/3220837/kreisfreie-stadt-muenchen.html | https://www.geonames.org/3220837/kreisfreie-stadt-muenchen.html |
| gn:childrenFeatures | https://sws.geonames.org/3220837/contains.rdf | https://sws.geonames.org/3220837/contains.rdf | https://sws.geonames.org/3220837/contains.rdf | None | foaf:Document | https://sws.geonames.org/3220837/about.rdf | https://sws.geonames.org/3220837/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2006-01-15 | None | None |
| dcterms:modified | 2025-09-28 | 2025-09-28 | None | None |
| wdt:P439 | 09162 | None | None | 09162 |
| wgs84_pos:alt | 513 | None | None | 513 |
| geo:asWKT | None | None | None | None |
Feature 6: Munich (PPLA seat of a first-order administrative division)
Feature IRI: https: https://sws.geonames.org/2867714/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/2867714/ | https://sws.geonames.org/2867714/ | https://sws.geonames.org/2867714/ | https://sws.geonames.org/2867714/ |
| rdfs:isDefinedBy | https://sws.geonames.org/2867714/about.rdf | https://sws.geonames.org/2867714/about.rdf | https://sws.geonames.org/2867714/about.rdf | https://sws.geonames.org/2867714/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Munich | https://dbpedia.org/resource/Munich | https://dbpedia.org/resource/Munich | None |
| gn:name | "Munich" | "Munich" | "Munich" | "Munich" |
| gn:officialName | "München"@de | "München"@de | "München"@de | "München"@de |
| gn:alternateName | "میونخ"@ckb , "მიუნხენი"@xmf , "Múnich"@gn , "Мүнхен"@tt , "Munic"@oc , "Мюнхен"@os , "میونخ"@ur , "Minca"@rm , "Monaco de Baviera"@vec , "Munich"@war , "ميونيخ"@arz , "Monaco de Baviera"@sc , "মিউনিখ"@bn , "Munich"@tum , "Munich"@yo , "מינכן"@yi , "Münegh"@lmo , "Munich"@sco , "Mònacu"@scn , "Мюнхен"@mn , "Múnich"@ext , "Munich"@pam , "Mùnich ëd Baviera"@pms , "Мүнхэн"@sah , "Мюнхен"@mhr , "میونخ"@pnb , "Мюнхен"@kk , "ಮ್ಯೂನಿಕ್"@kn , "Мюнхен"@cv , "မြူးနစ်ချ်မြို့"@my , "Múnich"@an , "Мӱнхен"@mrj , "Мюнхен"@tg , "Munich"@ms , "Münhen"@az , "Minche"@pfl , "Munix"@diq , "म्युन्शेन"@mr , "Munich"@nah , "Мюнхен"@be , "Mnichow"@hsb , "Munhen"@uz , "म्यूनिख"@hi , "Munich"@ilo , "Monacu di Baviera"@co , "München"@vo , "Munike"@tet , "Mynihu"@sq , "München"@is , "München"@io , "Մյունխեն"@hy , "Munich"@br , "München"@br , "Minga"@bar , "Myunxén"@ug , "Lungsod ng München"@tl , "München"@pdc , "Munich"@eu , "Минхен"@mk , "Monacum"@la , "慕尼黑"@zh , "München"@vi , "Мюнхен"@uk , "Münih"@tr , "Munich"@tl , "มิวนิก"@th , "மியூனிக்"@ta , "München"@sv , "Минхен"@sr , "München"@sl , "Mníchov"@sk , "Minhen"@hbs , "Мюнхен"@ru , "München"@ro , "Munique"@pt , "Monachium"@pl , "München"@no , "München"@nn , "München"@nl , "München"@nds , "Monaco e Baviera"@nap , "Minhene"@lv , "Miunchenas"@lt , "Monachium"@la , "Munîh"@ku , "뮌헨"@ko , "მიუნხენი"@ka , "ミュンヘン"@ja , "Monaco di Baviera"@it , "München"@id , "München"@hu , "München"@hr , "מינכן"@he , "Múnic"@gl , "Munich"@fr , "München"@fi , "مونیخ"@fa , "München" , "Muenchen"@de , "Munich"@en , "Múnich"@es , "München"@af , "ميونخ"@ar , "Munich"@ast , "Мюнхен"@bg , "Minhen"@bs , "Munic"@ca , "Mnichov"@cs , "München"@da , "Μόναχο"@el , "Munkeno"@eo , "München"@et; | "Münih"@tr , "Munich"@fr , "Munich"@en , "Munich"@war , "München"@vi , "Munich"@sco , "Мюнхен"@ru , "Munique"@pt , "Munich"@ms , "Мюнхен"@kk , "München"@id , "München" , "慕尼黑"@zh , "Munich"@yo , "מינכן"@yi , "მიუნხენი"@xmf , "München"@vo , "Monaco de Baviera"@vec , "Munhen"@uz , "میونخ"@ur , "Мюнхен"@uk , "Myunxén"@ug , "Munich"@tum , "Мүнхен"@tt , "Munich"@tl , "Lungsod ng München"@tl , "มิวนิก"@th , "Мюнхен"@tg , "Munike"@tet , "மியூனிக்"@ta , "München"@sv , "Минхен"@sr , "Mynihu"@sq , "München"@sl , "Mníchov"@sk , "Mònacu"@scn , "Monaco de Baviera"@sc , "Мүнхэн"@sah , "München"@ro , "Minca"@rm , "میونخ"@pnb , "Mùnich ëd Baviera"@pms , "Monachium"@pl , "Minche"@pfl , "München"@pdc , "Munich"@pam , "Мюнхен"@os , "Munic"@oc , "München"@no , "München"@nn , "München"@nl , "München"@nds , "Monaco e Baviera"@nap , "Munich"@nah , "မြူးနစ်ချ်မြို့"@my , "Мӱнхен"@mrj , "म्युन्शेन"@mr , "Мюнхен"@mn , "Минхен"@mk , "Мюнхен"@mhr , "Minhene"@lv , "Miunchenas"@lt , "Münegh"@lmo , "Monacum"@la , "Monachium"@la , "Munîh"@ku , "뮌헨"@ko , "ಮ್ಯೂನಿಕ್"@kn , "მიუნხენი"@ka , "ミュンヘン"@ja , "Monaco di Baviera"@it , "München"@is , "München"@io , "Munich"@ilo , "Մյունխեն"@hy , "München"@hu , "Mnichow"@hsb , "München"@hr , "म्यूनिख"@hi , "מינכן"@he , "Minhen"@hbs , "Múnich"@gn , "Múnic"@gl , "München"@fi , "مونیخ"@fa , "Múnich"@ext , "Munich"@eu , "München"@et , "Múnich"@es , "Munkeno"@eo , "Μόναχο"@el , "Munix"@diq , "Muenchen"@de , "München"@da , "Мюнхен"@cv , "Mnichov"@cs , "Monacu di Baviera"@co , "میونخ"@ckb , "Munic"@ca , "Minhen"@bs , "München"@br , "Munich"@br , "মিউনিখ"@bn , "Мюнхен"@bg , "Мюнхен"@be , "Minga"@bar , "Münhen"@az , "Munich"@ast , "ميونيخ"@arz , "ميونخ"@ar , "Múnich"@an , "München"@af | "Münih"@tr , "Munich"@fr , "Munich"@en , "Munich"@war , "München"@vi , "Munich"@sco , "Мюнхен"@ru , "Munique"@pt , "Munich"@ms , "Мюнхен"@kk , "München"@id , "München" , "慕尼黑"@zh , "Munich"@yo , "מינכן"@yi , "მიუნხენი"@xmf , "München"@vo , "Monaco de Baviera"@vec , "Munhen"@uz , "میونخ"@ur , "Мюнхен"@uk , "Myunxén"@ug , "Munich"@tum , "Мүнхен"@tt , "Munich"@tl , "Lungsod ng München"@tl , "มิวนิก"@th , "Мюнхен"@tg , "Munike"@tet , "மியூனிக்"@ta , "München"@sv , "Минхен"@sr , "Mynihu"@sq , "München"@sl , "Mníchov"@sk , "Mònacu"@scn , "Monaco de Baviera"@sc , "Мүнхэн"@sah , "München"@ro , "Minca"@rm , "میونخ"@pnb , "Mùnich ëd Baviera"@pms , "Monachium"@pl , "Minche"@pfl , "München"@pdc , "Munich"@pam , "Мюнхен"@os , "Munic"@oc , "München"@no , "München"@nn , "München"@nl , "München"@nds , "Monaco e Baviera"@nap , "Munich"@nah , "မြူးနစ်ချ်မြို့"@my , "Мӱнхен"@mrj , "म्युन्शेन"@mr , "Мюнхен"@mn , "Минхен"@mk , "Мюнхен"@mhr , "Minhene"@lv , "Miunchenas"@lt , "Münegh"@lmo , "Monacum"@la , "Monachium"@la , "Munîh"@ku , "뮌헨"@ko , "ಮ್ಯೂನಿಕ್"@kn , "მიუნხენი"@ka , "ミュンヘン"@ja , "Monaco di Baviera"@it , "München"@is , "München"@io , "Munich"@ilo , "Մյունխեն"@hy , "München"@hu , "Mnichow"@hsb , "München"@hr , "म्यूनिख"@hi , "מינכן"@he , "Minhen"@hbs , "Múnich"@gn , "Múnic"@gl , "München"@fi , "مونیخ"@fa , "Múnich"@ext , "Munich"@eu , "München"@et , "Múnich"@es , "Munkeno"@eo , "Μόναχο"@el , "Munix"@diq , "Muenchen"@de , "München"@da , "Мюнхен"@cv , "Mnichov"@cs , "Monacu di Baviera"@co , "میونخ"@ckb , "Munic"@ca , "Minhen"@bs , "München"@br , "Munich"@br , "মিউনিখ"@bn , "Мюнхен"@bg , "Мюнхен"@be , "Minga"@bar , "Münhen"@az , "Munich"@ast , "ميونيخ"@arz , "ميونخ"@ar , "Múnich"@an , "München"@af | "뮌헨"@ko, "Lungsod ng München"@tl, "Minca"@rm, "Minche"@pfl, "Minga"@bar, "Minhen"@bs, "Minhen"@hbs, "Minhene"@lv, "Miunchenas"@lt, "Mnichov"@cs, "Mníchov"@sk, "Mnichow"@hsb, "Monachium"@la, "Monachium"@pl, "Monaco de Baviera"@sc, "Monaco de Baviera"@vec, "Monaco di Baviera"@it, "Monaco e Baviera"@nap, "Mònacu"@scn, "Monacu di Baviera"@co, "Monacum"@la, "München"@de, "München"@af, "München"@br, "München"@da, "München"@et, "München"@fi, "München"@hr, "München"@hu, "München"@id, "München"@io, "München"@is, "München"@nds, "München"@nl, "München"@nn, "München"@no, "München"@pdc, "München"@ro, "München"@sl, "München"@sv, "München"@vi, "München"@vo, "Münegh"@lmo, "Munhen"@uz, "Münhen"@az, "Munic"@ca, "Munic"@oc, "Múnic"@gl, "Munich"@ast, "Munich"@br, "Munich"@en, "Munich"@eu, "Munich"@fr, "Munich"@ilo, "Munich"@ms, "Munich"@nah, "Munich"@pam, "Munich"@sco, "Munich"@tl, "Munich"@tum, "Munich"@war, "Munich"@yo, "Múnich"@an, "Múnich"@es, "Múnich"@ext, "Múnich"@gn, "Mùnich ëd Baviera"@pms, "Munîh"@ku, "Münih"@tr, "Munike"@tet, "Munique"@pt, "Munix"@diq, "Munkeno"@eo, "Mynihu"@sq, "Myunxén"@ug, "Μόναχο"@el, "Минхен"@mk, "Минхен"@sr, "Мӱнхен"@mrj, "Мүнхен"@tt, "Мүнхэн"@sah, "Мюнхен"@be, "Мюнхен"@bg, "Мюнхен"@cv, "Мюнхен"@kk, "Мюнхен"@mhr, "Мюнхен"@mn, "Мюнхен"@os, "Мюнхен"@ru, "Мюнхен"@tg, "Мюнхен"@uk, "მიუნხენი"@ka, "მიუნხენი"@xmf, "Մյունխեն"@hy, "מינכן"@he, "מינכן"@yi, "مونیخ"@fa, "ميونخ"@ar, "ميونيخ"@arz, "میونخ"@ckb, "میونخ"@pnb, "میونخ"@ur, "म्युन्शेन"@mr, "म्यूनिख"@hi, "মিউনিখ"@bn, "மியூனிக்"@ta, "ಮ್ಯೂನಿಕ್"@kn, "มิวนิก"@th, "မြူးနစ်ချ်မြို့"@my, "ミュンヘン"@ja, "慕尼黑"@zh |
| gn:shortName | None | None | None | None |
| gn:featureClass | http://www.geonames.org/ontology#P | http://www.geonames.org/ontology#P | http://www.geonames.org/ontology#P | P |
| gn:featureCode | http://www.geonames.org/ontology#P.PPLA | http://www.geonames.org/ontology#P.PPLA | http://www.geonames.org/ontology#P.PPLA | P.PPLA |
| gn:countryCode | DE | DE | DE | DE |
| gn:population | 1260391 | 1260391 | 1260391 | 1260391 |
| wgs84_pos:lat | 48.13743 | 48.13743 | 48.13743 | 48.13743 |
| wgs84_pos:long | 11.57549 | 11.57549 | 11.57549 | 11.57549 |
| gn:postalCode | 80331 | 80331 | 80331 | 80331 |
| gn:locationMap | https://www.geonames.org/2867714/munich.html | https://www.geonames.org/2867714/munich.html | https://www.geonames.org/2867714/munich.html | https://www.geonames.org/2867714/munich.html |
| gn:parentADM1 | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| gn:parentADM2 | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| gn:parentADM3 | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ |
| gn:parentADM4 | https://sws.geonames.org/6559171/ | https://sws.geonames.org/6559171/ | https://sws.geonames.org/6559171/ | https://sws.geonames.org/6559171/ |
| gn:parentCountry | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:wikipediaArticle | https://en.wikipedia.org/wiki/Munich , https://ru.wikipedia.org/wiki/%D0%9C%D1%8E%D0%BD%D1%85%D0%B5%D0%BD | https://en.wikipedia.org/wiki/Munich , https://ru.wikipedia.org/wiki/%D0%9C%D1%8E%D0%BD%D1%85%D0%B5%D0%BD | https://en.wikipedia.org/wiki/Munich , https://ru.wikipedia.org/wiki/%D0%9C%D1%8E%D0%BD%D1%85%D0%B5%D0%BD | https://en.wikipedia.org/wiki/Munich , https://ru.wikipedia.org/wiki/%D0%9C%D1%8E%D0%BD%D1%85%D0%B5%D0%BD |
| gn:childrenFeatures | https://sws.geonames.org/2867714/contains.rdf | https://sws.geonames.org/2867714/contains.rdf | https://sws.geonames.org/2867714/contains.rdf | None | foaf:Document | https://sws.geonames.org/2867714/about.rdf | https://sws.geonames.org/2867714/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2006-01-15 | None | None |
| dcterms:modified | 2023-10-12 | 2023-10-12 | None | None |
| wdt:P439 | None | None | None | 09162000 |
| wgs84_pos:alt | 524 | None | None | 524 |
| geo:asWKT | None | None | None | None |
Feature 7: Munich (ADM4 Landeshauptstadt München)
Feature IRI: https: https://sws.geonames.org/6559171/| Property (prefixed IRI) | geonames_DE.ttl | about.rdf | GeoNames RDF dump | HTML page |
| gn:Feature | https://sws.geonames.org/6559171/ | https://sws.geonames.org/6559171/ | https://sws.geonames.org/6559171/ | https://sws.geonames.org/6559171/ |
| rdfs:isDefinedBy | https://sws.geonames.org/6559171/about.rdf | https://sws.geonames.org/6559171/about.rdf | https://sws.geonames.org/6559171/about.rdf | https://sws.geonames.org/6559171/about.rdf |
| rdfs:seeAlso | https://dbpedia.org/resource/Munich | https://dbpedia.org/resource/Munich | https://dbpedia.org/resource/Munich | None |
| gn:name | "Munich" | "Munich" | "Munich" | "Munich" |
| gn:officialName | "Munich"@fr , "Munich"@en , "München"@de | "Munich"@fr , "Munich"@en , "München"@de | "Munich"@fr , "Munich"@en , "München"@de | "Munich"@fr , "Munich"@en , "München"@de |
| gn:alternateName | "Münih"@tr , "München"@ga | "Münih"@tr , "München"@ga | "München"@ga | "Münih"@tr , "München"@ga |
| gn:shortName | None | None | None | None |
| gn:featureClass | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | http://www.geonames.org/ontology#A | A |
| gn:featureCode | http://www.geonames.org/ontology#A.ADM4 | http://www.geonames.org/ontology#A.ADM4 | http://www.geonames.org/ontology#A.ADM4 | A.ADM4 |
| gn:countryCode | DE | DE | DE | DE |
| gn:population | 1505005 | 1505005 | 1464301 | 1505005 |
| wgs84_pos:lat | 48.13452 | 48.13452 | 48.13452 | 48.13452 |
| wgs84_pos:long | 11.571 | 11.571 | 11.571 | 11.571 |
| gn:postalCode | "81737" , "81673" , "81245" , "80638" | "81737" , "81673" , "81245" , "80638" | "81737" , "81673" , "81245" , "80638" | "81737" , "81673" , "81245" , "80638" |
| gn:parentADM1 | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ | https://sws.geonames.org/2951839/ |
| gn:parentADM2 | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ | https://sws.geonames.org/2861322/ |
| gn:parentADM3 | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ |
| gn:parentFeature | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ | https://sws.geonames.org/3220837/ |
| gn:parentCountry | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ | https://sws.geonames.org/2921044/ |
| gn:wikipediaArticle | https://en.wikipedia.org/wiki/Munich | https://en.wikipedia.org/wiki/Munich | https://en.wikipedia.org/wiki/Munich | https://en.wikipedia.org/wiki/Munich |
| gn:locationMap | https://www.geonames.org/6559171/muenchen-landeshauptstadt.html | https://www.geonames.org/6559171/muenchen-landeshauptstadt.html | https://www.geonames.org/6559171/muenchen-landeshauptstadt.html | https://www.geonames.org/6559171/muenchen-landeshauptstadt.html |
| gn:childrenFeatures | https://sws.geonames.org/6559171/contains.rdf | https://sws.geonames.org/6559171/contains.rdf | https://sws.geonames.org/6559171/contains.rdf | None |
| foaf:Document | https://sws.geonames.org/6559171/about.rdf | https://sws.geonames.org/6559171/about.rdf | None | None |
| cc:license | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | https://creativecommons.org/licenses/by/4.0/ | None |
| cc:attributionURL | https://www.geonames.org | https://www.geonames.org | None | None |
| cc:attributionName | GeoNames | GeoNames | None | None |
| dcterms:created | None | 2007-07-16 | None | None |
| dcterms:modified | 2025-09-28 | 2025-09-28 | None | None |
| wdt:P439 | 09162000 | None | None | 09162000 |
| wgs84_pos:alt | 519 | None | None | 519 |
| geo:asWKT | None | None | None | None |
Using YASR Plugins
The following guide explains how to use YASR plugins for visualizing SPARQL results, including charts, maps, and graphs.
1. Chart Visualization – Customizing the Legend Label
The Chart.js plugin displays bar charts for numeric SPARQL results. By default, the legend label shown is “Count”. To customize this label:
-
Using SPARQL: Add a variable ?legendLabel in your query
with your desired legend text.
PREFIX gn: <http://www.geonames.org/ontology#> SELECT ?label ?value ?legendLabel WHERE { ?feature a gn:Feature ; gn:name ?label ; gn:population ?value . BIND("Population in 2025" AS ?legendLabel) } LIMIT 10
Ensure your query returns both a category label and a numeric value for correct chart rendering.
Recognized variable names:- Label variables: ?label, ?classLabel, ?category, ?bucket, ?name
- Numeric value variables: ?value, ?count, ?total, ?num
- Optional legend label: ?legendLabel
2. Interactive Map Pins and Labels
The Leaflet Map plugin visualizes SPARQL query results as interactive map pins, placing markers using latitude and longitude variables from your query.
Each pin displays a popup label from variables such as ?label or ?name to identify the location. The clickable hyperlink on the pin is derived from the URI of the main entity variable (commonly ?feature) in your SPARQL result, which represents the primary resource shown on the map.
To enable effective map visualization and interactivity, ensure your query:
- Includes latitude and longitude variables for positioning pins.
- Returns a descriptive label variable for popup names.
- Contains a unique URI variable (e.g., ?feature) identifying the main geographic entity, which will be the clickable link for the pins.
- Latitude variables: ?lat, ?latitude, ?latDecimal, ?latDeg
- Longitude variables: ?long, ?lon, ?longitude, ?longDecimal, ?longDeg
- URI variables: ?feature, ?uri, ?url
- Label variables: ?label, ?name, ?s
3. Interactive Graph Visualization
The graph visualization plugin turns SPARQL query results into an interactive network graph, where nodes represent entities and edges represent relationships or properties. This visualization helps users explore complex linked data structures visually.
To generate effective graphs, your SPARQL query should:
- Return triples with variables for subject (?s or ?subject), predicate (?p or ?predicate), and object (?o or ?object).
- Include human-readable labels for nodes (e.g., ?label) to improve clarity.
- Optional: Add variables for predicate labels (?pLabel) to display relational context, and variables for node labels for easier interpretation.
-
This query retrieves triples representing an administrative
hierarchy by linking features (?s) to their parent features (?o),
while fetching human-readable names as labels for both subjects
and objects and including predicates with their labels for edge
descriptions.
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> PREFIX gn: <http://www.geonames.org/ontology#> SELECT ?s ?sLabel ?p ?pLabel ?o ?oLabel WHERE { ?s gn:parentFeature ?o . ?s gn:name ?sLabel . ?o gn:name ?oLabel . ?s ?p ?o . ?p rdfs:label ?pLabel . } LIMIT 10
- Subject variables: ?s, ?subject
- Predicate variables: ?p, ?predicate
- Object variables: ?o, ?object
- Subject labels: ?sLabel, ?subjectLabel
- Object labels: ?oLabel, ?objectLabel
- Predicate labels (for edge text): ?pLabel, ?predicateLabel