-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDatafile
44 lines (35 loc) · 1.52 KB
/
Datafile
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
################################################
# Datafile for Rugby World Cup
#
# use (inside the rugby.db/ folder)
# $ sportdb build
inline do
## 20 countries
## Europe
Country.parse 'eng', 'England', 'ENG', '1 km²', '1'
Country.parse 'wal', 'Wales', 'WAL', '1 km²', '1'
Country.parse 'sco', 'Scotland', 'SCO', '1 km²', '1'
Country.parse 'ie', 'Ireland', 'IRE', '1 km²', '1'
Country.parse 'fr', 'France', 'FRA', '1 km²', '1'
Country.parse 'it', 'Italy', 'ITA', '1 km²', '1'
Country.parse 'ro', 'Romania', 'ROM', '1 km²', '1'
Country.parse 'ge', 'Georgia', 'GEO', '1 km²', '1'
## North America
Country.parse 'ca', 'Canada', 'CAN', '1 km²', '1'
Country.parse 'us', 'United States', 'USA', '1 km²', '1'
## South America
Country.parse 'uy', 'Uruguay', 'URU', '1 km²', '1'
Country.parse 'ar', 'Argentina', 'ARG', '1 km²', '1'
## Africa
Country.parse 'za', 'South Africa', 'RSA', '1 km²', '1'
Country.parse 'na', 'Namibia', 'NAM', '1 km²', '1'
## Asia
Country.parse 'jp', 'Japan', 'JPN', '1 km²', '1'
## South Pacific / Oceania
Country.parse 'au', 'Australia', 'AUS', '1 km²', '1'
Country.parse 'nz', 'New Zealand', 'NZL', '1 km²', '1'
Country.parse 'ws', 'Samoa', 'SAM', '1 km²', '1'
Country.parse 'to', 'Tonga', 'TGA', '1 km²', '1'
Country.parse 'fj', 'Fiji', 'FJI', '1 km²', '1'
end
football 'rugby.db' ## fix: change football to rugby or sport ???