Skip to content

Commit 973ea1f

Browse files
committed
2 parents e638ce8 + f12ed8d commit 973ea1f

10 files changed

Lines changed: 270 additions & 270 deletions
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
Region,Percentage after 1 Year
2-
Australia and New Zealand,38.647544557146354
3-
Caribbean,9.047952056011187
4-
Central America,26.255501041024676
5-
Central Asia,9.243882570450882
6-
Eastern Africa,0.034724292567159386
7-
Eastern Asia,47.67567705830016
8-
Eastern Europe,18.1051137196055
9-
Melanesia,0.2898233223373184
10-
Micronesia,1.7609380286706433
11-
Middle Africa,0.006332446226603382
12-
Northern Africa,5.408045587566065
13-
Northern America,102.18382538841222
14-
Northern Europe,73.93373954835721
15-
Polynesia,1.1783302550047663
16-
South America,11.167957520602034
17-
South-eastern Asia,10.534889709477083
18-
Southern Africa,14.952272797936514
19-
Southern Asia,3.739199000746242
20-
Southern Europe,47.6791128952953
21-
Western Africa,1.7991069021255401
22-
Western Asia,16.222458793943577
23-
Western Europe,98.26477850491979
2+
Australia and New Zealand,3864.7544557146352
3+
Caribbean,904.7952056011187
4+
Central America,2625.5501041024672
5+
Central Asia,924.3882570450884
6+
Eastern Africa,3.4724292567159387
7+
Eastern Asia,4767.567705830016
8+
Eastern Europe,1810.5113719605502
9+
Melanesia,28.98233223373183
10+
Micronesia,176.09380286706434
11+
Middle Africa,0.6332446226603382
12+
Northern Africa,540.8045587566064
13+
Northern America,10218.382538841222
14+
Northern Europe,7393.373954835721
15+
Polynesia,117.83302550047662
16+
South America,1116.7957520602035
17+
South-eastern Asia,1053.4889709477084
18+
Southern Africa,1495.2272797936516
19+
Southern Asia,373.9199000746242
20+
Southern Europe,4767.911289529529
21+
Western Africa,179.91069021255402
22+
Western Asia,1622.2458793943576
23+
Western Europe,9826.47785049198

results/Scale_up_COALBAG_MS.pkl

-189 Bytes
Binary file not shown.

results/Scale_up_CR_MAN_MS.pkl

-513 Bytes
Binary file not shown.

results/Scale_up_CR_REPUR_MS.pkl

-390 Bytes
Binary file not shown.

results/Scale_up_CR_STOCK.pkl

-504 Bytes
Binary file not shown.

results/Scale_up_PERCENT_ECW_POLL_MS.csv

Lines changed: 236 additions & 236 deletions
Large diffs are not rendered by default.
-45 Bytes
Binary file not shown.

results/Scale_up_output_MS.pkl

-45 Bytes
Binary file not shown.

scripts/Countries_Processing_MS.ipynb

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 2,
5+
"execution_count": 1,
66
"metadata": {},
77
"outputs": [],
88
"source": [
@@ -37,7 +37,7 @@
3737
},
3838
{
3939
"cell_type": "code",
40-
"execution_count": 3,
40+
"execution_count": 2,
4141
"metadata": {},
4242
"outputs": [],
4343
"source": [
@@ -244,7 +244,7 @@
244244
},
245245
{
246246
"cell_type": "code",
247-
"execution_count": 4,
247+
"execution_count": 3,
248248
"metadata": {},
249249
"outputs": [],
250250
"source": [
@@ -291,7 +291,7 @@
291291
},
292292
{
293293
"cell_type": "code",
294-
"execution_count": 5,
294+
"execution_count": 4,
295295
"metadata": {},
296296
"outputs": [],
297297
"source": [
@@ -348,7 +348,7 @@
348348
},
349349
{
350350
"cell_type": "code",
351-
"execution_count": 6,
351+
"execution_count": 5,
352352
"metadata": {},
353353
"outputs": [
354354
{
@@ -457,7 +457,7 @@
457457
},
458458
{
459459
"cell_type": "code",
460-
"execution_count": 18,
460+
"execution_count": 6,
461461
"metadata": {},
462462
"outputs": [],
463463
"source": [
@@ -515,7 +515,7 @@
515515
" ] \n",
516516
" if ecw_list[0] == 0:\n",
517517
" PERCENT_ECW_data_points = [0] * (Scale_Up_Time_Period_In_Weeks+1)\n",
518-
" else: PERCENT_ECW_data_points = [x/(CADRPP*ecw_list[0]) for x in MAIN_data_points]\n",
518+
" else: PERCENT_ECW_data_points = [100*x/(CADRPP*ecw_list[0]) for x in MAIN_data_points]\n",
519519
"\n",
520520
" scale_up_data_country_MAIN[country.name] = ecw_list + MAIN_data_points\n",
521521
" scale_up_data_country_PERCENT_ECW[country.name] = ecw_list + PERCENT_ECW_data_points\n",
@@ -561,10 +561,10 @@
561561
"for region in UNRegion_list:\n",
562562
" ecw_list_region = scale_up_data_region_MAIN[region][:2]\n",
563563
" PERCENT_ECW_region_data_points = scale_up_data_region_MAIN[region][2:]\n",
564-
" scale_up_data_region_PERCENT_ECW[region] = ecw_list_region + [x/(CADRPP*ecw_list_region[0]) for x in PERCENT_ECW_region_data_points]\n",
564+
" scale_up_data_region_PERCENT_ECW[region] = ecw_list_region + [100*x/(CADRPP*ecw_list_region[0]) for x in PERCENT_ECW_region_data_points]\n",
565565
"ecw_list_global = scale_up_data_region_MAIN['Global'][:2]\n",
566566
"PERCENT_ECW_global_data_points = scale_up_data_region_MAIN['Global'][2:]\n",
567-
"scale_up_data_region_PERCENT_ECW[\"Global\"] = ecw_list_global + [x/(CADRPP*ecw_list_global[0]) for x in PERCENT_ECW_global_data_points]\n",
567+
"scale_up_data_region_PERCENT_ECW[\"Global\"] = ecw_list_global + [100*x/(CADRPP*ecw_list_global[0]) for x in PERCENT_ECW_global_data_points]\n",
568568
"\n",
569569
"## ------- Exporting -------\n",
570570
"Scale_Up_df_MAIN = pd.DataFrame(scale_up_data_country_MAIN | scale_up_data_region_MAIN).T\n",
@@ -591,7 +591,7 @@
591591
},
592592
{
593593
"cell_type": "code",
594-
"execution_count": 8,
594+
"execution_count": 7,
595595
"metadata": {},
596596
"outputs": [],
597597
"source": [
@@ -635,7 +635,7 @@
635635
},
636636
{
637637
"cell_type": "code",
638-
"execution_count": 27,
638+
"execution_count": 8,
639639
"metadata": {},
640640
"outputs": [],
641641
"source": [

scripts/Scale_Up_Visualiser.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"\n",
138138
" stack_vals = [vals1, vals2, vals3, vals4]\n",
139139
" \n",
140-
" labels = ['CR Box Repurposing', 'CR Box Stock', 'Coalbaghouse','CR Box Manufacturing']\n",
140+
" labels = ['CR Box Repurposing', 'CR Box Stock', 'Coal Baghouse','CR Box Manufacturing']\n",
141141
" \n",
142142
" ax.stackplot(t, *stack_vals, labels=labels, alpha=0.6)\n",
143143
" \n",

0 commit comments

Comments
 (0)