-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountry_groups.py
42 lines (36 loc) · 1.21 KB
/
country_groups.py
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
'''
Name: country_groups.py
Author: Timur Kasimov
Created: June 2024
Updated: June 2024
Purpose:
Defining lists of various country groups/ regions
for data grouping and subsequent data generation
'''
######################
######################
### COUNTRY GROUPS ###
######################
######################
# European Union, 27 countries
EU = ['AT', 'BE', 'BG', 'HR', 'CY',
'CZ', 'DK', 'EE', 'FI', 'FR',
'DE', 'GR', 'HU', 'IE', 'IT',
'LV', 'LT', 'LU', 'MT', 'NL',
'PL', 'PT', 'RO', 'SK', 'SI',
'ES', 'SE']
# EU broken down so don't have to run all at once
EU1 = ['AT', 'BE', 'BG', 'HR', 'CY']
EU2 = ['CZ', 'DK', 'EE', 'FI', 'FR']
EU3 = ['DE', 'GR', 'HU', 'IE', 'IT']
EU4 = ['LV', 'LT', 'LU', 'MT', 'NL']
EU5 = ['PL', 'PT', 'RO', 'SK', 'SI']
EU6 = ['ES', 'SE']
# Top 10 EU producers
EU_TOP10 = [] # to be defined
## NEED TO UPDATE THE LIST: Is this all of Europe?
# ALL_COUNTRY_CODES_GENERATION = ['AT', 'BE', 'BG', 'HR', 'CY',
# 'CZ', 'DK', 'EE', 'FI', 'FR',
# 'DE', 'GR', 'HU', 'IE', 'IT',
# 'LV', 'LT', 'LU', 'MT', 'NL',
# 'PL', 'PT', 'RO', 'SK', 'SI'] #unfinished