mods 0.0.19 → 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -0
- data/lib/mods.rb +2 -0
- data/lib/mods/marc_country_codes.rb +387 -0
- data/lib/mods/marc_geo_area_codes.rb +592 -0
- data/lib/mods/marc_relator_codes.rb +1 -1
- data/lib/mods/nom_terminology.rb +77 -49
- data/lib/mods/record.rb +3 -32
- data/lib/mods/version.rb +1 -1
- data/spec/record_spec.rb +3 -3
- data/spec/subject_spec.rb +48 -6
- metadata +6 -4
data/README.rdoc
CHANGED
@@ -38,6 +38,7 @@ TODO: Write usage instructions here
|
|
38
38
|
|
39
39
|
== Releases
|
40
40
|
|
41
|
+
* <b>0.0.20</b> added translated_value convenience method to geographicCode (mods.subject.geographicCode.translated_value)
|
41
42
|
* <b>0.0.19</b> term_values and term_value method added to Record object
|
42
43
|
* <b>0.0.18</b> <subject><temporal> cannot have subelements
|
43
44
|
* <b>0.0.17</b> add display_value and display_value_w_date to name node; add personal_names_w_dates to record
|
data/lib/mods.rb
CHANGED
@@ -0,0 +1,387 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Represents the Marc Country Codes mapped to names, from http://www.loc.gov/marc/countries/countries_code.html 2013-01-03
|
4
|
+
#key - Marc Country code
|
5
|
+
#value - Marc Country term
|
6
|
+
MARC_COUNTRY = {
|
7
|
+
'aa' => "Albania",
|
8
|
+
'abc' => "Alberta",
|
9
|
+
'ac' => "Ashmore and Cartier Islands", # discontinued
|
10
|
+
'aca' => "Australian Capital Territory",
|
11
|
+
'ae' => "Algeria",
|
12
|
+
'af' => "Afghanistan",
|
13
|
+
'ag' => "Argentina",
|
14
|
+
'ai' => "Anguilla", # discontinued
|
15
|
+
'ai' => "Armenia (Republic)",
|
16
|
+
'air' => "Armenian S.S.R.", # discontinued
|
17
|
+
'aj' => "Azerbaijan",
|
18
|
+
'ajr' => "Azerbaijan S.S.R.", # discontinued
|
19
|
+
'aku' => "Alaska",
|
20
|
+
'alu' => "Alabama",
|
21
|
+
'am' => "Anguilla",
|
22
|
+
'an' => "Andorra",
|
23
|
+
'ao' => "Angola",
|
24
|
+
'aq' => "Antigua and Barbuda",
|
25
|
+
'aru' => "Arkansas",
|
26
|
+
'as' => "American Samoa",
|
27
|
+
'at' => "Australia",
|
28
|
+
'au' => "Austria",
|
29
|
+
'aw' => "Aruba",
|
30
|
+
'ay' => "Antarctica",
|
31
|
+
'azu' => "Arizona",
|
32
|
+
'ba' => "Bahrain",
|
33
|
+
'bb' => "Barbados",
|
34
|
+
'bcc' => "British Columbia",
|
35
|
+
'bd' => "Burundi",
|
36
|
+
'be' => "Belgium",
|
37
|
+
'bf' => "Bahamas",
|
38
|
+
'bg' => "Bangladesh",
|
39
|
+
'bh' => "Belize",
|
40
|
+
'bi' => "British Indian Ocean Territory",
|
41
|
+
'bl' => "Brazil",
|
42
|
+
'bm' => "Bermuda Islands",
|
43
|
+
'bn' => "Bosnia and Hercegovina",
|
44
|
+
'bo' => "Bolivia",
|
45
|
+
'bp' => "Solomon Islands",
|
46
|
+
'br' => "Burma",
|
47
|
+
'bs' => "Botswana",
|
48
|
+
'bt' => "Bhutan",
|
49
|
+
'bu' => "Bulgaria",
|
50
|
+
'bv' => "Bouvet Island",
|
51
|
+
'bw' => "Belarus",
|
52
|
+
'bwr' => "Byelorussian S.S.R.", # discontinued
|
53
|
+
'bx' => "Brunei",
|
54
|
+
'ca' => "Caribbean Netherlands",
|
55
|
+
'cau' => "California",
|
56
|
+
'cb' => "Cambodia",
|
57
|
+
'cc' => "China",
|
58
|
+
'cd' => "Chad",
|
59
|
+
'ce' => "Sri Lanka",
|
60
|
+
'cf' => "Congo (Brazzaville)",
|
61
|
+
'cg' => "Congo (Democratic Republic)",
|
62
|
+
'ch' => "China (Republic : 1949- )",
|
63
|
+
'ci' => "Croatia",
|
64
|
+
'cj' => "Cayman Islands",
|
65
|
+
'ck' => "Colombia",
|
66
|
+
'cl' => "Chile",
|
67
|
+
'cm' => "Cameroon",
|
68
|
+
'cn' => "Canada", # discontinued
|
69
|
+
'co' => "Curaçao",
|
70
|
+
'cou' => "Colorado",
|
71
|
+
'cp' => "Canton and Enderbury Islands", # discontinued
|
72
|
+
'cq' => "Comoros",
|
73
|
+
'cr' => "Costa Rica",
|
74
|
+
'cs' => "Czechoslovakia", # discontinued
|
75
|
+
'ctu' => "Connecticut",
|
76
|
+
'cu' => "Cuba",
|
77
|
+
'cv' => "Cape Verde",
|
78
|
+
'cw' => "Cook Islands",
|
79
|
+
'cx' => "Central African Republic",
|
80
|
+
'cy' => "Cyprus",
|
81
|
+
'cz' => "Canal Zone", # discontinued
|
82
|
+
'dcu' => "District of Columbia",
|
83
|
+
'deu' => "Delaware",
|
84
|
+
'dk' => "Denmark",
|
85
|
+
'dm' => "Benin",
|
86
|
+
'dq' => "Dominica",
|
87
|
+
'dr' => "Dominican Republic",
|
88
|
+
'ea' => "Eritrea",
|
89
|
+
'ec' => "Ecuador",
|
90
|
+
'eg' => "Equatorial Guinea",
|
91
|
+
'em' => "Timor-Leste",
|
92
|
+
'enk' => "England",
|
93
|
+
'er' => "Estonia",
|
94
|
+
'err' => "Estonia", # discontinued
|
95
|
+
'es' => "El Salvador",
|
96
|
+
'et' => "Ethiopia",
|
97
|
+
'fa' => "Faroe Islands",
|
98
|
+
'fg' => "French Guiana",
|
99
|
+
'fi' => "Finland",
|
100
|
+
'fj' => "Fiji",
|
101
|
+
'fk' => "Falkland Islands",
|
102
|
+
'flu' => "Florida",
|
103
|
+
'fm' => "Micronesia (Federated States)",
|
104
|
+
'fp' => "French Polynesia",
|
105
|
+
'fr' => "France",
|
106
|
+
'fs' => "Terres australes et antarctiques françaises",
|
107
|
+
'ft' => "Djibouti",
|
108
|
+
'gau' => "Georgia",
|
109
|
+
'gb' => "Kiribati",
|
110
|
+
'gd' => "Grenada",
|
111
|
+
'ge' => "Germany (East)", # discontinued
|
112
|
+
'gh' => "Ghana",
|
113
|
+
'gi' => "Gibraltar",
|
114
|
+
'gl' => "Greenland",
|
115
|
+
'gm' => "Gambia",
|
116
|
+
'gn' => "Gilbert and Ellice Islands", # discontinued
|
117
|
+
'go' => "Gabon",
|
118
|
+
'gp' => "Guadeloupe",
|
119
|
+
'gr' => "Greece",
|
120
|
+
'gs' => "Georgia (Republic)",
|
121
|
+
'gsr' => "Georgian S.S.R.", # discontinued
|
122
|
+
'gt' => "Guatemala",
|
123
|
+
'gu' => "Guam",
|
124
|
+
'gv' => "Guinea",
|
125
|
+
'gw' => "Germany",
|
126
|
+
'gy' => "Guyana",
|
127
|
+
'gz' => "Gaza Strip",
|
128
|
+
'hiu' => "Hawaii",
|
129
|
+
'hk' => "Hong Kong", # discontinued
|
130
|
+
'hm' => "Heard and McDonald Islands",
|
131
|
+
'ho' => "Honduras",
|
132
|
+
'ht' => "Haiti",
|
133
|
+
'hu' => "Hungary",
|
134
|
+
'iau' => "Iowa",
|
135
|
+
'ic' => "Iceland",
|
136
|
+
'idu' => "Idaho",
|
137
|
+
'ie' => "Ireland",
|
138
|
+
'ii' => "India",
|
139
|
+
'ilu' => "Illinois",
|
140
|
+
'inu' => "Indiana",
|
141
|
+
'io' => "Indonesia",
|
142
|
+
'iq' => "Iraq",
|
143
|
+
'ir' => "Iran",
|
144
|
+
'is' => "Israel",
|
145
|
+
'it' => "Italy",
|
146
|
+
'iu' => "Israel-Syria Demilitarized Zones", # discontinued
|
147
|
+
'iv' => "Côte d'Ivoire",
|
148
|
+
'iw' => "Israel-Jordan Demilitarized Zones", # discontinued
|
149
|
+
'iy' => "Iraq-Saudi Arabia Neutral Zone",
|
150
|
+
'ja' => "Japan",
|
151
|
+
'ji' => "Johnston Atoll",
|
152
|
+
'jm' => "Jamaica",
|
153
|
+
'jn' => "Jan Mayen", # discontinued
|
154
|
+
'jo' => "Jordan",
|
155
|
+
'ke' => "Kenya",
|
156
|
+
'kg' => "Kyrgyzstan",
|
157
|
+
'kgr' => "Kirghiz S.S.R.", # discontinued
|
158
|
+
'kn' => "Korea (North)",
|
159
|
+
'ko' => "Korea (South)",
|
160
|
+
'ksu' => "Kansas",
|
161
|
+
'ku' => "Kuwait",
|
162
|
+
'kv' => "Kosovo",
|
163
|
+
'kyu' => "Kentucky",
|
164
|
+
'kz' => "Kazakhstan",
|
165
|
+
'kzr' => "Kazakh S.S.R.", # discontinued
|
166
|
+
'lau' => "Louisiana",
|
167
|
+
'lb' => "Liberia",
|
168
|
+
'le' => "Lebanon",
|
169
|
+
'lh' => "Liechtenstein",
|
170
|
+
'li' => "Lithuania",
|
171
|
+
'lir' => "Lithuania", # discontinued
|
172
|
+
'ln' => "Central and Southern Line Islands", # discontinued
|
173
|
+
'lo' => "Lesotho",
|
174
|
+
'ls' => "Laos",
|
175
|
+
'lu' => "Luxembourg",
|
176
|
+
'lv' => "Latvia",
|
177
|
+
'lvr' => "Latvia", # discontinued
|
178
|
+
'ly' => "Libya",
|
179
|
+
'mau' => "Massachusetts",
|
180
|
+
'mbc' => "Manitoba",
|
181
|
+
'mc' => "Monaco",
|
182
|
+
'mdu' => "Maryland",
|
183
|
+
'meu' => "Maine",
|
184
|
+
'mf' => "Mauritius",
|
185
|
+
'mg' => "Madagascar",
|
186
|
+
'mh' => "Macao", # discontinued
|
187
|
+
'miu' => "Michigan",
|
188
|
+
'mj' => "Montserrat",
|
189
|
+
'mk' => "Oman",
|
190
|
+
'ml' => "Mali",
|
191
|
+
'mm' => "Malta",
|
192
|
+
'mnu' => "Minnesota",
|
193
|
+
'mo' => "Montenegro",
|
194
|
+
'mou' => "Missouri",
|
195
|
+
'mp' => "Mongolia",
|
196
|
+
'mq' => "Martinique",
|
197
|
+
'mr' => "Morocco",
|
198
|
+
'msu' => "Mississippi",
|
199
|
+
'mtu' => "Montana",
|
200
|
+
'mu' => "Mauritania",
|
201
|
+
'mv' => "Moldova",
|
202
|
+
'mvr' => "Moldavian S.S.R.", # discontinued
|
203
|
+
'mw' => "Malawi",
|
204
|
+
'mx' => "Mexico",
|
205
|
+
'my' => "Malaysia",
|
206
|
+
'mz' => "Mozambique",
|
207
|
+
'na' => "Netherlands Antilles", # discontinued
|
208
|
+
'nbu' => "Nebraska",
|
209
|
+
'ncu' => "North Carolina",
|
210
|
+
'ndu' => "North Dakota",
|
211
|
+
'ne' => "Netherlands",
|
212
|
+
'nfc' => "Newfoundland and Labrador",
|
213
|
+
'ng' => "Niger",
|
214
|
+
'nhu' => "New Hampshire",
|
215
|
+
'nik' => "Northern Ireland",
|
216
|
+
'nju' => "New Jersey",
|
217
|
+
'nkc' => "New Brunswick",
|
218
|
+
'nl' => "New Caledonia",
|
219
|
+
'nm' => "Northern Mariana Islands", # discontinued
|
220
|
+
'nmu' => "New Mexico",
|
221
|
+
'nn' => "Vanuatu",
|
222
|
+
'no' => "Norway",
|
223
|
+
'np' => "Nepal",
|
224
|
+
'nq' => "Nicaragua",
|
225
|
+
'nr' => "Nigeria",
|
226
|
+
'nsc' => "Nova Scotia",
|
227
|
+
'ntc' => "Northwest Territories",
|
228
|
+
'nu' => "Nauru",
|
229
|
+
'nuc' => "Nunavut",
|
230
|
+
'nvu' => "Nevada",
|
231
|
+
'nw' => "Northern Mariana Islands",
|
232
|
+
'nx' => "Norfolk Island",
|
233
|
+
'nyu' => "New York (State)",
|
234
|
+
'nz' => "New Zealand",
|
235
|
+
'ohu' => "Ohio",
|
236
|
+
'oku' => "Oklahoma",
|
237
|
+
'onc' => "Ontario",
|
238
|
+
'oru' => "Oregon",
|
239
|
+
'ot' => "Mayotte",
|
240
|
+
'pau' => "Pennsylvania",
|
241
|
+
'pc' => "Pitcairn Island",
|
242
|
+
'pe' => "Peru",
|
243
|
+
'pf' => "Paracel Islands",
|
244
|
+
'pg' => "Guinea-Bissau",
|
245
|
+
'ph' => "Philippines",
|
246
|
+
'pic' => "Prince Edward Island",
|
247
|
+
'pk' => "Pakistan",
|
248
|
+
'pl' => "Poland",
|
249
|
+
'pn' => "Panama",
|
250
|
+
'po' => "Portugal",
|
251
|
+
'pp' => "Papua New Guinea",
|
252
|
+
'pr' => "Puerto Rico",
|
253
|
+
'pt' => "Portuguese Timor", # discontinued
|
254
|
+
'pw' => "Palau",
|
255
|
+
'py' => "Paraguay",
|
256
|
+
'qa' => "Qatar",
|
257
|
+
'qea' => "Queensland",
|
258
|
+
'quc' => "Québec (Province)",
|
259
|
+
'rb' => "Serbia",
|
260
|
+
're' => "Réunion",
|
261
|
+
'rh' => "Zimbabwe",
|
262
|
+
'riu' => "Rhode Island",
|
263
|
+
'rm' => "Romania",
|
264
|
+
'ru' => "Russia (Federation)",
|
265
|
+
'rur' => "Russian S.F.S.R.", # discontinued
|
266
|
+
'rw' => "Rwanda",
|
267
|
+
'ry' => "Ryukyu Islands, Southern", # discontinued
|
268
|
+
'sa' => "South Africa",
|
269
|
+
'sb' => "Svalbard", # discontinued
|
270
|
+
'sc' => "Saint-Barthélemy",
|
271
|
+
'scu' => "South Carolina",
|
272
|
+
'sd' => "South Sudan",
|
273
|
+
'sdu' => "South Dakota",
|
274
|
+
'se' => "Seychelles",
|
275
|
+
'sf' => "Sao Tome and Principe",
|
276
|
+
'sg' => "Senegal",
|
277
|
+
'sh' => "Spanish North Africa",
|
278
|
+
'si' => "Singapore",
|
279
|
+
'sj' => "Sudan",
|
280
|
+
'sk' => "Sikkim", # discontinued
|
281
|
+
'sl' => "Sierra Leone",
|
282
|
+
'sm' => "San Marino",
|
283
|
+
'sn' => "Sint Maarten",
|
284
|
+
'snc' => "Saskatchewan",
|
285
|
+
'so' => "Somalia",
|
286
|
+
'sp' => "Spain",
|
287
|
+
'sq' => "Swaziland",
|
288
|
+
'sr' => "Surinam",
|
289
|
+
'ss' => "Western Sahara",
|
290
|
+
'st' => "Saint-Martin",
|
291
|
+
'stk' => "Scotland",
|
292
|
+
'su' => "Saudi Arabia",
|
293
|
+
'sv' => "Swan Islands", # discontinued
|
294
|
+
'sw' => "Sweden",
|
295
|
+
'sx' => "Namibia",
|
296
|
+
'sy' => "Syria",
|
297
|
+
'sz' => "Switzerland",
|
298
|
+
'ta' => "Tajikistan",
|
299
|
+
'tar' => "Tajik S.S.R.", # discontinued
|
300
|
+
'tc' => "Turks and Caicos Islands",
|
301
|
+
'tg' => "Togo",
|
302
|
+
'th' => "Thailand",
|
303
|
+
'ti' => "Tunisia",
|
304
|
+
'tk' => "Turkmenistan",
|
305
|
+
'tkr' => "Turkmen S.S.R.", # discontinued
|
306
|
+
'tl' => "Tokelau",
|
307
|
+
'tma' => "Tasmania",
|
308
|
+
'tnu' => "Tennessee",
|
309
|
+
'to' => "Tonga",
|
310
|
+
'tr' => "Trinidad and Tobago",
|
311
|
+
'ts' => "United Arab Emirates",
|
312
|
+
'tt' => "Trust Territory of the Pacific Islands", # discontinued
|
313
|
+
'tu' => "Turkey",
|
314
|
+
'tv' => "Tuvalu",
|
315
|
+
'txu' => "Texas",
|
316
|
+
'tz' => "Tanzania",
|
317
|
+
'ua' => "Egypt",
|
318
|
+
'uc' => "United States Misc. Caribbean Islands",
|
319
|
+
'ug' => "Uganda",
|
320
|
+
'ui' => "United Kingdom Misc. Islands", # discontinued
|
321
|
+
'uik' => "United Kingdom Misc. Islands",
|
322
|
+
'uk' => "United Kingdom", # discontinued
|
323
|
+
'un' => "Ukraine",
|
324
|
+
'unr' => "Ukraine", # discontinued
|
325
|
+
'up' => "United States Misc. Pacific Islands",
|
326
|
+
'ur' => "Soviet Union", # discontinued
|
327
|
+
'us' => "United States", # discontinued
|
328
|
+
'utu' => "Utah",
|
329
|
+
'uv' => "Burkina Faso",
|
330
|
+
'uy' => "Uruguay",
|
331
|
+
'uz' => "Uzbekistan",
|
332
|
+
'uzr' => "Uzbek S.S.R.", # discontinued
|
333
|
+
'vau' => "Virginia",
|
334
|
+
'vb' => "British Virgin Islands",
|
335
|
+
'vc' => "Vatican City",
|
336
|
+
've' => "Venezuela",
|
337
|
+
'vi' => "Virgin Islands of the United States",
|
338
|
+
'vm' => "Vietnam",
|
339
|
+
'vn' => "Vietnam, North", # discontinued
|
340
|
+
'vp' => "Various places",
|
341
|
+
'vra' => "Victoria",
|
342
|
+
'vs' => "Vietnam, South", # discontinued
|
343
|
+
'vtu' => "Vermont",
|
344
|
+
'wau' => "Washington (State)",
|
345
|
+
'wb' => "West Berlin", # discontinued
|
346
|
+
'wea' => "Western Australia",
|
347
|
+
'wf' => "Wallis and Futuna",
|
348
|
+
'wiu' => "Wisconsin",
|
349
|
+
'wj' => "West Bank of the Jordan River",
|
350
|
+
'wk' => "Wake Island",
|
351
|
+
'wlk' => "Wales",
|
352
|
+
'ws' => "Samoa",
|
353
|
+
'wvu' => "West Virginia",
|
354
|
+
'wyu' => "Wyoming",
|
355
|
+
'xa' => "Christmas Island (Indian Ocean)",
|
356
|
+
'xb' => "Cocos (Keeling) Islands",
|
357
|
+
'xc' => "Maldives",
|
358
|
+
'xd' => "Saint Kitts-Nevis",
|
359
|
+
'xe' => "Marshall Islands",
|
360
|
+
'xf' => "Midway Islands",
|
361
|
+
'xga' => "Coral Sea Islands Territory",
|
362
|
+
'xh' => "Niue",
|
363
|
+
'xi' => "Saint Kitts-Nevis-Anguilla", # discontinued
|
364
|
+
'xj' => "Saint Helena",
|
365
|
+
'xk' => "Saint Lucia",
|
366
|
+
'xl' => "Saint Pierre and Miquelon",
|
367
|
+
'xm' => "Saint Vincent and the Grenadines",
|
368
|
+
'xn' => "Macedonia",
|
369
|
+
'xna' => "New South Wales",
|
370
|
+
'xo' => "Slovakia",
|
371
|
+
'xoa' => "Northern Territory",
|
372
|
+
'xp' => "Spratly Island",
|
373
|
+
'xr' => "Czech Republic",
|
374
|
+
'xra' => "South Australia",
|
375
|
+
'xs' => "South Georgia and the South Sandwich Islands",
|
376
|
+
'xv' => "Slovenia",
|
377
|
+
'xx' => "No place, unknown, or undetermined",
|
378
|
+
'xxc' => "Canada",
|
379
|
+
'xxk' => "United Kingdom",
|
380
|
+
'xxr' => "Soviet Union", # discontinued
|
381
|
+
'xxu' => "United States",
|
382
|
+
'ye' => "Yemen",
|
383
|
+
'ykc' => "Yukon Territory",
|
384
|
+
'ys' => "Yemen (People's Democratic Republic)", # discontinued
|
385
|
+
'yu' => "Serbia and Montenegro", # discontinued
|
386
|
+
'za' => "Zambia"
|
387
|
+
}
|
@@ -0,0 +1,592 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Represents the Marc Geographic Area Codes mapped to names, from http://www.loc.gov/marc/geoareas/gacs_code.html 2013-01-03
|
4
|
+
#key - Marc Geographic Area code
|
5
|
+
#value - Marc Geographic Area term
|
6
|
+
MARC_GEOGRAPHIC_AREA = {
|
7
|
+
'a' => 'Asia',
|
8
|
+
'a-af' => 'Afghanistan',
|
9
|
+
'a-ai' => 'Armenia (Republic)',
|
10
|
+
'a-aj' => 'Azerbaijan',
|
11
|
+
'a-ba' => 'Bahrain',
|
12
|
+
'a-bg' => 'Bangladesh',
|
13
|
+
'a-bn' => 'Borneo',
|
14
|
+
'a-br' => 'Burma',
|
15
|
+
'a-bt' => 'Bhutan',
|
16
|
+
'a-bx' => 'Brunei',
|
17
|
+
'a-cb' => 'Cambodia',
|
18
|
+
'a-cc' => 'China',
|
19
|
+
'a-cc-an' => 'Anhui Sheng (China)',
|
20
|
+
'a-cc-ch' => 'Zhejiang Sheng (China)',
|
21
|
+
'a-cc-cq' => 'Chongqing (China)',
|
22
|
+
'a-cc-fu' => 'Fujian Sheng (China)',
|
23
|
+
'a-cc-ha' => 'Hainan Sheng (China)',
|
24
|
+
'a-cc-he' => 'Heilongjiang Sheng (China)',
|
25
|
+
'a-cc-hh' => 'Hubei Sheng (China)',
|
26
|
+
'a-cc-hk' => 'Hong Kong (China)',
|
27
|
+
'a-cc-ho' => 'Henan Sheng (China)',
|
28
|
+
'a-cc-hp' => 'Hebei Sheng (China)',
|
29
|
+
'a-cc-hu' => 'Hunan Sheng (China)',
|
30
|
+
'a-cc-im' => 'Inner Mongolia (China)',
|
31
|
+
'a-cc-ka' => 'Gansu Sheng (China)',
|
32
|
+
'a-cc-kc' => 'Guangxi Zhuangzu Zizhiqu (China)',
|
33
|
+
'a-cc-ki' => 'Jiangxi Sheng (China)',
|
34
|
+
'a-cc-kn' => 'Guangdong Sheng (China)',
|
35
|
+
'a-cc-kr' => 'Jilin Sheng (China)',
|
36
|
+
'a-cc-ku' => 'Jiangsu Sheng (China)',
|
37
|
+
'a-cc-kw' => 'Guizhou Sheng (China)',
|
38
|
+
'a-cc-lp' => 'Liaoning Sheng (China)',
|
39
|
+
'a-cc-mh' => 'Macau (China : Special Administrative Region)',
|
40
|
+
'a-cc-nn' => 'Ningxia Huizu Zizhiqu (China)',
|
41
|
+
'a-cc-pe' => 'Beijing (China)',
|
42
|
+
'a-cc-sh' => 'Shanxi Sheng (China)',
|
43
|
+
'a-cc-sm' => 'Shanghai (China)',
|
44
|
+
'a-cc-sp' => 'Shandong Sheng (China)',
|
45
|
+
'a-cc-ss' => 'Shaanxi Sheng (China)',
|
46
|
+
'a-cc-su' => 'Xinjiang Uygur Zizhiqu (China)',
|
47
|
+
'a-cc-sz' => 'Sichuan Sheng (China)',
|
48
|
+
'a-cc-ti' => 'Tibet (China)',
|
49
|
+
'a-cc-tn' => 'Tianjin (China)',
|
50
|
+
'a-cc-ts' => 'Qinghai Sheng (China)',
|
51
|
+
'a-cc-yu' => 'Yunnan Sheng (China)',
|
52
|
+
'a-ccg' => 'Yangtze River (China)',
|
53
|
+
'a-cck' => 'Kunlun Mountains (China and India)',
|
54
|
+
'a-ccp' => 'Bo Hai (China)',
|
55
|
+
'a-ccs' => 'Xi River (China)',
|
56
|
+
'a-ccy' => 'Yellow River (China)',
|
57
|
+
'a-ce' => 'Sri Lanka',
|
58
|
+
'a-ch' => 'Taiwan',
|
59
|
+
'a-cy' => 'Cyprus',
|
60
|
+
'a-em' => 'Timor-Leste',
|
61
|
+
'a-gs' => 'Georgia (Republic)',
|
62
|
+
'a-hk' => 'Hong Kong', # discontinued
|
63
|
+
'a-ii' => 'India',
|
64
|
+
'a-io' => 'Indonesia',
|
65
|
+
'a-iq' => 'Iraq',
|
66
|
+
'a-ir' => 'Iran',
|
67
|
+
'a-is' => 'Israel',
|
68
|
+
'a-ja' => 'Japan',
|
69
|
+
'a-jo' => 'Jordan',
|
70
|
+
'a-kg' => 'Kyrgyzstan',
|
71
|
+
'a-kn' => 'Korea (North)',
|
72
|
+
'a-ko' => 'Korea (South)',
|
73
|
+
'a-kr' => 'Korea',
|
74
|
+
'a-ku' => 'Kuwait',
|
75
|
+
'a-kz' => 'Kazakhstan',
|
76
|
+
'a-le' => 'Lebanon',
|
77
|
+
'a-ls' => 'Laos',
|
78
|
+
'a-mh' => 'Macao', # discontinued
|
79
|
+
'a-mk' => 'Oman',
|
80
|
+
'a-mp' => 'Mongolia',
|
81
|
+
'a-my' => 'Malaysia',
|
82
|
+
'a-np' => 'Nepal',
|
83
|
+
'a-nw' => 'New Guinea',
|
84
|
+
'a-ok' => 'Okinawa', # discontinued
|
85
|
+
'a-ph' => 'Philippines',
|
86
|
+
'a-pk' => 'Pakistan',
|
87
|
+
'a-pp' => 'Papua New Guinea',
|
88
|
+
'a-pt' => 'Portuguese Timor', # discontinued
|
89
|
+
'a-qa' => 'Qatar',
|
90
|
+
'a-si' => 'Singapore',
|
91
|
+
'a-sk' => 'Sikkim', # discontinued
|
92
|
+
'a-su' => 'Saudi Arabia',
|
93
|
+
'a-sy' => 'Syria',
|
94
|
+
'a-ta' => 'Tajikistan',
|
95
|
+
'a-th' => 'Thailand',
|
96
|
+
'a-tk' => 'Turkmenistan',
|
97
|
+
'a-ts' => 'United Arab Emirates',
|
98
|
+
'a-tu' => 'Turkey',
|
99
|
+
'a-uz' => 'Uzbekistan',
|
100
|
+
'a-vn' => 'Viet Nam, North', # discontinued
|
101
|
+
'a-vs' => 'Viet Nam, South', # discontinued
|
102
|
+
'a-vt' => 'Vietnam',
|
103
|
+
'a-ye' => 'Yemen (Republic)',
|
104
|
+
'a-ys' => "Yemen (People's Democratic Republic)", # discontinued
|
105
|
+
'aa' => 'Amur River (China and Russia)',
|
106
|
+
'ab' => 'Bengal, Bay of',
|
107
|
+
'ac' => 'Asia, Central',
|
108
|
+
'ae' => 'East Asia',
|
109
|
+
'af' => 'Thailand, Gulf of',
|
110
|
+
'ag' => 'Mekong River',
|
111
|
+
'ah' => 'Himalaya Mountains',
|
112
|
+
'ai' => 'Indochina',
|
113
|
+
'ak' => 'Caspian Sea',
|
114
|
+
'am' => 'Malaya',
|
115
|
+
'an' => 'East China Sea',
|
116
|
+
'ao' => 'South China Sea',
|
117
|
+
'aopf' => 'Paracel Islands',
|
118
|
+
'aoxp' => 'Spratly Islands',
|
119
|
+
'ap' => 'Persian Gulf',
|
120
|
+
'ar' => 'Arabian Peninsula',
|
121
|
+
'as' => 'Southeast Asia',
|
122
|
+
'at' => 'Tien Shan',
|
123
|
+
'au' => 'Arabian Sea',
|
124
|
+
'aw' => 'Middle East',
|
125
|
+
'awba' => 'West Bank',
|
126
|
+
'awgz' => 'Gaza Strip',
|
127
|
+
'awiu' => 'Israel-Syria Demilitarized Zones', # discontinued
|
128
|
+
'awiw' => 'Israel-Jordan Demilitarized Zones', # discontinued
|
129
|
+
'awiy' => 'Iraq-Saudi Arabia Neutral Zone', # discontinued
|
130
|
+
'ay' => 'Yellow Sea',
|
131
|
+
'az' => 'South Asia',
|
132
|
+
'b' => 'Commonwealth countries',
|
133
|
+
'c' => 'Intercontinental areas (Western Hemisphere)',
|
134
|
+
'cc' => 'Caribbean Area; Caribbean Sea',
|
135
|
+
'cl' => 'Latin America',
|
136
|
+
'cm' => 'Middle America', # discontinued
|
137
|
+
'cr' => 'Circumcaribbean', # discontinued
|
138
|
+
'd' => 'Developing countries',
|
139
|
+
'dd' => 'Developed countries',
|
140
|
+
'e' => 'Europe',
|
141
|
+
'e-aa' => 'Albania',
|
142
|
+
'e-an' => 'Andorra',
|
143
|
+
'e-au' => 'Austria',
|
144
|
+
'e-be' => 'Belgium',
|
145
|
+
'e-bn' => 'Bosnia and Hercegovina',
|
146
|
+
'e-bu' => 'Bulgaria',
|
147
|
+
'e-bw' => 'Belarus',
|
148
|
+
'e-ci' => 'Croatia',
|
149
|
+
'e-cs' => 'Czechoslovakia',
|
150
|
+
'e-dk' => 'Denmark',
|
151
|
+
'e-er' => 'Estonia',
|
152
|
+
'e-fi' => 'Finland',
|
153
|
+
'e-fr' => 'France',
|
154
|
+
'e-ge' => 'Germany (East)',
|
155
|
+
'e-gi' => 'Gibraltar',
|
156
|
+
'e-gr' => 'Greece',
|
157
|
+
'e-gw' => 'Germany (West)',
|
158
|
+
'e-gx' => 'Germany',
|
159
|
+
'e-hu' => 'Hungary',
|
160
|
+
'e-ic' => 'Iceland',
|
161
|
+
'e-ie' => 'Ireland',
|
162
|
+
'e-it' => 'Italy',
|
163
|
+
'e-kv' => 'Kosovo',
|
164
|
+
'e-lh' => 'Liechtenstein',
|
165
|
+
'e-li' => 'Lithuania',
|
166
|
+
'e-lu' => 'Luxembourg',
|
167
|
+
'e-lv' => 'Latvia',
|
168
|
+
'e-mc' => 'Monaco',
|
169
|
+
'e-mm' => 'Malta',
|
170
|
+
'e-mo' => 'Montenegro',
|
171
|
+
'e-mv' => 'Moldova',
|
172
|
+
'e-ne' => 'Netherlands',
|
173
|
+
'e-no' => 'Norway',
|
174
|
+
'e-pl' => 'Poland',
|
175
|
+
'e-po' => 'Portugal',
|
176
|
+
'e-rb' => 'Serbia',
|
177
|
+
'e-rm' => 'Romania',
|
178
|
+
'e-ru' => 'Russia (Federation)',
|
179
|
+
'e-sm' => 'San Marino',
|
180
|
+
'e-sp' => 'Spain',
|
181
|
+
'e-sw' => 'Sweden',
|
182
|
+
'e-sz' => 'Switzerland',
|
183
|
+
'e-uk' => 'Great Britain',
|
184
|
+
'e-uk-en' => 'England',
|
185
|
+
'e-uk-ni' => 'Northern Ireland',
|
186
|
+
'e-uk-st' => 'Scotland',
|
187
|
+
'e-uk-ui' => 'Great Britain Miscellaneous Island Dependencies',
|
188
|
+
'e-uk-wl' => 'Wales',
|
189
|
+
'e-un' => 'Ukraine',
|
190
|
+
'e-ur' => 'Russia. Russian Empire. Soviet Union. Former Soviet Republics',
|
191
|
+
'e-ur-ai' => 'Armenia (Republic)', # discontinued
|
192
|
+
'e-ur-aj' => 'Azerbaijan', # discontinued
|
193
|
+
'e-ur-bw' => 'Belarus', # discontinued
|
194
|
+
'e-ur-er' => 'Estonia', # discontinued
|
195
|
+
'e-ur-gs' => 'Georgia (Republic)', # discontinued
|
196
|
+
'e-ur-kg' => 'Kyrgyzstan', # discontinued
|
197
|
+
'e-ur-kz' => 'Kazakhstan', # discontinued
|
198
|
+
'e-ur-li' => 'Lithuania', # discontinued
|
199
|
+
'e-ur-lv' => 'Latvia', # discontinued
|
200
|
+
'e-ur-mv' => 'Moldova', # discontinued
|
201
|
+
'e-ur-ru' => 'Russia (Federation)', # discontinued
|
202
|
+
'e-ur-ta' => 'Tajikistan', # discontinued
|
203
|
+
'e-ur-tk' => 'Turkmenistan', # discontinued
|
204
|
+
'e-ur-un' => 'Ukraine', # discontinued
|
205
|
+
'e-ur-uz' => 'Uzbekistan', # discontinued
|
206
|
+
'e-urc' => 'Central Chernozem Region (Russia)',
|
207
|
+
'e-ure' => 'Siberia, Eastern (Russia)',
|
208
|
+
'e-urf' => 'Russian Far East (Russia)',
|
209
|
+
'e-urk' => 'Caucasus',
|
210
|
+
'e-ur' => 'Central Region, RSFSR', # discontinued
|
211
|
+
'e-urn' => 'Soviet Union, Northwestern',
|
212
|
+
'e-ur' => 'Soviet Central Asia', # discontinued
|
213
|
+
'e-urp' => 'Volga River (Russia)',
|
214
|
+
'e-urr' => 'Caucasus, Northern (Russia)',
|
215
|
+
'e-urs' => 'Siberia (Russia)',
|
216
|
+
'e-uru' => 'Ural Mountains (Russia)',
|
217
|
+
'e-ur' => 'Volgo-Viatskii Region, RSFSR', # discontinued
|
218
|
+
'e-urw' => 'Siberia, Western (Russia)',
|
219
|
+
'e-vc' => ' Vatican City',
|
220
|
+
'e-xn' => ' Macedonia (Republic)',
|
221
|
+
'e-xo' => ' Slovakia',
|
222
|
+
'e-xr' => ' Czech Republic',
|
223
|
+
'e-xv' => ' Slovenia',
|
224
|
+
'e-yu' => ' Serbia and Montenegro; Yugoslavia',
|
225
|
+
'ea' => 'Alps',
|
226
|
+
'eb' => 'Baltic States',
|
227
|
+
'ec' => 'Europe, Central',
|
228
|
+
'ed' => 'Balkan Peninsula',
|
229
|
+
'ee' => 'Europe, Eastern',
|
230
|
+
'ei' => 'Iberian Peninsula', # discontinued
|
231
|
+
'el' => 'Benelux countries',
|
232
|
+
'en' => 'Europe, Northern',
|
233
|
+
'eo' => 'Danube River',
|
234
|
+
'ep' => 'Pyrenees',
|
235
|
+
'er' => 'Rhine River',
|
236
|
+
'es' => 'Europe, Southern',
|
237
|
+
'et' => 'Europe, East Central', # discontinued
|
238
|
+
'ev' => 'Scandinavia',
|
239
|
+
'ew' => 'Europe, Western',
|
240
|
+
'f' => 'Africa',
|
241
|
+
'f-ae' => 'Algeria',
|
242
|
+
'f-ao' => 'Angola',
|
243
|
+
'f-bd' => 'Burundi',
|
244
|
+
'f-bs' => 'Botswana',
|
245
|
+
'f-by' => 'Biafra', # discontinued
|
246
|
+
'f-cd' => 'Chad',
|
247
|
+
'f-cf' => 'Congo (Brazzaville)',
|
248
|
+
'f-cg' => 'Congo (Democratic Republic)',
|
249
|
+
'f-cm' => 'Cameroon',
|
250
|
+
'f-cx' => 'Central African Republic',
|
251
|
+
'f-dm' => 'Benin',
|
252
|
+
'f-ea' => 'Eritrea',
|
253
|
+
'f-eg' => 'Equatorial Guinea',
|
254
|
+
'f-et' => 'Ethiopia',
|
255
|
+
'f-ft' => 'Djibouti',
|
256
|
+
'f-gh' => 'Ghana',
|
257
|
+
'f-gm' => 'Gambia',
|
258
|
+
'f-go' => 'Gabon',
|
259
|
+
'f-gv' => 'Guinea',
|
260
|
+
'f-if' => 'Ifni', # discontinued
|
261
|
+
'f-iv' => "Côte d'Ivoire",
|
262
|
+
'f-ke' => 'Kenya',
|
263
|
+
'f-lb' => 'Liberia',
|
264
|
+
'f-lo' => 'Lesotho',
|
265
|
+
'f-ly' => 'Libya',
|
266
|
+
'f-mg' => 'Madagascar',
|
267
|
+
'f-ml' => 'Mali',
|
268
|
+
'f-mr' => 'Morocco',
|
269
|
+
'f-mu' => 'Mauritania',
|
270
|
+
'f-mw' => 'Malawi',
|
271
|
+
'f-mz' => 'Mozambique',
|
272
|
+
'f-ng' => 'Niger',
|
273
|
+
'f-nr' => 'Nigeria',
|
274
|
+
'f-pg' => 'Guinea-Bissau',
|
275
|
+
'f-rh' => 'Zimbabwe',
|
276
|
+
'f-rw' => 'Rwanda',
|
277
|
+
'f-sa' => 'South Africa',
|
278
|
+
'f-sd' => 'South Sudan',
|
279
|
+
'f-sf' => 'Sao Tome and Principe',
|
280
|
+
'f-sg' => 'Senegal',
|
281
|
+
'f-sh' => 'Spanish North Africa',
|
282
|
+
'f-sj' => 'Sudan',
|
283
|
+
'f-sl' => 'Sierra Leone',
|
284
|
+
'f-so' => 'Somalia',
|
285
|
+
'f-sq' => 'Swaziland',
|
286
|
+
'f-ss' => 'Western Sahara',
|
287
|
+
'f-sx' => 'Namibia',
|
288
|
+
'f-tg' => 'Togo',
|
289
|
+
'f-ti' => 'Tunisia',
|
290
|
+
'f-tz' => 'Tanzania',
|
291
|
+
'f-ua' => 'Egypt',
|
292
|
+
'f-ug' => 'Uganda',
|
293
|
+
'f-uv' => 'Burkina Faso',
|
294
|
+
'f-za' => 'Zambia',
|
295
|
+
'fa' => 'Atlas Mountains',
|
296
|
+
'fb' => 'Africa, Sub-Saharan',
|
297
|
+
'fc' => 'Africa, Central',
|
298
|
+
'fd' => 'Sahara',
|
299
|
+
'fe' => 'Africa, Eastern',
|
300
|
+
'ff' => 'Africa, North',
|
301
|
+
'fg' => 'Congo River',
|
302
|
+
'fh' => 'Africa, Northeast',
|
303
|
+
'fi' => 'Niger River',
|
304
|
+
'fl' => 'Nile River',
|
305
|
+
'fn' => 'Sudan (Region)',
|
306
|
+
'fq' => 'Africa, French-speaking Equatorial',
|
307
|
+
'fr' => 'Great Rift Valley',
|
308
|
+
'fs' => 'Africa, Southern',
|
309
|
+
'fu' => 'Suez Canal (Egypt)',
|
310
|
+
'fv' => 'Volta River (Ghana)',
|
311
|
+
'fw' => 'Africa, West',
|
312
|
+
'fz' => 'Zambezi River',
|
313
|
+
'h' => 'French Community',
|
314
|
+
'i' => 'Indian Ocean',
|
315
|
+
'i-bi' => 'British Indian Ocean Territory',
|
316
|
+
'i-cq' => 'Comoros',
|
317
|
+
'i-fs' => 'Terres australes et antarctiques françaises',
|
318
|
+
'i-hm' => 'Heard and McDonald Islands',
|
319
|
+
'i-mf' => 'Mauritius',
|
320
|
+
'i-my' => 'Mayotte',
|
321
|
+
'i-re' => 'Réunion',
|
322
|
+
'i-se' => 'Seychelles',
|
323
|
+
'i-xa' => 'Christmas Island (Indian Ocean)',
|
324
|
+
'i-xb' => 'Cocos (Keeling) Islands',
|
325
|
+
'i-xc' => 'Maldives',
|
326
|
+
'i-xo' => 'Socotra Island', # discontinued
|
327
|
+
'l' => 'Atlantic Ocean',
|
328
|
+
'ln' => 'North Atlantic Ocean',
|
329
|
+
'lnaz' => 'Azores',
|
330
|
+
'lnbm' => 'Bermuda Islands',
|
331
|
+
'lnca' => 'Canary Islands',
|
332
|
+
'lncv' => 'Cape Verde',
|
333
|
+
'lnfa' => 'Faroe Islands',
|
334
|
+
'lnjn' => 'Jan Mayen Island',
|
335
|
+
'lnma' => 'Madeira Islands',
|
336
|
+
'lnsb' => 'Svalbard (Norway)',
|
337
|
+
'ls' => ' South Atlantic Ocean',
|
338
|
+
'lsai' => 'Ascension Island (Atlantic Ocean)',
|
339
|
+
'lsbv' => 'Bouvet Island',
|
340
|
+
'lsfk' => 'Falkland Islands',
|
341
|
+
'lstd' => 'Tristan da Cunha',
|
342
|
+
'lsxj' => 'Saint Helena',
|
343
|
+
'lsxs' => 'South Georgia and South Sandwich Islands',
|
344
|
+
'm' => 'Intercontinental areas (Eastern Hemisphere)',
|
345
|
+
'ma' => 'Arab countries',
|
346
|
+
'mb' => 'Black Sea',
|
347
|
+
'me' => 'Eurasia',
|
348
|
+
'mm' => 'Mediterranean Region; Mediterranean Sea',
|
349
|
+
'mr' => 'Red Sea',
|
350
|
+
'n' => 'North America',
|
351
|
+
'n-cn' => 'Canada',
|
352
|
+
'n-cn-ab' => 'Alberta',
|
353
|
+
'n-cn-bc' => 'British Columbia',
|
354
|
+
'n-cn-mb' => 'Manitoba',
|
355
|
+
'n-cn-nf' => 'Newfoundland and Labrador',
|
356
|
+
'n-cn-nk' => 'New Brunswick',
|
357
|
+
'n-cn-ns' => 'Nova Scotia',
|
358
|
+
'n-cn-nt' => 'Northwest Territories',
|
359
|
+
'n-cn-nu' => 'Nunavut',
|
360
|
+
'n-cn-on' => 'Ontario',
|
361
|
+
'n-cn-pi' => 'Prince Edward Island',
|
362
|
+
'n-cn-qu' => 'Québec (Province)',
|
363
|
+
'n-cn-sn' => 'Saskatchewan',
|
364
|
+
'n-cn-yk' => 'Yukon Territory',
|
365
|
+
'n-cnh' => 'Hudson Bay',
|
366
|
+
'n-cnm' => 'Maritime Provinces',
|
367
|
+
'n-cnp' => 'Prairie Provinces',
|
368
|
+
'n-gl' => 'Greenland',
|
369
|
+
'n-mx' => 'Mexico',
|
370
|
+
'n-us' => 'United States',
|
371
|
+
'n-us-ak' => 'Alaska',
|
372
|
+
'n-us-al' => 'Alabama',
|
373
|
+
'n-us-ar' => 'Arkansas',
|
374
|
+
'n-us-az' => 'Arizona',
|
375
|
+
'n-us-ca' => 'California',
|
376
|
+
'n-us-co' => 'Colorado',
|
377
|
+
'n-us-ct' => 'Connecticut',
|
378
|
+
'n-us-dc' => 'Washington (D.C.)',
|
379
|
+
'n-us-de' => 'Delaware',
|
380
|
+
'n-us-fl' => 'Florida',
|
381
|
+
'n-us-ga' => 'Georgia',
|
382
|
+
'n-us-hi' => 'Hawaii',
|
383
|
+
'n-us-ia' => 'Iowa',
|
384
|
+
'n-us-id' => 'Idaho',
|
385
|
+
'n-us-il' => 'Illinois',
|
386
|
+
'n-us-in' => 'Indiana',
|
387
|
+
'n-us-ks' => 'Kansas',
|
388
|
+
'n-us-ky' => 'Kentucky',
|
389
|
+
'n-us-la' => 'Louisiana',
|
390
|
+
'n-us-ma' => 'Massachusetts',
|
391
|
+
'n-us-md' => 'Maryland',
|
392
|
+
'n-us-me' => 'Maine',
|
393
|
+
'n-us-mi' => 'Michigan',
|
394
|
+
'n-us-mn' => 'Minnesota',
|
395
|
+
'n-us-mo' => 'Missouri',
|
396
|
+
'n-us-ms' => 'Mississippi',
|
397
|
+
'n-us-mt' => 'Montana',
|
398
|
+
'n-us-nb' => 'Nebraska',
|
399
|
+
'n-us-nc' => 'North Carolina',
|
400
|
+
'n-us-nd' => 'North Dakota',
|
401
|
+
'n-us-nh' => 'New Hampshire',
|
402
|
+
'n-us-nj' => 'New Jersey',
|
403
|
+
'n-us-nm' => 'New Mexico',
|
404
|
+
'n-us-nv' => 'Nevada',
|
405
|
+
'n-us-ny' => 'New York',
|
406
|
+
'n-us-oh' => 'Ohio',
|
407
|
+
'n-us-ok' => 'Oklahoma',
|
408
|
+
'n-us-or' => 'Oregon',
|
409
|
+
'n-us-pa' => 'Pennsylvania',
|
410
|
+
'n-us-ri' => 'Rhode Island',
|
411
|
+
'n-us-sc' => 'South Carolina',
|
412
|
+
'n-us-sd' => 'South Dakota',
|
413
|
+
'n-us-tn' => 'Tennessee',
|
414
|
+
'n-us-tx' => 'Texas',
|
415
|
+
'n-us-ut' => 'Utah',
|
416
|
+
'n-us-va' => 'Virginia',
|
417
|
+
'n-us-vt' => 'Vermont',
|
418
|
+
'n-us-wa' => 'Washington (State)',
|
419
|
+
'n-us-wi' => 'Wisconsin',
|
420
|
+
'n-us-wv' => 'West Virginia',
|
421
|
+
'n-us-wy' => 'Wyoming',
|
422
|
+
'n-usa' => 'Appalachian Mountains',
|
423
|
+
'n-usc' => 'Middle West',
|
424
|
+
'n-use' => 'Northeastern States',
|
425
|
+
'n-usl' => 'Middle Atlantic States',
|
426
|
+
'n-usm' => 'Mississippi River',
|
427
|
+
'n-usn' => 'New England',
|
428
|
+
'n-uso' => 'Ohio River',
|
429
|
+
'n-usp' => 'West (U.S.)',
|
430
|
+
'n-usr' => 'East (U.S.)',
|
431
|
+
'n-uss' => 'Missouri River',
|
432
|
+
'n-ust' => 'Southwest, New',
|
433
|
+
'n-usu' => 'Southern States',
|
434
|
+
'n-usw' => 'Northwest (U.S.)', # discontinued
|
435
|
+
'n-xl' => 'Saint Pierre and Miquelon',
|
436
|
+
'nc' => ' Central America',
|
437
|
+
'ncbh' => 'Belize',
|
438
|
+
'nccr' => 'Costa Rica',
|
439
|
+
'nccz' => 'Canal Zone',
|
440
|
+
'nces' => 'El Salvador',
|
441
|
+
'ncgt' => 'Guatemala',
|
442
|
+
'ncho' => 'Honduras',
|
443
|
+
'ncnq' => 'Nicaragua',
|
444
|
+
'ncpn' => 'Panama',
|
445
|
+
'nl' => 'Great Lakes (North America); Lake States',
|
446
|
+
'nm' => 'Mexico, Gulf of',
|
447
|
+
'np' => 'Great Plains',
|
448
|
+
'nr' => 'Rocky Mountains',
|
449
|
+
'nw' => 'West Indies',
|
450
|
+
'nwaq' => 'Antigua and Barbuda',
|
451
|
+
'nwaw' => 'Aruba',
|
452
|
+
'nwbb' => 'Barbados',
|
453
|
+
'nwbc' => 'Barbuda', # discontinued
|
454
|
+
'nwbf' => 'Bahamas',
|
455
|
+
'nwbn' => 'Bonaire',
|
456
|
+
'nwcj' => 'Cayman Islands',
|
457
|
+
'nwco' => 'Curaçao',
|
458
|
+
'nwcu' => 'Cuba',
|
459
|
+
'nwdq' => 'Dominica',
|
460
|
+
'nwdr' => 'Dominican Republic',
|
461
|
+
'nweu' => 'Sint Eustatius',
|
462
|
+
'nwga' => 'Greater Antilles', # discontinued
|
463
|
+
'nwgd' => 'Grenada',
|
464
|
+
'nwgp' => 'Guadeloupe',
|
465
|
+
'nwgs' => 'Grenadines', # discontinued
|
466
|
+
'nwhi' => 'Hispaniola',
|
467
|
+
'nwht' => 'Haiti',
|
468
|
+
'nwjm' => 'Jamaica',
|
469
|
+
'nwla' => 'Antilles, Lesser',
|
470
|
+
'nwli' => 'Leeward Islands (West Indies)',
|
471
|
+
'nwmj' => 'Montserrat',
|
472
|
+
'nwmq' => 'Martinique',
|
473
|
+
'nwna' => 'Netherlands Antilles', # discontinued
|
474
|
+
'nwpr' => 'Puerto Rico',
|
475
|
+
'nwsb' => 'Saint-Barthélemy', # discontinued
|
476
|
+
'nwsc' => 'Saint-Barthélemy',
|
477
|
+
'nwsd' => 'Saba',
|
478
|
+
'nwsn' => 'Sint Maarten',
|
479
|
+
'nwst' => 'Saint-Martin',
|
480
|
+
'nwsv' => 'Swan Islands (Honduras)',
|
481
|
+
'nwtc' => 'Turks and Caicos Islands',
|
482
|
+
'nwtr' => 'Trinidad and Tobago',
|
483
|
+
'nwuc' => 'United States Miscellaneous Caribbean Islands',
|
484
|
+
'nwvb' => 'British Virgin Islands',
|
485
|
+
'nwvi' => 'Virgin Islands of the United States',
|
486
|
+
'nwvr' => 'Virgin Islands', # discontinued
|
487
|
+
'nwwi' => 'Windward Islands (West Indies)',
|
488
|
+
'nwxa' => 'Anguilla',
|
489
|
+
'nwxi' => 'Saint Kitts and Nevis',
|
490
|
+
'nwxk' => 'Saint Lucia',
|
491
|
+
'nwxm' => 'Saint Vincent and the Grenadines',
|
492
|
+
'p' => 'Pacific Ocean',
|
493
|
+
'pn' => 'North Pacific Ocean',
|
494
|
+
'po' => 'Oceania',
|
495
|
+
'poas' => 'American Samoa',
|
496
|
+
'pobp' => 'Solomon Islands',
|
497
|
+
'poci' => 'Caroline Islands',
|
498
|
+
'pocp' => 'Canton and Enderbury Islands', # discontinued
|
499
|
+
'pocw' => 'Cook Islands',
|
500
|
+
'poea' => 'Easter Island',
|
501
|
+
'pofj' => 'Fiji',
|
502
|
+
'pofp' => 'French Polynesia',
|
503
|
+
'pogg' => 'Galapagos Islands',
|
504
|
+
'pogn' => 'Gilbert and Ellice Islands', # discontinued
|
505
|
+
'pogu' => 'Guam',
|
506
|
+
'poji' => 'Johnston Island',
|
507
|
+
'pokb' => 'Kiribati',
|
508
|
+
'poki' => 'Kermadec Islands',
|
509
|
+
'poln' => 'Line Islands',
|
510
|
+
'pome' => 'Melanesia',
|
511
|
+
'pomi' => 'Micronesia (Federated States)',
|
512
|
+
'ponl' => 'New Caledonia',
|
513
|
+
'ponn' => 'Vanuatu',
|
514
|
+
'ponu' => 'Nauru',
|
515
|
+
'popc' => 'Pitcairn Island',
|
516
|
+
'popl' => 'Palau',
|
517
|
+
'pops' => 'Polynesia',
|
518
|
+
'pory' => 'Ryukyu Islands, Southern', # discontinued
|
519
|
+
'posc' => 'Santa Cruz Islands', # discontinued
|
520
|
+
'posh' => 'Samoan Islands',
|
521
|
+
'posn' => 'Solomon Islands', # discontinued
|
522
|
+
'potl' => 'Tokelau',
|
523
|
+
'poto' => 'Tonga',
|
524
|
+
'pott' => 'Micronesia',
|
525
|
+
'potv' => 'Tuvalu',
|
526
|
+
'poup' => 'United States Miscellaneous Pacific Islands',
|
527
|
+
'powf' => 'Wallis and Futuna Islands',
|
528
|
+
'powk' => 'Wake Island',
|
529
|
+
'pows' => 'Samoa',
|
530
|
+
'poxd' => 'Mariana Islands',
|
531
|
+
'poxe' => 'Marshall Islands',
|
532
|
+
'poxf' => 'Midway Islands',
|
533
|
+
'poxh' => 'Niue',
|
534
|
+
'ps' => 'South Pacific Ocean',
|
535
|
+
'q' => 'Cold regions',
|
536
|
+
'r' => 'Arctic Ocean; Arctic regions',
|
537
|
+
's' => 'South America',
|
538
|
+
's-ag' => 'Argentina',
|
539
|
+
's-bl' => 'Brazil',
|
540
|
+
's-bo' => 'Bolivia',
|
541
|
+
's-ck' => 'Colombia',
|
542
|
+
's-cl' => 'Chile',
|
543
|
+
's-ec' => 'Ecuador',
|
544
|
+
's-fg' => 'French Guiana',
|
545
|
+
's-gy' => 'Guyana',
|
546
|
+
's-pe' => 'Peru',
|
547
|
+
's-py' => 'Paraguay',
|
548
|
+
's-sr' => 'Suriname',
|
549
|
+
's-uy' => 'Uruguay',
|
550
|
+
's-ve' => 'Venezuela',
|
551
|
+
'sa' => 'Amazon River',
|
552
|
+
'sn' => 'Andes',
|
553
|
+
'sp' => 'Rio de la Plata (Argentina and Uruguay)',
|
554
|
+
't' => 'Antarctic Ocean; Antarctica',
|
555
|
+
't-ay' => 'Antarctica', # discontinued
|
556
|
+
'u' => 'Australasia',
|
557
|
+
'u-ac' => 'Ashmore and Cartier Islands',
|
558
|
+
'u-at' => 'Australia',
|
559
|
+
'u-at-ac' => 'Australian Capital Territory',
|
560
|
+
'u-atc' => 'Central Australia',
|
561
|
+
'u-ate' => 'Eastern Australia',
|
562
|
+
'u-atn' => 'Northern Australia',
|
563
|
+
'u-at-ne' => 'New South Wales',
|
564
|
+
'u-at-no' => 'Northern Territory',
|
565
|
+
'u-at-qn' => 'Queensland',
|
566
|
+
'u-at-sa' => 'South Australia',
|
567
|
+
'u-at-tm' => 'Tasmania',
|
568
|
+
'u-at-vi' => 'Victoria',
|
569
|
+
'u-at-we' => 'Western Australia',
|
570
|
+
'u-cs' => 'Coral Sea Islands',
|
571
|
+
'u-nz' => 'New Zealand',
|
572
|
+
'v' => 'Communist countries', # discontinued
|
573
|
+
'w' => 'Tropics',
|
574
|
+
'x' => 'Earth',
|
575
|
+
'xa' => 'Eastern Hemisphere',
|
576
|
+
'xb' => 'Northern Hemisphere',
|
577
|
+
'xc' => 'Southern Hemisphere',
|
578
|
+
'xd' => 'Western Hemisphere',
|
579
|
+
'zd' => 'Deep space',
|
580
|
+
'zju' => 'Jupiter',
|
581
|
+
'zma' => 'Mars',
|
582
|
+
'zme' => 'Mercury',
|
583
|
+
'zmo' => 'Moon',
|
584
|
+
'zne' => 'Neptune',
|
585
|
+
'zo' => 'Outer space',
|
586
|
+
'zpl' => 'Pluto',
|
587
|
+
'zs' => 'Solar system',
|
588
|
+
'zsa' => 'Saturn',
|
589
|
+
'zsu' => 'Sun',
|
590
|
+
'zur' => 'Uranus',
|
591
|
+
'zve' => 'Venus',
|
592
|
+
}
|