forked from iarobinson/theEarthObject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearth.js
226 lines (220 loc) · 5.98 KB
/
earth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
const theEarthObjectJS = {
continents: {
africa: {
"wikipedia_link": "https://en.wikipedia.org/wiki/Africa",
nationStates: {
"Algeria": {},
"Angola": {},
"Benin": {},
"Botswana": {},
"Burkina Faso": {},
"Burundi": {},
"Cabo Verde": {},
"Cameroon": {},
"Central African Republic": {},
"Chad": {},
"Comoros": {},
"Cote d'Ivoire": {},
"Democratic Republic Of The Congo": {},
"Djibouti": {},
"Egypt": {},
"Equatorial Guinea": {},
"Eritrea": {},
"Eswatini": {},
"Ethiopia": {},
"Gabon": {},
"Gambia": {},
"Ghana": {},
"Guinea": {},
"Guinea-Bissau": {},
"Kenya": {},
"Lesotho": {},
"Liberia": {},
"Libya": {},
"Madagascar": {},
"Malawi": {},
"Mali": {},
"Mauritania": {},
"Mauritius": {},
"Morocco": {
flag: "/assets/flags/africa/morocco.png"
},
"Mozambique": {},
"Namibia": {},
"Niger": {},
"Nigeria": {},
"Rwanda": {},
"Sao Tome and Principe": {},
"Senegal": {},
"Seychelles": {},
"Sierra Leone": {},
"Somalia": {},
"South Africa": {},
"South Sudan": {},
"Sudan": {},
"Tanzania": {},
"Togo": {},
"Tunisia": {},
"Uganda": {},
"Zambia": {},
"Zimbabwe": {},
},
},
antarctica: {
"wikipedia_link": "https://en.wikipedia.org/wiki/Antarctica"
},
asia: {
"wikipedia_link": "https://en.wikipedia.org/wiki/Asia",
korea: {
flag: "/assets/flags/asia/korea.png"
},
},
europe: {
"wikipedia_link": "https://en.wikipedia.org/wiki/Europe",
germany: {
flag: "/assets/flags/europe/germany.png"
},
},
northAmerica: {
"wikipedia_link": "https://en.wikipedia.org/wiki/North_America",
mexico: {
flag: "/assets/flags/northAmerica/mexico.png"
},
},
oceania: {
"wikipedia_link": "https://en.wikipedia.org/wiki/Oceania",
australia: {
flag: "/assets/flags/oceania/australia.png"
},
},
southAmerica: {
"wikipediaLink": "https://en.wikipedia.org/wiki/South_America",
nationStates: {
"Argentina": {},
"Bolivia": {},
"Bouvet Island": {},
"Brazil": {
flag: "/assets/flags/southAmerica/brazil.png"
},
"Chile": {},
"Columbia": {},
"Ecuador": {},
"Falkland Islands": {},
"French Guiana": {},
"Guyana": {},
"Paraguay": {},
"Peru": {},
"South Georgia and the South Sandwich Islands": {},
"Suriname": {},
"Uruguay": {},
"Venezuela": {}
},
}
},
oceans: {
arctic: {
description: "",
wikipedia_link: "https://wikipedia.org/wiki/Arctic_Ocean"
},
atlantic: {
description: "",
wikipedia_link: "https://wikipedia.org/wiki/Atlantic_Ocean"
},
pacific: {
description: "",
wikipedia_link: "https://wikipedia.org/wiki/Pacific_Ocean"
},
indian: {
description: "",
wikipedia_link: "https://wikipedia.org/wiki/Indian_Ocean"
},
southern: {
description: "",
wikipedia_link: "https://wikipedia.org/wiki/Southern_Ocean"
}
},
countries: {
oceania: {
nationStates: {
"Australia": {
wikipedia_link: "https://en.wikipedia.org/wiki/Australia"
},
"Papua New Guinea": {
wikipedia_link: "https://en.wikipedia.org/wiki/Papua_New_Guinea"
},
"New Zealand": {
wikipedia_link: "https://en.wikipedia.org/wiki/New_Zealand"
},
"Fiji": {
wikipedia_link: "https://en.wikipedia.org/wiki/Fiji"
},
"Solomon Islands": {
wikipedia_link: "https://en.wikipedia.org/wiki/Solomon_Islands"
},
"Vanuatu": {
wikipedia_link: "https://en.wikipedia.org/wiki/Vanuatu"
},
"Samoa": {
wikipedia_link: "https://en.wikipedia.org/wiki/Samoa"
},
"Kiribati": {
wikipedia_link: "https://en.wikipedia.org/wiki/Kiribati"
},
"Federated States of Micronesia": {
wikipedia_link: "https://en.wikipedia.org/wiki/Federated_States_of_Micronesia"
},
"Tonga": {
wikipedia_link: "https://en.wikipedia.org/wiki/Tonga"
},
"Marshall Islands": {
wikipedia_link: "https://en.wikipedia.org/wiki/Marshall_Islands"
},
"Palau": {
wikipedia_link: "https://en.wikipedia.org/wiki/Palau"
},
"Tuvalu": {
wikipedia_link: "https://en.wikipedia.org/wiki/Tuvalu"
},
"Nauru": {
wikipedia_link: "https://en.wikipedia.org/wiki/Nauru"
}
},
dependentTerritories: {
"New Caledonia (France)": {
wikipedia_link: "https://en.wikipedia.org/wiki/New_Caledonia"
},
"French Polynesia (France)": {
wikipedia_link: "https://en.wikipedia.org/wiki/French_Polynesia"
},
"Guam (US)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Guam"
},
"American Samoa (US)": {
wikipedia_link: "https://en.wikipedia.org/wiki/American_Samoa"
},
"Northern Mariana Islands (US)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Northern_Mariana_Islands"
},
"Cook Islands (NZ)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Cook_Islands"
},
"Wallis and Futuna (France)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Wallis_and_Futuna"
},
"Norfolk Island (Australia)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Norfolk_Island"
},
"Niue (NZ)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Niue"
},
"Tokelau (NZ)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Tokelau"
},
"Pitcairn Islands (UK)": {
wikipedia_link: "https://en.wikipedia.org/wiki/Pitcairn_Islands"
}
}
}
}
}
console.log(theEarthObjectJS);