Members

Country Entry Data Format

Following is an example of a country entry in the Country Data Pack. The entry is constructed from the Country data along with GeoJSON data.

Note (in this example) the properties isoA2 and isoA3. You can use these properties as lookup countries by either their ISO 2 and 3 letter codes respectively.

Example
{
    '@id': 'https://www.ethnologue.com/country/AD',
    '@type': 'Country',
    name: 'Andorra',
    isoA2: 'AD',
    isoA3: 'AND',
    geo: {
      '@id': '#Andorra',
      '@type': 'GeoShape',
      "name": "Geographical coverage for Andorra",
      geojson: '{"type":"Feature","properties":{"ADMIN":"Andorra","ISO_A3":"AND"},"geometry":{"type":"Polygon","coordinates":[[[1.707006470000067,42.5027814740001],[1.697498006000075,42.49446156900012],[1.68633589600006,42.49061167500008],[1.674243611000065,42.49050832100005],[1.662358032000043,42.493712260000024],[1.659774210000137,42.49681284600007],[1.656983683000078,42.49763966900008],[1.653986450000048,42.4965286260001],[1.650369100000063,42.49340220200014],[1.639517049000119,42.46642710400002],[1.607477661000104,42.456427714000085],[1.544432414000085,42.45035573400014],[1.538851359000063,42.44565317800007],[1.534510539000081,42.439917094000094],[1.528206014000091,42.43423268600006],[1.516630493000122,42.42950429300009],[1.508465617000127,42.42867747000005],[1.447900838000066,42.43464609800009],[1.436428670000055,42.44095062300008],[1.436428670000055,42.4534821580001],[1.407593221000099,42.48676178000005],[1.424543090000014,42.49247202600009],[1.43022749800005,42.493557231000096],[1.449967895000043,42.50407338400004],[1.446557251000087,42.51988637400004],[1.428987264000114,42.531461894000074],[1.406456339000101,42.529239808000085],[1.409763631000089,42.540608622000065],[1.426300090000098,42.56179596000004],[1.426403442000122,42.56564585400008],[1.418031860000042,42.56983164500011],[1.419272095000082,42.579262594000085],[1.424853150000104,42.5893653360001],[1.42929732200011,42.595385641000064],[1.451414836000112,42.60205190100007],[1.466814412000105,42.641455180000065],[1.498440389000081,42.64024078400004],[1.527792602000062,42.6485348520001],[1.543088827000133,42.64936167400003],[1.597349081000061,42.62192148900007],[1.608304484000144,42.61812327100003],[1.721992635000049,42.60985504200008],[1.713310995000086,42.58954620400007],[1.729434041000047,42.58200144500012],[1.752688435000067,42.576678772000065],[1.761107147000132,42.567646197000016],[1.765090780000151,42.56337209100005],[1.739976033000119,42.561640930000095],[1.721682577000138,42.54851511600003],[1.710623820000137,42.527741191000075],[1.707006470000067,42.5027814740001]]]}}'
    }
  }

Language Entry Data Format - Austlang

Following is an example of a language entry in the Austlang Data Pack. The entry is constructed from the Austlang Dataset.

Note the sameAs property which links this entry to the matching entries in Glottolog and Ethnologue.

Note (in this example) the properties iso639-3 and glottologCode. You can use these properties as lookup fields to find entries in this pack using codes from Ethnologue (iso639-3) and Glottolog.

Example
{
        "@id": "https://collection.aiatsis.gov.au/austlang/language/A121",
        "@type": "Language",
        "languageCode": "A121",
        "name": "Ngardi",
        "geo": {
            "@id": "#Ngardi",
            "@type": "GeoCoordinates",
            "name": "Geographical coverage for Ngardi",
            "geojson": "{\"type\":\"Feature\",\"name\":\"Ngardi\",\"geometry\":{\"type\":\"GeoCoordinates\",\"coordinates\":[\"\",\"\"]}}"
        },
        "source": "Austlang",
        "sameAs": [
            { "@id": "https://glottolog.org/resource/languoid/id/ngar1288" },
            { "@id": "https://www.ethnologue.com/language/rxd" }
        ],
        "alternateName": "",
        "glottologCode": "ngar1288",
        "iso639-3": "rxd"
    },

Language Entry Data Format - GlottoLog

Following is an example of a language entry in the Glottolog Data Pack. The entry is constructed from the Glottolog Dataset.

Note the sameAs property which links this entry to the matching entries in Austlang and Ethnologue.

Note (in this example) the properties iso639-3 and austlangCode. You can use these properties as lookup fields to find entries in this pack using codes from Ethnologue (iso639-3) and Austlang.

Example
{
        "@id": "https://glottolog.org/resource/languoid/id/ngar1288",
        "@type": "Language",
        "languageCode": "ngar1288",
        "name": "Ngardi",
        "geo": {
            "@id": "#Ngardi",
            "@type": "GeoCoordinates",
            "name": "Geographical coverage for Ngardi",
            "geojson": "{\"type\":\"Feature\",\"name\":\"Ngardi\",\"geometry\":{\"type\":\"GeoCoordinates\",\"coordinates\":[\"-21.0231\",\"129.0308\"]}}"
        },
        "source": "Glottolog",
        "sameAs": [
            { "@id": "https://www.ethnologue.com/language/rxd" },
            { "@id": "https://collection.aiatsis.gov.au/austlang/language/A121" }
        ],
        "alternateName": "",
        "iso639-3": "rxd",
        "austlangCode": "A121"
    },

(constant) datapacks

The data packs that are available in this repository.

Properties
NameTypeDescription
packsobject

the available data packs

Properties
NameTypeDescription
AustlangString

The Austlang language data pack

GlottologString

The Glottolog language data pack

CountryString

The Countries data pack

LanguagesString

All languages data pack = ["Austlang", "Glottolog" ]