data-packs_countries_datapack-entry-format.js

/**
 * @global
 *
 * @name Country Entry Data Format
 * @description Following is an example of a country entry in the Country Data Pack. The entry
 *  is constructed from the {@link https://www.ethnologue.com/sites/default/files/CountryCodes.tab Country data} along with
 *  {@Link https://datahub.io/core/geo-countries/r/countries.geojson 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]]]}}'
    }
  }
 */