Moved ATA

This commit is contained in:
soraefir 2024-04-13 01:13:38 +02:00
parent 8e2304f5fc
commit eda0bc19a0
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
2 changed files with 6 additions and 5 deletions

View File

@ -287,8 +287,8 @@ enum class Group(override val fullName: String, override val children: Set<GeoLo
),
XXX(
"Antarctica", setOf(
ATA, // Antarctica: not in any other region
"Other", setOf(
)
),

View File

@ -6,14 +6,15 @@ enum class World(override val fullName: String, override val children: Set<GeoLo
WWW(
"World", setOf(
EEE, ABB, FFF, NNN, SRR, UUU, XXX
)
EEE, ABB, FFF, NNN, SRR, UUU, Country.ATA,
)
);
override val area = children.fold(0) { acc, i ->
acc + i.area
}
override val type = GeoLoc.LocType.WORLD
override val code = this.name
}