valuesets 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,591 @@
|
|
|
1
|
+
"""
|
|
2
|
+
INSDC Geographic Location Vocabulary
|
|
3
|
+
|
|
4
|
+
INSDC controlled vocabulary for geographic locations used in sequence records.
|
|
5
|
+
This vocabulary is used for the /geo_loc_name qualifier in INSDC databases (GenBank, ENA, DDBJ).
|
|
6
|
+
Countries are mapped to ISO 3166-1 alpha-2 codes using Library of Congress URIs.
|
|
7
|
+
Source: https://www.insdc.org/submitting-standards/geo_loc_name-qualifier-vocabulary/
|
|
8
|
+
|
|
9
|
+
Generated from: bio/insdc_geographic_locations.yaml
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from __future__ import annotations
|
|
13
|
+
|
|
14
|
+
from typing import Dict, Any, Optional
|
|
15
|
+
from valuesets.generators.rich_enum import RichEnum
|
|
16
|
+
|
|
17
|
+
class InsdcGeographicLocationEnum(RichEnum):
|
|
18
|
+
"""
|
|
19
|
+
INSDC controlled vocabulary for geographic locations of collected samples.
|
|
20
|
+
Includes countries, oceans, seas, and other geographic regions as defined by INSDC.
|
|
21
|
+
Countries use ISO 3166-1 alpha-2 codes from Library of Congress as canonical identifiers.
|
|
22
|
+
"""
|
|
23
|
+
# Enum members
|
|
24
|
+
AFGHANISTAN = "AFGHANISTAN"
|
|
25
|
+
ALBANIA = "ALBANIA"
|
|
26
|
+
ALGERIA = "ALGERIA"
|
|
27
|
+
AMERICAN_SAMOA = "AMERICAN_SAMOA"
|
|
28
|
+
ANDORRA = "ANDORRA"
|
|
29
|
+
ANGOLA = "ANGOLA"
|
|
30
|
+
ANGUILLA = "ANGUILLA"
|
|
31
|
+
ANTARCTICA = "ANTARCTICA"
|
|
32
|
+
ANTIGUA_AND_BARBUDA = "ANTIGUA_AND_BARBUDA"
|
|
33
|
+
ARCTIC_OCEAN = "ARCTIC_OCEAN"
|
|
34
|
+
ARGENTINA = "ARGENTINA"
|
|
35
|
+
ARMENIA = "ARMENIA"
|
|
36
|
+
ARUBA = "ARUBA"
|
|
37
|
+
ASHMORE_AND_CARTIER_ISLANDS = "ASHMORE_AND_CARTIER_ISLANDS"
|
|
38
|
+
ATLANTIC_OCEAN = "ATLANTIC_OCEAN"
|
|
39
|
+
AUSTRALIA = "AUSTRALIA"
|
|
40
|
+
AUSTRIA = "AUSTRIA"
|
|
41
|
+
AZERBAIJAN = "AZERBAIJAN"
|
|
42
|
+
BAHAMAS = "BAHAMAS"
|
|
43
|
+
BAHRAIN = "BAHRAIN"
|
|
44
|
+
BALTIC_SEA = "BALTIC_SEA"
|
|
45
|
+
BAKER_ISLAND = "BAKER_ISLAND"
|
|
46
|
+
BANGLADESH = "BANGLADESH"
|
|
47
|
+
BARBADOS = "BARBADOS"
|
|
48
|
+
BASSAS_DA_INDIA = "BASSAS_DA_INDIA"
|
|
49
|
+
BELARUS = "BELARUS"
|
|
50
|
+
BELGIUM = "BELGIUM"
|
|
51
|
+
BELIZE = "BELIZE"
|
|
52
|
+
BENIN = "BENIN"
|
|
53
|
+
BERMUDA = "BERMUDA"
|
|
54
|
+
BHUTAN = "BHUTAN"
|
|
55
|
+
BOLIVIA = "BOLIVIA"
|
|
56
|
+
BORNEO = "BORNEO"
|
|
57
|
+
BOSNIA_AND_HERZEGOVINA = "BOSNIA_AND_HERZEGOVINA"
|
|
58
|
+
BOTSWANA = "BOTSWANA"
|
|
59
|
+
BOUVET_ISLAND = "BOUVET_ISLAND"
|
|
60
|
+
BRAZIL = "BRAZIL"
|
|
61
|
+
BRITISH_VIRGIN_ISLANDS = "BRITISH_VIRGIN_ISLANDS"
|
|
62
|
+
BRUNEI = "BRUNEI"
|
|
63
|
+
BULGARIA = "BULGARIA"
|
|
64
|
+
BURKINA_FASO = "BURKINA_FASO"
|
|
65
|
+
BURUNDI = "BURUNDI"
|
|
66
|
+
CAMBODIA = "CAMBODIA"
|
|
67
|
+
CAMEROON = "CAMEROON"
|
|
68
|
+
CANADA = "CANADA"
|
|
69
|
+
CAPE_VERDE = "CAPE_VERDE"
|
|
70
|
+
CAYMAN_ISLANDS = "CAYMAN_ISLANDS"
|
|
71
|
+
CENTRAL_AFRICAN_REPUBLIC = "CENTRAL_AFRICAN_REPUBLIC"
|
|
72
|
+
CHAD = "CHAD"
|
|
73
|
+
CHILE = "CHILE"
|
|
74
|
+
CHINA = "CHINA"
|
|
75
|
+
CHRISTMAS_ISLAND = "CHRISTMAS_ISLAND"
|
|
76
|
+
CLIPPERTON_ISLAND = "CLIPPERTON_ISLAND"
|
|
77
|
+
COCOS_ISLANDS = "COCOS_ISLANDS"
|
|
78
|
+
COLOMBIA = "COLOMBIA"
|
|
79
|
+
COMOROS = "COMOROS"
|
|
80
|
+
COOK_ISLANDS = "COOK_ISLANDS"
|
|
81
|
+
CORAL_SEA_ISLANDS = "CORAL_SEA_ISLANDS"
|
|
82
|
+
COSTA_RICA = "COSTA_RICA"
|
|
83
|
+
COTE_DIVOIRE = "COTE_DIVOIRE"
|
|
84
|
+
CROATIA = "CROATIA"
|
|
85
|
+
CUBA = "CUBA"
|
|
86
|
+
CURACAO = "CURACAO"
|
|
87
|
+
CYPRUS = "CYPRUS"
|
|
88
|
+
CZECHIA = "CZECHIA"
|
|
89
|
+
DEMOCRATIC_REPUBLIC_OF_THE_CONGO = "DEMOCRATIC_REPUBLIC_OF_THE_CONGO"
|
|
90
|
+
DENMARK = "DENMARK"
|
|
91
|
+
DJIBOUTI = "DJIBOUTI"
|
|
92
|
+
DOMINICA = "DOMINICA"
|
|
93
|
+
DOMINICAN_REPUBLIC = "DOMINICAN_REPUBLIC"
|
|
94
|
+
ECUADOR = "ECUADOR"
|
|
95
|
+
EGYPT = "EGYPT"
|
|
96
|
+
EL_SALVADOR = "EL_SALVADOR"
|
|
97
|
+
EQUATORIAL_GUINEA = "EQUATORIAL_GUINEA"
|
|
98
|
+
ERITREA = "ERITREA"
|
|
99
|
+
ESTONIA = "ESTONIA"
|
|
100
|
+
ESWATINI = "ESWATINI"
|
|
101
|
+
ETHIOPIA = "ETHIOPIA"
|
|
102
|
+
EUROPA_ISLAND = "EUROPA_ISLAND"
|
|
103
|
+
FALKLAND_ISLANDS = "FALKLAND_ISLANDS"
|
|
104
|
+
FAROE_ISLANDS = "FAROE_ISLANDS"
|
|
105
|
+
FIJI = "FIJI"
|
|
106
|
+
FINLAND = "FINLAND"
|
|
107
|
+
FRANCE = "FRANCE"
|
|
108
|
+
FRENCH_GUIANA = "FRENCH_GUIANA"
|
|
109
|
+
FRENCH_POLYNESIA = "FRENCH_POLYNESIA"
|
|
110
|
+
FRENCH_SOUTHERN_AND_ANTARCTIC_LANDS = "FRENCH_SOUTHERN_AND_ANTARCTIC_LANDS"
|
|
111
|
+
GABON = "GABON"
|
|
112
|
+
GAMBIA = "GAMBIA"
|
|
113
|
+
GAZA_STRIP = "GAZA_STRIP"
|
|
114
|
+
GEORGIA = "GEORGIA"
|
|
115
|
+
GERMANY = "GERMANY"
|
|
116
|
+
GHANA = "GHANA"
|
|
117
|
+
GIBRALTAR = "GIBRALTAR"
|
|
118
|
+
GLORIOSO_ISLANDS = "GLORIOSO_ISLANDS"
|
|
119
|
+
GREECE = "GREECE"
|
|
120
|
+
GREENLAND = "GREENLAND"
|
|
121
|
+
GRENADA = "GRENADA"
|
|
122
|
+
GUADELOUPE = "GUADELOUPE"
|
|
123
|
+
GUAM = "GUAM"
|
|
124
|
+
GUATEMALA = "GUATEMALA"
|
|
125
|
+
GUERNSEY = "GUERNSEY"
|
|
126
|
+
GUINEA = "GUINEA"
|
|
127
|
+
GUINEA_BISSAU = "GUINEA_BISSAU"
|
|
128
|
+
GUYANA = "GUYANA"
|
|
129
|
+
HAITI = "HAITI"
|
|
130
|
+
HEARD_ISLAND_AND_MCDONALD_ISLANDS = "HEARD_ISLAND_AND_MCDONALD_ISLANDS"
|
|
131
|
+
HONDURAS = "HONDURAS"
|
|
132
|
+
HONG_KONG = "HONG_KONG"
|
|
133
|
+
HOWLAND_ISLAND = "HOWLAND_ISLAND"
|
|
134
|
+
HUNGARY = "HUNGARY"
|
|
135
|
+
ICELAND = "ICELAND"
|
|
136
|
+
INDIA = "INDIA"
|
|
137
|
+
INDIAN_OCEAN = "INDIAN_OCEAN"
|
|
138
|
+
INDONESIA = "INDONESIA"
|
|
139
|
+
IRAN = "IRAN"
|
|
140
|
+
IRAQ = "IRAQ"
|
|
141
|
+
IRELAND = "IRELAND"
|
|
142
|
+
ISLE_OF_MAN = "ISLE_OF_MAN"
|
|
143
|
+
ISRAEL = "ISRAEL"
|
|
144
|
+
ITALY = "ITALY"
|
|
145
|
+
JAMAICA = "JAMAICA"
|
|
146
|
+
JAN_MAYEN = "JAN_MAYEN"
|
|
147
|
+
JAPAN = "JAPAN"
|
|
148
|
+
JARVIS_ISLAND = "JARVIS_ISLAND"
|
|
149
|
+
JERSEY = "JERSEY"
|
|
150
|
+
JOHNSTON_ATOLL = "JOHNSTON_ATOLL"
|
|
151
|
+
JORDAN = "JORDAN"
|
|
152
|
+
JUAN_DE_NOVA_ISLAND = "JUAN_DE_NOVA_ISLAND"
|
|
153
|
+
KAZAKHSTAN = "KAZAKHSTAN"
|
|
154
|
+
KENYA = "KENYA"
|
|
155
|
+
KERGUELEN_ARCHIPELAGO = "KERGUELEN_ARCHIPELAGO"
|
|
156
|
+
KINGMAN_REEF = "KINGMAN_REEF"
|
|
157
|
+
KIRIBATI = "KIRIBATI"
|
|
158
|
+
KOSOVO = "KOSOVO"
|
|
159
|
+
KUWAIT = "KUWAIT"
|
|
160
|
+
KYRGYZSTAN = "KYRGYZSTAN"
|
|
161
|
+
LAOS = "LAOS"
|
|
162
|
+
LATVIA = "LATVIA"
|
|
163
|
+
LEBANON = "LEBANON"
|
|
164
|
+
LESOTHO = "LESOTHO"
|
|
165
|
+
LIBERIA = "LIBERIA"
|
|
166
|
+
LIBYA = "LIBYA"
|
|
167
|
+
LIECHTENSTEIN = "LIECHTENSTEIN"
|
|
168
|
+
LINE_ISLANDS = "LINE_ISLANDS"
|
|
169
|
+
LITHUANIA = "LITHUANIA"
|
|
170
|
+
LUXEMBOURG = "LUXEMBOURG"
|
|
171
|
+
MACAU = "MACAU"
|
|
172
|
+
MADAGASCAR = "MADAGASCAR"
|
|
173
|
+
MALAWI = "MALAWI"
|
|
174
|
+
MALAYSIA = "MALAYSIA"
|
|
175
|
+
MALDIVES = "MALDIVES"
|
|
176
|
+
MALI = "MALI"
|
|
177
|
+
MALTA = "MALTA"
|
|
178
|
+
MARSHALL_ISLANDS = "MARSHALL_ISLANDS"
|
|
179
|
+
MARTINIQUE = "MARTINIQUE"
|
|
180
|
+
MAURITANIA = "MAURITANIA"
|
|
181
|
+
MAURITIUS = "MAURITIUS"
|
|
182
|
+
MAYOTTE = "MAYOTTE"
|
|
183
|
+
MEDITERRANEAN_SEA = "MEDITERRANEAN_SEA"
|
|
184
|
+
MEXICO = "MEXICO"
|
|
185
|
+
MICRONESIA_FEDERATED_STATES_OF = "MICRONESIA_FEDERATED_STATES_OF"
|
|
186
|
+
MIDWAY_ISLANDS = "MIDWAY_ISLANDS"
|
|
187
|
+
MOLDOVA = "MOLDOVA"
|
|
188
|
+
MONACO = "MONACO"
|
|
189
|
+
MONGOLIA = "MONGOLIA"
|
|
190
|
+
MONTENEGRO = "MONTENEGRO"
|
|
191
|
+
MONTSERRAT = "MONTSERRAT"
|
|
192
|
+
MOROCCO = "MOROCCO"
|
|
193
|
+
MOZAMBIQUE = "MOZAMBIQUE"
|
|
194
|
+
MYANMAR = "MYANMAR"
|
|
195
|
+
NAMIBIA = "NAMIBIA"
|
|
196
|
+
NAURU = "NAURU"
|
|
197
|
+
NAVASSA_ISLAND = "NAVASSA_ISLAND"
|
|
198
|
+
NEPAL = "NEPAL"
|
|
199
|
+
NETHERLANDS = "NETHERLANDS"
|
|
200
|
+
NEW_CALEDONIA = "NEW_CALEDONIA"
|
|
201
|
+
NEW_ZEALAND = "NEW_ZEALAND"
|
|
202
|
+
NICARAGUA = "NICARAGUA"
|
|
203
|
+
NIGER = "NIGER"
|
|
204
|
+
NIGERIA = "NIGERIA"
|
|
205
|
+
NIUE = "NIUE"
|
|
206
|
+
NORFOLK_ISLAND = "NORFOLK_ISLAND"
|
|
207
|
+
NORTH_KOREA = "NORTH_KOREA"
|
|
208
|
+
NORTH_MACEDONIA = "NORTH_MACEDONIA"
|
|
209
|
+
NORTH_SEA = "NORTH_SEA"
|
|
210
|
+
NORTHERN_MARIANA_ISLANDS = "NORTHERN_MARIANA_ISLANDS"
|
|
211
|
+
NORWAY = "NORWAY"
|
|
212
|
+
OMAN = "OMAN"
|
|
213
|
+
PACIFIC_OCEAN = "PACIFIC_OCEAN"
|
|
214
|
+
PAKISTAN = "PAKISTAN"
|
|
215
|
+
PALAU = "PALAU"
|
|
216
|
+
PALMYRA_ATOLL = "PALMYRA_ATOLL"
|
|
217
|
+
PANAMA = "PANAMA"
|
|
218
|
+
PAPUA_NEW_GUINEA = "PAPUA_NEW_GUINEA"
|
|
219
|
+
PARACEL_ISLANDS = "PARACEL_ISLANDS"
|
|
220
|
+
PARAGUAY = "PARAGUAY"
|
|
221
|
+
PERU = "PERU"
|
|
222
|
+
PHILIPPINES = "PHILIPPINES"
|
|
223
|
+
PITCAIRN_ISLANDS = "PITCAIRN_ISLANDS"
|
|
224
|
+
POLAND = "POLAND"
|
|
225
|
+
PORTUGAL = "PORTUGAL"
|
|
226
|
+
PUERTO_RICO = "PUERTO_RICO"
|
|
227
|
+
QATAR = "QATAR"
|
|
228
|
+
REPUBLIC_OF_THE_CONGO = "REPUBLIC_OF_THE_CONGO"
|
|
229
|
+
REUNION = "REUNION"
|
|
230
|
+
ROMANIA = "ROMANIA"
|
|
231
|
+
ROSS_SEA = "ROSS_SEA"
|
|
232
|
+
RUSSIA = "RUSSIA"
|
|
233
|
+
RWANDA = "RWANDA"
|
|
234
|
+
SAINT_BARTHELEMY = "SAINT_BARTHELEMY"
|
|
235
|
+
SAINT_HELENA = "SAINT_HELENA"
|
|
236
|
+
SAINT_KITTS_AND_NEVIS = "SAINT_KITTS_AND_NEVIS"
|
|
237
|
+
SAINT_LUCIA = "SAINT_LUCIA"
|
|
238
|
+
SAINT_MARTIN = "SAINT_MARTIN"
|
|
239
|
+
SAINT_PIERRE_AND_MIQUELON = "SAINT_PIERRE_AND_MIQUELON"
|
|
240
|
+
SAINT_VINCENT_AND_THE_GRENADINES = "SAINT_VINCENT_AND_THE_GRENADINES"
|
|
241
|
+
SAMOA = "SAMOA"
|
|
242
|
+
SAN_MARINO = "SAN_MARINO"
|
|
243
|
+
SAO_TOME_AND_PRINCIPE = "SAO_TOME_AND_PRINCIPE"
|
|
244
|
+
SAUDI_ARABIA = "SAUDI_ARABIA"
|
|
245
|
+
SENEGAL = "SENEGAL"
|
|
246
|
+
SERBIA = "SERBIA"
|
|
247
|
+
SEYCHELLES = "SEYCHELLES"
|
|
248
|
+
SIERRA_LEONE = "SIERRA_LEONE"
|
|
249
|
+
SINGAPORE = "SINGAPORE"
|
|
250
|
+
SINT_MAARTEN = "SINT_MAARTEN"
|
|
251
|
+
SLOVAKIA = "SLOVAKIA"
|
|
252
|
+
SLOVENIA = "SLOVENIA"
|
|
253
|
+
SOLOMON_ISLANDS = "SOLOMON_ISLANDS"
|
|
254
|
+
SOMALIA = "SOMALIA"
|
|
255
|
+
SOUTH_AFRICA = "SOUTH_AFRICA"
|
|
256
|
+
SOUTH_GEORGIA_AND_THE_SOUTH_SANDWICH_ISLANDS = "SOUTH_GEORGIA_AND_THE_SOUTH_SANDWICH_ISLANDS"
|
|
257
|
+
SOUTH_KOREA = "SOUTH_KOREA"
|
|
258
|
+
SOUTH_SUDAN = "SOUTH_SUDAN"
|
|
259
|
+
SOUTHERN_OCEAN = "SOUTHERN_OCEAN"
|
|
260
|
+
SPAIN = "SPAIN"
|
|
261
|
+
SPRATLY_ISLANDS = "SPRATLY_ISLANDS"
|
|
262
|
+
SRI_LANKA = "SRI_LANKA"
|
|
263
|
+
STATE_OF_PALESTINE = "STATE_OF_PALESTINE"
|
|
264
|
+
SUDAN = "SUDAN"
|
|
265
|
+
SURINAME = "SURINAME"
|
|
266
|
+
SVALBARD = "SVALBARD"
|
|
267
|
+
SWEDEN = "SWEDEN"
|
|
268
|
+
SWITZERLAND = "SWITZERLAND"
|
|
269
|
+
SYRIA = "SYRIA"
|
|
270
|
+
TAIWAN = "TAIWAN"
|
|
271
|
+
TAJIKISTAN = "TAJIKISTAN"
|
|
272
|
+
TANZANIA = "TANZANIA"
|
|
273
|
+
TASMAN_SEA = "TASMAN_SEA"
|
|
274
|
+
THAILAND = "THAILAND"
|
|
275
|
+
TIMOR_LESTE = "TIMOR_LESTE"
|
|
276
|
+
TOGO = "TOGO"
|
|
277
|
+
TOKELAU = "TOKELAU"
|
|
278
|
+
TONGA = "TONGA"
|
|
279
|
+
TRINIDAD_AND_TOBAGO = "TRINIDAD_AND_TOBAGO"
|
|
280
|
+
TROMELIN_ISLAND = "TROMELIN_ISLAND"
|
|
281
|
+
TUNISIA = "TUNISIA"
|
|
282
|
+
TURKEY = "TURKEY"
|
|
283
|
+
TURKMENISTAN = "TURKMENISTAN"
|
|
284
|
+
TURKS_AND_CAICOS_ISLANDS = "TURKS_AND_CAICOS_ISLANDS"
|
|
285
|
+
TUVALU = "TUVALU"
|
|
286
|
+
UGANDA = "UGANDA"
|
|
287
|
+
UKRAINE = "UKRAINE"
|
|
288
|
+
UNITED_ARAB_EMIRATES = "UNITED_ARAB_EMIRATES"
|
|
289
|
+
UNITED_KINGDOM = "UNITED_KINGDOM"
|
|
290
|
+
URUGUAY = "URUGUAY"
|
|
291
|
+
USA = "USA"
|
|
292
|
+
UZBEKISTAN = "UZBEKISTAN"
|
|
293
|
+
VANUATU = "VANUATU"
|
|
294
|
+
VENEZUELA = "VENEZUELA"
|
|
295
|
+
VIET_NAM = "VIET_NAM"
|
|
296
|
+
VIRGIN_ISLANDS = "VIRGIN_ISLANDS"
|
|
297
|
+
WAKE_ISLAND = "WAKE_ISLAND"
|
|
298
|
+
WALLIS_AND_FUTUNA = "WALLIS_AND_FUTUNA"
|
|
299
|
+
WEST_BANK = "WEST_BANK"
|
|
300
|
+
WESTERN_SAHARA = "WESTERN_SAHARA"
|
|
301
|
+
YEMEN = "YEMEN"
|
|
302
|
+
ZAMBIA = "ZAMBIA"
|
|
303
|
+
ZIMBABWE = "ZIMBABWE"
|
|
304
|
+
|
|
305
|
+
# Set metadata after class creation
|
|
306
|
+
InsdcGeographicLocationEnum._metadata = {
|
|
307
|
+
"AFGHANISTAN": {'description': 'Afghanistan', 'meaning': 'iso3166loc:af'},
|
|
308
|
+
"ALBANIA": {'description': 'Albania', 'meaning': 'iso3166loc:al'},
|
|
309
|
+
"ALGERIA": {'description': 'Algeria', 'meaning': 'iso3166loc:dz'},
|
|
310
|
+
"AMERICAN_SAMOA": {'description': 'American Samoa', 'meaning': 'iso3166loc:as'},
|
|
311
|
+
"ANDORRA": {'description': 'Andorra', 'meaning': 'iso3166loc:ad'},
|
|
312
|
+
"ANGOLA": {'description': 'Angola', 'meaning': 'iso3166loc:ao'},
|
|
313
|
+
"ANGUILLA": {'description': 'Anguilla', 'meaning': 'iso3166loc:ai'},
|
|
314
|
+
"ANTARCTICA": {'description': 'Antarctica', 'meaning': 'iso3166loc:aq'},
|
|
315
|
+
"ANTIGUA_AND_BARBUDA": {'description': 'Antigua and Barbuda', 'meaning': 'iso3166loc:ag'},
|
|
316
|
+
"ARCTIC_OCEAN": {'description': 'Arctic Ocean', 'meaning': 'geonames:3371123/'},
|
|
317
|
+
"ARGENTINA": {'description': 'Argentina', 'meaning': 'iso3166loc:ar'},
|
|
318
|
+
"ARMENIA": {'description': 'Armenia', 'meaning': 'iso3166loc:am'},
|
|
319
|
+
"ARUBA": {'description': 'Aruba', 'meaning': 'iso3166loc:aw'},
|
|
320
|
+
"ASHMORE_AND_CARTIER_ISLANDS": {'description': 'Ashmore and Cartier Islands', 'annotations': {'note': 'Australian external territory'}},
|
|
321
|
+
"ATLANTIC_OCEAN": {'description': 'Atlantic Ocean', 'meaning': 'geonames:3411923/'},
|
|
322
|
+
"AUSTRALIA": {'description': 'Australia', 'meaning': 'iso3166loc:au'},
|
|
323
|
+
"AUSTRIA": {'description': 'Austria', 'meaning': 'iso3166loc:at'},
|
|
324
|
+
"AZERBAIJAN": {'description': 'Azerbaijan', 'meaning': 'iso3166loc:az'},
|
|
325
|
+
"BAHAMAS": {'description': 'Bahamas', 'meaning': 'iso3166loc:bs'},
|
|
326
|
+
"BAHRAIN": {'description': 'Bahrain', 'meaning': 'iso3166loc:bh'},
|
|
327
|
+
"BALTIC_SEA": {'description': 'Baltic Sea', 'meaning': 'geonames:2673730/'},
|
|
328
|
+
"BAKER_ISLAND": {'description': 'Baker Island', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
329
|
+
"BANGLADESH": {'description': 'Bangladesh', 'meaning': 'iso3166loc:bd'},
|
|
330
|
+
"BARBADOS": {'description': 'Barbados', 'meaning': 'iso3166loc:bb'},
|
|
331
|
+
"BASSAS_DA_INDIA": {'description': 'Bassas da India', 'annotations': {'note': 'French Southern and Antarctic Lands territory'}},
|
|
332
|
+
"BELARUS": {'description': 'Belarus', 'meaning': 'iso3166loc:by'},
|
|
333
|
+
"BELGIUM": {'description': 'Belgium', 'meaning': 'iso3166loc:be'},
|
|
334
|
+
"BELIZE": {'description': 'Belize', 'meaning': 'iso3166loc:bz'},
|
|
335
|
+
"BENIN": {'description': 'Benin', 'meaning': 'iso3166loc:bj'},
|
|
336
|
+
"BERMUDA": {'description': 'Bermuda', 'meaning': 'iso3166loc:bm'},
|
|
337
|
+
"BHUTAN": {'description': 'Bhutan', 'meaning': 'iso3166loc:bt'},
|
|
338
|
+
"BOLIVIA": {'description': 'Bolivia', 'meaning': 'iso3166loc:bo'},
|
|
339
|
+
"BORNEO": {'description': 'Borneo', 'meaning': 'geonames:1642188/', 'annotations': {'note': 'Island shared by Brunei, Indonesia, and Malaysia'}},
|
|
340
|
+
"BOSNIA_AND_HERZEGOVINA": {'description': 'Bosnia and Herzegovina', 'meaning': 'iso3166loc:ba'},
|
|
341
|
+
"BOTSWANA": {'description': 'Botswana', 'meaning': 'iso3166loc:bw'},
|
|
342
|
+
"BOUVET_ISLAND": {'description': 'Bouvet Island', 'meaning': 'iso3166loc:bv'},
|
|
343
|
+
"BRAZIL": {'description': 'Brazil', 'meaning': 'iso3166loc:br'},
|
|
344
|
+
"BRITISH_VIRGIN_ISLANDS": {'description': 'British Virgin Islands', 'meaning': 'iso3166loc:vg'},
|
|
345
|
+
"BRUNEI": {'description': 'Brunei', 'meaning': 'iso3166loc:bn'},
|
|
346
|
+
"BULGARIA": {'description': 'Bulgaria', 'meaning': 'iso3166loc:bg'},
|
|
347
|
+
"BURKINA_FASO": {'description': 'Burkina Faso', 'meaning': 'iso3166loc:bf'},
|
|
348
|
+
"BURUNDI": {'description': 'Burundi', 'meaning': 'iso3166loc:bi'},
|
|
349
|
+
"CAMBODIA": {'description': 'Cambodia', 'meaning': 'iso3166loc:kh'},
|
|
350
|
+
"CAMEROON": {'description': 'Cameroon', 'meaning': 'iso3166loc:cm'},
|
|
351
|
+
"CANADA": {'description': 'Canada', 'meaning': 'iso3166loc:ca'},
|
|
352
|
+
"CAPE_VERDE": {'description': 'Cape Verde', 'meaning': 'iso3166loc:cv'},
|
|
353
|
+
"CAYMAN_ISLANDS": {'description': 'Cayman Islands', 'meaning': 'iso3166loc:ky'},
|
|
354
|
+
"CENTRAL_AFRICAN_REPUBLIC": {'description': 'Central African Republic', 'meaning': 'iso3166loc:cf'},
|
|
355
|
+
"CHAD": {'description': 'Chad', 'meaning': 'iso3166loc:td'},
|
|
356
|
+
"CHILE": {'description': 'Chile', 'meaning': 'iso3166loc:cl'},
|
|
357
|
+
"CHINA": {'description': 'China', 'meaning': 'iso3166loc:cn'},
|
|
358
|
+
"CHRISTMAS_ISLAND": {'description': 'Christmas Island', 'meaning': 'iso3166loc:cx'},
|
|
359
|
+
"CLIPPERTON_ISLAND": {'description': 'Clipperton Island', 'annotations': {'note': 'French overseas territory'}},
|
|
360
|
+
"COCOS_ISLANDS": {'description': 'Cocos Islands', 'meaning': 'iso3166loc:cc'},
|
|
361
|
+
"COLOMBIA": {'description': 'Colombia', 'meaning': 'iso3166loc:co'},
|
|
362
|
+
"COMOROS": {'description': 'Comoros', 'meaning': 'iso3166loc:km'},
|
|
363
|
+
"COOK_ISLANDS": {'description': 'Cook Islands', 'meaning': 'iso3166loc:ck'},
|
|
364
|
+
"CORAL_SEA_ISLANDS": {'description': 'Coral Sea Islands', 'annotations': {'note': 'Australian external territory'}},
|
|
365
|
+
"COSTA_RICA": {'description': 'Costa Rica', 'meaning': 'iso3166loc:cr'},
|
|
366
|
+
"COTE_DIVOIRE": {'description': "Cote d'Ivoire", 'meaning': 'iso3166loc:ci'},
|
|
367
|
+
"CROATIA": {'description': 'Croatia', 'meaning': 'iso3166loc:hr'},
|
|
368
|
+
"CUBA": {'description': 'Cuba', 'meaning': 'iso3166loc:cu'},
|
|
369
|
+
"CURACAO": {'description': 'Curacao', 'meaning': 'iso3166loc:cw'},
|
|
370
|
+
"CYPRUS": {'description': 'Cyprus', 'meaning': 'iso3166loc:cy'},
|
|
371
|
+
"CZECHIA": {'description': 'Czechia', 'meaning': 'iso3166loc:cz'},
|
|
372
|
+
"DEMOCRATIC_REPUBLIC_OF_THE_CONGO": {'description': 'Democratic Republic of the Congo', 'meaning': 'iso3166loc:cd'},
|
|
373
|
+
"DENMARK": {'description': 'Denmark', 'meaning': 'iso3166loc:dk'},
|
|
374
|
+
"DJIBOUTI": {'description': 'Djibouti', 'meaning': 'iso3166loc:dj'},
|
|
375
|
+
"DOMINICA": {'description': 'Dominica', 'meaning': 'iso3166loc:dm'},
|
|
376
|
+
"DOMINICAN_REPUBLIC": {'description': 'Dominican Republic', 'meaning': 'iso3166loc:do'},
|
|
377
|
+
"ECUADOR": {'description': 'Ecuador', 'meaning': 'iso3166loc:ec'},
|
|
378
|
+
"EGYPT": {'description': 'Egypt', 'meaning': 'iso3166loc:eg'},
|
|
379
|
+
"EL_SALVADOR": {'description': 'El Salvador', 'meaning': 'iso3166loc:sv'},
|
|
380
|
+
"EQUATORIAL_GUINEA": {'description': 'Equatorial Guinea', 'meaning': 'iso3166loc:gq'},
|
|
381
|
+
"ERITREA": {'description': 'Eritrea', 'meaning': 'iso3166loc:er'},
|
|
382
|
+
"ESTONIA": {'description': 'Estonia', 'meaning': 'iso3166loc:ee'},
|
|
383
|
+
"ESWATINI": {'description': 'Eswatini', 'meaning': 'iso3166loc:sz'},
|
|
384
|
+
"ETHIOPIA": {'description': 'Ethiopia', 'meaning': 'iso3166loc:et'},
|
|
385
|
+
"EUROPA_ISLAND": {'description': 'Europa Island', 'annotations': {'note': 'French Southern and Antarctic Lands territory'}},
|
|
386
|
+
"FALKLAND_ISLANDS": {'description': 'Falkland Islands (Islas Malvinas)', 'meaning': 'iso3166loc:fk'},
|
|
387
|
+
"FAROE_ISLANDS": {'description': 'Faroe Islands', 'meaning': 'iso3166loc:fo'},
|
|
388
|
+
"FIJI": {'description': 'Fiji', 'meaning': 'iso3166loc:fj'},
|
|
389
|
+
"FINLAND": {'description': 'Finland', 'meaning': 'iso3166loc:fi'},
|
|
390
|
+
"FRANCE": {'description': 'France', 'meaning': 'iso3166loc:fr'},
|
|
391
|
+
"FRENCH_GUIANA": {'description': 'French Guiana', 'meaning': 'iso3166loc:gf'},
|
|
392
|
+
"FRENCH_POLYNESIA": {'description': 'French Polynesia', 'meaning': 'iso3166loc:pf'},
|
|
393
|
+
"FRENCH_SOUTHERN_AND_ANTARCTIC_LANDS": {'description': 'French Southern and Antarctic Lands', 'meaning': 'iso3166loc:tf'},
|
|
394
|
+
"GABON": {'description': 'Gabon', 'meaning': 'iso3166loc:ga'},
|
|
395
|
+
"GAMBIA": {'description': 'Gambia', 'meaning': 'iso3166loc:gm'},
|
|
396
|
+
"GAZA_STRIP": {'description': 'Gaza Strip', 'annotations': {'note': 'Palestinian territory'}},
|
|
397
|
+
"GEORGIA": {'description': 'Georgia', 'meaning': 'iso3166loc:ge'},
|
|
398
|
+
"GERMANY": {'description': 'Germany', 'meaning': 'iso3166loc:de'},
|
|
399
|
+
"GHANA": {'description': 'Ghana', 'meaning': 'iso3166loc:gh'},
|
|
400
|
+
"GIBRALTAR": {'description': 'Gibraltar', 'meaning': 'iso3166loc:gi'},
|
|
401
|
+
"GLORIOSO_ISLANDS": {'description': 'Glorioso Islands', 'annotations': {'note': 'French Southern and Antarctic Lands territory'}},
|
|
402
|
+
"GREECE": {'description': 'Greece', 'meaning': 'iso3166loc:gr'},
|
|
403
|
+
"GREENLAND": {'description': 'Greenland', 'meaning': 'iso3166loc:gl'},
|
|
404
|
+
"GRENADA": {'description': 'Grenada', 'meaning': 'iso3166loc:gd'},
|
|
405
|
+
"GUADELOUPE": {'description': 'Guadeloupe', 'meaning': 'iso3166loc:gp'},
|
|
406
|
+
"GUAM": {'description': 'Guam', 'meaning': 'iso3166loc:gu'},
|
|
407
|
+
"GUATEMALA": {'description': 'Guatemala', 'meaning': 'iso3166loc:gt'},
|
|
408
|
+
"GUERNSEY": {'description': 'Guernsey', 'meaning': 'iso3166loc:gg'},
|
|
409
|
+
"GUINEA": {'description': 'Guinea', 'meaning': 'iso3166loc:gn'},
|
|
410
|
+
"GUINEA_BISSAU": {'description': 'Guinea-Bissau', 'meaning': 'iso3166loc:gw'},
|
|
411
|
+
"GUYANA": {'description': 'Guyana', 'meaning': 'iso3166loc:gy'},
|
|
412
|
+
"HAITI": {'description': 'Haiti', 'meaning': 'iso3166loc:ht'},
|
|
413
|
+
"HEARD_ISLAND_AND_MCDONALD_ISLANDS": {'description': 'Heard Island and McDonald Islands', 'meaning': 'iso3166loc:hm'},
|
|
414
|
+
"HONDURAS": {'description': 'Honduras', 'meaning': 'iso3166loc:hn'},
|
|
415
|
+
"HONG_KONG": {'description': 'Hong Kong', 'meaning': 'iso3166loc:hk'},
|
|
416
|
+
"HOWLAND_ISLAND": {'description': 'Howland Island', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
417
|
+
"HUNGARY": {'description': 'Hungary', 'meaning': 'iso3166loc:hu'},
|
|
418
|
+
"ICELAND": {'description': 'Iceland', 'meaning': 'iso3166loc:is'},
|
|
419
|
+
"INDIA": {'description': 'India', 'meaning': 'iso3166loc:in'},
|
|
420
|
+
"INDIAN_OCEAN": {'description': 'Indian Ocean', 'meaning': 'geonames:1545739/'},
|
|
421
|
+
"INDONESIA": {'description': 'Indonesia', 'meaning': 'iso3166loc:id'},
|
|
422
|
+
"IRAN": {'description': 'Iran', 'meaning': 'iso3166loc:ir'},
|
|
423
|
+
"IRAQ": {'description': 'Iraq', 'meaning': 'iso3166loc:iq'},
|
|
424
|
+
"IRELAND": {'description': 'Ireland', 'meaning': 'iso3166loc:ie'},
|
|
425
|
+
"ISLE_OF_MAN": {'description': 'Isle of Man', 'meaning': 'iso3166loc:im'},
|
|
426
|
+
"ISRAEL": {'description': 'Israel', 'meaning': 'iso3166loc:il'},
|
|
427
|
+
"ITALY": {'description': 'Italy', 'meaning': 'iso3166loc:it'},
|
|
428
|
+
"JAMAICA": {'description': 'Jamaica', 'meaning': 'iso3166loc:jm'},
|
|
429
|
+
"JAN_MAYEN": {'description': 'Jan Mayen', 'annotations': {'note': 'Norwegian territory'}},
|
|
430
|
+
"JAPAN": {'description': 'Japan', 'meaning': 'iso3166loc:jp'},
|
|
431
|
+
"JARVIS_ISLAND": {'description': 'Jarvis Island', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
432
|
+
"JERSEY": {'description': 'Jersey', 'meaning': 'iso3166loc:je'},
|
|
433
|
+
"JOHNSTON_ATOLL": {'description': 'Johnston Atoll', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
434
|
+
"JORDAN": {'description': 'Jordan', 'meaning': 'iso3166loc:jo'},
|
|
435
|
+
"JUAN_DE_NOVA_ISLAND": {'description': 'Juan de Nova Island', 'annotations': {'note': 'French Southern and Antarctic Lands territory'}},
|
|
436
|
+
"KAZAKHSTAN": {'description': 'Kazakhstan', 'meaning': 'iso3166loc:kz'},
|
|
437
|
+
"KENYA": {'description': 'Kenya', 'meaning': 'iso3166loc:ke'},
|
|
438
|
+
"KERGUELEN_ARCHIPELAGO": {'description': 'Kerguelen Archipelago', 'annotations': {'note': 'French Southern and Antarctic Lands territory'}},
|
|
439
|
+
"KINGMAN_REEF": {'description': 'Kingman Reef', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
440
|
+
"KIRIBATI": {'description': 'Kiribati', 'meaning': 'iso3166loc:ki'},
|
|
441
|
+
"KOSOVO": {'description': 'Kosovo', 'meaning': 'iso3166loc:xk', 'annotations': {'note': 'Provisional ISO 3166 code'}},
|
|
442
|
+
"KUWAIT": {'description': 'Kuwait', 'meaning': 'iso3166loc:kw'},
|
|
443
|
+
"KYRGYZSTAN": {'description': 'Kyrgyzstan', 'meaning': 'iso3166loc:kg'},
|
|
444
|
+
"LAOS": {'description': 'Laos', 'meaning': 'iso3166loc:la'},
|
|
445
|
+
"LATVIA": {'description': 'Latvia', 'meaning': 'iso3166loc:lv'},
|
|
446
|
+
"LEBANON": {'description': 'Lebanon', 'meaning': 'iso3166loc:lb'},
|
|
447
|
+
"LESOTHO": {'description': 'Lesotho', 'meaning': 'iso3166loc:ls'},
|
|
448
|
+
"LIBERIA": {'description': 'Liberia', 'meaning': 'iso3166loc:lr'},
|
|
449
|
+
"LIBYA": {'description': 'Libya', 'meaning': 'iso3166loc:ly'},
|
|
450
|
+
"LIECHTENSTEIN": {'description': 'Liechtenstein', 'meaning': 'iso3166loc:li'},
|
|
451
|
+
"LINE_ISLANDS": {'description': 'Line Islands', 'annotations': {'note': 'Island group in Pacific Ocean (part of Kiribati)'}},
|
|
452
|
+
"LITHUANIA": {'description': 'Lithuania', 'meaning': 'iso3166loc:lt'},
|
|
453
|
+
"LUXEMBOURG": {'description': 'Luxembourg', 'meaning': 'iso3166loc:lu'},
|
|
454
|
+
"MACAU": {'description': 'Macau', 'meaning': 'iso3166loc:mo'},
|
|
455
|
+
"MADAGASCAR": {'description': 'Madagascar', 'meaning': 'iso3166loc:mg'},
|
|
456
|
+
"MALAWI": {'description': 'Malawi', 'meaning': 'iso3166loc:mw'},
|
|
457
|
+
"MALAYSIA": {'description': 'Malaysia', 'meaning': 'iso3166loc:my'},
|
|
458
|
+
"MALDIVES": {'description': 'Maldives', 'meaning': 'iso3166loc:mv'},
|
|
459
|
+
"MALI": {'description': 'Mali', 'meaning': 'iso3166loc:ml'},
|
|
460
|
+
"MALTA": {'description': 'Malta', 'meaning': 'iso3166loc:mt'},
|
|
461
|
+
"MARSHALL_ISLANDS": {'description': 'Marshall Islands', 'meaning': 'iso3166loc:mh'},
|
|
462
|
+
"MARTINIQUE": {'description': 'Martinique', 'meaning': 'iso3166loc:mq'},
|
|
463
|
+
"MAURITANIA": {'description': 'Mauritania', 'meaning': 'iso3166loc:mr'},
|
|
464
|
+
"MAURITIUS": {'description': 'Mauritius', 'meaning': 'iso3166loc:mu'},
|
|
465
|
+
"MAYOTTE": {'description': 'Mayotte', 'meaning': 'iso3166loc:yt'},
|
|
466
|
+
"MEDITERRANEAN_SEA": {'description': 'Mediterranean Sea', 'meaning': 'geonames:2593778/'},
|
|
467
|
+
"MEXICO": {'description': 'Mexico', 'meaning': 'iso3166loc:mx'},
|
|
468
|
+
"MICRONESIA_FEDERATED_STATES_OF": {'description': 'Micronesia, Federated States of', 'meaning': 'iso3166loc:fm'},
|
|
469
|
+
"MIDWAY_ISLANDS": {'description': 'Midway Islands', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
470
|
+
"MOLDOVA": {'description': 'Moldova', 'meaning': 'iso3166loc:md'},
|
|
471
|
+
"MONACO": {'description': 'Monaco', 'meaning': 'iso3166loc:mc'},
|
|
472
|
+
"MONGOLIA": {'description': 'Mongolia', 'meaning': 'iso3166loc:mn'},
|
|
473
|
+
"MONTENEGRO": {'description': 'Montenegro', 'meaning': 'iso3166loc:me'},
|
|
474
|
+
"MONTSERRAT": {'description': 'Montserrat', 'meaning': 'iso3166loc:ms'},
|
|
475
|
+
"MOROCCO": {'description': 'Morocco', 'meaning': 'iso3166loc:ma'},
|
|
476
|
+
"MOZAMBIQUE": {'description': 'Mozambique', 'meaning': 'iso3166loc:mz'},
|
|
477
|
+
"MYANMAR": {'description': 'Myanmar', 'meaning': 'iso3166loc:mm'},
|
|
478
|
+
"NAMIBIA": {'description': 'Namibia', 'meaning': 'iso3166loc:na'},
|
|
479
|
+
"NAURU": {'description': 'Nauru', 'meaning': 'iso3166loc:nr'},
|
|
480
|
+
"NAVASSA_ISLAND": {'description': 'Navassa Island', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
481
|
+
"NEPAL": {'description': 'Nepal', 'meaning': 'iso3166loc:np'},
|
|
482
|
+
"NETHERLANDS": {'description': 'Netherlands', 'meaning': 'iso3166loc:nl'},
|
|
483
|
+
"NEW_CALEDONIA": {'description': 'New Caledonia', 'meaning': 'iso3166loc:nc'},
|
|
484
|
+
"NEW_ZEALAND": {'description': 'New Zealand', 'meaning': 'iso3166loc:nz'},
|
|
485
|
+
"NICARAGUA": {'description': 'Nicaragua', 'meaning': 'iso3166loc:ni'},
|
|
486
|
+
"NIGER": {'description': 'Niger', 'meaning': 'iso3166loc:ne'},
|
|
487
|
+
"NIGERIA": {'description': 'Nigeria', 'meaning': 'iso3166loc:ng'},
|
|
488
|
+
"NIUE": {'description': 'Niue', 'meaning': 'iso3166loc:nu'},
|
|
489
|
+
"NORFOLK_ISLAND": {'description': 'Norfolk Island', 'meaning': 'iso3166loc:nf'},
|
|
490
|
+
"NORTH_KOREA": {'description': 'North Korea', 'meaning': 'iso3166loc:kp'},
|
|
491
|
+
"NORTH_MACEDONIA": {'description': 'North Macedonia', 'meaning': 'iso3166loc:mk'},
|
|
492
|
+
"NORTH_SEA": {'description': 'North Sea', 'meaning': 'geonames:2960848/'},
|
|
493
|
+
"NORTHERN_MARIANA_ISLANDS": {'description': 'Northern Mariana Islands', 'meaning': 'iso3166loc:mp'},
|
|
494
|
+
"NORWAY": {'description': 'Norway', 'meaning': 'iso3166loc:no'},
|
|
495
|
+
"OMAN": {'description': 'Oman', 'meaning': 'iso3166loc:om'},
|
|
496
|
+
"PACIFIC_OCEAN": {'description': 'Pacific Ocean', 'meaning': 'geonames:2363254/'},
|
|
497
|
+
"PAKISTAN": {'description': 'Pakistan', 'meaning': 'iso3166loc:pk'},
|
|
498
|
+
"PALAU": {'description': 'Palau', 'meaning': 'iso3166loc:pw'},
|
|
499
|
+
"PALMYRA_ATOLL": {'description': 'Palmyra Atoll', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
500
|
+
"PANAMA": {'description': 'Panama', 'meaning': 'iso3166loc:pa'},
|
|
501
|
+
"PAPUA_NEW_GUINEA": {'description': 'Papua New Guinea', 'meaning': 'iso3166loc:pg'},
|
|
502
|
+
"PARACEL_ISLANDS": {'description': 'Paracel Islands', 'annotations': {'note': 'Disputed territory in South China Sea'}},
|
|
503
|
+
"PARAGUAY": {'description': 'Paraguay', 'meaning': 'iso3166loc:py'},
|
|
504
|
+
"PERU": {'description': 'Peru', 'meaning': 'iso3166loc:pe'},
|
|
505
|
+
"PHILIPPINES": {'description': 'Philippines', 'meaning': 'iso3166loc:ph'},
|
|
506
|
+
"PITCAIRN_ISLANDS": {'description': 'Pitcairn Islands', 'meaning': 'iso3166loc:pn'},
|
|
507
|
+
"POLAND": {'description': 'Poland', 'meaning': 'iso3166loc:pl'},
|
|
508
|
+
"PORTUGAL": {'description': 'Portugal', 'meaning': 'iso3166loc:pt'},
|
|
509
|
+
"PUERTO_RICO": {'description': 'Puerto Rico', 'meaning': 'iso3166loc:pr'},
|
|
510
|
+
"QATAR": {'description': 'Qatar', 'meaning': 'iso3166loc:qa'},
|
|
511
|
+
"REPUBLIC_OF_THE_CONGO": {'description': 'Republic of the Congo', 'meaning': 'iso3166loc:cg'},
|
|
512
|
+
"REUNION": {'description': 'Reunion', 'meaning': 'iso3166loc:re'},
|
|
513
|
+
"ROMANIA": {'description': 'Romania', 'meaning': 'iso3166loc:ro'},
|
|
514
|
+
"ROSS_SEA": {'description': 'Ross Sea', 'meaning': 'geonames:4036621/'},
|
|
515
|
+
"RUSSIA": {'description': 'Russia', 'meaning': 'iso3166loc:ru'},
|
|
516
|
+
"RWANDA": {'description': 'Rwanda', 'meaning': 'iso3166loc:rw'},
|
|
517
|
+
"SAINT_BARTHELEMY": {'description': 'Saint Barthelemy', 'meaning': 'iso3166loc:bl'},
|
|
518
|
+
"SAINT_HELENA": {'description': 'Saint Helena', 'meaning': 'iso3166loc:sh'},
|
|
519
|
+
"SAINT_KITTS_AND_NEVIS": {'description': 'Saint Kitts and Nevis', 'meaning': 'iso3166loc:kn'},
|
|
520
|
+
"SAINT_LUCIA": {'description': 'Saint Lucia', 'meaning': 'iso3166loc:lc'},
|
|
521
|
+
"SAINT_MARTIN": {'description': 'Saint Martin', 'meaning': 'iso3166loc:mf'},
|
|
522
|
+
"SAINT_PIERRE_AND_MIQUELON": {'description': 'Saint Pierre and Miquelon', 'meaning': 'iso3166loc:pm'},
|
|
523
|
+
"SAINT_VINCENT_AND_THE_GRENADINES": {'description': 'Saint Vincent and the Grenadines', 'meaning': 'iso3166loc:vc'},
|
|
524
|
+
"SAMOA": {'description': 'Samoa', 'meaning': 'iso3166loc:ws'},
|
|
525
|
+
"SAN_MARINO": {'description': 'San Marino', 'meaning': 'iso3166loc:sm'},
|
|
526
|
+
"SAO_TOME_AND_PRINCIPE": {'description': 'Sao Tome and Principe', 'meaning': 'iso3166loc:st'},
|
|
527
|
+
"SAUDI_ARABIA": {'description': 'Saudi Arabia', 'meaning': 'iso3166loc:sa'},
|
|
528
|
+
"SENEGAL": {'description': 'Senegal', 'meaning': 'iso3166loc:sn'},
|
|
529
|
+
"SERBIA": {'description': 'Serbia', 'meaning': 'iso3166loc:rs'},
|
|
530
|
+
"SEYCHELLES": {'description': 'Seychelles', 'meaning': 'iso3166loc:sc'},
|
|
531
|
+
"SIERRA_LEONE": {'description': 'Sierra Leone', 'meaning': 'iso3166loc:sl'},
|
|
532
|
+
"SINGAPORE": {'description': 'Singapore', 'meaning': 'iso3166loc:sg'},
|
|
533
|
+
"SINT_MAARTEN": {'description': 'Sint Maarten', 'meaning': 'iso3166loc:sx'},
|
|
534
|
+
"SLOVAKIA": {'description': 'Slovakia', 'meaning': 'iso3166loc:sk'},
|
|
535
|
+
"SLOVENIA": {'description': 'Slovenia', 'meaning': 'iso3166loc:si'},
|
|
536
|
+
"SOLOMON_ISLANDS": {'description': 'Solomon Islands', 'meaning': 'iso3166loc:sb'},
|
|
537
|
+
"SOMALIA": {'description': 'Somalia', 'meaning': 'iso3166loc:so'},
|
|
538
|
+
"SOUTH_AFRICA": {'description': 'South Africa', 'meaning': 'iso3166loc:za'},
|
|
539
|
+
"SOUTH_GEORGIA_AND_THE_SOUTH_SANDWICH_ISLANDS": {'description': 'South Georgia and the South Sandwich Islands', 'meaning': 'iso3166loc:gs'},
|
|
540
|
+
"SOUTH_KOREA": {'description': 'South Korea', 'meaning': 'iso3166loc:kr'},
|
|
541
|
+
"SOUTH_SUDAN": {'description': 'South Sudan', 'meaning': 'iso3166loc:ss'},
|
|
542
|
+
"SOUTHERN_OCEAN": {'description': 'Southern Ocean', 'meaning': 'geonames:4036776/'},
|
|
543
|
+
"SPAIN": {'description': 'Spain', 'meaning': 'iso3166loc:es'},
|
|
544
|
+
"SPRATLY_ISLANDS": {'description': 'Spratly Islands', 'annotations': {'note': 'Disputed territory in South China Sea'}},
|
|
545
|
+
"SRI_LANKA": {'description': 'Sri Lanka', 'meaning': 'iso3166loc:lk'},
|
|
546
|
+
"STATE_OF_PALESTINE": {'description': 'State of Palestine', 'meaning': 'iso3166loc:ps'},
|
|
547
|
+
"SUDAN": {'description': 'Sudan', 'meaning': 'iso3166loc:sd'},
|
|
548
|
+
"SURINAME": {'description': 'Suriname', 'meaning': 'iso3166loc:sr'},
|
|
549
|
+
"SVALBARD": {'description': 'Svalbard', 'annotations': {'note': 'Norwegian territory (part of Svalbard and Jan Mayen - SJ)'}},
|
|
550
|
+
"SWEDEN": {'description': 'Sweden', 'meaning': 'iso3166loc:se'},
|
|
551
|
+
"SWITZERLAND": {'description': 'Switzerland', 'meaning': 'iso3166loc:ch'},
|
|
552
|
+
"SYRIA": {'description': 'Syria', 'meaning': 'iso3166loc:sy'},
|
|
553
|
+
"TAIWAN": {'description': 'Taiwan', 'meaning': 'iso3166loc:tw'},
|
|
554
|
+
"TAJIKISTAN": {'description': 'Tajikistan', 'meaning': 'iso3166loc:tj'},
|
|
555
|
+
"TANZANIA": {'description': 'Tanzania', 'meaning': 'iso3166loc:tz'},
|
|
556
|
+
"TASMAN_SEA": {'description': 'Tasman Sea', 'meaning': 'geonames:2363247/'},
|
|
557
|
+
"THAILAND": {'description': 'Thailand', 'meaning': 'iso3166loc:th'},
|
|
558
|
+
"TIMOR_LESTE": {'description': 'Timor-Leste', 'meaning': 'iso3166loc:tl'},
|
|
559
|
+
"TOGO": {'description': 'Togo', 'meaning': 'iso3166loc:tg'},
|
|
560
|
+
"TOKELAU": {'description': 'Tokelau', 'meaning': 'iso3166loc:tk'},
|
|
561
|
+
"TONGA": {'description': 'Tonga', 'meaning': 'iso3166loc:to'},
|
|
562
|
+
"TRINIDAD_AND_TOBAGO": {'description': 'Trinidad and Tobago', 'meaning': 'iso3166loc:tt'},
|
|
563
|
+
"TROMELIN_ISLAND": {'description': 'Tromelin Island', 'annotations': {'note': 'French Southern and Antarctic Lands territory'}},
|
|
564
|
+
"TUNISIA": {'description': 'Tunisia', 'meaning': 'iso3166loc:tn'},
|
|
565
|
+
"TURKEY": {'description': 'Turkey', 'meaning': 'iso3166loc:tr'},
|
|
566
|
+
"TURKMENISTAN": {'description': 'Turkmenistan', 'meaning': 'iso3166loc:tm'},
|
|
567
|
+
"TURKS_AND_CAICOS_ISLANDS": {'description': 'Turks and Caicos Islands', 'meaning': 'iso3166loc:tc'},
|
|
568
|
+
"TUVALU": {'description': 'Tuvalu', 'meaning': 'iso3166loc:tv'},
|
|
569
|
+
"UGANDA": {'description': 'Uganda', 'meaning': 'iso3166loc:ug'},
|
|
570
|
+
"UKRAINE": {'description': 'Ukraine', 'meaning': 'iso3166loc:ua'},
|
|
571
|
+
"UNITED_ARAB_EMIRATES": {'description': 'United Arab Emirates', 'meaning': 'iso3166loc:ae'},
|
|
572
|
+
"UNITED_KINGDOM": {'description': 'United Kingdom', 'meaning': 'iso3166loc:gb'},
|
|
573
|
+
"URUGUAY": {'description': 'Uruguay', 'meaning': 'iso3166loc:uy'},
|
|
574
|
+
"USA": {'description': 'USA', 'meaning': 'iso3166loc:us'},
|
|
575
|
+
"UZBEKISTAN": {'description': 'Uzbekistan', 'meaning': 'iso3166loc:uz'},
|
|
576
|
+
"VANUATU": {'description': 'Vanuatu', 'meaning': 'iso3166loc:vu'},
|
|
577
|
+
"VENEZUELA": {'description': 'Venezuela', 'meaning': 'iso3166loc:ve'},
|
|
578
|
+
"VIET_NAM": {'description': 'Viet Nam', 'meaning': 'iso3166loc:vn'},
|
|
579
|
+
"VIRGIN_ISLANDS": {'description': 'Virgin Islands', 'meaning': 'iso3166loc:vi'},
|
|
580
|
+
"WAKE_ISLAND": {'description': 'Wake Island', 'meaning': 'iso3166loc:um', 'annotations': {'note': 'US Minor Outlying Islands'}},
|
|
581
|
+
"WALLIS_AND_FUTUNA": {'description': 'Wallis and Futuna', 'meaning': 'iso3166loc:wf'},
|
|
582
|
+
"WEST_BANK": {'description': 'West Bank', 'annotations': {'note': 'Palestinian territory'}},
|
|
583
|
+
"WESTERN_SAHARA": {'description': 'Western Sahara', 'meaning': 'iso3166loc:eh'},
|
|
584
|
+
"YEMEN": {'description': 'Yemen', 'meaning': 'iso3166loc:ye'},
|
|
585
|
+
"ZAMBIA": {'description': 'Zambia', 'meaning': 'iso3166loc:zm'},
|
|
586
|
+
"ZIMBABWE": {'description': 'Zimbabwe', 'meaning': 'iso3166loc:zw'},
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
__all__ = [
|
|
590
|
+
"InsdcGeographicLocationEnum",
|
|
591
|
+
]
|