Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions defaults/docs-defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ defaults:
phone: 2.856000000
tablet: 29.400000000
tv: 81.600000000
default_digital_screen_embodied_emissions_kgco2e_per_second: 0.000024900
default_digital_screen_landfill_emissions_kgco2e_per_sq_metre: 20.900000000
default_display_creative_overhead_factor: 0.200000000
default_display_other_assets_bytes: 50000
Expand Down
19 changes: 18 additions & 1 deletion docs/calculations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import BroadcastingDefaults from "/snippets/defaults_broadcasting.mdx";
import CreativeStorageDefaults from "/snippets/defaults_creative_storage.mdx";
import AssetDefaults from "/snippets/defaults_asset_size.mdx";
import ClassicOOHDefaults from "/snippets/defaults_classic_ooh.mdx";
import ClassicOOHDefaults from "/snippets/defaults_print.mdx";
import PrintDefaults from "/snippets/defaults_print.mdx";
import DOOHDefaults from "/snippets/defaults_dooh.mdx";

# Detailed walkthrough of calculations

Expand Down Expand Up @@ -249,6 +250,22 @@ Emission factors from [GMSF 1.2](https://adnetzero.com/wp-content/uploads/2025/0

<CreativeStorageDefaults />

### Asset size defaults

<AssetDefaults />

### Classic OOH defaults

<ClassicOOHDefaults />

### Print defaults

<PrintDefaults />

### DOOH defaults

<DOOHDefaults />

## Lookups from external sources

### Carbon intensity by country, region, and UTC Date/Time
Expand Down
2 changes: 2 additions & 0 deletions docs/snippets/defaults_classic_ooh.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```
default_ad_landfill_emissions_kgco2e_per_sq_metre: 0.291
default_ad_pct_recycling:
classic-ooh: 20.0
Expand Down Expand Up @@ -257,3 +258,4 @@ default_structure_landfill_emissions_kgco2e_per_sq_metre: 2.2
default_structure_pct_recycling:
classic-ooh: 58.75
default_structure_recycling_emissions_kgco2e_per_sq_metre: 0.0
```
3 changes: 3 additions & 0 deletions docs/snippets/defaults_dooh.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```
default_digital_screen_embodied_emissions_kgco2e_per_second: 0.0000249
```
2 changes: 2 additions & 0 deletions docs/snippets/defaults_print.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
```
default_downstream_transport_emissions_kgco2e_tonne_transported_per_km: 0.6382
default_downstream_travelled_distance_km: 100.0
default_freight_transport_emissions_kgco2e_tonne_transported_per_km: 0.11
Expand Down Expand Up @@ -84,3 +85,4 @@ default_printing_finishing_emissions_gco2e_per_page:
magazine: 1.5
leaflet: 2.0
default_printer_to_storage_distance_km: 100.0
```
2 changes: 1 addition & 1 deletion scope3_methodology/test/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def test_startup(self):
)

docs_defs = docs_defaults
self.assertEqual(len(docs_defs), 110)
self.assertEqual(len(docs_defs), 111)

def test_get_all_con_networking_connection_device_fixed_defaults(self):
"""Test get_all_networking_connection_device_defaults returns expected output"""
Expand Down