@palmgrove/nefdb 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/LICENSE +412 -0
- package/METHODOLOGY.md +1559 -0
- package/README.md +137 -0
- package/data/nefdb_v1.csv +46 -0
- package/data/nefdb_v1.json +1766 -0
- package/dist/api/aviation.d.ts +5 -0
- package/dist/api/fuel.d.ts +13 -0
- package/dist/api/grid.d.ts +6 -0
- package/dist/api/transport.d.ts +2 -0
- package/dist/api/waste.d.ts +4 -0
- package/dist/api/water.d.ts +3 -0
- package/dist/factors/aviation.d.ts +2 -0
- package/dist/factors/fuel_combustion.d.ts +2 -0
- package/dist/factors/grid_electricity.d.ts +2 -0
- package/dist/factors/index.d.ts +2 -0
- package/dist/factors/transport.d.ts +2 -0
- package/dist/factors/waste.d.ts +2 -0
- package/dist/factors/water.d.ts +2 -0
- package/dist/index.cjs +2098 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +2071 -0
- package/dist/query.d.ts +8 -0
- package/dist/sources/index.d.ts +5 -0
- package/dist/types.d.ts +50 -0
- package/package.json +56 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,2071 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __returnValue = (v) => v;
|
|
3
|
+
function __exportSetter(name, newValue) {
|
|
4
|
+
this[name] = __returnValue.bind(null, newValue);
|
|
5
|
+
}
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, {
|
|
9
|
+
get: all[name],
|
|
10
|
+
enumerable: true,
|
|
11
|
+
configurable: true,
|
|
12
|
+
set: __exportSetter.bind(all, name)
|
|
13
|
+
});
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
// src/api/aviation.ts
|
|
17
|
+
var exports_aviation = {};
|
|
18
|
+
__export(exports_aviation, {
|
|
19
|
+
route: () => route
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
// src/factors/aviation.ts
|
|
23
|
+
var aviationFactors = [
|
|
24
|
+
{
|
|
25
|
+
id: "ng.aviation.domestic.los_abv",
|
|
26
|
+
category: "aviation",
|
|
27
|
+
subcategory: "domestic_route",
|
|
28
|
+
description: "Domestic aviation emission factor for Lagos (LOS) to Abuja (ABV) routes, per passenger-km",
|
|
29
|
+
value: 0.1962,
|
|
30
|
+
unit: "kgCO2e_per_passenger_km",
|
|
31
|
+
gas: null,
|
|
32
|
+
gwp_basis: "AR5",
|
|
33
|
+
scope: 1,
|
|
34
|
+
data_year: 2022,
|
|
35
|
+
published_year: 2026,
|
|
36
|
+
country: "NG",
|
|
37
|
+
source: {
|
|
38
|
+
id: "ICAO_ICEC_V13",
|
|
39
|
+
title: "ICAO Carbon Emissions Calculator Methodology v13.1",
|
|
40
|
+
publisher: "ICAO",
|
|
41
|
+
year: 2023,
|
|
42
|
+
page: "Boeing 737-500, 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor, 84.32% Intra-Africa passenger-to-cargo factor"
|
|
43
|
+
},
|
|
44
|
+
additional_sources: [
|
|
45
|
+
{
|
|
46
|
+
id: "NCAA_EXEC_2022",
|
|
47
|
+
title: "NCAA Executive Summary Jan-Dec 2022",
|
|
48
|
+
publisher: "NCAA",
|
|
49
|
+
year: 2023
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
uncertainty_pct: 20,
|
|
53
|
+
confidence: "medium",
|
|
54
|
+
methodology_note: "Derived from ICAO ICEC v13.1 using Boeing 737-500 fuel burn with 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor and 84.32% Intra-Africa passenger-to-cargo factor. Rounded to four decimal places.",
|
|
55
|
+
nefdb_version: "1.0.0"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
id: "ng.aviation.domestic.los_phc",
|
|
59
|
+
category: "aviation",
|
|
60
|
+
subcategory: "domestic_route",
|
|
61
|
+
description: "Domestic aviation emission factor for Lagos (LOS) to Port Harcourt (PHC) routes, per passenger-km",
|
|
62
|
+
value: 0.2168,
|
|
63
|
+
unit: "kgCO2e_per_passenger_km",
|
|
64
|
+
gas: null,
|
|
65
|
+
gwp_basis: "AR5",
|
|
66
|
+
scope: 1,
|
|
67
|
+
data_year: 2022,
|
|
68
|
+
published_year: 2026,
|
|
69
|
+
country: "NG",
|
|
70
|
+
source: {
|
|
71
|
+
id: "ICAO_ICEC_V13",
|
|
72
|
+
title: "ICAO Carbon Emissions Calculator Methodology v13.1",
|
|
73
|
+
publisher: "ICAO",
|
|
74
|
+
year: 2023,
|
|
75
|
+
page: "Boeing 737-500, 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor, 84.32% Intra-Africa passenger-to-cargo factor"
|
|
76
|
+
},
|
|
77
|
+
additional_sources: [
|
|
78
|
+
{
|
|
79
|
+
id: "NCAA_EXEC_2022",
|
|
80
|
+
title: "NCAA Executive Summary Jan-Dec 2022",
|
|
81
|
+
publisher: "NCAA",
|
|
82
|
+
year: 2023
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
uncertainty_pct: 20,
|
|
86
|
+
confidence: "medium",
|
|
87
|
+
methodology_note: "Derived from ICAO ICEC v13.1 using Boeing 737-500 fuel burn with 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor and 84.32% Intra-Africa passenger-to-cargo factor. Rounded to four decimal places.",
|
|
88
|
+
nefdb_version: "1.0.0"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
id: "ng.aviation.domestic.los_kan",
|
|
92
|
+
category: "aviation",
|
|
93
|
+
subcategory: "domestic_route",
|
|
94
|
+
description: "Domestic aviation emission factor for Lagos (LOS) to Kano (KAN) routes, per passenger-km",
|
|
95
|
+
value: 0.1489,
|
|
96
|
+
unit: "kgCO2e_per_passenger_km",
|
|
97
|
+
gas: null,
|
|
98
|
+
gwp_basis: "AR5",
|
|
99
|
+
scope: 1,
|
|
100
|
+
data_year: 2022,
|
|
101
|
+
published_year: 2026,
|
|
102
|
+
country: "NG",
|
|
103
|
+
source: {
|
|
104
|
+
id: "ICAO_ICEC_V13",
|
|
105
|
+
title: "ICAO Carbon Emissions Calculator Methodology v13.1",
|
|
106
|
+
publisher: "ICAO",
|
|
107
|
+
year: 2023,
|
|
108
|
+
page: "Boeing 737-500, 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor, 84.32% Intra-Africa passenger-to-cargo factor"
|
|
109
|
+
},
|
|
110
|
+
additional_sources: [
|
|
111
|
+
{
|
|
112
|
+
id: "NCAA_EXEC_2022",
|
|
113
|
+
title: "NCAA Executive Summary Jan-Dec 2022",
|
|
114
|
+
publisher: "NCAA",
|
|
115
|
+
year: 2023
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
uncertainty_pct: 20,
|
|
119
|
+
confidence: "medium",
|
|
120
|
+
methodology_note: "Derived from ICAO ICEC v13.1 using Boeing 737-500 fuel burn with 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor and 84.32% Intra-Africa passenger-to-cargo factor. Rounded to four decimal places.",
|
|
121
|
+
nefdb_version: "1.0.0"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
id: "ng.aviation.domestic.abv_phc",
|
|
125
|
+
category: "aviation",
|
|
126
|
+
subcategory: "domestic_route",
|
|
127
|
+
description: "Domestic aviation emission factor for Abuja (ABV) to Port Harcourt (PHC) routes, per passenger-km",
|
|
128
|
+
value: 0.2143,
|
|
129
|
+
unit: "kgCO2e_per_passenger_km",
|
|
130
|
+
gas: null,
|
|
131
|
+
gwp_basis: "AR5",
|
|
132
|
+
scope: 1,
|
|
133
|
+
data_year: 2022,
|
|
134
|
+
published_year: 2026,
|
|
135
|
+
country: "NG",
|
|
136
|
+
source: {
|
|
137
|
+
id: "ICAO_ICEC_V13",
|
|
138
|
+
title: "ICAO Carbon Emissions Calculator Methodology v13.1",
|
|
139
|
+
publisher: "ICAO",
|
|
140
|
+
year: 2023,
|
|
141
|
+
page: "Boeing 737-500, 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor, 84.32% Intra-Africa passenger-to-cargo factor"
|
|
142
|
+
},
|
|
143
|
+
additional_sources: [
|
|
144
|
+
{
|
|
145
|
+
id: "NCAA_EXEC_2022",
|
|
146
|
+
title: "NCAA Executive Summary Jan-Dec 2022",
|
|
147
|
+
publisher: "NCAA",
|
|
148
|
+
year: 2023
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
uncertainty_pct: 20,
|
|
152
|
+
confidence: "medium",
|
|
153
|
+
methodology_note: "Derived from ICAO ICEC v13.1 using Boeing 737-500 fuel burn with 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor and 84.32% Intra-Africa passenger-to-cargo factor. Rounded to four decimal places.",
|
|
154
|
+
nefdb_version: "1.0.0"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
id: "ng.aviation.domestic.generic",
|
|
158
|
+
category: "aviation",
|
|
159
|
+
subcategory: "domestic_route",
|
|
160
|
+
description: "Generic domestic aviation emission factor for Nigeria, arithmetic mean of four domestic routes, per passenger-km",
|
|
161
|
+
value: 0.194,
|
|
162
|
+
unit: "kgCO2e_per_passenger_km",
|
|
163
|
+
gas: null,
|
|
164
|
+
gwp_basis: "AR5",
|
|
165
|
+
scope: 1,
|
|
166
|
+
data_year: 2022,
|
|
167
|
+
published_year: 2026,
|
|
168
|
+
country: "NG",
|
|
169
|
+
source: {
|
|
170
|
+
id: "ICAO_ICEC_V13",
|
|
171
|
+
title: "ICAO Carbon Emissions Calculator Methodology v13.1",
|
|
172
|
+
publisher: "ICAO",
|
|
173
|
+
year: 2023,
|
|
174
|
+
page: "Boeing 737-500, 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor, 84.32% Intra-Africa passenger-to-cargo factor"
|
|
175
|
+
},
|
|
176
|
+
additional_sources: [
|
|
177
|
+
{
|
|
178
|
+
id: "NCAA_EXEC_2022",
|
|
179
|
+
title: "NCAA Executive Summary Jan-Dec 2022",
|
|
180
|
+
publisher: "NCAA",
|
|
181
|
+
year: 2023
|
|
182
|
+
}
|
|
183
|
+
],
|
|
184
|
+
uncertainty_pct: 20,
|
|
185
|
+
confidence: "medium",
|
|
186
|
+
methodology_note: "Arithmetic mean of ng.aviation.domestic.los_abv, ng.aviation.domestic.los_phc, ng.aviation.domestic.los_kan and ng.aviation.domestic.abv_phc. Derived from ICAO ICEC v13.1 using Boeing 737-500 fuel burn with 9% uplift, 3.16 kg CO2/kg fuel, 114 seats, 72% load factor and 84.32% Intra-Africa passenger-to-cargo factor.",
|
|
187
|
+
nefdb_version: "1.0.0"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
id: "ng.aviation.domestic.rf_multiplier",
|
|
191
|
+
category: "aviation",
|
|
192
|
+
subcategory: "rf_multiplier",
|
|
193
|
+
description: "Radiative forcing multiplier for domestic aviation non-CO2 climate effects in Nigeria",
|
|
194
|
+
value: 1.9,
|
|
195
|
+
unit: "multiplier",
|
|
196
|
+
gas: null,
|
|
197
|
+
gwp_basis: "AR5",
|
|
198
|
+
scope: 1,
|
|
199
|
+
data_year: 2022,
|
|
200
|
+
published_year: 2026,
|
|
201
|
+
country: "NG",
|
|
202
|
+
source: {
|
|
203
|
+
id: "LEE_ET_AL_2021",
|
|
204
|
+
title: "Contribution of global aviation to anthropogenic climate forcing",
|
|
205
|
+
publisher: "Atmospheric Environment",
|
|
206
|
+
year: 2021
|
|
207
|
+
},
|
|
208
|
+
uncertainty_pct: 30,
|
|
209
|
+
confidence: "medium",
|
|
210
|
+
methodology_note: "Radiative forcing multiplier from Lee et al. (2021) applied to domestic aviation CO2 factors to account for contrails and other non-CO2 effects. Use via nefdb.aviation.route(origin, destination, { rf: true }).",
|
|
211
|
+
nefdb_version: "1.0.0"
|
|
212
|
+
}
|
|
213
|
+
];
|
|
214
|
+
|
|
215
|
+
// src/factors/fuel_combustion.ts
|
|
216
|
+
var fuelCombustionFactors = [
|
|
217
|
+
{
|
|
218
|
+
id: "ng.fuel.diesel.stationary",
|
|
219
|
+
category: "fuel_combustion",
|
|
220
|
+
subcategory: "diesel_stationary",
|
|
221
|
+
description: "Stationary combustion emission factor for diesel fuel, applicable to generators, boilers, and other fixed equipment in Nigeria.",
|
|
222
|
+
value: 2.662,
|
|
223
|
+
unit: "kgCO2e_per_litre",
|
|
224
|
+
gas: null,
|
|
225
|
+
gwp_basis: "AR5",
|
|
226
|
+
scope: 1,
|
|
227
|
+
data_year: 2024,
|
|
228
|
+
published_year: 2026,
|
|
229
|
+
country: "NG",
|
|
230
|
+
region: "NG",
|
|
231
|
+
source: {
|
|
232
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
233
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
234
|
+
publisher: "IPCC",
|
|
235
|
+
year: 2006,
|
|
236
|
+
page: "Table 2.2 (gas/diesel oil)"
|
|
237
|
+
},
|
|
238
|
+
additional_sources: [
|
|
239
|
+
{
|
|
240
|
+
id: "DEFRA_2024_FULL",
|
|
241
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
242
|
+
publisher: "UK DESNZ",
|
|
243
|
+
year: 2024
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
id: "EPA_GHG_HUB_2024",
|
|
247
|
+
title: "EPA GHG Emission Factors Hub 2024",
|
|
248
|
+
publisher: "US EPA",
|
|
249
|
+
year: 2024
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
uncertainty_pct: 10,
|
|
253
|
+
confidence: "high",
|
|
254
|
+
methodology_note: "DEFRA 2024 100% mineral diesel factor adopted as primary; IPCC 2006 Table 2.2 gas/diesel oil factor corroborates within 1%. AR5 GWP.",
|
|
255
|
+
nefdb_version: "1.0.0"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
id: "ng.fuel.diesel.stationary.kwh.rated",
|
|
259
|
+
category: "fuel_combustion",
|
|
260
|
+
subcategory: "diesel_stationary_kwh",
|
|
261
|
+
description: "Rated-efficiency diesel emission factor per kilowatt-hour of generated electricity, derived for modern generator performance assumptions.",
|
|
262
|
+
value: 0.813,
|
|
263
|
+
unit: "kgCO2e_per_kWh",
|
|
264
|
+
gas: null,
|
|
265
|
+
gwp_basis: "AR5",
|
|
266
|
+
scope: 1,
|
|
267
|
+
data_year: 2024,
|
|
268
|
+
published_year: 2026,
|
|
269
|
+
country: "NG",
|
|
270
|
+
region: "NG",
|
|
271
|
+
source: {
|
|
272
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
273
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
274
|
+
publisher: "IPCC",
|
|
275
|
+
year: 2006,
|
|
276
|
+
page: "Table 2.2 (gas/diesel oil)"
|
|
277
|
+
},
|
|
278
|
+
additional_sources: [
|
|
279
|
+
{
|
|
280
|
+
id: "DEFRA_2024_FULL",
|
|
281
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
282
|
+
publisher: "UK DESNZ",
|
|
283
|
+
year: 2024
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
id: "SOMORIN_2017",
|
|
287
|
+
title: "Life cycle assessment of self-generated electricity in Nigeria",
|
|
288
|
+
publisher: "Somorin et al., Renewable Energy",
|
|
289
|
+
year: 2017
|
|
290
|
+
}
|
|
291
|
+
],
|
|
292
|
+
uncertainty_pct: 15,
|
|
293
|
+
confidence: "medium",
|
|
294
|
+
methodology_note: "Derived from stationary diesel factor using standard generator conversion: 2.662 / (9.927 kWh thermal per litre x 0.33) = 0.813. 33% rated efficiency is a NEFDB assumption.",
|
|
295
|
+
nefdb_version: "1.0.0"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
id: "ng.fuel.diesel.stationary.kwh.field",
|
|
299
|
+
category: "fuel_combustion",
|
|
300
|
+
subcategory: "diesel_stationary_kwh",
|
|
301
|
+
description: "Field-efficiency diesel emission factor per kilowatt-hour of generated electricity, recommended default for Nigeria's aged generator fleet.",
|
|
302
|
+
value: 0.958,
|
|
303
|
+
unit: "kgCO2e_per_kWh",
|
|
304
|
+
gas: null,
|
|
305
|
+
gwp_basis: "AR5",
|
|
306
|
+
scope: 1,
|
|
307
|
+
data_year: 2024,
|
|
308
|
+
published_year: 2026,
|
|
309
|
+
country: "NG",
|
|
310
|
+
region: "NG",
|
|
311
|
+
source: {
|
|
312
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
313
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
314
|
+
publisher: "IPCC",
|
|
315
|
+
year: 2006,
|
|
316
|
+
page: "Table 2.2 (gas/diesel oil)"
|
|
317
|
+
},
|
|
318
|
+
additional_sources: [
|
|
319
|
+
{
|
|
320
|
+
id: "DEFRA_2024_FULL",
|
|
321
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
322
|
+
publisher: "UK DESNZ",
|
|
323
|
+
year: 2024
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
id: "SOMORIN_2017",
|
|
327
|
+
title: "Life cycle assessment of self-generated electricity in Nigeria",
|
|
328
|
+
publisher: "Somorin et al., Renewable Energy",
|
|
329
|
+
year: 2017
|
|
330
|
+
}
|
|
331
|
+
],
|
|
332
|
+
uncertainty_pct: 18,
|
|
333
|
+
confidence: "medium",
|
|
334
|
+
methodology_note: "2.662 / (9.927 x 0.28) = 0.958. 28% field efficiency is a NEFDB assumption for Nigeria's aged genset fleet, informed by Somorin et al. 2017. This is the recommended default.",
|
|
335
|
+
nefdb_version: "1.0.0"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
id: "ng.fuel.petrol.stationary",
|
|
339
|
+
category: "fuel_combustion",
|
|
340
|
+
subcategory: "petrol_stationary",
|
|
341
|
+
description: "Stationary combustion emission factor for petrol fuel, applicable to stationary engines and generators in Nigeria.",
|
|
342
|
+
value: 2.354,
|
|
343
|
+
unit: "kgCO2e_per_litre",
|
|
344
|
+
gas: null,
|
|
345
|
+
gwp_basis: "AR5",
|
|
346
|
+
scope: 1,
|
|
347
|
+
data_year: 2024,
|
|
348
|
+
published_year: 2026,
|
|
349
|
+
country: "NG",
|
|
350
|
+
region: "NG",
|
|
351
|
+
source: {
|
|
352
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
353
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
354
|
+
publisher: "IPCC",
|
|
355
|
+
year: 2006,
|
|
356
|
+
page: "Table 2.2 (motor gasoline)"
|
|
357
|
+
},
|
|
358
|
+
additional_sources: [
|
|
359
|
+
{
|
|
360
|
+
id: "DEFRA_2024_FULL",
|
|
361
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
362
|
+
publisher: "UK DESNZ",
|
|
363
|
+
year: 2024
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
id: "EPA_GHG_HUB_2024",
|
|
367
|
+
title: "EPA GHG Emission Factors Hub 2024",
|
|
368
|
+
publisher: "US EPA",
|
|
369
|
+
year: 2024
|
|
370
|
+
}
|
|
371
|
+
],
|
|
372
|
+
uncertainty_pct: 10,
|
|
373
|
+
confidence: "high",
|
|
374
|
+
methodology_note: "DEFRA 2024 100% mineral petrol; IPCC 2006 Table 2.2 motor gasoline corroborates.",
|
|
375
|
+
nefdb_version: "1.0.0"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
id: "ng.fuel.lpg.stationary",
|
|
379
|
+
category: "fuel_combustion",
|
|
380
|
+
subcategory: "lpg_stationary",
|
|
381
|
+
description: "Stationary combustion emission factor for liquefied petroleum gas (LPG) in Nigeria.",
|
|
382
|
+
value: 1.557,
|
|
383
|
+
unit: "kgCO2e_per_litre",
|
|
384
|
+
gas: null,
|
|
385
|
+
gwp_basis: "AR5",
|
|
386
|
+
scope: 1,
|
|
387
|
+
data_year: 2024,
|
|
388
|
+
published_year: 2026,
|
|
389
|
+
country: "NG",
|
|
390
|
+
region: "NG",
|
|
391
|
+
source: {
|
|
392
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
393
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
394
|
+
publisher: "IPCC",
|
|
395
|
+
year: 2006,
|
|
396
|
+
page: "Table 2.2 (liquefied petroleum gas)"
|
|
397
|
+
},
|
|
398
|
+
additional_sources: [
|
|
399
|
+
{
|
|
400
|
+
id: "DEFRA_2024_FULL",
|
|
401
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
402
|
+
publisher: "UK DESNZ",
|
|
403
|
+
year: 2024
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
id: "EPA_GHG_HUB_2024",
|
|
407
|
+
title: "EPA GHG Emission Factors Hub 2024",
|
|
408
|
+
publisher: "US EPA",
|
|
409
|
+
year: 2024
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
uncertainty_pct: 10,
|
|
413
|
+
confidence: "high",
|
|
414
|
+
methodology_note: "DEFRA 2024 LPG factor.",
|
|
415
|
+
nefdb_version: "1.0.0"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
id: "ng.fuel.cng.stationary",
|
|
419
|
+
category: "fuel_combustion",
|
|
420
|
+
subcategory: "cng_stationary",
|
|
421
|
+
description: "Stationary combustion emission factor for compressed natural gas (CNG), expressed per kilogram of fuel in Nigeria.",
|
|
422
|
+
value: 2.568,
|
|
423
|
+
unit: "kgCO2e_per_kg",
|
|
424
|
+
gas: null,
|
|
425
|
+
gwp_basis: "AR5",
|
|
426
|
+
scope: 1,
|
|
427
|
+
data_year: 2024,
|
|
428
|
+
published_year: 2026,
|
|
429
|
+
country: "NG",
|
|
430
|
+
region: "NG",
|
|
431
|
+
source: {
|
|
432
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
433
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
434
|
+
publisher: "IPCC",
|
|
435
|
+
year: 2006,
|
|
436
|
+
page: "Table 2.2 (natural gas)"
|
|
437
|
+
},
|
|
438
|
+
additional_sources: [
|
|
439
|
+
{
|
|
440
|
+
id: "DEFRA_2024_FULL",
|
|
441
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
442
|
+
publisher: "UK DESNZ",
|
|
443
|
+
year: 2024
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
uncertainty_pct: 15,
|
|
447
|
+
confidence: "medium",
|
|
448
|
+
methodology_note: "DEFRA 2024 CNG per-kg factor. Per-kg value is pressure-independent; per-litre values require a density assumption.",
|
|
449
|
+
nefdb_version: "1.0.0"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
id: "ng.fuel.naturalgas.stationary",
|
|
453
|
+
category: "fuel_combustion",
|
|
454
|
+
subcategory: "natural_gas_stationary",
|
|
455
|
+
description: "Stationary combustion emission factor for natural gas, expressed per cubic metre of grid gas in Nigeria.",
|
|
456
|
+
value: 2.045,
|
|
457
|
+
unit: "kgCO2e_per_m3",
|
|
458
|
+
gas: null,
|
|
459
|
+
gwp_basis: "AR5",
|
|
460
|
+
scope: 1,
|
|
461
|
+
data_year: 2024,
|
|
462
|
+
published_year: 2026,
|
|
463
|
+
country: "NG",
|
|
464
|
+
region: "NG",
|
|
465
|
+
source: {
|
|
466
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
467
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
468
|
+
publisher: "IPCC",
|
|
469
|
+
year: 2006,
|
|
470
|
+
page: "Table 2.2 (natural gas)"
|
|
471
|
+
},
|
|
472
|
+
additional_sources: [
|
|
473
|
+
{
|
|
474
|
+
id: "DEFRA_2024_FULL",
|
|
475
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
476
|
+
publisher: "UK DESNZ",
|
|
477
|
+
year: 2024
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
id: "NNPC_STATS_2023",
|
|
481
|
+
title: "NNPC Annual Statistics Bulletin S3",
|
|
482
|
+
publisher: "NNPC",
|
|
483
|
+
year: 2023
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
uncertainty_pct: 10,
|
|
487
|
+
confidence: "high",
|
|
488
|
+
methodology_note: "DEFRA 2024 natural gas per-m3 factor. Assumes grid-gas density; Nigeria-specific gas spec may differ.",
|
|
489
|
+
nefdb_version: "1.0.0"
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
id: "ng.fuel.hfo.stationary",
|
|
493
|
+
category: "fuel_combustion",
|
|
494
|
+
subcategory: "hfo_stationary",
|
|
495
|
+
description: "Stationary combustion emission factor for heavy fuel oil (HFO) in Nigeria.",
|
|
496
|
+
value: 3.175,
|
|
497
|
+
unit: "kgCO2e_per_litre",
|
|
498
|
+
gas: null,
|
|
499
|
+
gwp_basis: "AR5",
|
|
500
|
+
scope: 1,
|
|
501
|
+
data_year: 2024,
|
|
502
|
+
published_year: 2026,
|
|
503
|
+
country: "NG",
|
|
504
|
+
region: "NG",
|
|
505
|
+
source: {
|
|
506
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
507
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
508
|
+
publisher: "IPCC",
|
|
509
|
+
year: 2006,
|
|
510
|
+
page: "Table 2.2 (residual fuel oil)"
|
|
511
|
+
},
|
|
512
|
+
additional_sources: [
|
|
513
|
+
{
|
|
514
|
+
id: "DEFRA_2024_FULL",
|
|
515
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
516
|
+
publisher: "UK DESNZ",
|
|
517
|
+
year: 2024
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
id: "EPA_GHG_HUB_2024",
|
|
521
|
+
title: "EPA GHG Emission Factors Hub 2024",
|
|
522
|
+
publisher: "US EPA",
|
|
523
|
+
year: 2024
|
|
524
|
+
}
|
|
525
|
+
],
|
|
526
|
+
uncertainty_pct: 15,
|
|
527
|
+
confidence: "medium",
|
|
528
|
+
methodology_note: "DEFRA 2024 fuel oil; IPCC 2006 Table 2.2 residual fuel oil corroborates.",
|
|
529
|
+
nefdb_version: "1.0.0"
|
|
530
|
+
}
|
|
531
|
+
];
|
|
532
|
+
|
|
533
|
+
// src/factors/grid_electricity.ts
|
|
534
|
+
var gridElectricityFactors = [
|
|
535
|
+
{
|
|
536
|
+
id: "ng.grid.national.om.2021",
|
|
537
|
+
category: "grid_electricity",
|
|
538
|
+
subcategory: "national_grid_operating_margin",
|
|
539
|
+
description: "West African Power Pool (WAPP) grid operating margin CO2 emission factor, applicable to Nigeria as a WAPP member country",
|
|
540
|
+
value: 0.578,
|
|
541
|
+
unit: "kgCO2e_per_kWh",
|
|
542
|
+
gas: { CO2: 0.578, CH4: 0, N2O: 0 },
|
|
543
|
+
gwp_basis: "AR6",
|
|
544
|
+
scope: 2,
|
|
545
|
+
data_year: 2019,
|
|
546
|
+
published_year: 2021,
|
|
547
|
+
country: "NG",
|
|
548
|
+
region: "WAPP",
|
|
549
|
+
source: {
|
|
550
|
+
id: "WAPP_ASB0034_2021",
|
|
551
|
+
title: "Standardized Baseline for WAPP including Nigeria (ASB0034-2021)",
|
|
552
|
+
publisher: "UNFCCC / WAPP",
|
|
553
|
+
year: 2021,
|
|
554
|
+
page: "Section 7, Table 1"
|
|
555
|
+
},
|
|
556
|
+
additional_sources: [
|
|
557
|
+
{
|
|
558
|
+
id: "WAPP_ASB0034_ASSESSMENT",
|
|
559
|
+
title: "Assessment Report ASU006 ASB0034 WAPP",
|
|
560
|
+
publisher: "UNFCCC / WAPP",
|
|
561
|
+
year: 2021,
|
|
562
|
+
page: "Section B, Step 4"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
id: "UNFCCC_CDM_TOOL07",
|
|
566
|
+
title: "UNFCCC CDM Methodological Tool 07 v7.0",
|
|
567
|
+
publisher: "UNFCCC",
|
|
568
|
+
year: 2021,
|
|
569
|
+
page: "Section 6.4.1, Simple OM"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
uncertainty_pct: 10,
|
|
573
|
+
confidence: "high",
|
|
574
|
+
methodology_note: "Operating margin extracted directly from ASB0034-2021 Table 1 as 0.578 tCO2/MWh. Unit conversion to kgCO2e/kWh is 1:1 because 1 tCO2/MWh equals 1 kgCO2/kWh. The OM is a 2017-2019 generation-weighted average using the simple operating margin method; low-cost/must-run generation was below 50% of total generation.",
|
|
575
|
+
nefdb_version: "1.0.0"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
id: "ng.grid.national.bm.2021",
|
|
579
|
+
category: "grid_electricity",
|
|
580
|
+
subcategory: "national_grid_build_margin",
|
|
581
|
+
description: "West African Power Pool (WAPP) grid build margin CO2 emission factor, applicable to Nigeria as a WAPP member country",
|
|
582
|
+
value: 0.556,
|
|
583
|
+
unit: "kgCO2e_per_kWh",
|
|
584
|
+
gas: { CO2: 0.556, CH4: 0, N2O: 0 },
|
|
585
|
+
gwp_basis: "AR6",
|
|
586
|
+
scope: 2,
|
|
587
|
+
data_year: 2019,
|
|
588
|
+
published_year: 2021,
|
|
589
|
+
country: "NG",
|
|
590
|
+
region: "WAPP",
|
|
591
|
+
source: {
|
|
592
|
+
id: "WAPP_ASB0034_2021",
|
|
593
|
+
title: "Standardized Baseline for WAPP including Nigeria (ASB0034-2021)",
|
|
594
|
+
publisher: "UNFCCC / WAPP",
|
|
595
|
+
year: 2021,
|
|
596
|
+
page: "Section 7, Table 1"
|
|
597
|
+
},
|
|
598
|
+
additional_sources: [
|
|
599
|
+
{
|
|
600
|
+
id: "WAPP_ASB0034_ASSESSMENT",
|
|
601
|
+
title: "Assessment Report ASU006 ASB0034 WAPP",
|
|
602
|
+
publisher: "UNFCCC / WAPP",
|
|
603
|
+
year: 2021,
|
|
604
|
+
page: "Section B, Step 5"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
id: "UNFCCC_CDM_TOOL07",
|
|
608
|
+
title: "UNFCCC CDM Methodological Tool 07 v7.0",
|
|
609
|
+
publisher: "UNFCCC",
|
|
610
|
+
year: 2021,
|
|
611
|
+
page: "Section 6.5, Step 5 / Equation 15"
|
|
612
|
+
}
|
|
613
|
+
],
|
|
614
|
+
uncertainty_pct: 10,
|
|
615
|
+
confidence: "high",
|
|
616
|
+
methodology_note: "Build margin extracted directly from ASB0034-2021 Table 1 as 0.556 tCO2/MWh. Unit conversion to kgCO2e/kWh is 1:1. The BM represents the most-recent dispatchable capacity additions (2015-2019) comprising the 20% generation sample set, using 2019 generation data.",
|
|
617
|
+
nefdb_version: "1.0.0"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
id: "ng.grid.national.cm.2021",
|
|
621
|
+
category: "grid_electricity",
|
|
622
|
+
subcategory: "national_grid_combined_margin",
|
|
623
|
+
description: "West African Power Pool (WAPP) grid combined margin CO2 emission factor for wind and solar power generation project activities, first crediting period",
|
|
624
|
+
value: 0.573,
|
|
625
|
+
unit: "kgCO2e_per_kWh",
|
|
626
|
+
gas: { CO2: 0.573, CH4: 0, N2O: 0 },
|
|
627
|
+
gwp_basis: "AR6",
|
|
628
|
+
scope: 2,
|
|
629
|
+
data_year: 2019,
|
|
630
|
+
published_year: 2021,
|
|
631
|
+
country: "NG",
|
|
632
|
+
region: "WAPP",
|
|
633
|
+
source: {
|
|
634
|
+
id: "WAPP_ASB0034_2021",
|
|
635
|
+
title: "Standardized Baseline for WAPP including Nigeria (ASB0034-2021)",
|
|
636
|
+
publisher: "UNFCCC / WAPP",
|
|
637
|
+
year: 2021,
|
|
638
|
+
page: "Section 7, Table 1 (wind and solar row)"
|
|
639
|
+
},
|
|
640
|
+
additional_sources: [
|
|
641
|
+
{
|
|
642
|
+
id: "WAPP_ASB0034_ASSESSMENT",
|
|
643
|
+
title: "Assessment Report ASU006 ASB0034 WAPP",
|
|
644
|
+
publisher: "UNFCCC / WAPP",
|
|
645
|
+
year: 2021,
|
|
646
|
+
page: "Section B, Step 6"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
id: "UNFCCC_CDM_TOOL07",
|
|
650
|
+
title: "UNFCCC CDM Methodological Tool 07 v7.0",
|
|
651
|
+
publisher: "UNFCCC",
|
|
652
|
+
year: 2021,
|
|
653
|
+
page: "Section 6.6.1, Equation 16"
|
|
654
|
+
}
|
|
655
|
+
],
|
|
656
|
+
uncertainty_pct: 10,
|
|
657
|
+
confidence: "high",
|
|
658
|
+
methodology_note: "Combined margin extracted from ASB0034-2021 Table 1 as 0.573 tCO2/MWh for wind/solar project activities. Cross-check with TOOL07: CM = OM x 0.75 + BM x 0.25 = 0.578 x 0.75 + 0.556 x 0.25 = 0.5725, rounded to 0.573 tCO2/MWh. The general/other-projects first-crediting-period value is 0.567 tCO2/MWh (50/50 weights). Unit conversion to kgCO2e/kWh is 1:1.",
|
|
659
|
+
nefdb_version: "1.0.0"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
id: "ng.grid.national.location.2024",
|
|
663
|
+
category: "grid_electricity",
|
|
664
|
+
subcategory: "national_grid",
|
|
665
|
+
description: "Nigeria national grid location-based Scope 2 emission factor for 2024, derived from the NEFDB reconciled generation mix and IPCC 2006 default stationary-combustion emission factors.",
|
|
666
|
+
value: 0.138611,
|
|
667
|
+
unit: "kgCO2e_per_kWh",
|
|
668
|
+
gas: { CO2: 0.138477, CH4: 0.000069, N2O: 0.000065 },
|
|
669
|
+
gwp_basis: "AR5",
|
|
670
|
+
scope: 2,
|
|
671
|
+
data_year: 2024,
|
|
672
|
+
published_year: 2026,
|
|
673
|
+
country: "NG",
|
|
674
|
+
source: {
|
|
675
|
+
id: "NEFDB_RECONCILED_GENERATION_2024",
|
|
676
|
+
title: "Nigeria Generation Mix Reconciled 2024",
|
|
677
|
+
publisher: "NEFDB",
|
|
678
|
+
year: 2024,
|
|
679
|
+
page: "datasets/grid_electricity/derived/nigeria_generation_mix_reconciled.csv"
|
|
680
|
+
},
|
|
681
|
+
additional_sources: [
|
|
682
|
+
{
|
|
683
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
684
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
685
|
+
publisher: "IPCC",
|
|
686
|
+
year: 2006,
|
|
687
|
+
page: "Table 2.2 (energy industries); Natural Gas CO2 56,100, CH4 1, N2O 0.1 kg/TJ; Residual Fuel Oil CO2 77,400, CH4 3, N2O 0.6 kg/TJ"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
id: "GUARDIAN_NERC_2024",
|
|
691
|
+
title: "Guardian Nigeria summary of NERC 2024 annual statistics",
|
|
692
|
+
publisher: "Guardian Nigeria / NERC",
|
|
693
|
+
year: 2024
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
id: "EMBER_OWID_2024",
|
|
697
|
+
title: "Ember Yearly Electricity Data / Our World in Data energy dataset",
|
|
698
|
+
publisher: "Ember / OWID",
|
|
699
|
+
year: 2024
|
|
700
|
+
}
|
|
701
|
+
],
|
|
702
|
+
uncertainty_pct: 15,
|
|
703
|
+
confidence: "medium",
|
|
704
|
+
methodology_note: "Calculated as a generation-weighted average: EF = (gas_generation_gwh * gas_ef_kgco2e_per_kwh + oil_generation_gwh * oil_ef_kgco2e_per_kwh) / total_generation_gwh. Gas EF = 0.202156 kgCO2e/kWh from IPCC Table 2.2 natural-gas defaults (CO2 56,100 + CH4 1*28 + N2O 0.1*265 kgCO2e/TJ, AR5 GWP) at 3.6 MJ/kWh. Oil EF = 0.279515 kgCO2e/kWh from IPCC Table 2.2 residual fuel oil defaults (CO2 77,400 + CH4 3*28 + N2O 0.6*265 kgCO2e/TJ). Hydro, solar, wind, biomass and other generation are treated as zero-emission. 2024 oil generation is zero, so the factor is driven entirely by gas-fired generation.",
|
|
705
|
+
nefdb_version: "1.0.0"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
id: "ng.grid.disco.aedc.2024",
|
|
709
|
+
category: "grid_electricity",
|
|
710
|
+
subcategory: "disco_location_based",
|
|
711
|
+
description: "DisCo-level location-based grid emission factor for AEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
712
|
+
value: 0.118396,
|
|
713
|
+
unit: "kgCO2e_per_kWh",
|
|
714
|
+
gas: { CO2: 0.1182809, CH4: 0.00005908, N2O: 0.00005565 },
|
|
715
|
+
gwp_basis: "AR5",
|
|
716
|
+
scope: 2,
|
|
717
|
+
data_year: 2024,
|
|
718
|
+
published_year: 2026,
|
|
719
|
+
country: "NG",
|
|
720
|
+
region: "North-Central (Abuja/FCT, Niger, Nasarawa, Kogi)",
|
|
721
|
+
disco: "AEDC",
|
|
722
|
+
source: {
|
|
723
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
724
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
725
|
+
publisher: "NBS",
|
|
726
|
+
year: 2024
|
|
727
|
+
},
|
|
728
|
+
additional_sources: [
|
|
729
|
+
{
|
|
730
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
731
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
732
|
+
publisher: "NERC / NEFDB",
|
|
733
|
+
year: 2024
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
737
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
738
|
+
publisher: "IPCC",
|
|
739
|
+
year: 2006,
|
|
740
|
+
page: "Table 2.2"
|
|
741
|
+
}
|
|
742
|
+
],
|
|
743
|
+
uncertainty_pct: 20,
|
|
744
|
+
confidence: "medium",
|
|
745
|
+
methodology_note: "Derived by applying a 58.57% gas / 40.92% hydro / 0.51% other regional generation mix to AEDC Q2 2024 billed energy (301.000 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
746
|
+
nefdb_version: "1.0.0"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
id: "ng.grid.disco.bedc.2024",
|
|
750
|
+
category: "grid_electricity",
|
|
751
|
+
subcategory: "disco_location_based",
|
|
752
|
+
description: "DisCo-level location-based grid emission factor for BEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
753
|
+
value: 0.142655,
|
|
754
|
+
unit: "kgCO2e_per_kWh",
|
|
755
|
+
gas: { CO2: 0.1425161, CH4: 0.00007112, N2O: 0.00006625 },
|
|
756
|
+
gwp_basis: "AR5",
|
|
757
|
+
scope: 2,
|
|
758
|
+
data_year: 2024,
|
|
759
|
+
published_year: 2026,
|
|
760
|
+
country: "NG",
|
|
761
|
+
region: "South-South/East (Edo, Delta, Ondo, Ekiti)",
|
|
762
|
+
disco: "BEDC",
|
|
763
|
+
source: {
|
|
764
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
765
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
766
|
+
publisher: "NBS",
|
|
767
|
+
year: 2024
|
|
768
|
+
},
|
|
769
|
+
additional_sources: [
|
|
770
|
+
{
|
|
771
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
772
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
773
|
+
publisher: "NERC / NEFDB",
|
|
774
|
+
year: 2024
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
778
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
779
|
+
publisher: "IPCC",
|
|
780
|
+
year: 2006,
|
|
781
|
+
page: "Table 2.2"
|
|
782
|
+
}
|
|
783
|
+
],
|
|
784
|
+
uncertainty_pct: 20,
|
|
785
|
+
confidence: "medium",
|
|
786
|
+
methodology_note: "Derived by applying a 70.57% gas / 28.92% hydro / 0.51% other regional generation mix to BEDC Q2 2024 billed energy (179.794 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
787
|
+
nefdb_version: "1.0.0"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
id: "ng.grid.disco.eedc.2024",
|
|
791
|
+
category: "grid_electricity",
|
|
792
|
+
subcategory: "disco_location_based",
|
|
793
|
+
description: "DisCo-level location-based grid emission factor for EEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
794
|
+
value: 0.16287,
|
|
795
|
+
unit: "kgCO2e_per_kWh",
|
|
796
|
+
gas: { CO2: 0.1627121, CH4: 0.0000812, N2O: 0.00007685 },
|
|
797
|
+
gwp_basis: "AR5",
|
|
798
|
+
scope: 2,
|
|
799
|
+
data_year: 2024,
|
|
800
|
+
published_year: 2026,
|
|
801
|
+
country: "NG",
|
|
802
|
+
region: "South-East (Enugu, Anambra, Abia, Imo, Ebonyi)",
|
|
803
|
+
disco: "EEDC",
|
|
804
|
+
source: {
|
|
805
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
806
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
807
|
+
publisher: "NBS",
|
|
808
|
+
year: 2024
|
|
809
|
+
},
|
|
810
|
+
additional_sources: [
|
|
811
|
+
{
|
|
812
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
813
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
814
|
+
publisher: "NERC / NEFDB",
|
|
815
|
+
year: 2024
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
819
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
820
|
+
publisher: "IPCC",
|
|
821
|
+
year: 2006,
|
|
822
|
+
page: "Table 2.2"
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
uncertainty_pct: 20,
|
|
826
|
+
confidence: "medium",
|
|
827
|
+
methodology_note: "Derived by applying a 80.57% gas / 18.92% hydro / 0.51% other regional generation mix to EEDC Q2 2024 billed energy (159.799 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
828
|
+
nefdb_version: "1.0.0"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
id: "ng.grid.disco.ekedc.2024",
|
|
832
|
+
category: "grid_electricity",
|
|
833
|
+
subcategory: "disco_location_based",
|
|
834
|
+
description: "DisCo-level location-based grid emission factor for EKEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
835
|
+
value: 0.16287,
|
|
836
|
+
unit: "kgCO2e_per_kWh",
|
|
837
|
+
gas: { CO2: 0.1627121, CH4: 0.0000812, N2O: 0.00007685 },
|
|
838
|
+
gwp_basis: "AR5",
|
|
839
|
+
scope: 2,
|
|
840
|
+
data_year: 2024,
|
|
841
|
+
published_year: 2026,
|
|
842
|
+
country: "NG",
|
|
843
|
+
region: "South (Lagos)",
|
|
844
|
+
disco: "EKEDC",
|
|
845
|
+
source: {
|
|
846
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
847
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
848
|
+
publisher: "NBS",
|
|
849
|
+
year: 2024
|
|
850
|
+
},
|
|
851
|
+
additional_sources: [
|
|
852
|
+
{
|
|
853
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
854
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
855
|
+
publisher: "NERC / NEFDB",
|
|
856
|
+
year: 2024
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
860
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
861
|
+
publisher: "IPCC",
|
|
862
|
+
year: 2006,
|
|
863
|
+
page: "Table 2.2"
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
uncertainty_pct: 20,
|
|
867
|
+
confidence: "medium",
|
|
868
|
+
methodology_note: "Derived by applying a 80.57% gas / 18.92% hydro / 0.51% other regional generation mix to EKEDC Q2 2024 billed energy (317.000 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
869
|
+
nefdb_version: "1.0.0"
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
id: "ng.grid.disco.ibedc.2024",
|
|
873
|
+
category: "grid_electricity",
|
|
874
|
+
subcategory: "disco_location_based",
|
|
875
|
+
description: "DisCo-level location-based grid emission factor for IBEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
876
|
+
value: 0.142655,
|
|
877
|
+
unit: "kgCO2e_per_kWh",
|
|
878
|
+
gas: { CO2: 0.1425161, CH4: 0.00007112, N2O: 0.00006625 },
|
|
879
|
+
gwp_basis: "AR5",
|
|
880
|
+
scope: 2,
|
|
881
|
+
data_year: 2024,
|
|
882
|
+
published_year: 2026,
|
|
883
|
+
country: "NG",
|
|
884
|
+
region: "South-West (Oyo, Ogun, Osun, Kwara)",
|
|
885
|
+
disco: "IBEDC",
|
|
886
|
+
source: {
|
|
887
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
888
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
889
|
+
publisher: "NBS",
|
|
890
|
+
year: 2024
|
|
891
|
+
},
|
|
892
|
+
additional_sources: [
|
|
893
|
+
{
|
|
894
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
895
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
896
|
+
publisher: "NERC / NEFDB",
|
|
897
|
+
year: 2024
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
901
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
902
|
+
publisher: "IPCC",
|
|
903
|
+
year: 2006,
|
|
904
|
+
page: "Table 2.2"
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
uncertainty_pct: 20,
|
|
908
|
+
confidence: "medium",
|
|
909
|
+
methodology_note: "Derived by applying a 70.57% gas / 28.92% hydro / 0.51% other regional generation mix to IBEDC Q2 2024 billed energy (269.530 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
910
|
+
nefdb_version: "1.0.0"
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
id: "ng.grid.disco.iedc.2024",
|
|
914
|
+
category: "grid_electricity",
|
|
915
|
+
subcategory: "disco_location_based",
|
|
916
|
+
description: "DisCo-level location-based grid emission factor for IEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
917
|
+
value: 0.142655,
|
|
918
|
+
unit: "kgCO2e_per_kWh",
|
|
919
|
+
gas: { CO2: 0.1425161, CH4: 0.00007112, N2O: 0.00006625 },
|
|
920
|
+
gwp_basis: "AR5",
|
|
921
|
+
scope: 2,
|
|
922
|
+
data_year: 2024,
|
|
923
|
+
published_year: 2026,
|
|
924
|
+
country: "NG",
|
|
925
|
+
region: "South-West (Lagos)",
|
|
926
|
+
disco: "IEDC",
|
|
927
|
+
source: {
|
|
928
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
929
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
930
|
+
publisher: "NBS",
|
|
931
|
+
year: 2024
|
|
932
|
+
},
|
|
933
|
+
additional_sources: [
|
|
934
|
+
{
|
|
935
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
936
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
937
|
+
publisher: "NERC / NEFDB",
|
|
938
|
+
year: 2024
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
942
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
943
|
+
publisher: "IPCC",
|
|
944
|
+
year: 2006,
|
|
945
|
+
page: "Table 2.2"
|
|
946
|
+
}
|
|
947
|
+
],
|
|
948
|
+
uncertainty_pct: 20,
|
|
949
|
+
confidence: "medium",
|
|
950
|
+
methodology_note: "Derived by applying a 70.57% gas / 28.92% hydro / 0.51% other regional generation mix to IEDC Q2 2024 billed energy (360.322 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
951
|
+
nefdb_version: "1.0.0"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
id: "ng.grid.disco.jedc.2024",
|
|
955
|
+
category: "grid_electricity",
|
|
956
|
+
subcategory: "disco_location_based",
|
|
957
|
+
description: "DisCo-level location-based grid emission factor for JEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
958
|
+
value: 0.118396,
|
|
959
|
+
unit: "kgCO2e_per_kWh",
|
|
960
|
+
gas: { CO2: 0.1182809, CH4: 0.00005908, N2O: 0.00005565 },
|
|
961
|
+
gwp_basis: "AR5",
|
|
962
|
+
scope: 2,
|
|
963
|
+
data_year: 2024,
|
|
964
|
+
published_year: 2026,
|
|
965
|
+
country: "NG",
|
|
966
|
+
region: "North (Plateau, Bauchi, Benue, Gombe)",
|
|
967
|
+
disco: "JEDC",
|
|
968
|
+
source: {
|
|
969
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
970
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
971
|
+
publisher: "NBS",
|
|
972
|
+
year: 2024
|
|
973
|
+
},
|
|
974
|
+
additional_sources: [
|
|
975
|
+
{
|
|
976
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
977
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
978
|
+
publisher: "NERC / NEFDB",
|
|
979
|
+
year: 2024
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
983
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
984
|
+
publisher: "IPCC",
|
|
985
|
+
year: 2006,
|
|
986
|
+
page: "Table 2.2"
|
|
987
|
+
}
|
|
988
|
+
],
|
|
989
|
+
uncertainty_pct: 20,
|
|
990
|
+
confidence: "medium",
|
|
991
|
+
methodology_note: "Derived by applying a 58.57% gas / 40.92% hydro / 0.51% other regional generation mix to JEDC Q2 2024 billed energy (105.606 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
992
|
+
nefdb_version: "1.0.0"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
id: "ng.grid.disco.kdedc.2024",
|
|
996
|
+
category: "grid_electricity",
|
|
997
|
+
subcategory: "disco_location_based",
|
|
998
|
+
description: "DisCo-level location-based grid emission factor for KDEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
999
|
+
value: 0.118396,
|
|
1000
|
+
unit: "kgCO2e_per_kWh",
|
|
1001
|
+
gas: { CO2: 0.1182809, CH4: 0.00005908, N2O: 0.00005565 },
|
|
1002
|
+
gwp_basis: "AR5",
|
|
1003
|
+
scope: 2,
|
|
1004
|
+
data_year: 2024,
|
|
1005
|
+
published_year: 2026,
|
|
1006
|
+
country: "NG",
|
|
1007
|
+
region: "North-West (Kaduna, Kebbi, Sokoto, Zamfara, Katsina)",
|
|
1008
|
+
disco: "KDEDC",
|
|
1009
|
+
source: {
|
|
1010
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
1011
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
1012
|
+
publisher: "NBS",
|
|
1013
|
+
year: 2024
|
|
1014
|
+
},
|
|
1015
|
+
additional_sources: [
|
|
1016
|
+
{
|
|
1017
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
1018
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
1019
|
+
publisher: "NERC / NEFDB",
|
|
1020
|
+
year: 2024
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
1024
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
1025
|
+
publisher: "IPCC",
|
|
1026
|
+
year: 2006,
|
|
1027
|
+
page: "Table 2.2"
|
|
1028
|
+
}
|
|
1029
|
+
],
|
|
1030
|
+
uncertainty_pct: 20,
|
|
1031
|
+
confidence: "medium",
|
|
1032
|
+
methodology_note: "Derived by applying a 58.57% gas / 40.92% hydro / 0.51% other regional generation mix to KDEDC Q2 2024 billed energy (83.220 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
1033
|
+
nefdb_version: "1.0.0"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
id: "ng.grid.disco.kedc.2024",
|
|
1037
|
+
category: "grid_electricity",
|
|
1038
|
+
subcategory: "disco_location_based",
|
|
1039
|
+
description: "DisCo-level location-based grid emission factor for KEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
1040
|
+
value: 0.118396,
|
|
1041
|
+
unit: "kgCO2e_per_kWh",
|
|
1042
|
+
gas: { CO2: 0.1182809, CH4: 0.00005908, N2O: 0.00005565 },
|
|
1043
|
+
gwp_basis: "AR5",
|
|
1044
|
+
scope: 2,
|
|
1045
|
+
data_year: 2024,
|
|
1046
|
+
published_year: 2026,
|
|
1047
|
+
country: "NG",
|
|
1048
|
+
region: "North (Kano, Jigawa, Katsina)",
|
|
1049
|
+
disco: "KEDC",
|
|
1050
|
+
source: {
|
|
1051
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
1052
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
1053
|
+
publisher: "NBS",
|
|
1054
|
+
year: 2024
|
|
1055
|
+
},
|
|
1056
|
+
additional_sources: [
|
|
1057
|
+
{
|
|
1058
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
1059
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
1060
|
+
publisher: "NERC / NEFDB",
|
|
1061
|
+
year: 2024
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
1065
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
1066
|
+
publisher: "IPCC",
|
|
1067
|
+
year: 2006,
|
|
1068
|
+
page: "Table 2.2"
|
|
1069
|
+
}
|
|
1070
|
+
],
|
|
1071
|
+
uncertainty_pct: 20,
|
|
1072
|
+
confidence: "medium",
|
|
1073
|
+
methodology_note: "Derived by applying a 58.57% gas / 40.92% hydro / 0.51% other regional generation mix to KEDC Q2 2024 billed energy (124.576 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
1074
|
+
nefdb_version: "1.0.0"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
id: "ng.grid.disco.pedc.2024",
|
|
1078
|
+
category: "grid_electricity",
|
|
1079
|
+
subcategory: "disco_location_based",
|
|
1080
|
+
description: "DisCo-level location-based grid emission factor for PEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
1081
|
+
value: 0.16287,
|
|
1082
|
+
unit: "kgCO2e_per_kWh",
|
|
1083
|
+
gas: { CO2: 0.1627121, CH4: 0.0000812, N2O: 0.00007685 },
|
|
1084
|
+
gwp_basis: "AR5",
|
|
1085
|
+
scope: 2,
|
|
1086
|
+
data_year: 2024,
|
|
1087
|
+
published_year: 2026,
|
|
1088
|
+
country: "NG",
|
|
1089
|
+
region: "South-South (Rivers, Cross River, Akwa Ibom)",
|
|
1090
|
+
disco: "PEDC",
|
|
1091
|
+
source: {
|
|
1092
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
1093
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
1094
|
+
publisher: "NBS",
|
|
1095
|
+
year: 2024
|
|
1096
|
+
},
|
|
1097
|
+
additional_sources: [
|
|
1098
|
+
{
|
|
1099
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
1100
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
1101
|
+
publisher: "NERC / NEFDB",
|
|
1102
|
+
year: 2024
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
1106
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
1107
|
+
publisher: "IPCC",
|
|
1108
|
+
year: 2006,
|
|
1109
|
+
page: "Table 2.2"
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
uncertainty_pct: 20,
|
|
1113
|
+
confidence: "medium",
|
|
1114
|
+
methodology_note: "Derived by applying a 80.57% gas / 18.92% hydro / 0.51% other regional generation mix to PEDC Q2 2024 billed energy (149.914 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
1115
|
+
nefdb_version: "1.0.0"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
id: "ng.grid.disco.yedc.2024",
|
|
1119
|
+
category: "grid_electricity",
|
|
1120
|
+
subcategory: "disco_location_based",
|
|
1121
|
+
description: "DisCo-level location-based grid emission factor for YEDC based on Q2 2024 billed energy and a 2024 national generation mix with regional adjustment.",
|
|
1122
|
+
value: 0.118396,
|
|
1123
|
+
unit: "kgCO2e_per_kWh",
|
|
1124
|
+
gas: { CO2: 0.1182809, CH4: 0.00005908, N2O: 0.00005565 },
|
|
1125
|
+
gwp_basis: "AR5",
|
|
1126
|
+
scope: 2,
|
|
1127
|
+
data_year: 2024,
|
|
1128
|
+
published_year: 2026,
|
|
1129
|
+
country: "NG",
|
|
1130
|
+
region: "North-East (Adamawa, Taraba, Yobe, Borno)",
|
|
1131
|
+
disco: "YEDC",
|
|
1132
|
+
source: {
|
|
1133
|
+
id: "NBS_ELECTRICITY_DATA_2015_Q2_2024",
|
|
1134
|
+
title: "Nigeria Electricity Data 2015–Q2 2024",
|
|
1135
|
+
publisher: "NBS",
|
|
1136
|
+
year: 2024
|
|
1137
|
+
},
|
|
1138
|
+
additional_sources: [
|
|
1139
|
+
{
|
|
1140
|
+
id: "NIGERIA_GENERATION_MIX_2024",
|
|
1141
|
+
title: "Nigeria Generation Mix 2024 (NERC / Guardian Nigeria / NEFDB reconciled)",
|
|
1142
|
+
publisher: "NERC / NEFDB",
|
|
1143
|
+
year: 2024
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
id: "IPCC_2006_VOL2_CH2",
|
|
1147
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 2 Stationary Combustion",
|
|
1148
|
+
publisher: "IPCC",
|
|
1149
|
+
year: 2006,
|
|
1150
|
+
page: "Table 2.2"
|
|
1151
|
+
}
|
|
1152
|
+
],
|
|
1153
|
+
uncertainty_pct: 20,
|
|
1154
|
+
confidence: "medium",
|
|
1155
|
+
methodology_note: "Derived by applying a 58.57% gas / 40.92% hydro / 0.51% other regional generation mix to YEDC Q2 2024 billed energy (93.852 GWh) and IPCC 2006 stationary-combustion EFs for natural gas (CO2=56,100, CH4=1, N2O=0.1 kg/TJ) converted with AR5 GWP (CH4=28, N2O=265). Oil share is zero. Hydro/solar/wind/biomass treated as zero-emission. EF excludes T&D losses and upstream fugitive emissions.",
|
|
1156
|
+
nefdb_version: "1.0.0"
|
|
1157
|
+
}
|
|
1158
|
+
];
|
|
1159
|
+
|
|
1160
|
+
// src/factors/transport.ts
|
|
1161
|
+
var transportFactors = [
|
|
1162
|
+
{
|
|
1163
|
+
id: "ng.transport.road.petrol.per_litre",
|
|
1164
|
+
category: "transport",
|
|
1165
|
+
subcategory: "road_fuel_petrol",
|
|
1166
|
+
description: "Nigeria fuel-based Scope 1 emission factor for petrol combustion in road transport, expressed per litre",
|
|
1167
|
+
value: 2.354,
|
|
1168
|
+
unit: "kgCO2e_per_litre",
|
|
1169
|
+
gas: null,
|
|
1170
|
+
gwp_basis: "AR5",
|
|
1171
|
+
scope: 1,
|
|
1172
|
+
data_year: 2024,
|
|
1173
|
+
published_year: 2026,
|
|
1174
|
+
country: "NG",
|
|
1175
|
+
source: {
|
|
1176
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1177
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1178
|
+
publisher: "IPCC",
|
|
1179
|
+
year: 2006,
|
|
1180
|
+
page: "Table 3.2.1 (road vehicles, gasoline default CO2; converted with AR5 GWP)"
|
|
1181
|
+
},
|
|
1182
|
+
additional_sources: [
|
|
1183
|
+
{
|
|
1184
|
+
id: "DEFRA_2024_FULL",
|
|
1185
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1186
|
+
publisher: "UK DESNZ",
|
|
1187
|
+
year: 2024
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
id: "EPA_GHG_HUB_2024",
|
|
1191
|
+
title: "EPA GHG Emission Factors Hub 2024",
|
|
1192
|
+
publisher: "US EPA",
|
|
1193
|
+
year: 2024
|
|
1194
|
+
}
|
|
1195
|
+
],
|
|
1196
|
+
uncertainty_pct: 10,
|
|
1197
|
+
confidence: "high",
|
|
1198
|
+
methodology_note: "DEFRA 2024 100% mineral petrol; IPCC 2006 Vol2 Ch3 corroborates. Primary fuel-based road factor.",
|
|
1199
|
+
nefdb_version: "1.0.0"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
id: "ng.transport.road.diesel.per_litre",
|
|
1203
|
+
category: "transport",
|
|
1204
|
+
subcategory: "road_fuel_diesel",
|
|
1205
|
+
description: "Nigeria fuel-based Scope 1 emission factor for diesel combustion in road transport, expressed per litre",
|
|
1206
|
+
value: 2.662,
|
|
1207
|
+
unit: "kgCO2e_per_litre",
|
|
1208
|
+
gas: null,
|
|
1209
|
+
gwp_basis: "AR5",
|
|
1210
|
+
scope: 1,
|
|
1211
|
+
data_year: 2024,
|
|
1212
|
+
published_year: 2026,
|
|
1213
|
+
country: "NG",
|
|
1214
|
+
source: {
|
|
1215
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1216
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1217
|
+
publisher: "IPCC",
|
|
1218
|
+
year: 2006,
|
|
1219
|
+
page: "Table 3.2.1 (road vehicles, diesel oil default CO2; converted with AR5 GWP)"
|
|
1220
|
+
},
|
|
1221
|
+
additional_sources: [
|
|
1222
|
+
{
|
|
1223
|
+
id: "DEFRA_2024_FULL",
|
|
1224
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1225
|
+
publisher: "UK DESNZ",
|
|
1226
|
+
year: 2024
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
id: "EPA_GHG_HUB_2024",
|
|
1230
|
+
title: "EPA GHG Emission Factors Hub 2024",
|
|
1231
|
+
publisher: "US EPA",
|
|
1232
|
+
year: 2024
|
|
1233
|
+
}
|
|
1234
|
+
],
|
|
1235
|
+
uncertainty_pct: 10,
|
|
1236
|
+
confidence: "high",
|
|
1237
|
+
methodology_note: "DEFRA 2024 100% mineral diesel; IPCC 2006 Vol2 Ch3 corroborates. Primary fuel-based road factor.",
|
|
1238
|
+
nefdb_version: "1.0.0"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
id: "ng.transport.road.petrol.car",
|
|
1242
|
+
category: "transport",
|
|
1243
|
+
subcategory: "road_petrol_car",
|
|
1244
|
+
description: "Distance-based Scope 1 emission factor for average petrol passenger car in Nigeria",
|
|
1245
|
+
value: 0.165,
|
|
1246
|
+
unit: "kgCO2e_per_km",
|
|
1247
|
+
gas: null,
|
|
1248
|
+
gwp_basis: "AR5",
|
|
1249
|
+
scope: 1,
|
|
1250
|
+
data_year: 2024,
|
|
1251
|
+
published_year: 2026,
|
|
1252
|
+
country: "NG",
|
|
1253
|
+
source: {
|
|
1254
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1255
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1256
|
+
publisher: "IPCC",
|
|
1257
|
+
year: 2006,
|
|
1258
|
+
page: "Table 3.2.1 default fuel EF, applied to DEFRA 2024 fuel consumption"
|
|
1259
|
+
},
|
|
1260
|
+
additional_sources: [
|
|
1261
|
+
{
|
|
1262
|
+
id: "DEFRA_2024_FULL",
|
|
1263
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1264
|
+
publisher: "UK DESNZ",
|
|
1265
|
+
year: 2024
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
id: "WB_LOW_CARBON_DEVELOPMENT_NIGERIA_2013",
|
|
1269
|
+
title: "Assessing Low-Carbon Development in Nigeria: An Analysis of Four Sectors",
|
|
1270
|
+
publisher: "World Bank",
|
|
1271
|
+
year: 2013
|
|
1272
|
+
}
|
|
1273
|
+
],
|
|
1274
|
+
uncertainty_pct: 20,
|
|
1275
|
+
confidence: "medium",
|
|
1276
|
+
methodology_note: "DEFRA 2024 average petrol car per-km factor (0.1645 kgCO2e/km) used as a Nigeria proxy, rounded to 0.165. UK fuel-consumption proxy (6.954 L/100km) is shown for reference. Flagged medium confidence because Nigeria-specific VKT/fuel-economy data is unavailable.",
|
|
1277
|
+
nefdb_version: "1.0.0"
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
id: "ng.transport.road.diesel.car",
|
|
1281
|
+
category: "transport",
|
|
1282
|
+
subcategory: "road_diesel_car",
|
|
1283
|
+
description: "Distance-based Scope 1 emission factor for average diesel passenger car in Nigeria",
|
|
1284
|
+
value: 0.17,
|
|
1285
|
+
unit: "kgCO2e_per_km",
|
|
1286
|
+
gas: null,
|
|
1287
|
+
gwp_basis: "AR5",
|
|
1288
|
+
scope: 1,
|
|
1289
|
+
data_year: 2024,
|
|
1290
|
+
published_year: 2026,
|
|
1291
|
+
country: "NG",
|
|
1292
|
+
source: {
|
|
1293
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1294
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1295
|
+
publisher: "IPCC",
|
|
1296
|
+
year: 2006,
|
|
1297
|
+
page: "Table 3.2.1 default fuel EF, applied to DEFRA 2024 fuel consumption"
|
|
1298
|
+
},
|
|
1299
|
+
additional_sources: [
|
|
1300
|
+
{
|
|
1301
|
+
id: "DEFRA_2024_FULL",
|
|
1302
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1303
|
+
publisher: "UK DESNZ",
|
|
1304
|
+
year: 2024
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
id: "WB_LOW_CARBON_DEVELOPMENT_NIGERIA_2013",
|
|
1308
|
+
title: "Assessing Low-Carbon Development in Nigeria: An Analysis of Four Sectors",
|
|
1309
|
+
publisher: "World Bank",
|
|
1310
|
+
year: 2013
|
|
1311
|
+
}
|
|
1312
|
+
],
|
|
1313
|
+
uncertainty_pct: 20,
|
|
1314
|
+
confidence: "medium",
|
|
1315
|
+
methodology_note: "DEFRA 2024 average diesel car per-km factor (0.16984 kgCO2e/km) used as a Nigeria proxy, rounded to 0.170. UK fuel-consumption proxy (6.316 L/100km) is shown for reference.",
|
|
1316
|
+
nefdb_version: "1.0.0"
|
|
1317
|
+
},
|
|
1318
|
+
{
|
|
1319
|
+
id: "ng.transport.road.petrol.motorcycle",
|
|
1320
|
+
category: "transport",
|
|
1321
|
+
subcategory: "road_petrol_motorcycle",
|
|
1322
|
+
description: "Distance-based Scope 1 emission factor for petrol motorcycle in Nigeria",
|
|
1323
|
+
value: 0.114,
|
|
1324
|
+
unit: "kgCO2e_per_km",
|
|
1325
|
+
gas: null,
|
|
1326
|
+
gwp_basis: "AR5",
|
|
1327
|
+
scope: 1,
|
|
1328
|
+
data_year: 2024,
|
|
1329
|
+
published_year: 2026,
|
|
1330
|
+
country: "NG",
|
|
1331
|
+
source: {
|
|
1332
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1333
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1334
|
+
publisher: "IPCC",
|
|
1335
|
+
year: 2006,
|
|
1336
|
+
page: "Table 3.2.1 default fuel EF, applied to DEFRA 2024 fuel consumption"
|
|
1337
|
+
},
|
|
1338
|
+
additional_sources: [
|
|
1339
|
+
{
|
|
1340
|
+
id: "DEFRA_2024_FULL",
|
|
1341
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1342
|
+
publisher: "UK DESNZ",
|
|
1343
|
+
year: 2024
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
id: "WB_LOW_CARBON_DEVELOPMENT_NIGERIA_2013",
|
|
1347
|
+
title: "Assessing Low-Carbon Development in Nigeria: An Analysis of Four Sectors",
|
|
1348
|
+
publisher: "World Bank",
|
|
1349
|
+
year: 2013
|
|
1350
|
+
}
|
|
1351
|
+
],
|
|
1352
|
+
uncertainty_pct: 30,
|
|
1353
|
+
confidence: "low",
|
|
1354
|
+
methodology_note: "DEFRA 2024 average motorbike per-km factor (0.11367 kgCO2e/km) used as a Nigeria proxy, rounded to 0.114. Nigeria-specific data unavailable.",
|
|
1355
|
+
nefdb_version: "1.0.0"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
id: "ng.transport.road.diesel.bus",
|
|
1359
|
+
category: "transport",
|
|
1360
|
+
subcategory: "road_diesel_bus",
|
|
1361
|
+
description: "Distance-based Scope 1 emission factor for diesel bus in Nigeria, expressed per vehicle-km",
|
|
1362
|
+
value: 3.254,
|
|
1363
|
+
unit: "kgCO2e_per_km",
|
|
1364
|
+
gas: null,
|
|
1365
|
+
gwp_basis: "AR5",
|
|
1366
|
+
scope: 1,
|
|
1367
|
+
data_year: 2024,
|
|
1368
|
+
published_year: 2026,
|
|
1369
|
+
country: "NG",
|
|
1370
|
+
source: {
|
|
1371
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1372
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1373
|
+
publisher: "IPCC",
|
|
1374
|
+
year: 2006,
|
|
1375
|
+
page: "Table 3.2.1 default fuel EF, applied to DEFRA 2024 passenger-km factor and occupancy assumption"
|
|
1376
|
+
},
|
|
1377
|
+
additional_sources: [
|
|
1378
|
+
{
|
|
1379
|
+
id: "ICCT_SOOTFREE_2019",
|
|
1380
|
+
title: "Soot-Free Transport for Nigeria",
|
|
1381
|
+
publisher: "ICCT",
|
|
1382
|
+
year: 2019
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
id: "DEFRA_2024_FULL",
|
|
1386
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1387
|
+
publisher: "UK DESNZ",
|
|
1388
|
+
year: 2024
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
id: "WB_LOW_CARBON_DEVELOPMENT_NIGERIA_2013",
|
|
1392
|
+
title: "Assessing Low-Carbon Development in Nigeria: An Analysis of Four Sectors",
|
|
1393
|
+
publisher: "World Bank",
|
|
1394
|
+
year: 2013
|
|
1395
|
+
}
|
|
1396
|
+
],
|
|
1397
|
+
uncertainty_pct: 35,
|
|
1398
|
+
confidence: "low",
|
|
1399
|
+
methodology_note: "Derived from DEFRA 2024 average local bus passenger-km factor and a 30-passenger occupancy assumption to convert to vehicle-km. Highly sensitive to occupancy; flagged low confidence.",
|
|
1400
|
+
nefdb_version: "1.0.0"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
id: "ng.transport.road.diesel.truck.small",
|
|
1404
|
+
category: "transport",
|
|
1405
|
+
subcategory: "road_diesel_light_truck",
|
|
1406
|
+
description: "Distance-based Scope 1 emission factor for small diesel truck/van in Nigeria",
|
|
1407
|
+
value: 0.25,
|
|
1408
|
+
unit: "kgCO2e_per_km",
|
|
1409
|
+
gas: null,
|
|
1410
|
+
gwp_basis: "AR5",
|
|
1411
|
+
scope: 1,
|
|
1412
|
+
data_year: 2024,
|
|
1413
|
+
published_year: 2026,
|
|
1414
|
+
country: "NG",
|
|
1415
|
+
source: {
|
|
1416
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1417
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1418
|
+
publisher: "IPCC",
|
|
1419
|
+
year: 2006,
|
|
1420
|
+
page: "Table 3.2.1 default fuel EF, applied to DEFRA 2024 fuel consumption"
|
|
1421
|
+
},
|
|
1422
|
+
additional_sources: [
|
|
1423
|
+
{
|
|
1424
|
+
id: "DEFRA_2024_FULL",
|
|
1425
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1426
|
+
publisher: "UK DESNZ",
|
|
1427
|
+
year: 2024
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
id: "WB_LOW_CARBON_DEVELOPMENT_NIGERIA_2013",
|
|
1431
|
+
title: "Assessing Low-Carbon Development in Nigeria: An Analysis of Four Sectors",
|
|
1432
|
+
publisher: "World Bank",
|
|
1433
|
+
year: 2013
|
|
1434
|
+
}
|
|
1435
|
+
],
|
|
1436
|
+
uncertainty_pct: 20,
|
|
1437
|
+
confidence: "medium",
|
|
1438
|
+
methodology_note: "DEFRA 2024 average diesel van per-km factor (0.25023 kgCO2e/km) used as a Nigeria proxy, rounded to 0.250. UK fuel-consumption proxy (9.306 L/100km) is shown for reference.",
|
|
1439
|
+
nefdb_version: "1.0.0"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
id: "ng.transport.road.diesel.truck.heavy",
|
|
1443
|
+
category: "transport",
|
|
1444
|
+
subcategory: "road_diesel_heavy_truck",
|
|
1445
|
+
description: "Distance-based Scope 1 emission factor for heavy diesel goods vehicle in Nigeria",
|
|
1446
|
+
value: 0.873,
|
|
1447
|
+
unit: "kgCO2e_per_km",
|
|
1448
|
+
gas: null,
|
|
1449
|
+
gwp_basis: "AR5",
|
|
1450
|
+
scope: 1,
|
|
1451
|
+
data_year: 2024,
|
|
1452
|
+
published_year: 2026,
|
|
1453
|
+
country: "NG",
|
|
1454
|
+
source: {
|
|
1455
|
+
id: "IPCC_2006_VOL2_CH3",
|
|
1456
|
+
title: "IPCC 2006 Guidelines Vol 2 Ch 3 Mobile Combustion",
|
|
1457
|
+
publisher: "IPCC",
|
|
1458
|
+
year: 2006,
|
|
1459
|
+
page: "Table 3.2.1 default fuel EF, applied to DEFRA 2024 fuel consumption"
|
|
1460
|
+
},
|
|
1461
|
+
additional_sources: [
|
|
1462
|
+
{
|
|
1463
|
+
id: "DEFRA_2024_FULL",
|
|
1464
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1465
|
+
publisher: "UK DESNZ",
|
|
1466
|
+
year: 2024
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
id: "WB_LOW_CARBON_DEVELOPMENT_NIGERIA_2013",
|
|
1470
|
+
title: "Assessing Low-Carbon Development in Nigeria: An Analysis of Four Sectors",
|
|
1471
|
+
publisher: "World Bank",
|
|
1472
|
+
year: 2013
|
|
1473
|
+
}
|
|
1474
|
+
],
|
|
1475
|
+
uncertainty_pct: 20,
|
|
1476
|
+
confidence: "medium",
|
|
1477
|
+
methodology_note: "DEFRA 2024 average diesel HGV per-km factor (0.87296 kgCO2e/km) used as a Nigeria proxy, rounded to 0.873. UK fuel-consumption proxy (32.464 L/100km) is shown for reference.",
|
|
1478
|
+
nefdb_version: "1.0.0"
|
|
1479
|
+
}
|
|
1480
|
+
];
|
|
1481
|
+
|
|
1482
|
+
// src/factors/waste.ts
|
|
1483
|
+
var wasteFactors = [
|
|
1484
|
+
{
|
|
1485
|
+
id: "ng.waste.msw.landfill.managed",
|
|
1486
|
+
category: "waste",
|
|
1487
|
+
subcategory: "msw_landfill_managed",
|
|
1488
|
+
description: "Scope 1 emission factor for managed municipal solid waste (MSW) landfill disposal in Nigeria, per tonne of waste",
|
|
1489
|
+
value: 1260,
|
|
1490
|
+
unit: "kgCO2e_per_tonne",
|
|
1491
|
+
gas: null,
|
|
1492
|
+
gwp_basis: "AR5",
|
|
1493
|
+
scope: 1,
|
|
1494
|
+
data_year: 2024,
|
|
1495
|
+
published_year: 2026,
|
|
1496
|
+
country: "NG",
|
|
1497
|
+
region: "NG",
|
|
1498
|
+
source: {
|
|
1499
|
+
id: "IPCC_2006_VOL5_CH3",
|
|
1500
|
+
title: "IPCC 2006 Guidelines Vol 5 Ch 3 Solid Waste Disposal",
|
|
1501
|
+
publisher: "IPCC",
|
|
1502
|
+
year: 2006,
|
|
1503
|
+
page: "Tier 1 mass-balance potential (Eq. 3.1–3.5)"
|
|
1504
|
+
},
|
|
1505
|
+
additional_sources: [
|
|
1506
|
+
{
|
|
1507
|
+
id: "NIGERIA_NIR1",
|
|
1508
|
+
title: "Nigeria First National Inventory Report 2000-2017",
|
|
1509
|
+
publisher: "Federal Republic of Nigeria",
|
|
1510
|
+
year: 2021
|
|
1511
|
+
}
|
|
1512
|
+
],
|
|
1513
|
+
uncertainty_pct: 20,
|
|
1514
|
+
confidence: "high",
|
|
1515
|
+
methodology_note: "IPCC 2006 Vol5 Ch3 Tier 1 mass-balance potential with Lagos metropolis mean composition, DOCf=0.5, F=0.5, OX=0.1, MCF=1.0; 1,262 kgCO2e/t → 1,260. Olusosun deep-dump MCF=0.8 is noted as a site-specific cross-check.",
|
|
1516
|
+
nefdb_version: "1.0.0"
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
id: "ng.waste.msw.open_dump",
|
|
1520
|
+
category: "waste",
|
|
1521
|
+
subcategory: "msw_open_dump",
|
|
1522
|
+
description: "Scope 1 emission factor for unmanaged MSW open dumping in Nigeria, per tonne of waste",
|
|
1523
|
+
value: 561,
|
|
1524
|
+
unit: "kgCO2e_per_tonne",
|
|
1525
|
+
gas: null,
|
|
1526
|
+
gwp_basis: "AR5",
|
|
1527
|
+
scope: 1,
|
|
1528
|
+
data_year: 2024,
|
|
1529
|
+
published_year: 2026,
|
|
1530
|
+
country: "NG",
|
|
1531
|
+
region: "NG",
|
|
1532
|
+
source: {
|
|
1533
|
+
id: "IPCC_2006_VOL5_CH3",
|
|
1534
|
+
title: "IPCC 2006 Guidelines Vol 5 Ch 3 Solid Waste Disposal",
|
|
1535
|
+
publisher: "IPCC",
|
|
1536
|
+
year: 2006,
|
|
1537
|
+
page: "Tier 1 mass-balance potential; unmanaged deep dump MCF default"
|
|
1538
|
+
},
|
|
1539
|
+
additional_sources: [
|
|
1540
|
+
{
|
|
1541
|
+
id: "NIGERIA_NIR1",
|
|
1542
|
+
title: "Nigeria First National Inventory Report 2000-2017",
|
|
1543
|
+
publisher: "Federal Republic of Nigeria",
|
|
1544
|
+
year: 2021
|
|
1545
|
+
}
|
|
1546
|
+
],
|
|
1547
|
+
uncertainty_pct: 25,
|
|
1548
|
+
confidence: "medium",
|
|
1549
|
+
methodology_note: "Same composition as managed landfill; OX=0, MCF=0.4 (NIR1 / IPCC default for unmanaged deep dump).",
|
|
1550
|
+
nefdb_version: "1.0.0"
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
id: "ng.waste.msw.open_burning",
|
|
1554
|
+
category: "waste",
|
|
1555
|
+
subcategory: "msw_open_burning",
|
|
1556
|
+
description: "Scope 1 emission factor for MSW open burning in Nigeria, per tonne of waste burned",
|
|
1557
|
+
value: 268,
|
|
1558
|
+
unit: "kgCO2e_per_tonne",
|
|
1559
|
+
gas: null,
|
|
1560
|
+
gwp_basis: "AR5",
|
|
1561
|
+
scope: 1,
|
|
1562
|
+
data_year: 2024,
|
|
1563
|
+
published_year: 2026,
|
|
1564
|
+
country: "NG",
|
|
1565
|
+
region: "NG",
|
|
1566
|
+
source: {
|
|
1567
|
+
id: "IPCC_2006_VOL5_CH5",
|
|
1568
|
+
title: "IPCC 2006 Guidelines Vol 5 Ch 5 Incineration and Open Burning of Waste",
|
|
1569
|
+
publisher: "IPCC",
|
|
1570
|
+
year: 2006,
|
|
1571
|
+
page: "Table 5.7 (open burning defaults)"
|
|
1572
|
+
},
|
|
1573
|
+
additional_sources: [
|
|
1574
|
+
{
|
|
1575
|
+
id: "NIGERIA_OPEN_BURNING",
|
|
1576
|
+
title: "Nigeria Open Burning Factsheet",
|
|
1577
|
+
publisher: "regulatory_mrv datasets",
|
|
1578
|
+
year: 2021
|
|
1579
|
+
}
|
|
1580
|
+
],
|
|
1581
|
+
uncertainty_pct: 35,
|
|
1582
|
+
confidence: "medium",
|
|
1583
|
+
methodology_note: "IPCC 2006 Vol5 Ch5 Table 5.7 defaults: fossil CO2=33 kg/t, CH4=6.5 kg/t, N2O=0.2 kg/t; CO2e = 33 + 6.5×28 + 0.2×265 = 268.",
|
|
1584
|
+
nefdb_version: "1.0.0"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
id: "ng.waste.organic.composting",
|
|
1588
|
+
category: "waste",
|
|
1589
|
+
subcategory: "organic_composting",
|
|
1590
|
+
description: "Scope 1 emission factor for aerobic composting of organic waste in Nigeria, per tonne of input waste",
|
|
1591
|
+
value: 176,
|
|
1592
|
+
unit: "kgCO2e_per_tonne",
|
|
1593
|
+
gas: null,
|
|
1594
|
+
gwp_basis: "AR5",
|
|
1595
|
+
scope: 1,
|
|
1596
|
+
data_year: 2024,
|
|
1597
|
+
published_year: 2026,
|
|
1598
|
+
country: "NG",
|
|
1599
|
+
region: "NG",
|
|
1600
|
+
source: {
|
|
1601
|
+
id: "IPCC_2006_VOL5_CH4",
|
|
1602
|
+
title: "IPCC 2006 Guidelines Vol 5 Ch 4 Biological Treatment of Solid Waste",
|
|
1603
|
+
publisher: "IPCC",
|
|
1604
|
+
year: 2006,
|
|
1605
|
+
page: "Table 4.1 (CH4 and N2O defaults)"
|
|
1606
|
+
},
|
|
1607
|
+
uncertainty_pct: 25,
|
|
1608
|
+
confidence: "high",
|
|
1609
|
+
methodology_note: "IPCC 2006 Vol5 Ch4 Table 4.1: CH4=4 kg/t, N2O=0.24 kg/t.",
|
|
1610
|
+
nefdb_version: "1.0.0"
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
id: "ng.waste.wastewater.domestic",
|
|
1614
|
+
category: "waste",
|
|
1615
|
+
subcategory: "wastewater_domestic",
|
|
1616
|
+
description: "Scope 1 emission factor for domestic wastewater treatment and discharge in Nigeria, per cubic metre of wastewater",
|
|
1617
|
+
value: 0.758,
|
|
1618
|
+
unit: "kgCO2e_per_m3",
|
|
1619
|
+
gas: null,
|
|
1620
|
+
gwp_basis: "AR5",
|
|
1621
|
+
scope: 1,
|
|
1622
|
+
data_year: 2017,
|
|
1623
|
+
published_year: 2026,
|
|
1624
|
+
country: "NG",
|
|
1625
|
+
region: "NG",
|
|
1626
|
+
source: {
|
|
1627
|
+
id: "IPCC_2006_VOL5_CH6",
|
|
1628
|
+
title: "IPCC 2006 Guidelines Vol 5 Ch 6 Wastewater Treatment and Discharge",
|
|
1629
|
+
publisher: "IPCC",
|
|
1630
|
+
year: 2006,
|
|
1631
|
+
page: "Eq. 6.1–6.3 (domestic wastewater Tier 1)"
|
|
1632
|
+
},
|
|
1633
|
+
additional_sources: [
|
|
1634
|
+
{
|
|
1635
|
+
id: "NIGERIA_NIR1",
|
|
1636
|
+
title: "Nigeria First National Inventory Report 2000-2017",
|
|
1637
|
+
publisher: "Federal Republic of Nigeria",
|
|
1638
|
+
year: 2021
|
|
1639
|
+
},
|
|
1640
|
+
{
|
|
1641
|
+
id: "OKE_AFA_WWTP_2021",
|
|
1642
|
+
title: "Oke-Afa Wastewater Treatment Plant Characterisation Study",
|
|
1643
|
+
publisher: "Lagos State Wastewater Management Office / NEFDB",
|
|
1644
|
+
year: 2021
|
|
1645
|
+
}
|
|
1646
|
+
],
|
|
1647
|
+
uncertainty_pct: 30,
|
|
1648
|
+
confidence: "medium",
|
|
1649
|
+
methodology_note: "Bo=0.6 kg CH4/kg BOD; weighted national MCF=0.354 derived from NIR1 2017 emissions/TOW; influent BOD 0.1275 kg/m3 from Oke-Afa WWTP; per m3 = 0.6×0.354×0.1275×28 = 0.758.",
|
|
1650
|
+
nefdb_version: "1.0.0"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
id: "ng.waste.wastewater.industrial",
|
|
1654
|
+
category: "waste",
|
|
1655
|
+
subcategory: "wastewater_industrial",
|
|
1656
|
+
description: "Scope 1 emission factor for industrial wastewater treatment and discharge in Nigeria, per kilogram of COD removed/treated",
|
|
1657
|
+
value: 2.1,
|
|
1658
|
+
unit: "kgCO2e_per_kg",
|
|
1659
|
+
gas: null,
|
|
1660
|
+
gwp_basis: "AR5",
|
|
1661
|
+
scope: 1,
|
|
1662
|
+
data_year: 2024,
|
|
1663
|
+
published_year: 2026,
|
|
1664
|
+
country: "NG",
|
|
1665
|
+
region: "NG",
|
|
1666
|
+
source: {
|
|
1667
|
+
id: "IPCC_2006_VOL5_CH6",
|
|
1668
|
+
title: "IPCC 2006 Guidelines Vol 5 Ch 6 Wastewater Treatment and Discharge",
|
|
1669
|
+
publisher: "IPCC",
|
|
1670
|
+
year: 2006,
|
|
1671
|
+
page: "Eq. 6.3 (industrial wastewater Tier 1)"
|
|
1672
|
+
},
|
|
1673
|
+
uncertainty_pct: 40,
|
|
1674
|
+
confidence: "low",
|
|
1675
|
+
methodology_note: "Bo=0.25 kg CH4/kg COD, conservative MCF=0.3; per kg COD = 0.25×0.3×28 = 2.10. The unit kgCO2e_per_kg is per kilogram of COD.",
|
|
1676
|
+
nefdb_version: "1.0.0"
|
|
1677
|
+
}
|
|
1678
|
+
];
|
|
1679
|
+
|
|
1680
|
+
// src/factors/water.ts
|
|
1681
|
+
var waterFactors = [
|
|
1682
|
+
{
|
|
1683
|
+
id: "ng.water.treatment.supply",
|
|
1684
|
+
category: "water",
|
|
1685
|
+
subcategory: "water_supply",
|
|
1686
|
+
description: "Scope 2 emission factor for treated water supply in Nigeria, per cubic metre supplied",
|
|
1687
|
+
value: 0.103,
|
|
1688
|
+
unit: "kgCO2e_per_m3",
|
|
1689
|
+
gas: null,
|
|
1690
|
+
gwp_basis: "AR5",
|
|
1691
|
+
scope: 2,
|
|
1692
|
+
data_year: 2024,
|
|
1693
|
+
published_year: 2026,
|
|
1694
|
+
country: "NG",
|
|
1695
|
+
region: "NG",
|
|
1696
|
+
source: {
|
|
1697
|
+
id: "DEFRA_2024_FULL",
|
|
1698
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1699
|
+
publisher: "UK DESNZ",
|
|
1700
|
+
year: 2024
|
|
1701
|
+
},
|
|
1702
|
+
additional_sources: [
|
|
1703
|
+
{
|
|
1704
|
+
id: "NEFDB_RECONCILED_GENERATION_2024",
|
|
1705
|
+
title: "Nigeria Generation Mix Reconciled 2024",
|
|
1706
|
+
publisher: "NEFDB",
|
|
1707
|
+
year: 2024
|
|
1708
|
+
}
|
|
1709
|
+
],
|
|
1710
|
+
uncertainty_pct: 30,
|
|
1711
|
+
confidence: "medium",
|
|
1712
|
+
methodology_note: "DEFRA 2024 water supply factor 0.15311 kgCO2e/m3 ÷ UK grid 0.20705 kgCO2e/kWh → 0.739 kWh/m3; × Nigeria grid ng.grid.national.location.2024 (0.138611) → 0.103.",
|
|
1713
|
+
nefdb_version: "1.0.0"
|
|
1714
|
+
},
|
|
1715
|
+
{
|
|
1716
|
+
id: "ng.water.treatment.wastewater",
|
|
1717
|
+
category: "water",
|
|
1718
|
+
subcategory: "water_wastewater_treatment",
|
|
1719
|
+
description: "Scope 2 emission factor for wastewater treatment services in Nigeria, per cubic metre treated",
|
|
1720
|
+
value: 0.124,
|
|
1721
|
+
unit: "kgCO2e_per_m3",
|
|
1722
|
+
gas: null,
|
|
1723
|
+
gwp_basis: "AR5",
|
|
1724
|
+
scope: 2,
|
|
1725
|
+
data_year: 2024,
|
|
1726
|
+
published_year: 2026,
|
|
1727
|
+
country: "NG",
|
|
1728
|
+
region: "NG",
|
|
1729
|
+
source: {
|
|
1730
|
+
id: "DEFRA_2024_FULL",
|
|
1731
|
+
title: "UK DESNZ/DEFRA 2024 GHG Conversion Factors Full Set",
|
|
1732
|
+
publisher: "UK DESNZ",
|
|
1733
|
+
year: 2024
|
|
1734
|
+
},
|
|
1735
|
+
additional_sources: [
|
|
1736
|
+
{
|
|
1737
|
+
id: "NEFDB_RECONCILED_GENERATION_2024",
|
|
1738
|
+
title: "Nigeria Generation Mix Reconciled 2024",
|
|
1739
|
+
publisher: "NEFDB",
|
|
1740
|
+
year: 2024
|
|
1741
|
+
}
|
|
1742
|
+
],
|
|
1743
|
+
uncertainty_pct: 30,
|
|
1744
|
+
confidence: "medium",
|
|
1745
|
+
methodology_note: "DEFRA 2024 water treatment factor 0.18574 kgCO2e/m3 ÷ UK grid 0.20705 → 0.897 kWh/m3; × Nigeria grid 0.138611 → 0.124.",
|
|
1746
|
+
nefdb_version: "1.0.0"
|
|
1747
|
+
}
|
|
1748
|
+
];
|
|
1749
|
+
|
|
1750
|
+
// src/factors/index.ts
|
|
1751
|
+
var allFactors = [
|
|
1752
|
+
...aviationFactors,
|
|
1753
|
+
...gridElectricityFactors,
|
|
1754
|
+
...fuelCombustionFactors,
|
|
1755
|
+
...transportFactors,
|
|
1756
|
+
...wasteFactors,
|
|
1757
|
+
...waterFactors
|
|
1758
|
+
];
|
|
1759
|
+
|
|
1760
|
+
// src/api/aviation.ts
|
|
1761
|
+
function toFactorView(factor, options) {
|
|
1762
|
+
if (options?.full)
|
|
1763
|
+
return factor;
|
|
1764
|
+
if (options?.withSource) {
|
|
1765
|
+
return {
|
|
1766
|
+
id: factor.id,
|
|
1767
|
+
value: factor.value,
|
|
1768
|
+
unit: factor.unit,
|
|
1769
|
+
source: factor.source
|
|
1770
|
+
};
|
|
1771
|
+
}
|
|
1772
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
1773
|
+
}
|
|
1774
|
+
var RF_MULTIPLIER = 1.9;
|
|
1775
|
+
function route(origin, destination, options) {
|
|
1776
|
+
const a = origin.toLowerCase();
|
|
1777
|
+
const b = destination.toLowerCase();
|
|
1778
|
+
const forwardId = `ng.aviation.domestic.${a}_${b}`;
|
|
1779
|
+
const reverseId = `ng.aviation.domestic.${b}_${a}`;
|
|
1780
|
+
const base = allFactors.find((f) => f.id === forwardId) ?? allFactors.find((f) => f.id === reverseId);
|
|
1781
|
+
if (!base)
|
|
1782
|
+
return;
|
|
1783
|
+
if (!options?.rf) {
|
|
1784
|
+
return toFactorView(base, options);
|
|
1785
|
+
}
|
|
1786
|
+
const adjustedValue = base.value * RF_MULTIPLIER;
|
|
1787
|
+
if (options.full) {
|
|
1788
|
+
return { ...base, value: adjustedValue };
|
|
1789
|
+
}
|
|
1790
|
+
if (options.withSource) {
|
|
1791
|
+
return {
|
|
1792
|
+
id: base.id,
|
|
1793
|
+
value: adjustedValue,
|
|
1794
|
+
unit: base.unit,
|
|
1795
|
+
source: base.source
|
|
1796
|
+
};
|
|
1797
|
+
}
|
|
1798
|
+
return {
|
|
1799
|
+
id: base.id,
|
|
1800
|
+
value: adjustedValue,
|
|
1801
|
+
unit: base.unit
|
|
1802
|
+
};
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
// src/api/fuel.ts
|
|
1806
|
+
var exports_fuel = {};
|
|
1807
|
+
__export(exports_fuel, {
|
|
1808
|
+
petrol: () => petrol,
|
|
1809
|
+
naturalGas: () => naturalGas,
|
|
1810
|
+
lpg: () => lpg,
|
|
1811
|
+
hfo: () => hfo,
|
|
1812
|
+
diesel: () => diesel,
|
|
1813
|
+
cng: () => cng
|
|
1814
|
+
});
|
|
1815
|
+
function toFactorView2(factor, options) {
|
|
1816
|
+
if (options?.full)
|
|
1817
|
+
return factor;
|
|
1818
|
+
if (options?.withSource) {
|
|
1819
|
+
return {
|
|
1820
|
+
id: factor.id,
|
|
1821
|
+
value: factor.value,
|
|
1822
|
+
unit: factor.unit,
|
|
1823
|
+
source: factor.source
|
|
1824
|
+
};
|
|
1825
|
+
}
|
|
1826
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
1827
|
+
}
|
|
1828
|
+
function find(id, options) {
|
|
1829
|
+
const factor = allFactors.find((f) => f.id === id);
|
|
1830
|
+
return factor ? toFactorView2(factor, options) : undefined;
|
|
1831
|
+
}
|
|
1832
|
+
function petrol(options) {
|
|
1833
|
+
return find("ng.fuel.petrol.stationary", options);
|
|
1834
|
+
}
|
|
1835
|
+
function lpg(options) {
|
|
1836
|
+
return find("ng.fuel.lpg.stationary", options);
|
|
1837
|
+
}
|
|
1838
|
+
function cng(options) {
|
|
1839
|
+
return find("ng.fuel.cng.stationary", options);
|
|
1840
|
+
}
|
|
1841
|
+
function naturalGas(options) {
|
|
1842
|
+
return find("ng.fuel.naturalgas.stationary", options);
|
|
1843
|
+
}
|
|
1844
|
+
function hfo(options) {
|
|
1845
|
+
return find("ng.fuel.hfo.stationary", options);
|
|
1846
|
+
}
|
|
1847
|
+
function diesel(options) {
|
|
1848
|
+
const per_litre = find("ng.fuel.diesel.stationary", options);
|
|
1849
|
+
if (!per_litre)
|
|
1850
|
+
return;
|
|
1851
|
+
return {
|
|
1852
|
+
per_litre,
|
|
1853
|
+
per_kwh: {
|
|
1854
|
+
rated: find("ng.fuel.diesel.stationary.kwh.rated", options),
|
|
1855
|
+
field: find("ng.fuel.diesel.stationary.kwh.field", options)
|
|
1856
|
+
}
|
|
1857
|
+
};
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
// src/api/grid.ts
|
|
1861
|
+
var exports_grid = {};
|
|
1862
|
+
__export(exports_grid, {
|
|
1863
|
+
national: () => national,
|
|
1864
|
+
disco: () => disco
|
|
1865
|
+
});
|
|
1866
|
+
function toFactorView3(factor, options) {
|
|
1867
|
+
if (options?.full)
|
|
1868
|
+
return factor;
|
|
1869
|
+
if (options?.withSource) {
|
|
1870
|
+
return {
|
|
1871
|
+
id: factor.id,
|
|
1872
|
+
value: factor.value,
|
|
1873
|
+
unit: factor.unit,
|
|
1874
|
+
source: factor.source
|
|
1875
|
+
};
|
|
1876
|
+
}
|
|
1877
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
1878
|
+
}
|
|
1879
|
+
var NATIONAL_IDS = {
|
|
1880
|
+
om: "ng.grid.national.om.2021",
|
|
1881
|
+
bm: "ng.grid.national.bm.2021",
|
|
1882
|
+
cm: "ng.grid.national.cm.2021",
|
|
1883
|
+
location: "ng.grid.national.location.2024"
|
|
1884
|
+
};
|
|
1885
|
+
function national(marginOrOptions, options) {
|
|
1886
|
+
const margin = typeof marginOrOptions === "string" ? marginOrOptions : "cm";
|
|
1887
|
+
const opts = typeof marginOrOptions === "string" ? options : marginOrOptions;
|
|
1888
|
+
const factor = allFactors.find((f) => f.id === NATIONAL_IDS[margin]);
|
|
1889
|
+
return factor ? toFactorView3(factor, opts) : undefined;
|
|
1890
|
+
}
|
|
1891
|
+
function disco(name, options) {
|
|
1892
|
+
const factor = allFactors.find((f) => f.disco === name && f.id.startsWith("ng.grid.disco.") && f.id.endsWith(".2024"));
|
|
1893
|
+
return factor ? toFactorView3(factor, options) : undefined;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
// src/api/transport.ts
|
|
1897
|
+
var exports_transport = {};
|
|
1898
|
+
__export(exports_transport, {
|
|
1899
|
+
road: () => road
|
|
1900
|
+
});
|
|
1901
|
+
function toFactorView4(factor, options) {
|
|
1902
|
+
if (options?.full)
|
|
1903
|
+
return factor;
|
|
1904
|
+
if (options?.withSource) {
|
|
1905
|
+
return {
|
|
1906
|
+
id: factor.id,
|
|
1907
|
+
value: factor.value,
|
|
1908
|
+
unit: factor.unit,
|
|
1909
|
+
source: factor.source
|
|
1910
|
+
};
|
|
1911
|
+
}
|
|
1912
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
1913
|
+
}
|
|
1914
|
+
function road(fuel, vehicle, options) {
|
|
1915
|
+
if (!vehicle) {
|
|
1916
|
+
const factor2 = allFactors.find((f) => f.id === `ng.transport.road.${fuel}.per_litre`);
|
|
1917
|
+
return factor2 ? toFactorView4(factor2, options) : undefined;
|
|
1918
|
+
}
|
|
1919
|
+
const factor = allFactors.find((f) => f.id === `ng.transport.road.${fuel}.${vehicle}`);
|
|
1920
|
+
return factor ? toFactorView4(factor, options) : undefined;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
// src/api/waste.ts
|
|
1924
|
+
var exports_waste = {};
|
|
1925
|
+
__export(exports_waste, {
|
|
1926
|
+
wastewater: () => wastewater,
|
|
1927
|
+
msw: () => msw,
|
|
1928
|
+
composting: () => composting
|
|
1929
|
+
});
|
|
1930
|
+
function toFactorView5(factor, options) {
|
|
1931
|
+
if (options?.full)
|
|
1932
|
+
return factor;
|
|
1933
|
+
if (options?.withSource) {
|
|
1934
|
+
return {
|
|
1935
|
+
id: factor.id,
|
|
1936
|
+
value: factor.value,
|
|
1937
|
+
unit: factor.unit,
|
|
1938
|
+
source: factor.source
|
|
1939
|
+
};
|
|
1940
|
+
}
|
|
1941
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
1942
|
+
}
|
|
1943
|
+
function find2(id, options) {
|
|
1944
|
+
const factor = allFactors.find((f) => f.id === id);
|
|
1945
|
+
return factor ? toFactorView5(factor, options) : undefined;
|
|
1946
|
+
}
|
|
1947
|
+
function msw(type, options) {
|
|
1948
|
+
const idMap = {
|
|
1949
|
+
landfill_managed: "ng.waste.msw.landfill.managed",
|
|
1950
|
+
open_dump: "ng.waste.msw.open_dump",
|
|
1951
|
+
open_burning: "ng.waste.msw.open_burning"
|
|
1952
|
+
};
|
|
1953
|
+
return find2(idMap[type], options);
|
|
1954
|
+
}
|
|
1955
|
+
function composting(options) {
|
|
1956
|
+
return find2("ng.waste.organic.composting", options);
|
|
1957
|
+
}
|
|
1958
|
+
function wastewater(type, options) {
|
|
1959
|
+
if (type !== "domestic" && type !== "industrial")
|
|
1960
|
+
return;
|
|
1961
|
+
const id = type === "domestic" ? "ng.waste.wastewater.domestic" : "ng.waste.wastewater.industrial";
|
|
1962
|
+
return find2(id, options);
|
|
1963
|
+
}
|
|
1964
|
+
|
|
1965
|
+
// src/api/water.ts
|
|
1966
|
+
var exports_water = {};
|
|
1967
|
+
__export(exports_water, {
|
|
1968
|
+
wastewater: () => wastewater2,
|
|
1969
|
+
supply: () => supply
|
|
1970
|
+
});
|
|
1971
|
+
function toFactorView6(factor, options) {
|
|
1972
|
+
if (options?.full)
|
|
1973
|
+
return factor;
|
|
1974
|
+
if (options?.withSource) {
|
|
1975
|
+
return {
|
|
1976
|
+
id: factor.id,
|
|
1977
|
+
value: factor.value,
|
|
1978
|
+
unit: factor.unit,
|
|
1979
|
+
source: factor.source
|
|
1980
|
+
};
|
|
1981
|
+
}
|
|
1982
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
1983
|
+
}
|
|
1984
|
+
function find3(id, options) {
|
|
1985
|
+
const factor = allFactors.find((f) => f.id === id);
|
|
1986
|
+
return factor ? toFactorView6(factor, options) : undefined;
|
|
1987
|
+
}
|
|
1988
|
+
function supply(options) {
|
|
1989
|
+
return find3("ng.water.treatment.supply", options);
|
|
1990
|
+
}
|
|
1991
|
+
function wastewater2(options) {
|
|
1992
|
+
return find3("ng.water.treatment.wastewater", options);
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
// src/query.ts
|
|
1996
|
+
function toFactorView7(factor, options) {
|
|
1997
|
+
if (options?.full)
|
|
1998
|
+
return factor;
|
|
1999
|
+
if (options?.withSource) {
|
|
2000
|
+
return {
|
|
2001
|
+
id: factor.id,
|
|
2002
|
+
value: factor.value,
|
|
2003
|
+
unit: factor.unit,
|
|
2004
|
+
source: factor.source
|
|
2005
|
+
};
|
|
2006
|
+
}
|
|
2007
|
+
return { id: factor.id, value: factor.value, unit: factor.unit };
|
|
2008
|
+
}
|
|
2009
|
+
function get(id, options) {
|
|
2010
|
+
const factor = allFactors.find((f) => f.id === id);
|
|
2011
|
+
return factor ? toFactorView7(factor, options) : undefined;
|
|
2012
|
+
}
|
|
2013
|
+
function query(filter, options) {
|
|
2014
|
+
const entries = Object.entries(filter);
|
|
2015
|
+
const matches = allFactors.filter((factor) => {
|
|
2016
|
+
for (const [key, value] of entries) {
|
|
2017
|
+
if (key === "source" && value && typeof value === "object") {
|
|
2018
|
+
const sourceId = value.id;
|
|
2019
|
+
if (sourceId !== undefined && factor.source.id !== sourceId) {
|
|
2020
|
+
return false;
|
|
2021
|
+
}
|
|
2022
|
+
continue;
|
|
2023
|
+
}
|
|
2024
|
+
if (factor[key] !== value) {
|
|
2025
|
+
return false;
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
return true;
|
|
2029
|
+
});
|
|
2030
|
+
return matches.map((factor) => toFactorView7(factor, options));
|
|
2031
|
+
}
|
|
2032
|
+
function list(options) {
|
|
2033
|
+
return allFactors.map((factor) => toFactorView7(factor, options));
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
// src/index.ts
|
|
2037
|
+
function usedSources() {
|
|
2038
|
+
const seen = new Map;
|
|
2039
|
+
for (const factor of allFactors) {
|
|
2040
|
+
seen.set(factor.source.id, factor.source);
|
|
2041
|
+
for (const source of factor.additional_sources ?? []) {
|
|
2042
|
+
seen.set(source.id, source);
|
|
2043
|
+
}
|
|
2044
|
+
}
|
|
2045
|
+
return Array.from(seen.values());
|
|
2046
|
+
}
|
|
2047
|
+
var nefdb = {
|
|
2048
|
+
list,
|
|
2049
|
+
get,
|
|
2050
|
+
query,
|
|
2051
|
+
aviation: exports_aviation,
|
|
2052
|
+
fuel: exports_fuel,
|
|
2053
|
+
grid: exports_grid,
|
|
2054
|
+
transport: exports_transport,
|
|
2055
|
+
waste: exports_waste,
|
|
2056
|
+
water: exports_water,
|
|
2057
|
+
version: () => "1.0.0",
|
|
2058
|
+
sources: usedSources
|
|
2059
|
+
};
|
|
2060
|
+
export {
|
|
2061
|
+
exports_water as water,
|
|
2062
|
+
exports_waste as waste,
|
|
2063
|
+
exports_transport as transport,
|
|
2064
|
+
query,
|
|
2065
|
+
nefdb,
|
|
2066
|
+
list,
|
|
2067
|
+
exports_grid as grid,
|
|
2068
|
+
get,
|
|
2069
|
+
exports_fuel as fuel,
|
|
2070
|
+
exports_aviation as aviation
|
|
2071
|
+
};
|