Reorganize countries geographically

This commit is contained in:
fgerber 2024-04-12 23:39:14 +02:00
parent f404f60a9a
commit dc0371ca41
4 changed files with 146 additions and 146 deletions

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.1 MiB

After

Width:  |  Height:  |  Size: 6.1 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.0 MiB

After

Width:  |  Height:  |  Size: 6.0 MiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.1 MiB

After

Width:  |  Height:  |  Size: 6.1 MiB

View File

@ -6,7 +6,6 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
EEE( EEE(
"Europe", setOf( "Europe", setOf(
XAD,
ALA,// Åland Islands: an autonomous region of Finland, but not a member of the EU or UN ALA,// Åland Islands: an autonomous region of Finland, but not a member of the EU or UN
ALB, ALB,
AND, AND,
@ -16,7 +15,6 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
BIH, BIH,
BGR, BGR,
HRV, HRV,
CYP,
CZE, CZE,
DNK, DNK,
EST, EST,
@ -26,6 +24,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
DEU, DEU,
GIB, // Gibraltar: a British overseas territory located at the southern tip of the Iberian Peninsula GIB, // Gibraltar: a British overseas territory located at the southern tip of the Iberian Peninsula
GRC, GRC,
GRL,
GGY, // Guernsey: a British Crown dependency in the English Channel GGY, // Guernsey: a British Crown dependency in the English Channel
HUN, HUN,
ISL, ISL,
@ -33,7 +32,6 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
IMN, // Isle of Man: a British Crown dependency located in the Irish Sea IMN, // Isle of Man: a British Crown dependency located in the Irish Sea
ITA, ITA,
JEY, // Jersey: a British Crown dependency located in the English Channel JEY, // Jersey: a British Crown dependency located in the English Channel
KAZ,
XKO, XKO,
LVA, LVA,
LIE, LIE,
@ -65,6 +63,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
), ),
ABB( ABB(
"Asia", setOf( "Asia", setOf(
XAD,
AFG, AFG,
ARM, ARM,
AZE, AZE,
@ -77,6 +76,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
CCK, // Cocos (Keeling) Islands: an Australian external territory in the Indian Ocean CCK, // Cocos (Keeling) Islands: an Australian external territory in the Indian Ocean
CHN, CHN,
CXR, // Christmas Island: an Australian external territory in the Indian Ocean CXR, // Christmas Island: an Australian external territory in the Indian Ocean
CYP,
GEO, GEO,
//HKG, //HKG,
IND, IND,
@ -86,6 +86,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
ISR, ISR,
JPN, JPN,
JOR, JOR,
KAZ,
KWT, KWT,
KGZ, KGZ,
LAO, LAO,
@ -127,6 +128,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
BDI, BDI,
BEN, BEN,
BWA, BWA,
BVT, // Bouvet Island: an uninhabited territory of Norway in the South Atlantic
BFA, BFA,
BDI, BDI,
CPV, CPV,
@ -148,6 +150,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
GHA, GHA,
GIN, GIN,
GNB, GNB,
HMD, // Heard Island and McDonald Islands: an uninhabited Australian external territory in the southern Indian Ocean
KEN, KEN,
LSO, LSO,
LBR, LBR,
@ -206,7 +209,6 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
DMA, DMA,
DOM, DOM,
SLV, SLV,
GRL,
GRD, GRD,
GLP, GLP,
GTM, GTM,
@ -248,6 +250,7 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
GUY, GUY,
PRY, PRY,
PER, PER,
SGS, // South Georgia and the South Sandwich Islands: a British overseas territory in the southern Atlantic Ocean
SUR, SUR,
URY, URY,
VEN, VEN,
@ -284,11 +287,8 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
), ),
XXX( XXX(
"Others", setOf( "Antarctica", setOf(
ATA, // Antarctica: not in any other region ATA, // Antarctica: not in any other region
BVT, // Bouvet Island: an uninhabited territory of Norway in the South Atlantic
HMD, // Heard Island and McDonald Islands: an uninhabited Australian external territory in the southern Indian Ocean
SGS, // South Georgia and the South Sandwich Islands: a British overseas territory in the southern Atlantic Ocean
) )
), ),