Talk:ISO 3166-1 alpha-2

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia

Prologue[edit]

Someone should add this [1] in? --Kaihsu 08:52, 5 Aug 2003 (UTC)

Table conversion[edit]

I've been converting a few of these massive ISO articles recently. Here's the program I used to convert this article:

// File:    convert-iso3166-alpha-2.cpp
// License: Public domain
// Author:  Ardonik
#include <fstream>
#include <iostream>
#include <string>
using namespace std;

void generate(istream& in, ostream& out) {
  out << "{| border=\"1px\" cellspacing=\"0\" cellpadding=\"2px\"\n";
  out << "|+ (Description) Two-letter Codes\n";
  out << "|- style=\"background-color: #a0d0ff;\"\n";
  out << "!Alpha-2!!Country\n";
  out << "|-\n";
  string line;
  while (getline(in, line)) {
    if (line.length() < 16) continue;
    string alpha2 = line.substr(2, 11);
    string country = line.substr(16);
    out << "|" << alpha2 << "||" << country << "\n";
    out << "|-\n";
  }
  out << "|}\n";
  if (in.fail() && !in.eof()) cout << "Could not read from input\n";
  if (out.fail()) cout << "Could not write to output\n";  
}

int main(int argc, char* argv[]) {
  if (argc != 3) {
    cout << "Usage: " << argv[0] << " [infile] [outfile]\n";
    cout << "  If infile is \"-\", input will be read from stdin.\n";
    cout << "  If outfile is \"-\", output will be written to stdout.\n";
    return 0;
  }

  string infile = argv[1], outfile = argv[2];
  if (infile == "-" && outfile == "-") {
    generate(cin, cout);
  } else if (infile == "-") {
    ofstream out(outfile.c_str());
    generate(cin, out);
  } else if (outfile == "-") {
    ifstream in(infile.c_str());    
    generate(in, cout);
  } else {
    ifstream in(infile.c_str());    
    ofstream out(outfile.c_str());    
    generate(in, out);
  }
  return 0;
}

To use it, simply copy a bulleted list from the old version of the page into a text file and run the program with the text file as the first argument and "-" as the second. Copy the resulting output and replace the old list with it.
The program's bigger than it ought to be, but I only had to run it once. --Ardonik 01:36, Aug 10, 2004 (UTC)

Ok Surajkm.mishra121 (talk) 11:04, 12 April 2018 (UTC)[reply]

Why not UK?[edit]

Can anybody explain why when these codes were handed out the United Kingdom was given GB instead of UK? Edward 11:36, 2005 May 14 (UTC)

I've heard that it was because the Ukrainian SSR also wanted UK, and as a compromise neither got it. I don't know if this is really true. But it makes some sense, as the Ukrainian SSR was a UN member in its own right (despite being part of the Soviet Union), so it was entitled to a code (and was given UA). --Zundark 19:02, 14 May 2005 (UTC)[reply]
http://www.iso.org/iso/en/prods-services/iso3166ma/10faq/frequently-asked-questions.html#QS04 has the answer by the ISO 3166/MA. However, UK is still a reserved code in ISO 3166-1 for the United Kingdom.--Jusjih 05:45, 26 August 2005 (UTC)[reply]
From that article: Since name components like Republic, Kingdom, United, Federal or Democratic are used very often in country names we usually do not derive the country code elements from them in order to avoid ambiguity. However, in that case, how did the United States manage to get us as its country code? *Dan* 13:34, August 26, 2005 (UTC)
Possibly the word state is less often used and the USA (also used as ISO 3166 alpha-3 code) is rarely abbreviated as America. Mexico is officially the United Mexican States but we do not normally call it the United States.--Jusjih 00:42, 27 August 2005 (UTC)[reply]
Incidentally, uk in ISO 639-1 is Ukrainian language.--Jusjih 08:33, 26 August 2005 (UTC)[reply]
Anyone know the deal with Northern Ireland?
Northern Ireland is included under the code GB, as it is part of the United Kingdom. --Zundark 13:22, 23 May 2006 (UTC)[reply]
The ISO codes are based on the abbreviations the UN uses (this is documented on the ISO site). The UN uses abbreviations based on the geographical name of the country, not the official name, which as stated above, usually refers to its type of government. They do this to avoid implying recognition or otherwise to governments, and because the official name can change, but the geographical name changes less often. Thus, GB and not UK, FR and not RF (Republique Français, which is the abbreviation used by the French), DE and not BD (BRD = Bundesrepublik Deutschland), plus lots more. There are some exceptions, where there is no a common geographical name, just the official name. The US is one such exception, also CH (=Confederatio Helvetica, Switzerland is not an official name). --TiffaF 14:33, 14 September 2006 (UTC)[reply]
The UK was active on the internet using ".uk", before the Internet standardised as ISO-3166, that is why this is the one country that is not ISO-3166 as an Internet domain, but "uk" it is reserved to stop anybody else using it and causing more problems. --TiffaF 14:33, 14 September 2006 (UTC)[reply]

CS[edit]

Now that Serbia and Montenegro have officially split, what codes are they going to get? Denelson83 00:38, 23 May 2006 (UTC)[reply]

They haven't split yet. When they do split, the ISO 3166/MA will give them new codes. But it's difficult to guess what these codes will be, as the most appropriate ones are already taken. --Zundark 08:24, 23 May 2006 (UTC)[reply]
Well, now that they have split, I have some ideas that the ISO 3166/MA could use to code these new countries. Serbia could be "RS", while Montenegro could be "ME". Denelson83 02:42, 4 June 2006 (UTC)[reply]
I thought of RS for Serbia (with R for Republic), but the problem is that the ISO 3166/MA tries not to use words like "republic" when choosing the codes. So Serbia may end up with something like SX instead (or maybe just stay as CS, since it's the successor state - compare with WS for Samoa).
ME is also my guess for Montenegro. This code is apparently reserved for Western Sahara, but similar reservations have been ignored before. --Zundark 11:42, 4 June 2006 (UTC)[reply]
It doesn't say ME is reserved here: http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/iso_3166-1_decoding_table.html -- Denelson83 18:02, 4 June 2006 (UTC)[reply]
You're right, it's not reserved according to that table. So a lot of the information about reserved codes in the article appears to be out of date. Someone should e-mail the ISO 3166/MA for a current version of the reserve list, and update the article. --Zundark 18:27, 4 June 2006 (UTC)[reply]
That isn't necessary. The reserved list is easily derived from that table. Denelson83 22:06, 5 June 2006 (UTC)[reply]
Yes, that's true as far as the alpha-2 codes are concerned, but presumably we also want to update the information on reserved alpha-3 codes (in the ISO 3166-1 alpha-3 article). --Zundark 08:58, 6 June 2006 (UTC)[reply]
Let's not hold our collective breath. This could take a while. In 2003, the Serbia and Montenegro government took 5+ months -- from their establishment on 2003-02-04, to informing ISO3166/MA of their preferred country codes on 2003-06-06, and 2 votes over the next 6.5 weeks to come to a decision, announced 2003-07-23. (And didn't Guernsey, Jersey, and Isle of Man take 8 months?) -- Robocoder (talk | contribs) 19:37, 14 July 2006 (UTC)[reply]
I don't know about GGY, JEY and IMN -- eight months from when onwards? They've been in existence since centuries ago as separate entities, so I really don't know what happened to make them get separate ISO codes only now... Could you enlighten me? —Nightstallion (?) 13:39, 16 July 2006 (UTC)[reply]
8 months from the application date to the date of publication.
* July 2005: BSI readies proposal for submission to ISO3166/MA.[2]
* vote results: 8 yes, 2 abstain, 0 no[3]
* 2006-03-29: ISO newsletter announces inclusion of Jersey, Guernsey, and Isle of Man[4]
-- Robocoder (talk | contribs) 19:37, 17 July 2006 (UTC)[reply]
Interesting, thanks! I suppose you'll keep us up-to-date on any developments (official applications and such)? ;)Nightstallion (?) 06:03, 18 July 2006 (UTC)[reply]

SP for Serbia[edit]

User:Millosh already added "SP" for Serbia in the table in the article, contradicting the footnote about Serbia and Montenegro. This "SP" is at best a guess, at this stage. I have manually reverted. If Millosh has insider information, please provide the reference. – Kaihsu 22:04, 2 September 2006 (UTC)[reply]

I now see Serbian country codes. Self-reverting. – Kaihsu 22:09, 2 September 2006 (UTC)[reply]

It is still quite a mess here; but I will leave it for others to sort out. – Kaihsu 22:15, 2 September 2006 (UTC)[reply]

For Serbia it is ISO suggestion to Serbian government. So, speaking strictly, it shouldn't be inside of the article. But, Montenegro got even .ME root domain based on two letter code. --millosh (talk (sr:)) 14:46, 3 September 2006 (UTC)[reply]
There are two links in Serbian: [5] (about .ME) and [6] (about SP/SRB). In short, government of Montenegro gave control of .ME domain to some governmental institution. For Serbia it is more complex. Serbian authorities suggested RS for two letters code and SRB for three letters code. While ISO agreed with SRB, ISO suggested SP for two letters code. And it is just a metter of time when ISO suggestion would be accepted/implemented. --millosh (talk (sr:)) 14:51, 3 September 2006 (UTC)[reply]
Thanks for the info. It looks like ME for Montenegro is basically a done deal, while Serbia's alpha-2 code is still to be decided. I guess this holds up the whole process. ISO has to do these three things at the same time: withdraw Serbia and Montenegro's codes, release Montenegro's codes, and release Serbia's codes. Right now ISO is only ready to do the first two, and doing the first two (or either of the first two) without doing the third makes no sense. Hence, the wait.... Chanheigeorge 22:57, 3 September 2006 (UTC)[reply]

Serbia could always request CP, as in СРБИЈА... The three-letter code could then be CPJ or CPA. (Not a serious suggestion, but it would be interesting.) Lincmad 17:34, 18 September 2006 (UTC)[reply]

Kosovo[edit]

Does Kosovo have a code yet? I've seen people using "KS" for it. Ptomblin (talk) 03:46, 1 January 2009 (UTC)[reply]

I am seeing KV. – Kaihsu (talk) 10:24, 9 May 2018 (UTC)[reply]
Where? It's not assigned by ISO. Lonaowna (talk) 11:19, 9 May 2018 (UTC)[reply]

Ivory Coast[edit]

I am wondering why the French name for Ivory Coast is in the English language [Country name] column and then there is a English language comment in the [Notes] section that is used to describe the typical rational for the naming. If Côte d'Ivoire is in English then the note is superfluous as it already matches the [CI] code. If it is in French then I think the terms should swap places to be consistent with the rest of the table. Idyllic press (talk) 06:30, 21 May 2010 (UTC)[reply]

The first column lists the English name according to the ISO 3166-1 standard. ISO has chosen to use Côte d'Ivoire as the English name (even though it's French), so we have no choice but to list that. The Notes column just points out the usual English name. (As for why ISO uses the French name in English, this is because it generally follows the preferences of the governments concerned. Burma being listed as Myanmar is another example of this.) --Zundark (talk) 12:09, 21 May 2010 (UTC)[reply]

.uk versus .gb[edit]

I see there has been some back-and-forth between listing .gb or .uk as the ccTLD for United Kingdom. I haven't been able to find a definitive statement, but I do note that IANA lists the sponsoring organization for .gb as "Reserved Domain - IANA" and does not list a registrar or whois server,[7] while it does list a sponsoring organization and a registrar and whois server for .uk.[8] It may be misleading to list ".gb" as the ccTLD when it is impossible to actually use it. Anomie 23:49, 19 September 2010 (UTC)[reply]

My initial thought of adding the column for the ccTLDs is to list the corresponding ccTLD with respect to the code, i.e. "GB" → ".gb", not the ccTLD with respect to the country assigned the code, i.e., "GB" → "United Kingdom" → ".gb". But I do understand it can be misleading. There are other ccTLDs that are not in use, e.g. .sj is not in use and Svalbard and Jan Mayen just use .no. Chanheigeorge (talk) 00:47, 20 September 2010 (UTC)[reply]
Oh boy! Okay, lets start with the problem: the map shows the area of UK with the label GB. The entire region is The British Isles, in short it's built up as follows:
  • "Britain" is made up of England and Wales
  • "Great Britain" is made up of England, Wales and Scotland
  • "Ireland" is only the southern part of Ireland.
  • "Northern Ireland" is the northern part of Ireland.
  • "The United Kingdom of Great Britain and Ireland" no longer exists
  • "The United Kingdom of Great Britain and Northern Ireland" is Great Britain and Northern Ireland
  • "The British Isles" is all of the above and around 5000 other islands including The Isle of Man, Jersey, Guernsey and several others that have ISO codes.
All this means that the Irish are actually also British, but stupid Americans think that "British" is exactly the same as English and no true Irishman, Scotsman or Welshman is ever English.
So simply based on the map and normal usage the correct code would be 'UK' unless you want to piss off everyone from Northern Ireland.
But the ISO committee assigned the code 'GB' to the geographical area of the "United Kingdom". They fixed it later by also 'specially' assigning the code UK to the same region. But didn't actually deprecate the official code because it's in such wide use. They also have the same issue with the UK code and so cannot actually stop people using it.
As for ccTLDs, because ISO now assigns both to the same geographical area both are in fact correct and the users have chosen 'uk'. 90.195.73.71 (talk) 17:03, 29 January 2012 (UTC)[reply]

Netherlands Antilles[edit]

Hello all,

On December 15 the ISO 3166/MA deleted the Netherlands Antilles and added codes for Curacao and Sint Maarten. They also lumped Bonaire, Saba, and Sint Eustatius as "Bonaire, Saint Eustatius and Saba" (for details, see [9]). The ISO's decoding table shows these new codes and it also shows AN as "transitionally reserved". (see here). With the choice of BQ for the other three islands, it seems that ISO has recycled the code that used to be assigned to the British Antarctic Territory until the late 70's (for details, see: [10]). I have updated the article to reflect all of this. Hope this helps. - Thanks, Hoshie 06:26, 18 December 2010 (UTC)[reply]

Good job, thanks. Anomie 04:41, 19 December 2010 (UTC)[reply]

Vatican City[edit]

The Vatican City (= a state) is not the territory of the Holy See (= not a state at all). The later is a different entity of international law. --217.247.106.112 (talk) 19:21, 27 December 2010 (UTC)[reply]

And yet the ISO 3166/MA lists it anyway. It is not the purpose of this article to editorialize on the standard's choice of entities to list or the names it gives them. We just report on what the standard actually says. Anomie 20:41, 27 December 2010 (UTC)[reply]

ISO2 redirects here rather than ISO 2[edit]

I was just doing a little work on the ISO 2 article... I noticed that Iso2 directs to this article, presumably because it defines two-letter ISO country codes. Would there be any objection to changing the redirect to point to the ISO 2 standard, which much more closely matches that as a possible search term? If this part of ISO 3166 is widely referred to as "ISO2", I certainly would not be against adding a "For two-letter ISO country codes, see ISO 3166-1 alpha-2" at the top of the ISO 2 article. Thoughts? --Dfred (talk) 23:19, 13 May 2011 (UTC)[reply]

I think your suggestion is good. There are no links that currently use the Iso2 redirect anyway. Thanks. Chanheigeorge (talk) 03:32, 16 May 2011 (UTC)[reply]
Done. --Dfred (talk) 17:58, 17 May 2011 (UTC)[reply]
I found this article today (and have found it the same way a couple of earlier times) by googling 'ISO 2', knowing that I needed the 2-letter ISO codes. The only reason I looked at this talk page is because I was wondering about the country name listed for Taiwan. So I am one of the users that enjoys that looking for 'iso 2' brings me here (and google still does). Never the less, I'd suspect a link 'for the country codes, look here' would work fine. Unilynx (talk) 20:10, 8 July 2011 (UTC)[reply]

Why not OE for Austria?[edit]

Why isn't Austria's (ie. Österreich=Oesterreich) ISO 3166-1 alpha-2 code OE?

I am aware that AT/AUT come from French "Autriche", since AU/AUS were already assigned to Australia, but if the UN assigned names based on their English or French names, then why isn't Germany's ISO3166 abbreviation GE/GER or AL or AM (from French Allemagne)? Germany received an abbreviation in its own language, but Austria didn't.

Many more countries have ISO 3166 codes based on their language, e.g. Spain - ES/ESP, Estonia - EE/EST, or Iceland - IS/ISL to name just a few. These ISO codes were created from the names of the countries as they appear in original language, not in English or French.

The oddity is that many people using these abbreviations daily find them counter-intuitive -- the AT/AUT ISO code is an acquired use rather than intuitive.

Of course, that applies to many other countries as well (for those that use the Latin alphabet).

Did anyone ask a country's native before assigning codes? Can the codes change or are they pretty much set in stone? — Preceding unsigned comment added by 217.153.194.14 (talk) 00:08, 7 February 2012 (UTC)[reply]

This is not the place for general questions about the standard; most likely no one here has any connection with the ISO 3166/MA, so your guess is likely as good as ours. You'd do better to check the ISO's FAQ and/or contact them directly with your questions. Anomie 03:14, 7 February 2012 (UTC)[reply]

Benin[edit]

The code "DY" is listed under both the indeterminate reservations and the unreserved deleted codes. I'd think it should be removed from one of them. SiBr4 (talk) 16:45, 15 September 2012 (UTC)[reply]

You are mistaken in thinking that the deleted codes are unreserved. "DY" referring to "Dahomey" has been deleted, so it belongs there. But "DY" has also been indeterminately reserved. This is the same as how "AI" referring to "French Afar and Issas" has been deleted, but "AI" referring to "Anguilla" is a currently assigned code. Anomie 01:59, 16 September 2012 (UTC)[reply]
Above the "deleted codes" table it says:

Besides the codes currently transitionally reserved and two other codes currently exceptionally reserved (FX for France, Metropolitan and SU for USSR), the following alpha-2 codes have also been deleted from ISO 3166-1.

So the deleted codes are those that were deleted, but not reserved. "AI" was deleted, but later reassigned to Anguilla. SiBr4 (talk) 10:16, 16 September 2012 (UTC)[reply]
Perhaps then the note should be changed. Do note that "transitionally reserved" is basically "deleted/changed, but reserved to allow people time to transition". Anomie 13:58, 16 September 2012 (UTC)[reply]
"DY" is a official code deleted from ISO 3166-1, and all of them have a corresponding ISO 3166-3 code. Some of the deleted codes are transitionally reserved (usually the more recent ones), but "DY" is not one of them. But "DY" is also one of the codes that are indeterminately reserved (almost all of them are not deleted codes), to allow backward compatibility to vehicle codes. The current statement cited above is correct, even though it was not noticed before that "DY" is also indeterminately reserved. Chanheigeorge (talk) 15:27, 16 September 2012 (UTC)[reply]
The "deleted codes" table lists the codes that were deleted, but not reserved. So if "DY" was indeterminately reserved, it should be removed from that table. SiBr4 (talk) 18:54, 16 September 2012 (UTC)[reply]

EH - Western Sahara[edit]

Does anyone here know/could anyone explain why the article states the code 'EH' for Western Sahara comes from the Spanish name 'Sahara Español'? Given the order in which those letters appear in the words (SaHara Español) it looks entirely arbitrary - it might just as well come from 'WEstern SaHara'. It's not like, for example, DEutschland or ESpaña. I realise asking here is extremely far-fetched, but I haven't so far managed to find a source that explains this. Even the ISO site simply states the code without any reference to its origin. — Preceding unsigned comment added by 62.151.83.54 (talk)

I think EH is just a contraction of the alpha-3 code ESH. And ESH (instead of SES or SHE, for example) can perhaps be explained as combining ES for Español and SH for Sahara. --Zundark (talk) 15:47, 4 July 2013 (UTC)[reply]
That does make sense, actually. Thank you! The Bloody Cat (talk) 16:23, 4 July 2013 (UTC)[reply]
Probably EH was chosen because more obvious codes were already taken: SE for Sahara Español is assigned to Sweden; its reverse ES stands for Spain; WS for Western Sahara wasn't possible because of Samoa. Apparently they eventually chose EH as Western Sahara's two-letter code. SiBr4 (talk) 16:20, 4 July 2013 (UTC)[reply]

EZ and UN code status[edit]

At the ISO website [11] the status of EZ and UN code is "Exceptionally reserved" not " Unassigned" Tennegi (talk) 14:42, 14 March 2014 (UTC)[reply]

Reference 17[edit]

Reference 17 doesn't seem to work anymore. Anyone know how to fix this? — Preceding unsigned comment added by 2.28.75.60 (talk) 20:37, 4 May 2014 (UTC)[reply]

The referenced document doesn't appear to be on the ISO site anymore, though there is a copy at [12]. I don't know whether docstoc.com is a reliable site we could replace the reference link with. SiBr4 (talk) 21:36, 4 May 2014 (UTC)[reply]

SF status[edit]

@Anomie:, thanks for making some research, notes and correcting my mistake. In the first place I just changed status for SF, since it was only listed in the table for transitionally reserved codes. I have tried to search for some more information about it. I found some interesting facts, e.g. that it was indetermined reserved,[1] but I can't find anything about the change from transitionally reserved, so I have written an e-mail to the customer service at ISO. Let's see if they will provide an answer. /PatrikN (talk) 21:52, 23 November 2016 (UTC)[reply]

And thank you for doing even more research! Anomie 22:49, 23 November 2016 (UTC)[reply]

References

  1. ^ Lang, Gérard (2009-08-12). "Status of SF new clause inside ISO 3166-1///RE: Ltru Digest, Vol 54, Issue 2". Ltru mailing list. Internet Engineering Task Force (IETF).

External links modified[edit]

Hello fellow Wikipedians,

I have just modified 5 external links on ISO 3166-1 alpha-2. Please take a moment to review my edit. If you have any questions, or need the bot to ignore the links, or the page altogether, please visit this simple FaQ for additional information. I made the following changes:

When you have finished reviewing my changes, you may follow the instructions on the template below to fix any issues with the URLs.

This message was posted before February 2018. After February 2018, "External links modified" talk page sections are no longer generated or monitored by InternetArchiveBot. No special action is required regarding these talk page notices, other than regular verification using the archive tool instructions below. Editors have permission to delete these "External links modified" talk page sections if they want to de-clutter talk pages, but see the RfC before doing mass systematic removals. This message is updated dynamically through the template {{source check}} (last update: 18 January 2022).

  • If you have discovered URLs which were erroneously considered dead by the bot, you can report them with this tool.
  • If you found an error with any archives or the URLs themselves, you can fix them with this tool.

Cheers.—InternetArchiveBot (Report bug) 08:54, 3 September 2017 (UTC)[reply]

OO[edit]

The article contains "Furthermore, the code element OO is designated as an escape code if the number of regular user-assigned code elements is not sufficient." 85.180.125.5 (talk) 13:51, 16 August 2018 (UTC)[reply]

EA[edit]

Could somebody clarify the exact definition of what EA is. The description of why it was assigned, suggests it should include everything within the EU, but outside the EU customs territory. But then its geographic description includes only Ceuta and Melilla, when based on the apparent reason it was assigned, you would expect it to also include the Canary Islands, Azores, etc. etc. - 2A01:4B00:86ED:7D00:5937:19CD:73D3:997E (talk) 22:41, 27 October 2018 (UTC)[reply]

The exact definition in ISO 3166 is "Ceuta, Melilla" (i.e. Spain's two autonomous cities), and the code's status is "exceptionally reserved." See https://www.iso.org/obp/ui/#iso:code:3166:EA for further details. Officially assigned codes for those autonomous cities are ES-CE and ES-ML, cf. ISO 3166-2:ES. Love —LiliCharlie (talk) 23:07, 27 October 2018 (UTC)[reply]
P.S.: If you think the Azores are (or ever were) Spanish you'd better not travel Portugal or Spain. And if you think almost all of South America is Spanish speaking, don't go there either. Love —LiliCharlie (talk) 23:52, 27 October 2018 (UTC)[reply]

double anchor for OO[edit]

@Anomie: Oops, sorry about that; thanks for catching it. 209.209.238.189 (talk) 02:36, 28 February 2019 (UTC)[reply]

Accessibility for colour vision deficiency[edit]

I was trying to figure out why the colours in the table for the Officially assigned: formerly assigned to a different entity and the Unassigned: free for assignment were the same. It made it impossible to determine the difference in the table without mousing over to see if there was a link for the letters or not.

I suggest that using some contemporary colour vision deficiency theory it might be possible without causing any fuss or bother to other users to separate the colours slightly more.

I later noticed when looking at my monitor at a rather oblique angle that AI does look a little different from AH but does not make one think of BI when comparing the colours.

It would make sense to have the two Officially assigned colours almost the same as they carry a similar meaning in practice.

Idyllic press (talk) 07:08, 17 April 2019 (UTC)[reply]

Every once in a while someone comes along and changes the colors to be "better" (in their opinion), e.g. Special:Diff/886151593 and Special:Diff/838901451 and Special:Diff/792319609/795136589. It would be nice to choose a set of colors that's specifically chosen to work well for people with all types of color blindness. Do you have a recommendation? Anomie 11:30, 17 April 2019 (UTC)[reply]
@Anomie: Maybe following this accessibility table: Wikipedia:Manual of Style/Accessibility/Colors ? – The Grid (talk) 16:21, 10 May 2019 (UTC)[reply]

Common name column[edit]

Drmccreedy and LiliCharlie: Can you please explain what is your problem with having a column for the common names already there in the article? — Guarapiranga (talk) 03:18, 5 June 2019 (UTC)[reply]

No, most designations were not already labelled common names. Can you show that, for instance, East Timor, Swaziland, and Vatican are less common names than Timor-Leste, Eswatini, and Holy See, and that Congo, Democratic Republic of the and Palestine, State of are common forms?
This is a list of ISO 3166-1 alpha-2 country codes and ISO 3166-1 country names, and a Common name column that is almost identical with the essential Country name column is likely to confuse readers and raise doubts as to which is which.
Finally, a Common name column is an unnecessary invitation to endless discussions as to which names are common or "should" be used to express users' desired political status of "their" territory. Love —LiliCharlie (talk) 04:28, 5 June 2019 (UTC)[reply]
This article is about the ISO 3166-1 Standard, not about countries in general. My primary concern with adding a "common name" column is that it implies that it's from the ISO 3166-1 Standard when it's not. For example, I see nowhere at https://www.iso.org/obp/ui/#iso:code:3166:BO that the common name is Bolivia. My secondary concern is usefulness. The ISO 3166-1 country name of "Bolivia (Plurinational State of)" in the table is already linked to the Wikipedia article on Bolivia. Adding, and linking, another column to the same articles as the preceding column doesn't seem terribly useful. DRMcCreedy (talk) 04:31, 5 June 2019 (UTC)[reply]
+1 to what others have said. Also for the most part you left these identical with the existing country name, even in cases like "Congo, Democratic Republic of the" where at the very least the common name would be "Democratic Republic of the Congo". Of the 16 country names you did change, only 5 seem particularly useful for searching: "Ivory Coast", "North Korea", "South Korea", "Laos" and "Vietnam"; the rest are just a shortening of the ISO name. And those 5 already have the specified name in the Notes column, so a browser search will still find them. Only three of those would sort differently. Anomie 11:01, 5 June 2019 (UTC)[reply]
C'est pas possible! I literally went like ctrl-F "common name", and copied over to the column what is already there on the article. If it's a problem to mention the common name in this article, why is it already there?? — Guarapiranga (talk) 04:22, 6 June 2019 (UTC)[reply]
There's a difference between mentioning the common names for the 5 where it's not just a shorter version of the name ISO already has, and adding a column in the table to try to state the "common name" for every country. Perhaps we should review the other 11 that have a "common name" in the notes to see whether they're actually needed. Anomie 12:48, 6 June 2019 (UTC)[reply]
I consider all "common names" better belonging to the list of sovereign states, not here, because ISO cannot always acknowledge them as "local short names". Reading https://www.iso.org/obp/ui/#iso:code:3166:TW gets "Local short name: Taiwan", different from "Taiwan, Province of China" per the UN, but https://www.iso.org/obp/ui/#iso:code:3166:FK must say "(Malvinas)" after "Falkland Islands" even for "local short name". Thus I propose removing all "common names" and the column called "notes" by reformatting essential notes like the list of ISO 3166 country codes.--Jusjih (talk) 04:12, 3 February 2020 (UTC)[reply]
I oppose this because common names are often helpful. I think most people would have a hard time differentiating the Democratic People's Republic of Korea from the Republic of Korea but would be quite clear once the common names of North Korea and South Korea are noted. DRMcCreedy (talk) 05:09, 3 February 2020 (UTC)[reply]
Yes. — As you give the example of North and South Korea: Should we explain that North Macedonia is the country that used to be called Macedonia, with the same government and territory, and not some entity in its northern part? Love —LiliCharlie (talk) 06:31, 3 February 2020 (UTC)[reply]
@Drmccreedy and LiliCharlie: We already code [[Falkland Islands|Falkland Islands (Malvinas)]], [[North Korea|Korea (the Democratic People's Republic of)]], [[South Korea|Korea (the Republic of)]], and [[Taiwan|Taiwan, Province of China]] to display ISO 3166 names and link to common names, so promoting even better NPOV should not directly display common names to readers until they click wiki links. ISO 3166-1 alpha-3 already does this.--Jusjih (talk) 01:03, 4 February 2020 (UTC)[reply]
So if I'm searching for the code for Ivory Coast I should manually hover over each country's link until I see that Côte d'Ivoire is the one I want? I don't think a more NPOV justifies a less usable article. DRMcCreedy (talk) 02:07, 4 February 2020 (UTC)[reply]
This all seems like some sort of attempt at reductio ad absurdum. Mentioning names like "Ivory Coast" and "South Korea" helps readers find what they're looking for, while trying to nitpick every hint of inconsistency in the Taiwan naming situation doesn't. Anomie 03:25, 4 February 2020 (UTC)[reply]

Markup[edit]

The problem with {{ISO 3166 code}}, Anomie, is that when one needs to subst ISO codes in place of country names, one needs to subst twice (the first subst replaces {{ISO 3166 code}} with #invoked for the Lua module, and on the 2nd subst the module often times out half way through, if the list of countries to subst is long (say, over 100). Perhaps you can suggest a better solution to this. Cheers. Guarapiranga (talk) 01:10, 1 November 2019 (UTC)[reply]

The solution isn't to clog this article with 13K of <section>...</section>. Why are you trying to subst 100 country names to ISO codes in the first place, instead of just typing the much shorter codes? Anomie 01:16, 1 November 2019 (UTC)[reply]
Bc I didn't type out the long names to start with. With the ISO codes as unique identifiers we can cross-reference figures in specific pages to ensure they're in sync with the same info. There are a bunch of pages stating population figures, for instance, all contradicting each other. Guarapiranga (talk) 01:34, 1 November 2019 (UTC)[reply]

GW[edit]

Where does the "w" comes from in Guinea-Bissau's two letter code? Corypight (talk) 10:57, 14 February 2021 (UTC)[reply]

I was unable to find a source. But my guess would be that it comes from the name in Fula (Gine-Bisaawo) and/or Mandinka (Gine-Bisawo) in combination with the fact that GB, GU, GI, GN, and even BG are already used for other countries. Anomie 14:49, 14 February 2021 (UTC)[reply]
List of Internet top-level domains explains that GW comes from "Guinea, West Africa". August-54 (talk) 05:23, 17 February 2021 (UTC)[reply]
Not anymore, apparently. Corypight changed it with no source. But the "Guinea, West Africa" was added with no source in 2019, so 🤷. I also note that Guinea is right next to Guinea-Bissau in "West Africa". Anomie 13:09, 17 February 2021 (UTC)[reply]

Table reference[edit]

Reference 13 claims it's a "ISO 3166-1 decoding table", but is a generic link to the ISO Online Browsing Platform (no subdocument linked or referenced). Does anyone have a better link? 141.135.100.90 (talk) 10:34, 2 March 2021 (UTC)[reply]

It used to link to a page that ISO removed in 2013 or 2014; someone "fixed" the dead link in Special:Diff/688555200 without correcting the title. The last archived version may be seen at https://web.archive.org/web/20130921132206/http://www.iso.org/iso/iso-3166-1_decoding_table, although the table itself seems to not have been updated from an earlier version where the "not used" color was still used. In theory you could use the information in the online browsing platform to create the table. Anomie 13:22, 2 March 2021 (UTC)[reply]

Diacritics[edit]

Why are there diacritics in the ISO names of Åland Islands, Saint Barthélemy, Côte d'Ivoire, Curaçao, and Réunion, but not in São Tomé and Príncipe? August-54 (talk) 18:31, 19 March 2021 (UTC)[reply]

Odd... São Tomé and Príncipe gets to have its diacritics in the local short name but not the English short/full name. Ultimately a question for some subcommittee of the ISO. DRMcCreedy (talk) 21:16, 19 March 2021 (UTC)[reply]

Short name (title case)[edit]

The countries that use their full names in the UN are designated as such also by the ISO. It can be divided into two categories:

Category 1 – Four countries that are alphabetized under their short names in the UN General Assembly despite the use of long names

UN designation ISO designation Common name
Plurinational State of Bolivia Bolivia (Plurinational State of) Bolivia
Islamic Republic of Iran Iran (Islamic Republic of) Iran
Federated States of Micronesia Micronesia (Federated States of) Federated States of Micronesia
(abbreviated to FS Micronesia or FSM)
Bolivarian Republic of Venezuela Venezuela (Bolivarian Republic of) Venezuela

Category 2 – Five (previously six) countries that are alphabetized out of order (i.e. under their long names) in the UN General Assembly

UN designation ISO designation Common name
Democratic People's Republic of Korea Korea (Democratic People's Republic of) North Korea
Democratic Republic of the Congo Congo, Democratic Republic of the Democratic Republic of the Congo
(abbreviated to DR Congo or DRC)
or sometimes Congo-Kinshasa
Republic of Korea Korea, Republic of South Korea
Republic of Moldova Moldova, Republic of Moldova
The former Yugoslav Republic of Macedonia (until February 2019,
prior to the Prespa agreement and name change to North Macedonia)
Macedonia, the former Yugoslav Republic of Macedonia (WP article was under
"Republic of Macedonia" before Prespa)
United Republic of Tanzania Tanzania, United Republic of Tanzania

This seems to be regular in that in the case of countries alphabetized according to the short name in the UN, a part of the formal name is in parentheses, and a comma is used for those which are alphabetized according to the long, formal name. North Korea is an odd case though. Why are parentheses used instead of a comma in North Korea's ISO name? August-54 (talk) 12:42, 22 March 2021 (UTC)[reply]

“belongs to”[edit]

Several places are described, seemingly colloquially, as “belongs to”.

BV: “ Belongs to Norway”

CC, CX, HM, NF: “Belongs to Australia”

At least some of these could better be described as “External territory of Australia”. Does this column belong to wikipedia, or to ISO 3166? I.e., may I change it? JDAWiseman (talk) 16:15, 9 July 2023 (UTC)[reply]

The "Notes" column is for Wikipedia's own notes. So, yes, you're free to make changes to it. --Zundark (talk) 19:02, 9 July 2023 (UTC)[reply]
Done. JDAWiseman (talk) 22:07, 9 July 2023 (UTC)[reply]